diff options
-rw-r--r-- | src/js/segwit-parameters.js | 25 |
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 | |||
200 | bitcoinjs.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 | })(); |