bitcore/lib/constants.js

16 lines
259 B
JavaScript
Raw Normal View History

exports.mainnet = {
pubkeyhash: 0x00,
privkey: 0x80,
p2sh: 0x05,
bip32pubkey: 0x0488b21e,
bip32privkey: 0x0488ade4,
};
exports.testnet = {
pubkeyhash: 0x6f,
privkey: 0xef,
p2sh: 0xc4,
bip32pubkey: 0x043587cf,
bip32privkey: 0x04358394,
};