Merge pull request #233 from skironDotNet/hushcoin

Add HUSH coin, same as BTCZ but diffrent bip44 coin type
This commit is contained in:
iancoleman
2018-07-26 09:29:34 +10:00
committed by GitHub
2 changed files with 18 additions and 0 deletions

View File

@@ -1233,6 +1233,17 @@ bitcoinjs.bitcoin.networks.bitcoinz = {
wif: 0x80,
};
bitcoinjs.bitcoin.networks.hush = {
messagePrefix: '\x18Hush Signed Message:\n',
bip32: {
public: 0x0488B21E,
private: 0x0488ADE4,
},
pubKeyHash: 0x1CB8,
scriptHash: 0x1CBD,
wif: 0x80,
};
bitcoinjs.bitcoin.networks.zclassic = {
messagePrefix: '\x18Zcash Signed Message:\n',
bip32: {

View File

@@ -1967,6 +1967,13 @@
network = bitcoinjs.bitcoin.networks.helleniccoin;
setHdCoin(168);
},
},
{
name: "HUSH - Hush",
onSelect: function() {
network = bitcoinjs.bitcoin.networks.hush;
setHdCoin(197);
},
},
{
name: "INSN - Insane",