-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (21 loc) · 881 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>USD on Ethereum</title>
<script src="services/process-polyfill.js"></script>
<script type="module" src="elements/usde-app.ts"></script>
<link rel="icon" href="quarter.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-61431139-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-61431139-6', { anonymize_ip: true });
</script>
<meta name="description" content="Tracks United States Dollars (USD) that have been tokenized and issued on the Ethereum blockchain">
</head>
<body>
<usde-app></usde-app>
</body>
</html>