-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathminer.html
More file actions
128 lines (108 loc) · 4.23 KB
/
miner.html
File metadata and controls
128 lines (108 loc) · 4.23 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<title>P2Pool Node Status - Share</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<script type="text/javascript" src="d3.v2.min.js"></script>
<script src="js/jquery-2.0.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-dateFormat.min.js"></script>
<script src="js/util.js"></script>
<script src="js/charts.js"></script>
<script src="js/config.json"></script>
<script src="js/init.js"></script>
<!-- Custom styles for this template -->
<link href="css/p2pool-node-status.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id='header'></div>
<div class="container">
<div class="page-header">
<div id="ad"></div>
<h1 id="page-title"></h1>
<b>
<small>
<span id='_node' class='hidden'>Node: </span>
<span id='node' class='hidden'></span><br/>
<span id='updated'></span>
</small>
</b>
</div>
<div id="loading"><span>Loading...</span></div>
<div class="text-center" id="periods">
<div>
Periods: <span id="period_chooser"></span>
</div>
<div>
Current: <span id="period_current"></span>
</div>
</div>
<div id="local_rate_graph"></div>
<div id="miner-summary">
<h4>Miner Summary</h4>
<table class="table table-hover" border='0'>
<tr>
<td width="25%">Hashrate</td>
<td id="hashrate" class="text-right"></td>
<td width="25%">Address</td>
<td id="address" class="text-right"></td>
</tr>
<tr>
<td width="25%">DOA</td>
<td id="doa" class="text-right"></td>
<td width="25%">DOA %</td>
<td id="doa_prop" class="text-right"></td>
</tr>
<tr>
<td height="30">Predicted Payout</td>
<td width="25%" class="text-right"><button class="to_usd"><span id="payout"></span></button></td>
<td width="25%" class="text-right"></td>
<td width="25%" class="text-right"></td>
</tr>
</table>
</div>
<div id="payout_graph"></div>
<h4>Bitcoin Status</h4>
<table class="table table-hover" border='0'>
<tr>
<td height="30">Total Received</td>
<td width="25%" class="text-right"><button class="to_usd"><span id="total_received"></span></button></td>
<td height="30">Total Sent</td>
<td width="25%" class="text-right"><button class="to_usd"><span id="total_sent"></span></button></td>
</tr>
<tr>
<td height="30">Current Balance</td>
<td width="25%" class="text-right"><button class="to_usd"><span id="current_balance"></span></button></td>
<td width="25%"></td>
<td width="25%" class="text-right"></td>
</tr>
</table>
<h4>Recent Shares</h4>
<table id='recent_shares' class="table table-hover">
<thead>
<th class="hidden">Timestamp</th>
<th>Date/Time</th>
<th>Hash</th>
<th class="text-center">State</th>
</thead>
<tbody></tbody>
</table>
</div> <!-- /container -->
<div id='footer'></div>
<script type="text/javascript" src="js/pages/miner.js"></script>
</body>
</html>