Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
77 lines (66 loc) · 2.72 KB

File metadata and controls

77 lines (66 loc) · 2.72 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copyright (C) 2012-2014 The python-bitcoinlib developers
#
# This file is part of python-bitcoinlib.
#
# It is subject to the license terms in the LICENSE file found in the top-level
# directory of this distribution.
#
# No part of python-bitcoinlib, including this file, may be copied, modified,
# propagated, or distributed except according to the terms contained in the
# LICENSE file.
from __future__ import absolute_import, division, print_function, unicode_literals
import bitcoin.core
# Note that setup.py can break if __init__.py imports any external
# dependencies, as these might not be installed when setup.py runs. In this
# case __version__ could be moved to a separate version.py and imported here.
__version__ = '0.5.1-SNAPSHOT'
class MainParams(bitcoin.core.CoreMainParams):
MESSAGE_START = b'\xf9\xbe\xb4\xd9'
DEFAULT_PORT = 8333
RPC_PORT = 8332
DNS_SEEDS = (('bitcoin.sipa.be', 'seed.bitcoin.sipa.be'),
('bluematt.me', 'dnsseed.bluematt.me'),
('dashjr.org', 'dnsseed.bitcoin.dashjr.org'),
('bitcoinstats.com', 'seed.bitcoinstats.com'),
('xf2.org', 'bitseed.xf2.org'))
BASE58_PREFIXES = {'PUBKEY_ADDR':0,
'SCRIPT_ADDR':5,
'SECRET_KEY' :128}
class TestNetParams(bitcoin.core.CoreTestNetParams):
MESSAGE_START = b'\x0b\x11\x09\x07'
DEFAULT_PORT = 18333
RPC_PORT = 18332
DNS_SEEDS = (('bitcoin.petertodd.org', 'testnet-seed.bitcoin.petertodd.org'),
('bluematt.me', 'testnet-seed.bluematt.me'))
BASE58_PREFIXES = {'PUBKEY_ADDR':111,
'SCRIPT_ADDR':196,
'SECRET_KEY' :239}
class RegTestParams(bitcoin.core.CoreRegTestParams):
MESSAGE_START = b'\xfa\xbf\xb5\xda'
DEFAULT_PORT = 18444
RPC_PORT = 18332
DNS_SEEDS = ()
BASE58_PREFIXES = {'PUBKEY_ADDR':111,
'SCRIPT_ADDR':196,
'SECRET_KEY' :239}
"""Master global setting for what chain params we're using.
However, don't set this directly, use SelectParams() instead so as to set the
bitcoin.core.params correctly too.
"""
#params = bitcoin.core.coreparams = MainParams()
params = MainParams()
def SelectParams(name):
"""Select the chain parameters to use
name is one of 'mainnet', 'testnet', or 'regtest'
Default chain is 'mainnet'
"""
global params
bitcoin.core._SelectCoreParams(name)
if name == 'mainnet':
params = bitcoin.core.coreparams = MainParams()
elif name == 'testnet':
params = bitcoin.core.coreparams = TestNetParams()
elif name == 'regtest':
params = bitcoin.core.coreparams = RegTestParams()
else:
raise ValueError('Unknown chain %r' % name)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.