Merge pull request #186 from williamersatz/master

Implemented support for Beetle Coin
This commit is contained in:
iancoleman
2018-03-27 10:20:57 +11:00
committed by GitHub
2 changed files with 19 additions and 0 deletions

View File

@@ -361,3 +361,14 @@ bitcoinjs.bitcoin.networks.blackcoin = {
scriptHash: 0x55,
wif: 0x99
};
bitcoinjs.bitcoin.networks.beetlecoin = {
messagePrefix: '\x19Beetlecoin Signed Message:\n',
bip32: {
public: 0x0488b21e,
private: 0x0488ade4
},
pubKeyHash: 0x1A,
scriptHash: 0x55,
wif: 0x99,
};

View File

@@ -1522,6 +1522,14 @@
setHdCoin(0);
},
},
{
name: "BEET - Beetlecoin",
segwitAvailable: false,
onSelect: function() {
network = bitcoinjs.bitcoin.networks.beetlecoin;
setHdCoin(800);
},
},
{
name: "BCH - Bitcoin Cash",
segwitAvailable: false,