-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 2.73 KB
/
index.html
File metadata and controls
70 lines (70 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Web3 Mobile Meta Tags -->
<meta name="theme-color" content="#000000" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta property="og:type" content="website" />
<meta property="og:title" content="SandBlox UI" />
<meta property="og:description" content="Deploy, Secure, and Manage Your Smart Contracts with SandBlox" />
<!-- WalletConnect Meta Tags for Mobile -->
<meta name="ethereum" content="true" />
<meta name="eth:chainId" content="1" />
<meta name="eth:accounts" content="true" />
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
connect-src 'self'
https://ethereum-sepolia-rpc.publicnode.com
https://sepolia-rollup.arbitrum.io/rpc
https://*.drpc.org
ws://*.drpc.org:*
ws://127.0.0.1:*
http://127.0.0.1:*
http://localhost:*
ws://localhost:*
https://*.walletconnect.org
wss://*.walletconnect.org
https://*.walletconnect.com
wss://*.walletconnect.com
https://explorer-api.walletconnect.com
https://*.merkle.io
https://*.infura.io
wss://*.infura.io
https://*.alchemyapi.io
wss://*.alchemyapi.io
https://eth-mainnet.g.alchemy.com
https://polygon-mainnet.g.alchemy.com
https://remote-ganache-1.tailb0865.ts.net
wss://remote-ganache-1.tailb0865.ts.net
https://*.tailb0865.ts.net
wss://*.tailb0865.ts.net
https://*.safe.global;
font-src 'self' data: https://fonts.googleapis.com https://rsms.me;
script-src 'self' 'unsafe-inline' %VITE_CSP_SCRIPT_SRC%;
style-src 'self' 'unsafe-inline' https://rsms.me;
img-src 'self' data: https: blob:;
media-src 'self' blob:;
worker-src 'self' blob:;
frame-src 'self' https://*.walletconnect.org https://*.walletconnect.com;
object-src 'none';
base-uri 'self';
form-action 'self'
">
<!--
Note: Custom network RPC URLs added through the UI will require a page reload
to be included in the Content Security Policy. The NetworkCSPBanner component
will notify users when this is needed.
-->
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" crossorigin="anonymous" />
<link rel="preload" href="/logo.svg" as="image" type="image/svg+xml" />
<title>SandBlox</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>