Merge branch 'master' into eosio-support

This commit is contained in:
iancoleman
2019-06-11 09:37:53 +10:00
committed by GitHub
3 changed files with 82 additions and 5 deletions

View File

@@ -419,6 +419,13 @@ it('Allows selection of litecoin', function(done) {
};
testNetwork(done, params);
});
it('Allows selection of litecoin testnet', function(done) {
var params = {
selectText: "LTCt - Litecoin Testnet",
firstAddress: "mucaU5iiDaJDb69BHLeDv8JFfGiyg2nJKi",
};
testNetwork(done, params);
});
it('Allows selection of ripple', function(done) {
var params = {
selectText: "XRP - Ripple",
@@ -434,6 +441,13 @@ it('Allows selection of dogecoin', function(done) {
};
testNetwork(done, params);
});
it('Allows selection of dogecoin testnet', function(done) {
var params = {
selectText: "DOGEt - Dogecoin testnet",
firstAddress: "niHnSJKHdwDyDxRMLBJrtNqpvHEsAFWe6B",
};
testNetwork(done, params);
});
it('Allows selection of denarius', function(done) {
var params = {
selectText: "DNR - Denarius",
@@ -486,7 +500,7 @@ it('Allows selection of clam', function(done) {
it('Allows selection of crown', function(done) {
var params = {
selectText: "CRW - Crown (Legacy)",
firstAddress: "18pWSwSUAQdiwMHUfFZB1fM2xue9X1FqE5",
firstAddress: "18pWSwSUAQdiwMHUfFZB1fM2xue9X1FqE5",
};
testNetwork(done, params);
});
@@ -1480,6 +1494,13 @@ it('Allows selection of Ethersocial Network', function(done) {
};
testNetwork(done, params);
});
it('Allows selection of Monkey Project', function(done) {
var params = {
selectText: "MONK - Monkey Project",
firstAddress: "MnLrcnnUzKnf7TzufjRe5DLZqQJz18oYyu",
};
testNetwork(done, params);
});
// BIP39 seed is set from phrase
it('Sets the bip39 seed from the prhase', function(done) {