aboutsummaryrefslogtreecommitdiff
path: root/src/js/segwit-parameters.js
diff options
context:
space:
mode:
authorPotato <38018953+potatohodler@users.noreply.github.com>2018-04-18 15:16:19 +0200
committerPotato <38018953+potatohodler@users.noreply.github.com>2018-04-18 15:28:31 +0200
commitf150f0c03a4907d5a7112a08ffaf064b1176ad2e (patch)
tree280669f82c6e340081f9797cf93125bc7ca6b3f7 /src/js/segwit-parameters.js
parente3bed0bfd0f7cda799dfd577f7816cc52922afbf (diff)
downloadBIP39-f150f0c03a4907d5a7112a08ffaf064b1176ad2e.tar.gz
BIP39-f150f0c03a4907d5a7112a08ffaf064b1176ad2e.tar.zst
BIP39-f150f0c03a4907d5a7112a08ffaf064b1176ad2e.zip
Adds Segwit support for Vertcoin.
Diffstat (limited to 'src/js/segwit-parameters.js')
-rw-r--r--src/js/segwit-parameters.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/js/segwit-parameters.js b/src/js/segwit-parameters.js
index 3cb7a8e..f8b0347 100644
--- a/src/js/segwit-parameters.js
+++ b/src/js/segwit-parameters.js
@@ -94,4 +94,29 @@ bitcoinjs.bitcoin.networks.fujicoin.p2wpkhInP2sh = {
94 wif: 0xa4 94 wif: 0xa4
95}; 95};
96 96
97bitcoinjs.bitcoin.networks.vertcoin.p2wpkh = {
98 baseNetwork: "vertcoin",
99 messagePrefix: '\x18Vertcoin Signed Message:\n',
100 bech32: 'vtc',
101 bip32: {
102 public: 0x0488b21e,
103 private: 0x0488ade4
104 },
105 pubKeyHash: 71,
106 scriptHash: 5,
107 wif: 0x80
108};
109
110bitcoinjs.bitcoin.networks.vertcoin.p2wpkhInP2sh = {
111 baseNetwork: "vertcoin",
112 messagePrefix: '\x18Vertcoin Signed Message:\n',
113 bip32: {
114 public: 0x0488b21e,
115 private: 0x0488ade4
116 },
117 pubKeyHash: 71,
118 scriptHash: 5,
119 wif: 0x80
120};
121
97})(); 122})();