diff options
author | iancoleman <1281387+iancoleman@users.noreply.github.com> | 2020-10-02 11:25:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 11:25:17 +1000 |
commit | 42e00ef56a00c304090c54ef05ff1fc0dcb148b6 (patch) | |
tree | af7707b6885c06794179a7041828a9b3ceccb87c /tests | |
parent | 8dbf7d5837949c56c3c2824cd5382068e439af17 (diff) | |
parent | 995bc58791ddbb59e9b3d0d75c11c1c058e24071 (diff) | |
download | BIP39-42e00ef56a00c304090c54ef05ff1fc0dcb148b6.tar.gz BIP39-42e00ef56a00c304090c54ef05ff1fc0dcb148b6.tar.zst BIP39-42e00ef56a00c304090c54ef05ff1fc0dcb148b6.zip |
Merge pull request #442 from mvillalba/master
Add Binance Smart Chain (BSC) support
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 92df64a..58318db 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -2275,6 +2275,16 @@ it('Allows selection of Scribe', function(done) { | |||
2275 | }; | 2275 | }; |
2276 | testNetwork(done, params); | 2276 | testNetwork(done, params); |
2277 | }); | 2277 | }); |
2278 | it('Allows selection of Binance Smart Chain', function(done) { | ||
2279 | var params = { | ||
2280 | selectText: "BSC - Binance Smart Chain", | ||
2281 | phrase: "abandon abandon ability", | ||
2282 | firstAddress: "0xe5815d5902Ad612d49283DEdEc02100Bd44C2772", | ||
2283 | firstPubKey: "0x03e723e5b3aa7d72213f01139aa4783e1b34f74e1a04534e3fd8e29bfe2768af8a", | ||
2284 | firstPrivKey: "0x8f253078b73d7498302bb78c171b23ce7a8fb511987d2b2702b731638a4a15e7", | ||
2285 | }; | ||
2286 | testNetwork(done, params); | ||
2287 | }); | ||
2278 | 2288 | ||
2279 | // BIP39 seed is set from phrase | 2289 | // BIP39 seed is set from phrase |
2280 | it('Sets the bip39 seed from the prhase', function(done) { | 2290 | it('Sets the bip39 seed from the prhase', function(done) { |