]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/commitdiff
compile
authordangershony <dan.gershony@gmail.com>
Tue, 23 Aug 2016 14:59:17 +0000 (15:59 +0100)
committerdangershony <dan.gershony@gmail.com>
Tue, 23 Aug 2016 14:59:17 +0000 (15:59 +0100)
bip39-standalone.html

index 5f9cf7cca095f2e3020ac255a9d3bea044bce6a2..30fbffec51d9a8d344fe0127a244afa8a179c79d 100644 (file)
@@ -13353,6 +13353,17 @@ bitcoin.networks.clam = {
   pubKeyHash: 0x89,
   wif: 0x85,
 };
+
+bitcoin.networks.dash = {
+  bip32: {
+    public: 0x0488b21e,
+    private: 0x0488ade4
+  },
+  pubKeyHash: 0x4e,
+  scriptHash: 0x10,
+  wif: 0xcc,
+};
+
 </script>
         <script>// Select components from sjcl to suit the crypto operations bip39 requires.
 
@@ -15414,6 +15425,13 @@ var Mnemonic = function(language) {
                 DOM.bip44coin.val(23);
             },
         },
+        {
+            name: "DASH",
+            onSelect: function() {
+                network = bitcoin.networks.dash;
+                DOM.bip44coin.val(5);
+            },
+        },
     ]
 
     init();