-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
22 lines (22 loc) · 994 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Compound Protocol Network Statuses</title>
</head>
<body class="max-width min-width center">
<div id="navigation" class="navigation"></div>
<div id="scroll-top" class="scroll-top">^</div>
<div class="main">
<h1>Compound Protocol Network Statuses</h1>
<div id="networks-container"></div>
</div>
</body>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/ethereum/[email protected]/dist/web3.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.6/handlebars.min.js"></script>
<script type="text/javascript" src="protocolData.js"></script>
<script type="text/javascript" src="erc20cTokenAbi.js"></script>
<script type="text/javascript" src="comptrollerAbi.js"></script>
<script type="text/javascript" src="app.js"></script>
</html>