-
Notifications
You must be signed in to change notification settings - Fork 37
/
bitsend.html
1 lines (1 loc) · 2.1 KB
/
bitsend.html
1
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><title>Bitsend Cold Wallet Generator</title><meta name="description" content="A lightweight, client-side, reliable, fast, open-source universal cold wallet generator supporting almost every major cryptocurrency"><meta name="keywords" content="minimal, reliable, fast, universal, cold, wallet, generator, offline, bitsend, cryptocurrency"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="canonical" href="https://thebestcoldwallet.com/bitsend.html"><link rel="stylesheet" href="css/style2.css"></head><body onload="generate()"><div id="container"><br><div class="noprint"><button onclick="generate()">Generate</button> <button onclick="window.print()">Print</button> <a href="index.html"><input type="button" value="Home"></a></div><img src="img/bitsend.png" class="center" alt="bitsend"><table><tr><h1 class="titlemain">Bitsend Cold Wallet</h1></tr><tr><th class="grayHeaders">Public Address <span id="shareColor">(SHARE)</span></th></tr><tr><td><div id="public">Generating...</div></td></tr><tr><td><div id="public_qr"></div></td></tr><tr><th class="grayHeaders"><div id="secretLabel">Private Key <span id="secretColor">(SECRET)</span></div></th></tr><tr><td><div id="secret">Generating...</div></td></tr><tr><td><div id="secret_qr"></div></td></tr></table></div><script src="js/bitcoinjs-lib.js"></script><script src="js/qrcode.js"></script><script>function generate(){ const e=bitcoin.networks.bitcoin; e.pubKeyHash=0x66, e.wif=0xCC; const t=bitcoin.ECPair.makeRandom(), n=t.getAddress(), o=t.toWIF(); document.getElementById("public").textContent=n, document.getElementById("secret").textContent=o, document.getElementById("public_qr").textContent="", document.getElementById("secret_qr").textContent="", new QRCode(document.getElementById("public_qr"),{ text: n, width: 128, height: 128, correctLevel: QRCode.CorrectLevel.H}), new QRCode(document.getElementById("secret_qr"),{ text: o, width: 128, height: 128, correctLevel: QRCode.CorrectLevel.H})} document.getElementById("update").textContent="Latest update: " + document.lastModified; </script></body></html>