]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blame - src/js/bitcoinjs-extensions.js
ShadowCash networks added to bitcoinjs
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / src / js / bitcoinjs-extensions.js
CommitLineData
9a39fb42
IC
1bitcoin.networks.shadow = {
2 magicPrefix: '\x19ShadowCash Signed Message:\n',
3 bip32: {
4 public: 0xEE80286A,
5 private: 0xEE8031E8
6 },
7 pubKeyHash: 0x3f,
8 scriptHash: 0x7d,
9 wif: 0xbf,
10 dustThreshold: 0,
11 feePerKb: 1000,
12 estimateFee: function() { return "unused in this app" },
13};
14
15bitcoin.networks.shadowtn = {
16 magicPrefix: '\x19ShadowCash Signed Message:\n',
17 bip32: {
18 public: 0x76C0FDFB,
19 private: 0x76C1077A
20 },
21 pubKeyHash: 0x7f,
22 scriptHash: 0xc4,
23 wif: 0xff,
24 dustThreshold: 0,
25 feePerKb: 1000,
26 estimateFee: function() { return "unused in this app" },
27};