aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bip39-standalone.html32
-rw-r--r--changelog.md6
-rw-r--r--src/index.html2
3 files changed, 38 insertions, 2 deletions
diff --git a/bip39-standalone.html b/bip39-standalone.html
index ea27a1f..df3a460 100644
--- a/bip39-standalone.html
+++ b/bip39-standalone.html
@@ -118,7 +118,7 @@
118 <div class="container"> 118 <div class="container">
119 119
120 <h1 class="text-center">Mnemonic Code Converter</h1> 120 <h1 class="text-center">Mnemonic Code Converter</h1>
121 <p class="version">v0.2.0</p> 121 <p class="version">v0.2.1</p>
122 <hr> 122 <hr>
123 <div class="row"> 123 <div class="row">
124 <div class="col-md-12"> 124 <div class="col-md-12">
@@ -22291,6 +22291,17 @@ bitcoinjs.bitcoin.networks.zetacoin = {
22291 scriptHash: 0x09, 22291 scriptHash: 0x09,
22292 wif: 0xe0, 22292 wif: 0xe0,
22293} 22293}
22294
22295bitcoinjs.bitcoin.networks.myriadcoin = {
22296 messagePrefix: "unused",
22297 bip32: {
22298 public: 0x0488b21e,
22299 private: 0x0488ade4
22300 },
22301 pubKeyHash: 0x32,
22302 scriptHash: 0x00, // TODO set this correctly
22303 wif: 0xb2,
22304};
22294</script> 22305</script>
22295 <script>(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.ethUtil = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ 22306 <script>(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.ethUtil = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
22296(function (global){ 22307(function (global){
@@ -46871,6 +46882,9 @@ window.Entropy = new (function() {
46871 var option = $("<option>"); 46882 var option = $("<option>");
46872 option.attr("value", i); 46883 option.attr("value", i);
46873 option.text(network.name); 46884 option.text(network.name);
46885 if (network.name == "BTC - Bitcoin") {
46886 option.prop("selected", true);
46887 }
46874 DOM.phraseNetwork.append(option); 46888 DOM.phraseNetwork.append(option);
46875 } 46889 }
46876 } 46890 }
@@ -47217,6 +47231,14 @@ window.Entropy = new (function() {
47217 47231
47218 var networks = [ 47232 var networks = [
47219 { 47233 {
47234 name: "BCH - Bitcoin Cash",
47235 bip49available: false,
47236 onSelect: function() {
47237 network = bitcoinjs.bitcoin.networks.bitcoin;
47238 setHdCoin(145);
47239 },
47240 },
47241 {
47220 name: "BTC - Bitcoin", 47242 name: "BTC - Bitcoin",
47221 bip49available: true, 47243 bip49available: true,
47222 onSelect: function() { 47244 onSelect: function() {
@@ -47369,6 +47391,14 @@ window.Entropy = new (function() {
47369 }, 47391 },
47370 }, 47392 },
47371 { 47393 {
47394 name: "XMY - Myriadcoin",
47395 bip49available: false,
47396 onSelect: function() {
47397 network = bitcoinjs.bitcoin.networks.myriadcoin;
47398 setHdCoin(90);
47399 },
47400 },
47401 {
47372 name: "XRP - Ripple", 47402 name: "XRP - Ripple",
47373 bip49available: false, 47403 bip49available: false,
47374 onSelect: function() { 47404 onSelect: function() {
diff --git a/changelog.md b/changelog.md
index 9f10cd5..be83e3c 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,9 @@
1# 0.2.1
2
3* BTC is the default coin
4* Add myriadcoin
5* Add Bitcon Cash
6
1# 0.2.0 7# 0.2.0
2 8
3* BitcoinJS library upgrded to v3.1.1 9* BitcoinJS library upgrded to v3.1.1
diff --git a/src/index.html b/src/index.html
index c88367e..f39ad14 100644
--- a/src/index.html
+++ b/src/index.html
@@ -114,7 +114,7 @@
114 <div class="container"> 114 <div class="container">
115 115
116 <h1 class="text-center">Mnemonic Code Converter</h1> 116 <h1 class="text-center">Mnemonic Code Converter</h1>
117 <p class="version">v0.2.0</p> 117 <p class="version">v0.2.1</p>
118 <hr> 118 <hr>
119 <div class="row"> 119 <div class="row">
120 <div class="col-md-12"> 120 <div class="col-md-12">