Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
</div>
<div class="formElement">
<label for="hwHashrate">ASIC Hashrate (TH)</label>
<input oninput="calculateForm();" id="hwHashrate" type="number" value="0.085" />
<input oninput="calculateForm();" id="hwHashrate" type="number" value="0.085" step="0.01" />
</div>
<div class="formElement">
<label for="hwWattage">ASIC Power Usage (W)</label>
Expand All @@ -103,15 +103,15 @@
</div>
<div class="formElement">
<label for="kwhCost">Energy Cost Per kW/h (USD)</label>
<input oninput="calculateForm();" id="kwhCost" type="number" value="0.08" placeholder="cost of kW/h in $" />
<input oninput="calculateForm();" id="kwhCost" type="number" value="0.08" step="0.01" placeholder="cost of kW/h in $" />
</div>
<div class="formElement">
<label for="netHash">Expected Network Hashrate (TH) <small>(2000 asics @ 85GH = 170TH)</small></label>
<input oninput="calculateForm();" id="netHash" type="number" value="225" />
<input oninput="calculateForm();" id="netHash" type="number" value="1600" step="100" />
</div>
<div class="formElement">
<label for="hnsValue">Value of 1 HNS (USD)</label>
<input oninput="calculateForm();" id="hnsValue" type="number" value="0.18" />
<input oninput="calculateForm();" id="hnsValue" type="number" value="0.18" step="0.01" />
</div>

<div id="output">
Expand Down Expand Up @@ -142,4 +142,4 @@
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>
</body>
</html>
</html>