-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcalculator.html
126 lines (124 loc) · 3.8 KB
/
calculator.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
<!doctype html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js',
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-TT2FBGZQ');
</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Alephium(ALPH) Mining profit Calculator</title>
<link rel="icon" href="/images/icon.ico" />
<meta
name="description"
content="Use the Alephium Mining Calculator to estimate your mining profit. Maximize your earnings with Alephium mining pool."
/>
<meta
name="keywords"
content="Alephium, Mining Calculator, Mining Profit, Estimate Earnings"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-TT2FBGZQ"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="container">
<div>
<p>
<a href="./instruction.html"> <b>How to mine</b> 📖 </a>
</p>
<form name="calculator_form">
<div class="row">
<div class="column">
<label for="hashrate_field">Hashrate (GH/s)</label>
<input
type="text"
name="hashrate"
id="hashrate_field"
value="1"
/>
</div>
<div class="column">
<label for="power_consumption_field">Power consumption (W)</label>
<input
type="text"
name="power_consumption"
id="power_consumption_field"
value="0"
/>
</div>
</div>
<div class="row">
<div class="column">
<label for="electricity_costs_field"
>Electricity costs (USD/kWh)</label
>
<input
type="text"
name="electricity_costs"
id="electricity_costs_field"
value="0.1"
/>
</div>
<div class="column">
<input
class="calculator_button"
id="calculator_button"
type="submit"
value="Calculate"
/>
</div>
</div>
</form>
<table class="calculator_table">
<thead>
<tr>
<th>PERIOD</th>
<th>EST. REWARD</th>
<th>EST. INCOME</th>
<th>ELECTRICITY COSTS</th>
<th>EST. PROFIT</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</body>
</html>
<script src="calculator.js"></script>