From 4218c87458e07a2af23535103b7900159b83846e Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Tue, 29 May 2018 11:46:48 +1000 Subject: [PATCH] Release v0.3.7 --- bip39-standalone.html | 521 +++++++++++++++++++++++++----------------- changelog.md | 12 + src/index.html | 2 +- 3 files changed, 329 insertions(+), 206 deletions(-) diff --git a/bip39-standalone.html b/bip39-standalone.html index 35a88d7..a559e9d 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html @@ -6866,6 +6866,9 @@ button.close { overflow-x: scroll; font-family: monospace; } +.visual-privacy .private-data { + display: none; +} @@ -6877,7 +6880,7 @@ button.close {

Mnemonic Code Converter

-

v0.3.6

+

v0.3.7


@@ -6931,7 +6934,7 @@ button.close {
- + -
+
-
+
-
 
+
 
-
 
+
 
+ Hide all private info + +
+
@@ -7022,19 +7034,19 @@ button.close {
- +
- +
- +
@@ -7048,7 +7060,7 @@ button.close {
- +
@@ -7301,7 +7313,7 @@ button.close { Account Extended Private Key
- +
@@ -7368,79 +7380,89 @@ button.close {

-
-
-

- For more info see the - BIP84 spec. -

-
-
- -
- + -
- +
+
- +

+ For more info see the + BIP84 spec. +

-
-
- -
- +
+ +
+ +
-
-
- -
- +
+ +
+ +
-
-
- -
-

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

+
+ +
+ +
-
-
- -
- +
+ +
+ +
-
-
- -
- +
+ +
+

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.

+
+ +
+ +
-
-
- -
- +
+ +
+ +
+
+
+ +
+

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

+
+
+
+ +
+ +
@@ -7450,7 +7472,7 @@ button.close {
- +
@@ -7496,7 +7518,7 @@ button.close { Encrypt private keys using BIP38 and this password: - + Enabling BIP38 means each key will take several minutes to generate.
@@ -7761,7 +7783,7 @@ button.close { - + + +bitcoinjs.bitcoin.networks.xuez = { + messagePrefix: 'unused', + bip32: { + public: 0x022d2533, + private: 0x0221312b + }, + pubKeyHash: 0x4b, + scriptHash: 0x12, + wif: 0xd4 +}; + +bitcoinjs.bitcoin.networks.bitcoinprivate = { + messagePrefix: '\x18BitcoinPrivate Signed Message:\n', + bip32: { + public: 0x0488B21E, + private: 0x0488ADE4, + }, + pubKeyHash: 0x1325, + scriptHash: 0x13AF, + wif: 0x80, +}; + +bitcoinjs.bitcoin.networks.bitcoinz = { + messagePrefix: '\x18BitcoinZ Signed Message:\n', + bip32: { + public: 0x0488B21E, + private: 0x0488ADE4, + }, + pubKeyHash: 0x1CB8, + scriptHash: 0x1CBD, + wif: 0x80, +}; + +bitcoinjs.bitcoin.networks.zclassic = { + messagePrefix: '\x18Zcash Signed Message:\n', + bip32: { + public: 0x0488B21E, + private: 0x0488ADE4, + }, + pubKeyHash: 0x1CB8, + scriptHash: 0x1CBD, + wif: 0x80, +}; + +bitcoinjs.bitcoin.networks.zencash = { + messagePrefix: '\x18Zcash Signed Message:\n', + bip32: { + public: 0x0488B21E, + private: 0x0488ADE4, + }, + pubKeyHash: 0x2089, + scriptHash: 0x2096, + wif: 0x80, +}; + +bitcoinjs.bitcoin.networks.energi = { + messagePrefix: 'DarkCoin Signed Message:\n', + bip32: { + public: 0x03B8C856, + private: 0xD7DC6E9F, + }, + pubKeyHash: 0x21, + scriptHash: 0x35, + wif: 0x6a, +};