-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
104 lines (80 loc) · 3.46 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Jungle Testnet Monitor (CryptoLions.io)</title>
<link rel="icon" href="imgs/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="js/utils.js?03"></script>
<script src="js/bps.js?04"></script>
<script src="js/check_nodes.js?02"></script>
<link rel="stylesheet" href="style.css?02">
</style>
</head>
<body class="bg">
<div class="page">
<center>
<div class="container">
<h1>EOS Jungle Testnet Monitor (<a target="_blank" href="https://github.com/CryptoLions/JungleTestnet">GitHub</a>)</h1>
<BR>
<div class="s1">
<nobr> Last Block: <span class="green" id="lastBlock">--</span> <span class="dot">⚫</span> </nobr>
<nobr> Produced by: <span class="green" id="lastProducer">--</span> <span class="dot">⚫</span> </nobr>
<nobr> Last irreversible block: <span class="green" id="lastIrrevBlock">--</span> <span class="dot">⚫</span> </nobr>
<nobr> Date: <span class="green" id="lastDate">--</span></nobr>
</div>
<!--div class="row s1">
<div class="col-sm text-right">
Last Block: <span class="green" id="lastBlock">--</span> <BR>
Produced by: <span class="green" id="lastProducer">--</span>
</div>
<div class="col-sm-2">
</div>
<div class="col-sm text-left">
Last irreversible block: <span class="green" id="lastIrrevBlock">--</span>
<BR>
Date: <span class="green" id="lastDate">--</span>
</div>
</div-->
<BR><BR>
<h2>Network Status</h2>
<div id="nodesList"></div>
<div class="row">
<div class="col-sm-12 col-md-12">
<div class="table-responsive-sm vscroll">
<table class="table table-hover table-sm" id="bpTable">
<thead>
<tr class="text-center">
<th scope="col">#</th>
<th scope="col" width="100">BP name</th>
<th scope="col">Answered</th>
<th scope="col">Last Block</th>
<th scope="col">Produced</th>
<th scope="col">Block</th>
<th scope="col">Address</th>
<th scope="col">HTTP</th>
<th scope="col">P2P</th>
<th scope="col">Version</th>
<th scope="col">Organisation</th>
<th scope="col">Location</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<BR><BR>
<span class="footer">
<span class="fotertext" >2018, Created by <a class="foterlink" target="_blank" href="http://CryptoLions.io">CryptoLions.io</a> | <a class="foterlink" target="_blank" href="https://github.com/CryptoLions">GitHub</a> </span>
</span>
</div>
</center>
</div>
</body>
</html>