From 3af2954aeee7e849fcfa3c61b016793a59ab585e Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Sat, 27 Sep 2014 23:29:03 +1000 Subject: [PATCH] bip39-standalone updated Latest asmcrypto.js and jsbip39.js Unminified bootstrap and jquery --- bip39-standalone.html | 18639 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 18071 insertions(+), 568 deletions(-) diff --git a/bip39-standalone.html b/bip39-standalone.html index 6125ce3..034a56d 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -3,373 +3,17857 @@ BIP39 - Mnemonic Code - + + + + + + + + +
+ +

Mnemonic Code Converter

+
+
+
+

Mnemonic

+
+
+
+

You can enter an existing BIP39 mnemonic, or generate a new random one. Typing your own twelve words will probably not work how you expect, since the words require a particular structure (the last word is a checksum)

+

For more info see the BIP39 spec

+
+
+ +
+ +
+
+
+ +
+
+ + + + +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+

Derivation Path

+ +
+
+
+
+
+
+

For more info see the BIP44 spec

+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+

For more info see the BIP32 spec

+
+
+ +
+ +
+
+
+
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+

Derived Addresses

+

Note these addreses are derived from the BIP32 Extended Key

+ + + + + + + + + + + + + +
+
+ Index   + +
+
+
+ Address   + +
+
+
+ Private Key   + +
+
   
   
   
   
   
+
+
+ Show next + + + +
+ +
+
+

More info

+

BIP39 Mnemonic code for generating deterministic keys

+

+ Read more at the + official BIP39 spec +

+

BIP32 Hierarchical Deterministic Wallets

+

+ Read more at the + official BIP32 spec + and see the demo at + bip32.org +

+

BIP44 Multi-Account Hierarchy for Deterministic Wallets

+

+ Read more at the + official BIP44 spec +

+

Private Keys

+

+ Use private keys at + brainwallet.org, + but be careful - it can be easy to make mistakes if you + don't know what you're doing +

+
+
+ +
+ +
+
+ +

Offline Usage

+ +

+ You can use this tool without having to be online. +

+

+ In your browser, select file save-as, and save this page + as a file. +

+

+ Double-click that file to open it in a browser + on any offline computer. +

+

+ Alternatively, download it from + + https://github.com/dcpos/bip39 + + +

+
+ +
+ +
+
+ +

This project is 100% open-source code

+ +

+ Get the source code at - + + https://github.com/dcpos/bip39 + +

+ +

Libraries

+ +

+ BitcoinJS - + + https://github.com/bitcoinjs/bitcoinjs-lib + +

+ +

+ jsBIP39 - + + https://github.com/iancoleman/jsbip39 + +

+ +

+ asmCrypto - + + https://github.com/vibornoff/asmcrypto.js + +

+ +

+ jQuery - + + https://jquery.com/ + +

+ +

+ Twitter Bootstrap - + + http://getbootstrap.com/ + +

+ +
+
+ +
+ +
+ +
+ + + + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.affix') + var options = typeof option == 'object' && option - - + if (!data) $this.data('bs.affix', (data = new Affix(this, options))) + if (typeof option == 'string') data[option]() + }) + } - - + var old = $.fn.affix + + $.fn.affix = Plugin + $.fn.affix.Constructor = Affix + + + // AFFIX NO CONFLICT + // ================= + + $.fn.affix.noConflict = function () { + $.fn.affix = old + return this + } + + + // AFFIX DATA-API + // ============== + + $(window).on('load', function () { + $('[data-spy="affix"]').each(function () { + var $spy = $(this) + var data = $spy.data() + + data.offset = data.offset || {} - + if (data.offsetBottom) data.offset.bottom = data.offsetBottom + if (data.offsetTop) data.offset.top = data.offsetTop + + Plugin.call($spy, data) + }) + }) + +}(jQuery); + - - - - - - + + + + + + -- 2.41.0