mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-18 08:22:16 +00:00
@@ -1429,4 +1429,26 @@ bitcoinjs.bitcoin.networks.phore = {
|
|||||||
pubKeyHash: 0x37,
|
pubKeyHash: 0x37,
|
||||||
scriptHash: 0x0D,
|
scriptHash: 0x0D,
|
||||||
wif: 0xD4,
|
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);
|
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",
|
name: "BRIT - Britcoin",
|
||||||
onSelect: function() {
|
onSelect: function() {
|
||||||
|
|||||||
@@ -1355,6 +1355,20 @@ it('Allows selection of Phore', function(done) {
|
|||||||
};
|
};
|
||||||
testNetwork(done, params);
|
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
|
// BIP39 seed is set from phrase
|
||||||
it('Sets the bip39 seed from the prhase', function(done) {
|
it('Sets the bip39 seed from the prhase', function(done) {
|
||||||
|
|||||||
Reference in New Issue
Block a user