-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 1.79 KB
/
index.html
File metadata and controls
55 lines (55 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<title>Block Explorer</title>
<script type="module" src="index.js"></script>
</head>
<body>
<h1>Block Explorer</h1>
<div class="components">
<div>
<h2> Lookup Block Information</h2>
<input type="text" id="block-no" placeholder="Block no" />
<div class="button" id="get-block-no">
Get Block Content
</div>
<div class="button" id="get-latest-block">
Get Latest Block Content
</div>
</div>
<div>
<h2>Select Network</h2>
<div>
<select name="network" id="my-network">
<option value="mainnet">Mainnet</option>
<option value="Rinkeby">Rinkeby</option>
<option value="Ropsten">Ropsten</option>
</select>
</div>
</div>
</div>
<div class="components">
<div>
<h2>Lookup Account</h2>
<input type="text" id="account-no" placeholder="Account" />
<div class="button" id="get-ac-details">
Get ac balance
</div>
</div>
<div>
<h2>Lookup Transaction</h2>
<input type="text" id="txn-hash" placeholder="Txn" />
<div class="button" id="get-txn-details">
Get TXN Details
</div>
</div>
</div>
<div class="results">
<div>
<h2>Results</h2>
<div id="block-content">
</div>
</div>
</div>
</body>
</html>