diff options
author | iancoleman <coleman.ian@gmail.com> | 2017-08-23 09:30:43 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-23 09:30:43 +1000 |
commit | e40acc3ab0e78ca3a9b63d0b1c9e16f804da104e (patch) | |
tree | 7f6f6e5dda6fb21eaf40435bce66a331ebc19556 /bip39-standalone.html | |
parent | f128bd58c49a64e2f9232c6cdd9dd7c3cf815b64 (diff) | |
parent | 56ad960105f082e958154c24ad49d25c1db2f4be (diff) | |
download | BIP39-e40acc3ab0e78ca3a9b63d0b1c9e16f804da104e.tar.gz BIP39-e40acc3ab0e78ca3a9b63d0b1c9e16f804da104e.tar.zst BIP39-e40acc3ab0e78ca3a9b63d0b1c9e16f804da104e.zip |
Merge pull request #92 from jonspock/master
Add maza coin, update PIVX in bip39-standalone.html
Diffstat (limited to 'bip39-standalone.html')
-rw-r--r-- | bip39-standalone.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html index 8c2c6a4..f183777 100644 --- a/bip39-standalone.html +++ b/bip39-standalone.html | |||
@@ -22160,6 +22160,17 @@ bitcoinjs.bitcoin.networks.dash = { | |||
22160 | wif: 0xcc, | 22160 | wif: 0xcc, |
22161 | }; | 22161 | }; |
22162 | 22162 | ||
22163 | bitcoinjs.bitcoin.networks.maza = { | ||
22164 | messagePrefix: "unused", | ||
22165 | bip32: { | ||
22166 | public: 0x0488b21e, | ||
22167 | private: 0x0488ade4 | ||
22168 | }, | ||
22169 | pubKeyHash: 0x32, | ||
22170 | scriptHash: 0x09, | ||
22171 | wif: 0xe0, | ||
22172 | }; | ||
22173 | |||
22163 | bitcoinjs.bitcoin.networks.dashtn = { | 22174 | bitcoinjs.bitcoin.networks.dashtn = { |
22164 | messagePrefix: "unused", | 22175 | messagePrefix: "unused", |
22165 | bip32: { | 22176 | bip32: { |
@@ -47354,6 +47365,15 @@ window.Entropy = new (function() { | |||
47354 | }, | 47365 | }, |
47355 | }, | 47366 | }, |
47356 | { | 47367 | { |
47368 | name: "MAZA - Maza", | ||
47369 | bip49available: false, | ||
47370 | onSelect: function() { | ||
47371 | network = bitcoinjs.bitcoin.networks.maza; | ||
47372 | setHdCoin(13); | ||
47373 | }, | ||
47374 | }, | ||
47375 | |||
47376 | { | ||
47357 | name: "NMC - Namecoin", | 47377 | name: "NMC - Namecoin", |
47358 | bip49available: false, | 47378 | bip49available: false, |
47359 | onSelect: function() { | 47379 | onSelect: function() { |