aboutsummaryrefslogtreecommitdiff
path: root/src/js/segwit-parameters.js
diff options
context:
space:
mode:
authoriancoleman <1281387+iancoleman@users.noreply.github.com>2018-12-05 08:36:51 +1100
committerGitHub <noreply@github.com>2018-12-05 08:36:51 +1100
commitacf4c9b588c6abcc275b4e46df54248a2c913366 (patch)
tree3f835b97ec21398a32c99f81d8b4ad27cd23e82d /src/js/segwit-parameters.js
parentd645b9826147ce85100fa24bf5fdccd059e4ba76 (diff)
parent10cf809e7cb3f61927d6d1313072a0323d62d6db (diff)
downloadBIP39-acf4c9b588c6abcc275b4e46df54248a2c913366.tar.gz
BIP39-acf4c9b588c6abcc275b4e46df54248a2c913366.tar.zst
BIP39-acf4c9b588c6abcc275b4e46df54248a2c913366.zip
Merge branch 'master' into master
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 dbb7572..8a3557e 100644
--- a/src/js/segwit-parameters.js
+++ b/src/js/segwit-parameters.js
@@ -184,4 +184,29 @@ bitcoinjs.bitcoin.networks.digibyte.p2wpkhInP2sh = {
184 scriptHash: 0x3f, 184 scriptHash: 0x3f,
185 wif: 0x80 185 wif: 0x80
186}; 186};
187 bitcoinjs.bitcoin.networks.deimos.p2wpkh = {
188 baseNetwork: "deimos",
189 messagePrefix: '\x18Deimos Signed Message:\n',
190 bech32: 'dei',
191 bip32: {
192 public: 0x0488B21E,
193 private: 0x0488ADE4
194 },
195 pubKeyHash: 0x1f,
196 scriptHash: 0x21,
197 wif: 0x8a
198};
199
200bitcoinjs.bitcoin.networks.deimos.p2wpkhInP2sh = {
201 baseNetwork: "deimos",
202 messagePrefix: '\x18Deimos Signed Message:\n',
203 bech32: 'dei',
204 bip32: {
205 public: 0x0488B21E,
206 private: 0x0488ADE4
207 },
208 pubKeyHash: 0x1f,
209 scriptHash: 0x21,
210 wif: 0x8a
211};
187})(); 212})();