mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-05 18:43:47 +00:00
add stash parameters
This commit is contained in:
@@ -1045,6 +1045,28 @@ bitcoinjs.bitcoin.networks.solarcoin = {
|
||||
wif: 0x92,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.stash = {
|
||||
messagePrefix: '\x18Stash Signed Message:\n',
|
||||
bip32: {
|
||||
public: 0x0488b21e,
|
||||
private: 0x0488ade4
|
||||
},
|
||||
pubKeyHash: 0x4c,
|
||||
scriptHash: 0x10,
|
||||
wif: 0xcc
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.stashtn = {
|
||||
messagePrefix: '\x18Stash Test Signed Message:\n',
|
||||
bip32: {
|
||||
public: 0x043587cf,
|
||||
private: 0x04358394
|
||||
},
|
||||
pubKeyHash: 0x8c,
|
||||
scriptHash: 0x13,
|
||||
wif: 0xef
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.stratis = {
|
||||
messagePrefix: '\x18Stratis Signed Message:\n',
|
||||
bip32: {
|
||||
|
||||
@@ -2356,6 +2356,20 @@
|
||||
setHdCoin(59);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "STASH - Stash",
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.stash;
|
||||
setHdCoin(0xC0C0);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "STASH - Stash Testnet",
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.stashtn;
|
||||
setHdCoin(0xCAFE);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "STRAT - Stratis",
|
||||
onSelect: function() {
|
||||
|
||||
@@ -296,7 +296,7 @@ describe('BIP39 Tool Tests', function() {
|
||||
|
||||
beforeEach(function(done) {
|
||||
driver = newDriver();
|
||||
driver.get(url).then(done);
|
||||
driver.get(url).then(done);
|
||||
});
|
||||
|
||||
// Close the website after each test is run (so that it is opened fresh each time)
|
||||
@@ -1089,6 +1089,20 @@ it('Allows selection of Solarcoin', function(done) {
|
||||
};
|
||||
testNetwork(done, params);
|
||||
});
|
||||
it('Allows selection of stash', function(done) {
|
||||
var params = {
|
||||
selectText: "STASH - Stash",
|
||||
firstAddress: "XxwAsWB7REDKmAvHA85SbEZQQtpxeUDxS3",
|
||||
};
|
||||
testNetwork(done, params);
|
||||
});
|
||||
it('Allows selection of stash testnet', function(done) {
|
||||
var params = {
|
||||
selectText: "STASH - Stash Testnet",
|
||||
firstAddress: "YdbhtMuGsPSkE6bPdNTHoFSszQKmK4S5LT",
|
||||
};
|
||||
testNetwork(done, params);
|
||||
});
|
||||
it('Allows selection of Stratis', function(done) {
|
||||
var params = {
|
||||
selectText: "STRAT - Stratis",
|
||||
|
||||
Reference in New Issue
Block a user