diff options
author | Ian Coleman <coleman.ian@gmail.com> | 2014-09-18 12:39:30 +1000 |
---|---|---|
committer | Ian Coleman <coleman.ian@gmail.com> | 2014-09-18 12:39:30 +1000 |
commit | 212b1b46762e4db5ffd598ca242f7b5c49f02002 (patch) | |
tree | cfcfd8112549315f3e6224da5fa4caa6f377a471 /bip39-standalone.html | |
parent | f52dcdbd842c2d575d29430d8ce3d1ff83eeba23 (diff) | |
download | BIP39-212b1b46762e4db5ffd598ca242f7b5c49f02002.tar.gz BIP39-212b1b46762e4db5ffd598ca242f7b5c49f02002.tar.zst BIP39-212b1b46762e4db5ffd598ca242f7b5c49f02002.zip |
bip32-standalone.html updated
Diffstat (limited to 'bip39-standalone.html')
-rw-r--r-- | bip39-standalone.html | 158 |
1 files changed, 158 insertions, 0 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html index 9ee29f4..c7beb3e 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html | |||
@@ -18,6 +18,9 @@ | |||
18 | <meta content="DC POS" name="author" /> | 18 | <meta content="DC POS" name="author" /> |
19 | 19 | ||
20 | <style> | 20 | <style> |
21 | body { | ||
22 | padding-bottom: 32px; | ||
23 | } | ||
21 | .feedback-container { | 24 | .feedback-container { |
22 | position: fixed; | 25 | position: fixed; |
23 | top: 0; | 26 | top: 0; |
@@ -242,6 +245,161 @@ | |||
242 | </p> | 245 | </p> |
243 | </div> | 246 | </div> |
244 | </div> | 247 | </div> |
248 | |||
249 | <hr> | ||
250 | |||
251 | <div class="row"> | ||
252 | <div class="col-md-12"> | ||
253 | <h2>Derived Addresses</h2> | ||
254 | <p>Note these addreses are derived from the <strong>BIP32 Extended Key</strong></p> | ||
255 | <table class="table table-striped"> | ||
256 | <thead> | ||
257 | <th> | ||
258 | <div class="input-group"> | ||
259 | Index | ||
260 | <button class="index-toggle">Toggle</button> | ||
261 | </div> | ||
262 | </th> | ||
263 | <th> | ||
264 | <div class="input-group"> | ||
265 | Address | ||
266 | <button class="address-toggle">Toggle</button> | ||
267 | </div> | ||
268 | </th> | ||
269 | <th> | ||
270 | <div class="input-group"> | ||
271 | Private Key | ||
272 | <button class="private-key-toggle">Toggle</button> | ||
273 | </div> | ||
274 | </th> | ||
275 | </thead> | ||
276 | <tbody class="addresses"> | ||
277 | <tr><td> </td><td> </td><td> </td></tr> | ||
278 | <tr><td> </td><td> </td><td> </td></tr> | ||
279 | <tr><td> </td><td> </td><td> </td></tr> | ||
280 | <tr><td> </td><td> </td><td> </td></tr> | ||
281 | <tr><td> </td><td> </td><td> </td></tr> | ||
282 | </tbody> | ||
283 | </table> | ||
284 | </div> | ||
285 | </div> | ||
286 | <span>Show next </button> | ||
287 | <input type="number" class="rows-to-add" value="20"> | ||
288 | <button class="more">Show</button> | ||
289 | |||
290 | <hr> | ||
291 | |||
292 | <div class="row"> | ||
293 | <div class="col-md-12"> | ||
294 | <h2>More info</h2> | ||
295 | <h3>BIP39 <span class="small">Mnemonic code for generating deterministic keys</span></h3> | ||
296 | <p> | ||
297 | Read more at the | ||
298 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki">official BIP39 spec</a> | ||
299 | </p> | ||
300 | <h3>BIP32 <span class="small">Hierarchical Deterministic Wallets</span></h3> | ||
301 | <p> | ||
302 | Read more at the | ||
303 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki" target="_blank">official BIP32 spec</a> | ||
304 | and see the demo at | ||
305 | <a href="http://bip32.org/" target="_blank">bip32.org</a> | ||
306 | </p> | ||
307 | <h3>BIP44 <span class="small">Multi-Account Hierarchy for Deterministic Wallets</span></h3> | ||
308 | <p> | ||
309 | Read more at the | ||
310 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki" target="_blank">official BIP44 spec</a> | ||
311 | </p> | ||
312 | <h3>Private Keys</h3> | ||
313 | <p> | ||
314 | Use private keys at | ||
315 | <a href="https://brainwallet.github.io/" target="_blank">brainwallet.org</a>, | ||
316 | but be careful - it can be easy to make mistakes if you | ||
317 | don't know what you're doing | ||
318 | </p> | ||
319 | </div> | ||
320 | </div> | ||
321 | |||
322 | <hr> | ||
323 | |||
324 | <div class="row"> | ||
325 | <div class="col-md-12"> | ||
326 | |||
327 | <h2>Offline Usage</h2> | ||
328 | |||
329 | <p> | ||
330 | You can use this tool without having to be online. | ||
331 | </p> | ||
332 | <p> | ||
333 | In your browser, select file save-as, and save this page | ||
334 | as a file. | ||
335 | </p> | ||
336 | <p> | ||
337 | Double-click that file to open it in a browser | ||
338 | on any offline computer. | ||
339 | </p> | ||
340 | <p> | ||
341 | Alternatively, download it from | ||
342 | <a href="https://github.com/dcpos/bip39"> | ||
343 | https://github.com/dcpos/bip39 | ||
344 | </a> | ||
345 | |||
346 | </div> | ||
347 | </div> | ||
348 | |||
349 | <hr> | ||
350 | |||
351 | <div class="row"> | ||
352 | <div class="col-md-12"> | ||
353 | |||
354 | <h2>This project is 100% open-source code</h2> | ||
355 | |||
356 | <p> | ||
357 | <span>Get the source code at - </span> | ||
358 | <a href="https://github.com/dcpos/bip39" target="_blank"> | ||
359 | https://github.com/dcpos/bip39 | ||
360 | </a> | ||
361 | </p> | ||
362 | |||
363 | <h3>Libraries</h3> | ||
364 | |||
365 | <p> | ||
366 | <span>BitcoinJS - </span> | ||
367 | <a href="https://github.com/bitcoinjs/bitcoinjs-lib" target="_blank"> | ||
368 | https://github.com/bitcoinjs/bitcoinjs-lib | ||
369 | </a> | ||
370 | </p> | ||
371 | |||
372 | <p> | ||
373 | <span>jsBIP39 - </span> | ||
374 | <a href="https://github.com/iancoleman/jsbip39" target="_blank"> | ||
375 | https://github.com/iancoleman/jsbip39 | ||
376 | </a> | ||
377 | </p> | ||
378 | |||
379 | <p> | ||
380 | <span>asmCrypto - </span> | ||
381 | <a href="https://github.com/vibornoff/asmcrypto.js" target="_blank"> | ||
382 | https://github.com/vibornoff/asmcrypto.js | ||
383 | </a> | ||
384 | </p> | ||
385 | |||
386 | <p> | ||
387 | <span>jQuery - </span> | ||
388 | <a href="https://jquery.com/" target="_blank"> | ||
389 | https://jquery.com/ | ||
390 | </a> | ||
391 | </p> | ||
392 | |||
393 | <p> | ||
394 | <span>Twitter Bootstrap - </span> | ||
395 | <a href="http://getbootstrap.com/" target="_blank"> | ||
396 | http://getbootstrap.com/ | ||
397 | </a> | ||
398 | </p> | ||
399 | |||
400 | </div> | ||
401 | </div> | ||
402 | |||
245 | </div> | 403 | </div> |
246 | 404 | ||
247 | <div class="feedback-container"> | 405 | <div class="feedback-container"> |