-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathminer.html
124 lines (123 loc) · 4.97 KB
/
miner.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Easy Pool Miner</title>
<meta name="description" content="Easy Pool Miner" />
<meta name="viewport" content="width=device-width" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="src/css/materialize.min.css">
<link rel="stylesheet" href="src/css/main.css" type="text/css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script src="https://www.googletagmanager.com/gtag/js?id=UA-116922981-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116922981-2');
</script>
</head>
<body>
<header id="header">
<div class="row">
<div class="logo-icon">
</div>
<div class="page-header">
Easy Pool Miner
</div>
</div>
</header>
<main id="body">
<div class="page-container">
<div class="center-pane">
<div class="row center">
<div class="col s12">
<h5 class="light message-box">
Now, mine into mining pools directly from your browser!
</h5>
<p class="light"> This application connects directly to your desired mining pool, no mining software required!</p>
</div>
</div>
<div class="row center info-section" id="info_section">
<div>
<div class="col s8 info-field">
<span class="label">Mining Pool:</span>
<span class="pool-url value" id="poolUrl"></span>
</div>
<div class="col s2 info-field">
<span class="label">Port: </span>
<span class="pool-port value" id="poolPort"></span>
</div>
</div>
<div class="col s12 info-field">
<span class="label">Your Wallet Address: </span>
<span class="wallet-address value" id="address"></span>
</div>
</div>
<div class="status-section" id="status_section">
<div class="display-field">
<span class="label">Hashes / Sec</span>
<div id="hashesPerSecond" class="value"></div>
</div>
<div class="display-field">
<span class="label">Mined Hashes</span>
<div id="totalHashes" class="value"></div>
</div>
<div class="display-field">
<span class="label">Accepted Hashes</span>
<div id="acceptedHashes" class="value"></div>
</div>
<div class="display-field">
<span class="label">Threads</span>
<input type="number" max="8" min="1" id="numThreads" class="value number">
</div>
<div class="display-field">
<span class="label">CPU Usage</span>
<input type="number" max="100" min="1" id="throttle" class="value number">
</div>
<div class="display-field">
<span class="label">Hash Difficulty</span>
<div id="difficulty" class="value"></div>
</div>
</div>
<div class="row center">
<div class="col s12 earnings-section">
<div class="info-field">
<span class="label">Daily Earnings</span>
<span class="earnings value" id="daily"></span>
</div>
<div class="info-field">
<span class="label">Weekly Earnings </span>
<span class="earnings value" id="weekly"></span>
</div>
<div class="info-field">
<span class="label">Monthly Earnings </span>
<span class="earnings value" id="monthly"></span>
</div>
</div>
</div>
<div class="row center">
<div class="col s12">
<input type="button" value="Start Mining" id="startMiner" class="btn mining-btn">
<input type="button" value="Stop Mining" id="stopMiner" class="btn mining-btn hide">
</div>
</div>
<div class="row center">
<div class="col s12 light message-box">
It may take a while to start the miner for the first time, please be patient. <br>
All your minings directly goes to your pool site. Kindly check with the respective mining pools for your mining rewards and balance.
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="footer">
Built with ♥ in CryptoMining by <a href="https://jefreesujit.github.io" target="_blank"> Jefree Sujit</a>.
</div>
</footer>
<script type="text/javascript" src="src/js/init.js"></script>
<script type="text/javascript" id="jquery" src="src/js/jquery-2.1.1.min.js"></script>
</body>
</html>