Author

Topic: [ANN][P2POOL]ThePeePs P2Pool Nodes (CAT|EMC2|ASD|888|QTL|MAC|DOS|ICN|PENG) (Read 2070 times)

sr. member
Activity: 350
Merit: 250
https://cryptassist.io
I have added Autismcoin today.  Below are the networks.py settings.


Link to the ANN thread: https://bitcointalksearch.org/topic/ann-sha256-asd-coin-cryptocurrency-for-the-autistic-community-724181


bitcoin/networks.py
Code:
   asdcoin=math.Object(
        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
Code:
   asdcoin=math.Object(
        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,
    ),
sr. member
Activity: 350
Merit: 250
https://cryptassist.io
I have re-opened the Penguincoin P2Pool, as the dev is trying to bring the coin back to life.

Here is a link to the ann thread https://bitcointalksearch.org/topic/ann-peng-penguincoin-vote-for-cryptsy-442876
sr. member
Activity: 350
Merit: 250
https://cryptassist.io
I have just added DoSCoin as it looks like it could be a good coin.

Mining Port is 7061

below are the networks files if you would like to run your own node.


networks.py
Code:
   doscoin=math.Object(
        PARENT=networks.nets['doscoin'],
        SHARE_PERIOD=10, # seconds #How often should P2Pool generate a new share (rule of thumb: 1/5 - 1/10 of the block period)
        CHAIN_LENGTH=24*60*60//20, # shares
        REAL_CHAIN_LENGTH=24*60*60//20, # shares #CHAIN_LENGTH & REAL_CHAIN_LENGTH are set up to allow for 3 Hour PPLNS.
        TARGET_LOOKBEHIND=20, # is set to 30 (shares) giving a 300 second (5min) difficulty adjustment.
        SPREAD=1, # blocks #SPREAD=30 block every 60 seconds 600/60=10 10x3=30 because bitcoin's SPREAD=3 block every 600 seconds and litecoin'sSPREAD=12 block every 150 seconds 600/150=4 4x3=12
        IDENTIFIER='6e9e75cf8ed3a5cb'.decode('hex'), #some random s-it (I think its used to identify others p2pool's mining this coin)
        PREFIX='1ac7c20642b895b1'.decode('hex'), #IDENTIFIER & PREFIX: P2Pool will only sync with other nodes who have Identifier and Prefix matching yours (and using same p2p port).. if any of the above values change, a new identifier & prefix need to be created in order to prevent problems.
        P2P_PORT=7060, #port that p2pool is comunicating on with other p2pools
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False, #this value tells the p2pool if it should mine solo or connect to other p2pools.
        WORKER_PORT=7061,
        BOOTSTRAP_ADDRS='p2pool.thepeeps.net'.split(' '), #here we need to add working p2pool fck nodes to allow others connecting
        ANNOUNCE_CHANNEL='#p2pool-dos',
        VERSION_CHECK=lambda v: 10000 <= v,
    ),

bitcoin/networks.py
Code:
   doscoin=math.Object(
        P2P_PREFIX='7f31e205'.decode('hex'), #stripped from fckbankscoind's main.cpp -> pchMessageStart[4] = { 0xfc, 0xd9, 0xb7, 0xdd };
        P2P_PORT=25020,
        ADDRESS_VERSION=30, #look again in the sourcecode in the file base58.h, and find the value of PUBKEY_ADDRESS.
        RPC_PORT=25772,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'doscoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 4000*100000000,
        BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('x13_hash').getPoWHash(data)),
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('x13_hash').getPoWHash(data)),
        BLOCK_PERIOD=60, # one block generation time
        SYMBOL='DOS',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'doscoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/doscoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.doscoin'), 'doscoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://cryptobe.com/block',
        ADDRESS_EXPLORER_URL_PREFIX='http://cryptobe.com/address',
        TX_EXPLORER_URL_PREFIX='http://cryptobe.com/tx',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1), #??
        DUMB_SCRYPT_DIFF=1, #??
        DUST_THRESHOLD=0.03e8, #??
    ),
sr. member
Activity: 350
Merit: 250
https://cryptassist.io
I have removed MMXIV as the coin is moving to PoS.

Always looking for new coins to support!
sr. member
Activity: 350
Merit: 250
https://cryptassist.io
Just added Quatloo, it's a new scrypt coin

ANN thread: https://bitcointalksearch.org/topic/annqtl-quatloo-a-darkwavegravity-scrypt-coin-mandatory-update-to-v121-655793


Also, setup  a chat page to chat in IRC, if you don't have an IRC client, or do not know how to use IRC.

http://p2pool.thepeeps.net/chat.html
sr. member
Activity: 350
Merit: 250
https://cryptassist.io
sr. member
Activity: 350
Merit: 250
https://cryptassist.io
ThePeePs P2Pool Nodes

Hello all.

I have a P2Pool server setup with a %1 fee for the following coins:

NameSymbolPort
CatcoinCAT9333
EinsteiniumEMC241876


I may add more in the future, if the coin looks to be initiative, is for a good cause, or has a good community around it.

To mine on my P2Pool use the following:
Code:
-o http://p2pool.thepeeps.net: -O :x
Coins are deposited straight into your wallet when a block is found, where they will then mature.  No transaction fees, no losing coins because the pool went down.

A word of warning, DO NOT USE an exchange address for mining!! If you do you risk loosing your coins!

P2Pools also help keep the hashrate decentralized on the network, securing the blockchain.

If you would like me to add your coin, please PM me.

Server is located in NE USA.
Happy Mining!  Smiley
Jump to: