Link to the ANN thread: https://bitcointalksearch.org/topic/ann-sha256-asd-coin-cryptocurrency-for-the-autistic-community-724181
bitcoin/networks.py
P2P_PREFIX='f9beb4d9'.decode('hex'),
P2P_PORT=11090,
ADDRESS_VERSION=0,
RPC_PORT=21090,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'autismcoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 40*100000000 >> (height +1)//800000,
POW_FUNC=data.hash256,
BLOCK_PERIOD=600, # s
SYMBOL='ASD',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'machinecoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/machinecoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.machinecoin'), 'machinecoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='#',
ADDRESS_EXPLORER_URL_PREFIX='#',
TX_EXPLORER_URL_PREFIX='#',
SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
DUMB_SCRYPT_DIFF=1,
DUST_THRESHOLD=0.01e6,
),
networks.py
PARENT=networks.nets['asdcoin'],
SHARE_PERIOD=30, # seconds
CHAIN_LENGTH=12*60*60//10, # shares
REAL_CHAIN_LENGTH=3*60*60//10, # shares
TARGET_LOOKBEHIND=200, # shares
SPREAD=12, # blocks
IDENTIFIER='19755c3be06d4c9c'.decode('hex'),
PREFIX='228c0e6792961ec9'.decode('hex'),
P2P_PORT=13026,
MIN_TARGET=0,
MAX_TARGET=2**256//2**32 - 1,
PERSIST=False,
WORKER_PORT=13025,
BOOTSTRAP_ADDRS='p2pool.thepeeps.net'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-asd',
VERSION_CHECK=lambda v: True,
),