Skip to content

Commit

Permalink
Merge pull request #52 from terracoin/master
Browse files Browse the repository at this point in the history
support for the Terracoin network
  • Loading branch information
forrestv committed Dec 8, 2012
2 parents 5f27822 + 98c333e commit 8bc9cd4
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
38 changes: 38 additions & 0 deletions p2pool/bitcoin/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,44 @@
ADDRESS_EXPLORER_URL_PREFIX='http://nonexistent-litecoin-testnet-explorer/address/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256 - 1),
),

terracoin=math.Object(
P2P_PREFIX='42babe56'.decode('hex'),
P2P_PORT=13333,
ADDRESS_VERSION=0,
RPC_PORT=13332,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'terracoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 20*100000000 >> (height + 1)//1050000,
POW_FUNC=data.hash256,
BLOCK_PERIOD=120, # s
SYMBOL='TRC',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Terracoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Terracoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.terracoin'), 'terracoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/address/',
SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
),
terracoin_testnet=math.Object(
P2P_PREFIX='41babe56'.decode('hex'),
P2P_PORT=23333,
ADDRESS_VERSION=111,
RPC_PORT=23332,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'terracoinaddress' in (yield bitcoind.rpc_help()) and
(yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 20*100000000 >> (height + 1)//1050000,
POW_FUNC=data.hash256,
BLOCK_PERIOD=120, # s
SYMBOL='tTRC',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Terracoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Terracoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.terracoin'), 'terracoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/testnet/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://cryptocoinexplorer.com:3750/testnet/address/',
SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
),

)
for net_name, net in nets.iteritems():
net.NAME = net_name
38 changes: 38 additions & 0 deletions p2pool/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,44 @@
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),

terracoin=math.Object(
PARENT=networks.nets['terracoin'],
SHARE_PERIOD=30, # seconds
CHAIN_LENGTH=24*60*60//30, # shares
REAL_CHAIN_LENGTH=24*60*60//30, # shares
TARGET_LOOKBEHIND=200, # shares
SPREAD=3, # blocks
IDENTIFIER='a41b2356a1b7d35e'.decode('hex'),
PREFIX='5623b62178d2b8a3'.decode('hex'),
P2P_PORT=9323,
MIN_TARGET=0,
MAX_TARGET=2**256//2**32 - 1,
PERSIST=True,
WORKER_PORT=9322,
BOOTSTRAP_ADDRS='seed1.p2pool.terracoin.org seed2.p2pool.terracoin.org forre.st vps.forre.st 74.220.242.6:9334 93.97.192.93 66.90.73.83 67.83.108.0 219.84.64.174 24.167.17.248 109.74.195.142 83.211.86.49 94.23.34.145 168.7.116.243 94.174.40.189:9344 89.79.79.195 portals94.ns01.us'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),
terracoin_testnet=math.Object(
PARENT=networks.nets['terracoin_testnet'],
SHARE_PERIOD=30, # seconds
CHAIN_LENGTH=60*60//30, # shares
REAL_CHAIN_LENGTH=60*60//30, # shares
TARGET_LOOKBEHIND=200, # shares
SPREAD=3, # blocks
IDENTIFIER='b41b2356a5b7d35d'.decode('hex'),
PREFIX='1623b92172d2b8a2'.decode('hex'),
P2P_PORT=19323,
MIN_TARGET=0,
MAX_TARGET=2**256//2**32 - 1,
PERSIST=False,
WORKER_PORT=19322,
BOOTSTRAP_ADDRS='seed1.p2pool.terracoin.org seed2.p2pool.terracoin.org forre.st vps.forre.st'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),

)
for net_name, net in nets.iteritems():
net.NAME = net_name

0 comments on commit 8bc9cd4

Please sign in to comment.