Add Groestlcoin

This commit is contained in:
HashEngineering
2019-08-29 19:55:56 -07:00
parent 5b689bd6e7
commit 76120cb0b4
7 changed files with 46927 additions and 3 deletions

View File

@@ -1594,6 +1594,20 @@ it('Allows selection of Wagerr', function(done) {
};
testNetwork(done, params);
});
it('Allows selection of Groestlcoin', function(done) {
var params = {
selectText: "GRS - Groestlcoin",
firstAddress: "FZycsFvZ1eH1hbtyjBpAgJSukVw1bN6PBN",
};
testNetwork(done, params);
});
it('Allows selection of Groestlcoin Testnet', function(done) {
var params = {
selectText: "GRS - Groestlcoin Testnet",
firstAddress: "mucaU5iiDaJDb69BHLeDv8JFfGiygRPne9",
};
testNetwork(done, params);
});
// BIP39 seed is set from phrase
it('Sets the bip39 seed from the prhase', function(done) {
@@ -4057,6 +4071,27 @@ it('Shows litecoin BIP49 addresses', function(done) {
});
});
it('Shows Groestlcoin BIP49 addresses', function(done) {
driver.findElement(By.css('.phrase'))
.sendKeys('abandon abandon ability');
selectNetwork("GRS - Groestlcoin");
driver.findElement(By.css('#bip49-tab a'))
.click()
// bip49 addresses are shown
driver.sleep(generateDelay).then(function() {
driver.findElement(By.css('#bip49 .available'))
.getAttribute("class")
.then(function(classes) {
expect(classes).not.toContain("hidden");
// check first address
getFirstAddress(function(address) {
expect(address).toBe("3HXSCZwCypLyixMsF4Z1sN49noJtrm8gnX");
done();
});
});
});
});
it('Can use root keys to generate segwit table rows', function(done) {
// segwit uses ypub / zpub instead of xpub but the root key should still
// be valid regardless of the encoding used to import that key.