-
Notifications
You must be signed in to change notification settings - Fork 0
/
blocks.html
71 lines (66 loc) · 2.46 KB
/
blocks.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
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qombo: Data Navigator - v1.11.11</title>
<link rel="stylesheet" href="old-style.css">
</head>
<body>
<header>
<h1>Qombo: Data Navigator - v1.11.11</h1>
</header>
<main>
<section id="menu-bar">
<div id="menu-list">
<p><span id="menu-blocks"><a href="home.html">Home</a> | Blocks | <a href="txs.html">Transactions</a> | <a href="trades.html">Trades</a> | <a href="accounts.html">Accounts</a> | <a href="apps.html">Apps</a> | <a href="websites.html">Websites</a> | <a href="polls.html">Polls</a> | <a href="assets.html">Assets</a> | <a href="extra.html">Extra</a></span></p>
</div>
</section>
<section id="blockchain-info">
<h2>Current Blockchain Information</h2>
<table id="info-table">
<tr><th>Current Block Height</th><td id="block-height"></td></tr>
</table>
</section>
<section id="block-search">
<h2>Block Details - <button id="search-button">Search</button><input type="text" id="search-input" placeholder="Enter block height"></h2>
<div id="block-details"></div>
</section>
<section id="block-txs">
<h2>Block Transactions</h2>
<table id="txs-table">
<thead>
<tr>
<th>Height</th>
<th>Signature</th>
<th>TX Type</th>
<th>Creator</th>
<th>Fee Paid</th>
<th>Time</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</section>
<section id="recent-blocks">
<h2>Recent Blocks</h2>
<table id="blocks-table">
<thead>
<tr>
<th>Height</th>
<th>Signature</th>
<th>TX Count</th>
<th>Minters</th>
<th>Time</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<button id="load-more">See 10 More Blocks</button>
</section>
</main>
<script src="blocks.js"></script>
</body>
</html>