ADD support MONK, LTCt, DOGEt

This commit is contained in:
Panagiotis David
2019-06-06 21:45:57 +03:00
committed by Panagiotis David
parent 22bb112ead
commit b85da0745a
3 changed files with 81 additions and 5 deletions

View File

@@ -408,6 +408,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",
@@ -423,6 +430,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",
@@ -475,7 +489,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);
});
@@ -1462,6 +1476,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) {