mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-28 21:30:41 +00:00
Merge pull request #186 from williamersatz/master
Implemented support for Beetle Coin
This commit is contained in:
@@ -361,3 +361,14 @@ bitcoinjs.bitcoin.networks.blackcoin = {
|
|||||||
scriptHash: 0x55,
|
scriptHash: 0x55,
|
||||||
wif: 0x99
|
wif: 0x99
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bitcoinjs.bitcoin.networks.beetlecoin = {
|
||||||
|
messagePrefix: '\x19Beetlecoin Signed Message:\n',
|
||||||
|
bip32: {
|
||||||
|
public: 0x0488b21e,
|
||||||
|
private: 0x0488ade4
|
||||||
|
},
|
||||||
|
pubKeyHash: 0x1A,
|
||||||
|
scriptHash: 0x55,
|
||||||
|
wif: 0x99,
|
||||||
|
};
|
||||||
|
|||||||
@@ -1522,6 +1522,14 @@
|
|||||||
setHdCoin(0);
|
setHdCoin(0);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "BEET - Beetlecoin",
|
||||||
|
segwitAvailable: false,
|
||||||
|
onSelect: function() {
|
||||||
|
network = bitcoinjs.bitcoin.networks.beetlecoin;
|
||||||
|
setHdCoin(800);
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "BCH - Bitcoin Cash",
|
name: "BCH - Bitcoin Cash",
|
||||||
segwitAvailable: false,
|
segwitAvailable: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user