bitcore/lib/networks.js

26 lines
474 B
JavaScript
Raw Normal View History

2014-11-20 07:23:46 -08:00
'use strict';
exports.mainnet = {
pubkeyhash: 0x00,
2014-10-06 11:00:03 -07:00
identity: 0x0f,
identephem: 0x02,
2014-10-06 11:00:03 -07:00
identpersist: 0x01,
privatekey: 0x80,
scripthash: 0x05,
bip32pubkey: 0x0488b21e,
bip32privkey: 0x0488ade4,
};
exports.testnet = {
pubkeyhash: 0x6f,
2014-10-06 11:00:03 -07:00
identity: 0x0f,
identephem: 0x02,
identpersist: 0x11,
privatekey: 0xef,
scripthash: 0xc4,
bip32pubkey: 0x043587cf,
bip32privkey: 0x04358394,
};
2014-10-06 11:00:03 -07:00
2014-11-21 07:54:56 -08:00
exports.livenet = exports.mainnet;