diff options
Diffstat (limited to 'src/js/segwit-parameters.js')
-rw-r--r-- | src/js/segwit-parameters.js | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/js/segwit-parameters.js b/src/js/segwit-parameters.js index cfd7feb..de4d634 100644 --- a/src/js/segwit-parameters.js +++ b/src/js/segwit-parameters.js | |||
@@ -496,4 +496,57 @@ bitcoinjs.bitcoin.networks.litecointestnet.p2wpkhInP2sh = { | |||
496 | scriptHash: 0xc4, | 496 | scriptHash: 0xc4, |
497 | wif: 0xef | 497 | wif: 0xef |
498 | }; | 498 | }; |
499 | |||
500 | bitcoinjs.bitcoin.networks.groestlcoin.p2wpkh = { | ||
501 | baseNetwork: "groestlcoin", | ||
502 | messagePrefix: '\x19GroestlCoin Signed Message:\n', | ||
503 | bech32: 'grs', | ||
504 | bip32: { | ||
505 | public: 0x04b24746, | ||
506 | private: 0x04b2430c | ||
507 | }, | ||
508 | pubKeyHash: 0x24, | ||
509 | scriptHash: 0x05, | ||
510 | wif: 0x80, | ||
511 | }; | ||
512 | |||
513 | bitcoinjs.bitcoin.networks.groestlcointestnet.p2wpkh = { | ||
514 | baseNetwork: "groestlcointestnet", | ||
515 | messagePrefix: '\x19GroestlCoin Signed Message:\n', | ||
516 | bech32: 'tgrs', | ||
517 | bip32: { | ||
518 | public: 0x045f1cf6, | ||
519 | private: 0x045f18bc | ||
520 | }, | ||
521 | pubKeyHash: 0x6f, | ||
522 | scriptHash: 0xc4, | ||
523 | wif: 0xef | ||
524 | }; | ||
525 | |||
526 | bitcoinjs.bitcoin.networks.groestlcoin.p2wpkhInP2sh = { | ||
527 | baseNetwork: "groestlcoin", | ||
528 | messagePrefix: '\x19GroestlCoin Signed Message:\n', | ||
529 | bech32: 'grs', | ||
530 | bip32: { | ||
531 | public: 0x049d7cb2, | ||
532 | private: 0x049d7878 | ||
533 | }, | ||
534 | pubKeyHash: 0x24, | ||
535 | scriptHash: 0x05, | ||
536 | wif: 0x80, | ||
537 | }; | ||
538 | |||
539 | bitcoinjs.bitcoin.networks.groestlcointestnet.p2wpkhInP2sh = { | ||
540 | baseNetwork: "groestlcointestnet", | ||
541 | messagePrefix: '\x19GroestlCoin Signed Message:\n', | ||
542 | bech32: 'tgrs', | ||
543 | bip32: { | ||
544 | public: 0x044a5262, | ||
545 | private: 0x044a4e28 | ||
546 | }, | ||
547 | pubKeyHash: 0x6f, | ||
548 | scriptHash: 0xc4, | ||
549 | wif: 0xef | ||
550 | }; | ||
551 | |||
499 | })(); | 552 | })(); |