-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
67 lines (60 loc) · 3.99 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
<!DOCTYPE html>
<html>
<head>
<style>
html,body{
padding-left: 10px;
}
</style>
<script type="text/javascript" src="multisig/qrcode.js"></script>
</head>
<body>
<h1>COINABLES.GITHUB.IO</h1>
<h2>Welcome to my Open Source and fund raising page!</h2>
<p>Please support my work and future works: 3DevXQGCEk7934Ac7P1pPbBAc3Ay2uDueA <span onclick="return showqr();" title="click to reveal QR Code"><b style="font-size: 26px;" >⚄</b>[qrcode]</span></p>
<h2>This site is a collection of some open source client-side bitcoin web apps I have built.</h2>
<p>Feel free to fork any of these projects.</p>
<ul>
<li><a href="https://coinables.github.io/orion/index.html">Orion.Ninja</a> - Bitcoin transaction visualizer.</li>
<li><a href="https://coinables.github.io/segwitaddress/">SegwitAddress.org</a> - Segwit paper wallet app.</li>
<li><a href="https://coinables.github.io/fastwallet">FastWallet</a> - A serverless HD bitcoin web wallet I built for casual/throwaway use cases.</li>
<li><a href="https://coinables.github.io/explorer">Explorer</a> - Simple bitcoin block explorer.</li>
<li><a href="https://coinables.github.io/bip39">BIP39 Generator</a> - BIP39 mnemonic phrase generator that uses your mouse movements plus some CSPRNG for entropy.</li>
<!-- NO LONGER WORKS AFTER SMARTBIT SHUTDOWN <li><a href="https://coinables.github.io/wallet">JSWallet</a> - Javascript wallet.</li>
<li><a href="https://coinables.github.io/sweepkey">SweepKey</a> - Tool for sweeping private keys.</li>
<li><a href="https://coinables.github.io/utxobucket">UTXOBucket</a> - Experimental wallet that stores UTXO data for only addresses in your wallet.</li> -->
<li><a href="https://coinables.github.io/multisig">MultiSig Paper Wallet</a> - Multisig tool with Transaction Builder and Offline Key Signer.</li>
<li><a href="https://coinables.github.io/dragdrop">Drag-Drop</a> - Create private keys by drag and dropping a file or image.</li>
<li><a href="https://coinables.github.io/coldsigner">Cold Signer</a> - Tool to build and sign transactions offline.</li>
<li><a href="https://coinables.github.io/breev">Breev</a> - A simple clone of the infamous bitcoin conversion site, preev.com</li>
<li><a href="https://coinables.github.io/buidljs">Buidljs</a> - A playground for buidljs.</li>
<li><a href="https://coinables.github.io/mnemonic-recovery">Mnemonic Recovery</a> - A tool to brute force one missing word from a 12-word menmonic phrase.</li>
<!-- NO LONGER WORKS AFTER API LIMIT CHANGE <li><a href="https://coinables.github.io/mnemonic-slots">Mnemonic Slots</a> - A practical joke page oalong the lines of DirectoryIO but think of a slot machine combined with BIP39 mnemonic words instead of cherries.</li> -->
</ul>
<h3>Other Works:</h3>
<ul>
<li>Wrote API Tutorial Articles in 2015 for Blockchain.info blog.</li>
<li>Developed & Launched one of the first Lightning Explorers in 2018, recognized by Jameson Lopp (https://twitter.com/lopp/status/963440343063543808?s=20)</li>
<li>Published over 100 bitcoin programming tutorials on my YT channel (https://www.youtube.com/@coinables/videos)</li>
<li>Contributor to Bitcoin Core v0.15</li>
</ul>
<br>
<h3>Warning!</h3>
<p>Although this site does not save, store, or log any private keys, it is very important not to re-use a private key of an address entered on any website including this site. Whenever entering a private key into any online form you should assume that address is no longer safe. </p>
<p><strong>Use At Your Own Risk:</strong><br> Every app on this page is for educational purposes only. There are no guarantees. </p>
<div style="position: fixed; top: 10px; right: 15px; z-index: 3;"><div id="qrdisplay" style="display: none;"></div></div>
<script>
new QRCode(document.getElementById("qrdisplay"),"3DevXQGCEk7934Ac7P1pPbBAc3Ay2uDueA");
var toggle = 0;
function showqr(){
if(toggle===0){
document.getElementById("qrdisplay").style.display = "block";
toggle = 1;
} else {
document.getElementById("qrdisplay").style.display = "none";
toggle = 0;
}
}
</script>
</body>
</html>