-
Notifications
You must be signed in to change notification settings - Fork 69
/
index.html
51 lines (48 loc) · 1.85 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./src/assets/tonverifier.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="TON Contract Verifier - A tool to verify your contracts on the Ton blockchain"
/>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="TON Contract Verifier" />
<meta
itemprop="description"
content="TON Contract Verifier - A tool to verify your contracts on the Ton blockchain"
/>
<meta itemprop="image" content="./src/assets/tonverifier.png" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://tonverifier.live" />
<meta property="og:type" content="website" />
<meta property="og:title" content="TON Contract Verifier" />
<meta
property="og:description"
content="TON Contract Verifier - A tool to verify your contracts on the Ton blockchain"
/>
<meta property="og:image" content="./src/assets/tonverifier.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="TON Contract Verifier" />
<meta
name="twitter:description"
content="TON Contract Verifier - A tool to verify your contracts on the Ton blockchain"
/>
<title>TON Contract Verifier</title>
<script type="module">
if (import.meta.env.VITE_REDIRECT && window.location.hostname === "tonverifier.live") {
window.location.replace(
window.location.href.replace("tonverifier.live", "verifier.ton.org"),
);
}
</script>
<script type="module" src="/src/polyfills.ts"></script>
<script type="module" src="/src/main.tsx"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>