-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
56 lines (52 loc) · 1.92 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitcoin Data Labs</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Bitcoin Network Basic Stats</h1>
<p class="subtitle">Last 24 hours of Bitcoin network activity</p>
</header>
<div id="loading" class="loading-section">
<div class="loading-text">
Loading blocks: <span id="currentBlock">0</span> / <span id="totalBlocks">144</span>
</div>
<div class="progress-bar">
<div id="progress" class="progress"></div>
</div>
</div>
<div id="content" class="content hidden">
<section class="summary-section">
<h2>Network Summary</h2>
<div id="summaryMetrics" class="metrics-grid"></div>
</section>
<section class="hourly-section">
<h2>Hourly Breakdown</h2>
<div class="table-container">
<table id="hourlyMetrics">
<thead>
<tr>
<th>Hour</th>
<th>Blocks</th>
<th>Transactions</th>
<th>TPS</th>
<!-- <th>BTC Volume</th> -->
<!-- <th>BTC per Block</th> -->
<!-- <th>BTC per Second</th> -->
<th>Size (MB)</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</section>
</div>
</div>
<script src="script.js"></script>
</body>
</html>