-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (95 loc) · 3.39 KB
/
Copy pathindex.html
File metadata and controls
106 lines (95 loc) · 3.39 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
<title>TxTracer | TON</title>
<meta
name="description"
content="TxTracer is a web app for tracing and analyzing TON blockchain transactions. It offers tools to visualize execution, inspect contracts, and debug smart contracts with a code editor and user-friendly interface."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://txtracer.ton.org/" />
<meta property="og:title" content="TxTracer | TON" />
<meta
property="og:description"
content="TxTracer is a web app for tracing and analyzing TON blockchain transactions. It offers tools to visualize execution, inspect contracts, and debug smart contracts with a code editor and user-friendly interface."
/>
<meta property="og:image" content="https://txtracer.ton.org/assets/cover.png" />
<meta property="og:image:width" content="1280" />
<meta property="og:image:height" content="640" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://txtracer.ton.org/" />
<meta property="twitter:title" content="TxTracer | TON" />
<meta
property="twitter:description"
content="TxTracer is a web app for tracing and analyzing TON blockchain transactions. It offers tools to visualize execution, inspect contracts, and debug smart contracts with a code editor and user-friendly interface."
/>
<meta property="twitter:image" content="https://txtracer.ton.org/assets/cover.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap"
rel="stylesheet"
/>
<!-- <script crossorigin="anonymous" src="//unpkg.com/react-scan/dist/auto.global.js"></script>-->
</head>
<style>
:root {
--expo-in: linear(
0 0%,
0.0085 31.26%,
0.0167 40.94%,
0.0289 48.86%,
0.0471 55.92%,
0.0717 61.99%,
0.1038 67.32%,
0.1443 72.07%,
0.1989 76.7%,
0.2659 80.89%,
0.3465 84.71%,
0.4419 88.22%,
0.554 91.48%,
0.6835 94.51%,
0.8316 97.34%,
1 100%
);
}
::view-transition-group(root) {
animation-timing-function: var(--expo-in);
}
::view-transition-new(root) {
mask: url("https://media.tenor.com/cyORI7kwShQAAAAi/shigure-ui-dance.gif") center / 0
no-repeat;
animation: scale 3s;
animation-fill-mode: both;
}
::view-transition-old(root),
.dark::view-transition-old(root) {
animation: scale 3s;
animation-fill-mode: both;
}
@keyframes scale {
0% {
mask-size: 0;
}
10% {
mask-size: 50vmax;
}
90% {
mask-size: 50vmax;
}
100% {
mask-size: 2000vmax;
}
}
</style>
<body>
<div id="root"></div>
<script type="module" src="/src/polyfills.ts"></script>
<script type="module" src="/src/pages/TracePage/main.tsx"></script>
</body>
</html>