-
Notifications
You must be signed in to change notification settings - Fork 8
/
statistics.html
87 lines (84 loc) · 3.29 KB
/
statistics.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Fourcore</title>
<link href="style.css" rel="stylesheet" type="text/css"/>
<script src="assets/js/jquery.js" type="text/javascript"></script>
<script src="assets/js/fourcore.js" type="text/javascript"></script>
<script src="assets/js/node_modules/chart.js/dist/chart.js" type="text/javascript"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="navigation">
<a href="index.html"><img src="assets/img/logo.png"></a>
<ul>
<li><a href="statistics.html">Statistics</a></li>
<li><a href="search.html">Wallet</a></li>
<li><a href="settings.html">Settings</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</div>
<h1>BLOCKCHAIN STATISTICS</h1>
</header>
<div>
<div class="maincontainer">
<div class="datacontainer">
<div>
<h3>Pool Hashrate</h3>
<h2 id="pool_hr">NA</h2>
</div>
<div>
<h3>Workers</h3>
<h2 id="workers">NA</h2>
</div>
<div>
<h3>Global Hashrate</h3>
<h2 id="global_hr">NA</h2>
</div>
<div>
<h3>Global Difficulty</h3>
<h2 id="global_diff">NA</h2>
</div>
</div>
</div>
<div class="duocontainer">
<div class="subcontainer">
<h3>Pool Graph</h3>
<div class="graphcontainer">
<canvas id="hr_chart"></canvas>
</div>
</div>
</div>
</div>
<!-- Footer containing miscellaneous information and website navigation-->
<footer>
<h3>Site links</h3>
<div class="datacontainer">
<div>
<ul>
<li><a href="statistics.html">Statistics</a></li>
<li><a href="wallet.html">Wallet</a></li>
<li><a href="settings.html">Settings</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</div>
<div>
<ul>
<li><a href="https://github.com/noahtheprogrammer/foureverui">Github</a></li>
<li><a href="https://github.com/noahtheprogrammer/foureverui/issues/new">Report an issue</a></li>
</ul>
</div>
<p>Made with ❤️ by OKprogrammer</p>
</div>
</footer>
</body>
<script>
loadStatistics();
loadPoolGraph();
</script>
</html>