-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.html
100 lines (89 loc) · 5.09 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0"/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="%VITE_APPLE_TOUCH_ICON%"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="%VITE_SITE_ICON_x16%"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="%VITE_SITE_ICON_x32%"
/>
<link rel="manifest" href="/site.webmanifest" />
<!-- <meta name="msapplication-TileColor" content="#0d1117" />
<meta name="theme-color" content="#7371fc" /> -->
<meta name="title" content="%VITE_SITE_TITLE%" />
<title>%VITE_SITE_TITLE%</title>
<meta name="build-time" content="__BUILD_TIME__" />
<meta name="version" content="__VERSION__" />
<meta name="print" content="__PRINT__" />
<!-- Meta tags using environment variables -->
<meta name="description" content="%VITE_META_DESCRIPTION%">
<meta name="keywords" content="%VITE_META_KEYWORDS%">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="%VITE_OG_URL%" />
<meta property="og:title" content="%VITE_OG_TITLE%">
<meta property="og:description" content="%VITE_OG_DESCRIPTION%">
<meta property="og:image" content="%VITE_OG_IMAGE%" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="%VITE_TWITTER_SITE%" />
<meta property="twitter:url" content="%VITE_OG_URL%" />
<meta property="twitter:title" content="%VITE_OG_TITLE%" />
<meta
property="twitter:description"
content="%VITE_OG_DESCRIPTION%"
/>
<meta
property="twitter:image"
content="%VITE_OG_IMAGE%"
/>
<style>
/* background color shown during app load */
body {
background-color: #0e0e14;
}
</style>
<!-- <link rel="preload" as="image" href="/assets/home_wallpaper-KI3qiyrN.webp"> -->
<link rel="preload" as="image" href="/assets/large-vMbD2IRY.svg">
<link rel="preload" as="font" type="font/woff2" href="https://fonts.gstatic.com/s/lexenddeca/v21/K2F1fZFYk-dHSE0UPPuwQ5qnJy8.woff2" crossorigin="anonymous">
<link rel="preload" as="font" type="font/woff2" href="https://fonts.gstatic.com/s/lexendexa/v30/UMBXrPdOoHOnxExyjdBeai3dAw.woff2" crossorigin="anonymous">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Fira+Mono:wght@100;300;400;500&display=swap">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400&display=swap">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;300&display=swap">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100;300;500&display=swap">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
<link rel="preload" as="fetch" href="https://ambindexer.net/gcgo/chain_stats?chainId=0x1&n=10" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://ambindexer.net/scroll-gcgo/chain_stats?chainId=0x82750&n=20" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://ambindexer.net/blast-gcgo/chain_stats?chainId=0x13e31&n=10" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://ambindexer.net/scroll-gcgo/all_pool_stats?chainId=0x82750&with24hPrices=true" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://raw.githubusercontent.com/scroll-tech/token-list/main/scroll.tokenlist.json" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://ambindexer.net/scroll-gcgo/all_pool_stats?chainId=0x82750&with24hPrices=true" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://tokens.coingecko.com/ethereum/all.json" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://tokens.coingecko.com/blast/all.json" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://tokens.coingecko.com/base/all.json" crossorigin="anonymous">
<link rel="preload" as="fetch" href="https://tokens.coingecko.com/scroll/all.json" crossorigin="anonymous">
</head>
<body>
<script type="text/javascript">
const warningTitleCSS =
'color:red; font-size:60px; font-weight: bold; -webkit-text-stroke: 1px black;';
const warningDescCSS = 'font-size: 18px;';
</script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>