mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-18 08:22:16 +00:00
Add Groestlcoin
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user