-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 942 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
26
27
28
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>auto-deposit-service</title>
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=WeakRef,BigInt"></script>
<script src="https://cdn.jsdelivr.net/npm/superagent"></script>
<script
src="https://cdn.ethers.io/lib/ethers-5.2.umd.min.js"
type="application/javascript"
></script>
<script type="application/javascript">
document.addEventListener("DOMContentLoaded", async () => {});
</script>
</head>
<body>
<div id="container" style="margin: 3%">
<h1 class="title">auto-deposit-service</h1>
<div id="results">
<div id="users"></div>
<p id="totalFeeValue"></p>
<p id="selectedFeeValue"></p>
<button id="execute">execute</button>
</div>
</div>
</body>
</html>