mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-05 18:43:47 +00:00
Add maza coin
This commit is contained in:
@@ -22160,6 +22160,17 @@ bitcoinjs.bitcoin.networks.dash = {
|
||||
wif: 0xcc,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.maza = {
|
||||
messagePrefix: "unused",
|
||||
bip32: {
|
||||
public: 0x0488b21e,
|
||||
private: 0x0488ade4
|
||||
},
|
||||
pubKeyHash: 0x32,
|
||||
scriptHash: 0x09,
|
||||
wif: 0xe0,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.dashtn = {
|
||||
messagePrefix: "unused",
|
||||
bip32: {
|
||||
@@ -22302,6 +22313,28 @@ bitcoinjs.bitcoin.networks.myriadcoin = {
|
||||
scriptHash: 0x00, // TODO set this correctly
|
||||
wif: 0xb2,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.pivx = {
|
||||
messagePrefix: "unused",
|
||||
bip32: {
|
||||
public: 0x022d2533,
|
||||
private: 0x0221312b
|
||||
},
|
||||
pubKeyHash: 0x1e,
|
||||
scriptHash: 0x0d,
|
||||
wif: 0xd4,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.pivxtestnet = {
|
||||
messagePrefix: "unused",
|
||||
bip32: {
|
||||
public: 0x3a8061a0,
|
||||
private: 0x3a805837
|
||||
},
|
||||
pubKeyHash: 0x8b,
|
||||
scriptHash: 0x13,
|
||||
wif: 0xef,
|
||||
};
|
||||
</script>
|
||||
<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){
|
||||
(function (global){
|
||||
@@ -47326,6 +47359,15 @@ window.Entropy = new (function() {
|
||||
setHdCoin(2);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "MAZA - Maza",
|
||||
bip49available: false,
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.maza;
|
||||
setHdCoin(13);
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
name: "NMC - Namecoin",
|
||||
bip49available: false,
|
||||
@@ -47334,6 +47376,22 @@ window.Entropy = new (function() {
|
||||
setHdCoin(7);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "PIVX - PIVX",
|
||||
bip49available: false,
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.pivx;
|
||||
setHdCoin(119);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "PIVX - PIVX Testnet",
|
||||
bip49available: false,
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.pivxtestnet;
|
||||
setHdCoin(1);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "PPC - Peercoin",
|
||||
bip49available: false,
|
||||
|
||||
@@ -53,6 +53,17 @@ bitcoinjs.bitcoin.networks.dash = {
|
||||
wif: 0xcc,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.maza = {
|
||||
messagePrefix: "unused",
|
||||
bip32: {
|
||||
public: 0x0488b21e,
|
||||
private: 0x0488ade4
|
||||
},
|
||||
pubKeyHash: 0x32,
|
||||
scriptHash: 0x09,
|
||||
wif: 0xe0,
|
||||
};
|
||||
|
||||
bitcoinjs.bitcoin.networks.dashtn = {
|
||||
messagePrefix: "unused",
|
||||
bip32: {
|
||||
|
||||
@@ -1262,6 +1262,15 @@
|
||||
setHdCoin(2);
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "MAZA - Maza",
|
||||
bip49available: false,
|
||||
onSelect: function() {
|
||||
network = bitcoinjs.bitcoin.networks.maza;
|
||||
setHdCoin(13);
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
name: "NMC - Namecoin",
|
||||
bip49available: false,
|
||||
|
||||
Reference in New Issue
Block a user