| 33 | BECH32_HRP = 'bc' |
| 34 | |
| 35 | class TestNetParams(bitcoin.core.CoreTestNetParams): |
| 36 | MESSAGE_START = b'\x0b\x11\x09\x07' |
| 37 | DEFAULT_PORT = 18333 |
| 38 | RPC_PORT = 18332 |
| 39 | DNS_SEEDS = (('testnetbitcoin.jonasschnelli.ch', 'testnet-seed.bitcoin.jonasschnelli.ch'), |
| 40 | ('petertodd.org', 'seed.tbtc.petertodd.org'), |
| 41 | ('bluematt.me', 'testnet-seed.bluematt.me'), |
| 42 | ('bitcoin.schildbach.de', 'testnet-seed.bitcoin.schildbach.de')) |
| 43 | BASE58_PREFIXES = {'PUBKEY_ADDR':111, |
| 44 | 'SCRIPT_ADDR':196, |
| 45 | 'SECRET_KEY' :239} |
| 46 | BECH32_HRP = 'tb' |
| 47 | |
| 48 | class SigNetParams(bitcoin.core.CoreSigNetParams): |
| 49 | MESSAGE_START = b'\x0a\x03\xcf\x40' |