]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blobdiff - src/js/bitcoinjs-extensions.js
Add ANON
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / src / js / bitcoinjs-extensions.js
index 054dd24b05fe51ffa1e3b07e2c4e024862308dc1..579c9d0e2bb91a5a58264e9e9f630985c16d00a8 100644 (file)
@@ -440,6 +440,17 @@ bitcoinjs.bitcoin.networks.bitcoinplus = {
   wif: 0x99,
 };
 
+bitcoinjs.bitcoin.networks.bitcloud = {
+  messagePrefix: '\x18BitCloud Signed Message:\n',
+  bip32: {
+    public: 0x0488B21E,
+    private: 0x0488ADE4,
+  },
+  pubKeyHash: 0x19,
+  scriptHash: 0x05,
+  wif: 0x99,
+};
+
 bitcoinjs.bitcoin.networks.bitcore = {
   messagePrefix: '\x18BitCore Signed Message:\n',
   bip32: {
@@ -847,6 +858,17 @@ bitcoinjs.bitcoin.networks.lynx = {
   wif: 0xad,
 };
 
+bitcoinjs.bitcoin.networks.megacoin = {
+  messagePrefix: '\x18Megacoin Signed Message:\n',
+  bip32: {
+    public: 0x0488B21E,
+    private: 0x0488ADE4,
+  },
+  pubKeyHash: 0x32,
+  scriptHash: 0x05,
+  wif: 0xB2,
+};
+
 bitcoinjs.bitcoin.networks.minexcoin = {
   messagePrefix: '\x18Bitcoin Signed Message:\n',
   bip32: {
@@ -1353,3 +1375,14 @@ bitcoinjs.bitcoin.networks.artax = {
   scriptHash: 0x1CBD,
   wif: 0x97,
 };
+
+bitcoinjs.bitcoin.networks.anon = {
+       messagePrefix: '\x18ANON Signed Message:\n',
+       bip32: {
+               public: 0x0488b21e,
+               private: 0x0488ade4
+       },
+       pubKeyHash: 0x0582,
+       scriptHash: 0x5389,
+       wif: 0x80
+};
\ No newline at end of file