aboutsummaryrefslogtreecommitdiff
path: root/bip39-standalone.html
diff options
context:
space:
mode:
authorRobert Johnson <sk8boy189@gmail.com>2014-09-29 22:50:49 -0500
committerRobert Johnson <sk8boy189@gmail.com>2014-09-29 22:50:49 -0500
commit507a9c2925dd46f0cbba4c53d2a95cd9ed01dbcf (patch)
tree2fa0b8246391fab6d7200852bb5adaba82d2f534 /bip39-standalone.html
parentddc8e877473f60233f3d80bf19decdd31175b07f (diff)
downloadBIP39-507a9c2925dd46f0cbba4c53d2a95cd9ed01dbcf.tar.gz
BIP39-507a9c2925dd46f0cbba4c53d2a95cd9ed01dbcf.tar.zst
BIP39-507a9c2925dd46f0cbba4c53d2a95cd9ed01dbcf.zip
updated standalone
Diffstat (limited to 'bip39-standalone.html')
-rw-r--r--bip39-standalone.html16
1 files changed, 15 insertions, 1 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html
index ce82c30..debc6f2 100644
--- a/bip39-standalone.html
+++ b/bip39-standalone.html
@@ -6409,6 +6409,16 @@ button.close {
6409 <div class="col-md-12"> 6409 <div class="col-md-12">
6410 <h2>Derived Addresses</h2> 6410 <h2>Derived Addresses</h2>
6411 <p>Note these addreses are derived from the <strong>BIP32 Extended Key</strong></p> 6411 <p>Note these addreses are derived from the <strong>BIP32 Extended Key</strong></p>
6412 <div class="form-group">
6413 <label for="network-address-type" class="col-sm-2 control-label">Coin</label>
6414 <div class="col-sm-10">
6415 <select id="network-address-type" class="network form-control">
6416 <option value="bitcoin">Bitcoin</option>
6417 <option value="bitcoin-testnet">Bitcoin Testnet</option>
6418 <option value="litecoin">Litecoin</option>
6419 <option value="dogecoin">Dogecoin</option>
6420 </select>
6421 </div>
6412 <table class="table table-striped"> 6422 <table class="table table-striped">
6413 <thead> 6423 <thead>
6414 <th> 6424 <th>
@@ -33845,6 +33855,7 @@ var Mnemonic = function(language) {
33845 DOM.network = $(".network"); 33855 DOM.network = $(".network");
33846 DOM.phraseNetwork = $("#network-phrase"); 33856 DOM.phraseNetwork = $("#network-phrase");
33847 DOM.bip44Network = $("#network-bip44"); 33857 DOM.bip44Network = $("#network-bip44");
33858 DOM.addressNetwork = $("#network-address-type");
33848 DOM.phrase = $(".phrase"); 33859 DOM.phrase = $(".phrase");
33849 DOM.passphrase = $(".passphrase"); 33860 DOM.passphrase = $(".passphrase");
33850 DOM.generate = $(".generate"); 33861 DOM.generate = $(".generate");
@@ -33918,10 +33929,13 @@ var Mnemonic = function(language) {
33918 } 33929 }
33919 else if (n == "dogecoin") { 33930 else if (n == "dogecoin") {
33920 network = Bitcoin.networks.dogecoin; 33931 network = Bitcoin.networks.dogecoin;
33921 disableBip44Tab(); 33932 //disableBip44Tab();
33922 } 33933 }
33923 DOM.phraseNetwork.val(n); 33934 DOM.phraseNetwork.val(n);
33924 DOM.bip44Network.val(n); 33935 DOM.bip44Network.val(n);
33936 if(e.target != DOM.addressNetwork.dom){
33937 DOM.addressNetwork.val(n);
33938 }
33925 delayedPhraseChanged(); 33939 delayedPhraseChanged();
33926 } 33940 }
33927 33941