diff options
author | Ian Coleman <ian@iancoleman.io> | 2021-02-11 02:13:23 +0000 |
---|---|---|
committer | Ian Coleman <ian@iancoleman.io> | 2021-02-11 02:34:38 +0000 |
commit | d9ad938b521ad316f5fb6a80f260b77b80a0e864 (patch) | |
tree | d89b46939007577d965f092d9f0fe8199bcc99f3 /tests | |
parent | f7f579f5f5239ef94d9fa34c77085bd19c5178e9 (diff) | |
download | BIP39-d9ad938b521ad316f5fb6a80f260b77b80a0e864.tar.gz BIP39-d9ad938b521ad316f5fb6a80f260b77b80a0e864.tar.zst BIP39-d9ad938b521ad316f5fb6a80f260b77b80a0e864.zip |
Add Cosmos Hub (ATOM) support
Closes #452, thanks @conr2d
Diffstat (limited to 'tests')
-rw-r--r-- | tests/spec/tests.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index f350fa7..7e553af 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -917,6 +917,16 @@ it('Allows selection of Aryacoin', function(done) { | |||
917 | }; | 917 | }; |
918 | testNetwork(done, params); | 918 | testNetwork(done, params); |
919 | }); | 919 | }); |
920 | it('Allows selection of Cosmos Hub', function(done) { | ||
921 | var params = { | ||
922 | selectText: "ATOM - Cosmos Hub", | ||
923 | phrase: "abandon abandon ability", | ||
924 | firstAddress: "cosmos17mkch9syem8gtf6wh7p38thdgav6dwezpkylny", | ||
925 | firstPubKey: "cosmospub1addwnpepq0sgn66ty4suk5vx3hsmxxqd5z3amegqwlu59funrzyz5u8r9758qhl84ys", | ||
926 | firstPrivKey: "zUnETPxmE2vkHzLHTAlO9wg8PL/GEEBc1I4yVwvSV8M=", | ||
927 | }; | ||
928 | testNetwork(done, params); | ||
929 | }); | ||
920 | it('Allows selection of Auroracoin', function(done) { | 930 | it('Allows selection of Auroracoin', function(done) { |
921 | var params = { | 931 | var params = { |
922 | selectText: "AUR - Auroracoin", | 932 | selectText: "AUR - Auroracoin", |