]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blob - src/js/bitcoinjs-extensions.js
String normalization polyfill
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / src / js / bitcoinjs-extensions.js
1 bitcoin.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
15 bitcoin.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 };
28
29 bitcoin.networks.clam = {
30 bip32: {
31 public: 0xa8c26d64,
32 private: 0xa8c17826
33 },
34 pubKeyHash: 0x89,
35 wif: 0x85,
36 };
37
38 bitcoin.networks.dash = {
39 bip32: {
40 public: 0x0488b21e,
41 private: 0x0488ade4
42 },
43 pubKeyHash: 0x4c,
44 scriptHash: 0x10,
45 wif: 0xcc,
46 };
47
48 bitcoin.networks.namecoin = {
49 bip32: {
50 public: 0x0488b21e,
51 private: 0x0488ade4
52 },
53 pubKeyHash: 0x34,
54 //scriptHash: 0x10,
55 wif: 0x80,
56 };
57
58 bitcoin.networks.peercoin = {
59 bip32: {
60 public: 0x0488b21e,
61 private: 0x0488ade4
62 },
63 pubKeyHash: 0x37,
64 //scriptHash: 0x10,
65 wif: 0xb7,
66 };
67