2019-10-17 14:28:03 +00:00
<!DOCTYPE html>
< html >
< head >
< title > Creating Storage Miner - Lotus Fountain< / title >
< link rel = "stylesheet" type = "text/css" href = "main.css" >
< / head >
< body >
< div class = "Index" >
< div class = "Index-nodes" >
< div class = "Index-node" >
[CREATING STORAGE MINER]
< / div >
< div class = "Index-node" id = "formnd" >
2019-10-29 18:28:54 +00:00
< form id = "f" action = '/mkminer' method = 'POST' >
2020-06-01 15:49:15 +00:00
< span > Enter owner/worker address:< / span >
< input type = 'text' name = 'address' style = "width: 300px" placeholder = "t3..." >
2019-10-29 18:28:54 +00:00
< select name = "sectorSize" >
2020-05-14 09:21:44 +00:00
< option selected value = "34359738368" > 32GiB sectors< / option >
2020-05-09 00:56:01 +00:00
< option value = "68719476736" > 64GiB sectors< / option >
2019-10-29 18:28:54 +00:00
< / select >
2019-10-29 13:26:15 +00:00
< button type = 'submit' > Create Miner< / button >
2019-10-17 14:28:03 +00:00
< / form >
< / div >
< div id = "plswait" style = "display: none" class = "Index-node" >
< b > Waiting for transaction on chain..< / b >
< / div >
< div class = "Index-node" >
< span > When creating storage miner, DO NOT REFRESH THE PAGE, wait for it to load. This can take more than 5min.< / span >
< / div >
2020-06-01 15:49:15 +00:00
< div class = "Index-node" >
< span > If you don't have an owner/worker address, you can create it by following < a target = "_blank" href = "https://docs.lotu.sh/en+mining#get-started-22083" > these instructions< / a > .< / span >
< / div >
2019-10-17 14:28:03 +00:00
< / div >
< div class = "Index-footer" >
< div >
< a href = "index.html" > [Back]< / a >
< span style = "float: right" > Not dispensing real Filecoin tokens< / span >
< / div >
< / div >
< / div >
< script >
let f = document.getElementById('f')
f.onsubmit = ev => {
document.getElementById('plswait').style.display = 'block'
document.getElementById('formnd').style.display = 'none'
}
< / script >
< / body >
2019-11-09 16:53:20 +00:00
< / html >