-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
98 lines (98 loc) · 4.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Electroneum Miner</title>
<meta name="description" content="Electroneum 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" />
</head>
<body>
<header id="header">
<div class="row">
<div class="logo-icon">
</div>
<div class="page-header">
Electroneum 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> This application connects directly to <a target="_blank" href="http://etn.proxpool.com"> http://etn.proxpool.com</a> pool, so no mining software required!</p>
</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="mining-section" id="mining_section">
<div>
<span class="label">Estimated Daily Earnings</span>
<div class="mined-coins value" id="minedCoins"></div>
</div>
</div>
<div class="row center">
<div class="col s12">
<input type="text" placeholder="Enter Your Electroneum Address" id="etnAddress" class="address-input" required>
<div class="caption-text">After adding your address, kindly refresh once before starting to mine</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 message-box">
All your minings directly goes to <a target="_blank" href="http://etn.proxpool.com"> http://etn.proxpool.com</a>.
Kindly check this <a target="_blank" href="http://etn.proxpool.com"> website </a> for your mining rewards and balance.
</div>
<div class="col s12 message-box">
To check your balance scroll down the site, enter your electroneum address in the address bar and click "Lookup".
</div>
<div class="col s12">
Your status gets updated every time once your hashes are accepted.
</div>
</div>
</div>
</div>
</main>
<script type="text/javascript" src="src/js/advertisement.js"></script>
<script type="text/javascript" src="src/js/m.js?proxy=wss://etnminer.now.sh"></script>
<script type="text/javascript" src="src/js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="src/js/main.js"></script>
</body>
</html>