-
Notifications
You must be signed in to change notification settings - Fork 10
/
payments.html
158 lines (107 loc) · 5.48 KB
/
payments.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport"/>
<meta name="viewport" content="width=device-width"/>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet"/>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="css/themify-icons.css" />
<!-- CTM css -->
<link rel="stylesheet" href="css/mc-charts.css" />
<link rel="stylesheet" href="css/mc-build.css" />
<title>MiningCore Pool</title>
<meta name="description" content="High profitability mining pool">
<meta name="keywords" content="ethereum, eth, monero, xmr, pool, mining, cryptocurrency, dubaicoin, how to mine coin, how to mining, how to lowest fees in mining pool, how to best mining pool in cryptocurrency, asia no 1 mining pool, world no 1 mining pool, indias no 1 minig pool,asia first mining pool, indias first mining pool, india first mining company, world best mining pool, india best mining pool, asia best mining pool, pplns, pplns pool, pplns mining pool, mining pool in india, process of mining, steps in mining pool, indias preffered mining pool, top mining pool in india, top mining pool in world, top mining pool in asia, simple guide to minig pool, mining pool basics, low latency mining pool, mining pool experts in india, mining pool experts in world, mining pool experts in asia, complete guide on mining pool, lowest mining pool fees in india, lowest mining pool fees in world, lowest mining pool fees in asia, stratum mining, ddos protected, easy to mine windows pool, easy to mine linux, ethereum, pool, mining, cryptocurrency,expanse">
</head>
<body>
<!-- ----------------------------- 1e HEADER ROW -->
<div class="row">
<div class="header-black-white">
<h1>MiningCore Pool - Payments</h1>
</div>
</div>
<!-- ----------------------------- 2e NAVIGATION ROW -->
<div class="row">
<div class="hidden-xs hidden-sm hidden-md column side left">
</div>
<div class="column middle white ">
<div class="left">
<a href="https://github.com/coinfoundry/miningcore" class="logo"><img src="img/pool-logo.jpg" alt=""></a>
</div>
<div class="right">
<div class="menu">
<ul>
<li><a href="/" class="ember-view active"> <i class="fa fa-home"></i>Home</a></li>
<li><a href="connect.html" class="ember-view"> <i class="fa fa-location-arrow"></i>Connect</a> </li>
<li><a href="blocks.html" class="ember-view"> <i class="fa fa-sitemap"></i>Pool Blocks </a> </li>
<li><a href="payments.html" class="ember-view"> <i class="fa fa-credit-card"></i>Payments</a> </li>
<li><a href="miners.html" class="ember-view"> <i class="fa fa-users"></i>Miners</a> </li>
<li><a href="about.html" class="ember-view"> <i class="fa fa-clipboard"></i>About</a> </li>
</ul>
</div>
</div>
</div>
<div class=" hidden-sm hidden-md column side">
</div>
</div>
<!-- ----------------------------- 3e INFORMATION ROW -->
<div class="row">
<div class="hidden-xs hidden-sm hidden-md column side left">
</div>
<div class="column middle blue">
<h2>PAYMENTS</h2>
<div class="infoCard">
<div class="">
<h4 class="title">Payments Rewarded</h4>
<p class="category">Last 500 payments</p>
</div>
<div class="content table-responsive table-full-width">
<table id="paymentList" class="table table-striped"></table>
</div>
</div>
</div>
<div class="column side">
<h2 class="title">CONNECTION PORTS</h2>
<p class="category">This shows the current pool port to connect your miner to. The variable port have a starting difficulty and are tuned for you miner speed.</p>
<div class="content table-responsive table-full-width">
<table id="poolPortList" class="table table-striped"></table>
</div>
</div>
</div>
<!-- ----------------------------- 4e FOOTER ROW -->
<footer class="footer-black-white">
<div class="copyright">
© <script>document.write(new Date().getFullYear())</script> by <a href="https://github.com/coinfoundry/miningcore">MiningCore Engine</a>
</div>
</footer>
</body>
<!-- Core JS Files -->
<script src="js/jquery-1.10.2.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<!-- Checkbox, Radio & Switch Plugins -->
<script src="js/bootstrap-checkbox-radio.js"></script>
<!-- Charts Plugin -->
<script src="js/chartist.min.js"></script>
<!-- Notifications Plugin -->
<script src="js/bootstrap-notify.js"></script>
<!-- Core JS Files -->
<script src="js/jquery-1.10.2.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<!-- Charts Plugin -->
<script src="js/chartist.min.js"></script>
<script src="js/miningcore.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var renderCallback = $.Callbacks();
renderCallback.add(function () {
loadPaymentsList();
loadPoolPortList();
});
loadPools(renderCallback);
});
</script>
</html>