You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
499 B
29 lines
499 B
10 years ago
|
'use strict';
|
||
|
|
||
11 years ago
|
exports.mainnet = {
|
||
10 years ago
|
pubkeyhash: 0x00,
|
||
10 years ago
|
identity: 0x0f,
|
||
10 years ago
|
identephem: 0x02,
|
||
10 years ago
|
identpersist: 0x01,
|
||
10 years ago
|
privkey: 0x80,
|
||
|
scripthash: 0x05,
|
||
|
bip32pubkey: 0x0488b21e,
|
||
11 years ago
|
bip32privkey: 0x0488ade4,
|
||
|
};
|
||
|
|
||
|
exports.testnet = {
|
||
10 years ago
|
pubkeyhash: 0x6f,
|
||
10 years ago
|
identity: 0x0f,
|
||
|
identephem: 0x02,
|
||
|
identpersist: 0x11,
|
||
10 years ago
|
privkey: 0xef,
|
||
|
scripthash: 0xc4,
|
||
|
bip32pubkey: 0x043587cf,
|
||
11 years ago
|
bip32privkey: 0x04358394,
|
||
|
};
|
||
10 years ago
|
|
||
|
exports.ephemeral = {
|
||
|
prefix: 0x0f,
|
||
|
identity: 0x02
|
||
10 years ago
|
};
|