-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.33 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/alt-fox.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Multichain Test Dapp</title>
<!--
connect-src entries:
- wss://mm-sdk-relay… MWP relay websocket (mobile flow)
- https://mm-sdk-analytics… analytics ingestion endpoint
- https://*.infura.io read-only RPC node fallback
- http://localhost:* local analytics echo server (yarn analytics:echo,
default :3001) used by the Analytics test bench
- http://127.0.0.1:* same, via loopback IP
-->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self';
script-src 'self' 'unsafe-inline' 'unsafe-eval';
style-src 'self' 'unsafe-inline';
img-src 'self' data:;
connect-src 'self' wss://mm-sdk-relay.api.cx.metamask.io https://mm-sdk-analytics.api.cx.metamask.io https://*.infura.io http://localhost:* http://127.0.0.1:*;
frame-src https://fwd.metamask.io;
font-src 'self';"
/>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>