mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-05 18:43:47 +00:00
Added support for Blocknode
This commit is contained in:
@@ -1418,4 +1418,26 @@ bitcoinjs.bitcoin.networks.phore = {
|
||||
pubKeyHash: 0x37,
|
||||
scriptHash: 0x0D,
|
||||
wif: 0xD4,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.blocknode = {
|
||||
messagePrefix: '\x18Blocknode Signed Message:\n',
|
||||
bip32: {
|
||||
public: 0x0488b21e,
|
||||
private: 0x0488ade4
|
||||
},
|
||||
pubKeyHash: 0x19,
|
||||
scriptHash: 0x3F,
|
||||
wif: 0x4b,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.blocknode_testnet = {
|
||||
messagePrefix: '\x18Blocknode Testnet Signed Message:\n',
|
||||
bip32: {
|
||||
public: 0x043587cf,
|
||||
private: 0x04358394
|
||||
},
|
||||
pubKeyHash: 0x55,
|
||||
scriptHash: 0x7d,
|
||||
wif: 0x89,
|
||||
};
|
||||
@@ -1702,6 +1702,20 @@
|
||||
setHdCoin(10);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "BND - Blocknode",
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.blocknode;
|
||||
setHdCoin(2941);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "tBND - Blocknode Testnet",
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.blocknode_testnet;
|
||||
setHdCoin(1);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "BRIT - Britcoin",
|
||||
onSelect: function() {
|
||||
|
||||
@@ -1348,6 +1348,20 @@ it('Allows selection of Phore', function(done) {
|
||||
};
|
||||
testNetwork(done, params);
|
||||
});
|
||||
it('Allows selection of Blocknode', function(done) {
|
||||
var params = {
|
||||
selectText: "BND - Blocknode",
|
||||
firstAddress: "BG8xZSAur2jYLG9VXt8dYfkKxxeR7w9bSe",
|
||||
};
|
||||
testNetwork(done, params);
|
||||
});
|
||||
it('Allows selection of Blocknode Testnet', function(done) {
|
||||
var params = {
|
||||
selectText: "tBND - Blocknode Testnet",
|
||||
firstAddress: "bSptsFyDktFSKpWveRywJsDoJA2TC6qfHv",
|
||||
};
|
||||
testNetwork(done, params);
|
||||
});
|
||||
|
||||
// BIP39 seed is set from phrase
|
||||
it('Sets the bip39 seed from the prhase', function(done) {
|
||||
|
||||
Reference in New Issue
Block a user