From de8e5bc11fb7024ee403db7931e3ae082d7f968e Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Wed, 3 Jan 2018 10:54:10 +1100 Subject: [PATCH] Release v0.3.2 --- bip39-standalone.html | 302 ++++++++++++++++++++++++++++++++++++------ changelog.md | 7 + src/index.html | 2 +- 3 files changed, 271 insertions(+), 40 deletions(-) diff --git a/bip39-standalone.html b/bip39-standalone.html index 27b60ef..d5c207f 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -6858,6 +6858,14 @@ button.close { top: 5px; right: 5px; } +.csv { + margin-top: 20px; + margin-bottom: 20px; + white-space: pre; + overflow-wrap: normal; + overflow-x: scroll; + font-family: monospace; +} @@ -6869,7 +6877,7 @@ button.close {

Mnemonic Code Converter

-

v0.3.1

+

v0.3.2


@@ -7058,6 +7066,9 @@ button.close {
  • BIP49
  • +
  • + BIP84 +
  • BIP141
  • @@ -7341,6 +7352,86 @@ button.close {
    +
    +
    +
    +
    +
    +

    + For more info see the + BIP84 spec. +

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

    The account extended keys can be used for importing to most BIP84 compatible wallets.

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

    The BIP32 derivation path and extended keys are the basis for the derived addresses.

    +
    +
    +
    + +
    + +
    +
    +
    +
    @@ -7374,42 +7465,59 @@ button.close {
    -
    - - - - - - - - - - - - - - -
    -
    - Path   - -
    -
    -
    - Address   - -
    -
    -
    - Public Key   - -
    -
    -
    - Private Key   - -
    -
        
        
        
        
        
    + +
    +
    +
    + + + + + + + + + + + + + + +
    +
    + Path   + +
    +
    +
    + Address   + +
    +
    +
    + Public Key   + +
    +
    +
    + Private Key   + +
    +
        
        
        
        
        
    +
    +
    +
    +
    + +
    +
    Show @@ -50855,6 +50963,18 @@ bitcoinjs.bitcoin.networks.myriadcoin = { wif: 0xb2 }; + +bitcoinjs.bitcoin.networks.onixcoin = { + messagePrefix: 'unused', + bip32: { + public: 0x049d7cb2, + private: 0x049d7878 + }, + pubKeyHash: 0x4B, + scriptHash: 0x05, + wif: 0x80 +}; + bitcoinjs.bitcoin.networks.pivx = { messagePrefix: 'unused', bip32: { @@ -50942,6 +51062,17 @@ bitcoinjs.bitcoin.networks.litecoinXprv = { scriptHash: 0x32, wif: 0xb0 }; + +bitcoinjs.bitcoin.networks.komodo = { + messagePrefix: '\x18Komodo Signed Message:\n', + bip32: { + public: 0x0488B21E, + private: 0x0488ADE4 + }, + pubKeyHash: 0x3c, + scriptHash: 0x55, + wif: 0xbc +};