X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=bip39-standalone.html;h=ce82c30d7f8bb9d99357199cdb03901bf110abda;hb=d6cedc9405e5f5751c8635f59ed3ff6876460776;hp=c7beb3e3e9d7ad667d95d834fda8246ac98d4f7a;hpb=212b1b46762e4db5ffd598ca242f7b5c49f02002;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/bip39-standalone.html b/bip39-standalone.html index c7beb3e..ce82c30 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -3,436 +3,17881 @@ 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 + +

+ +

+ sjcl - + + https://github.com/bitwiseshiftleft/sjcl + +

+ +

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

+ +

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

+ +
+
+ +
+ +
+
Loading...
+
+ + + + - - + // AFFIX PLUGIN DEFINITION + // ======================= - - + 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); + + if (isMyAddress(address)) { + var output = txid + ':' + i - - + + return out.substr(0, sjcl.bitArray.bitLength(arr)/4);//.replace(/(.{8})/g, "$1 "); + }, + /** Convert from a hex string to a bitArray. */ + toBits: function (str) { + var i, out=[], len; + str = str.replace(/\s|0x/g, ""); + len = str.length; + str = str + "00000000"; + for (i=0; i--> - + + + + + +