Fastcoin Forum

Fastcoin => Mining => Topic started by: m0gliE on January 20, 2014, 02:41:02 AM

Title: [FASTCOIN] [P2Pool] [PPLNS] 2% Fee | No Registration | fst.inetrader.com
Post by: m0gliE on January 20, 2014, 02:41:02 AM
Fastcoin P2Pool
Server Location: USA/NYC

Site Info: http://fst.inetrader.com (http://fst.inetrader.com)
Server Stats: http://fst.inetrader.com:5150/static (http://fst.inetrader.com:5150/static)

Statum:  -o stratum+tcp://fst.inetrader.com:5150 -u <your_fastcoin_address> -p <random_password>
Non Stratum: -o http://fst.inetrader.com:5150 -u <your_fastcoin_address> -p <random_password>

Reducing DOA; Add +0.0000xxxx directly to the END of your WALLET address.
i.e. cgminer -o http://fst.inetrader.com:5150 -u fo236XeXzve76Xbvm1yPR51fJCnfqJs3BA+0.00087310 -p x

Recommend Share difficulty:
 
 Hash Rate (KHash/s)      Difficulty
----------------------------------------------------------------------
       1                  +0.00000116
       5                  +0.00000582
       10                 +0.00001164
       50                 +0.00005821
       100                +0.00011641
       250                +0.00029103
       500                +0.00058207
       750                +0.00087310
       1000               +0.00116414

(http://i.imgur.com/Vu56F7S.jpg)

Just as a reminder, there are no accounts or coins stored by the pool. No confirmations to wait for....your coins are sent to you as soon as a block is found. Every block found is simultaneously announced across all the wallets in the P2Pool so there are less orphans encountered.
Title: Re: [FASTCOIN] [P2Pool] [PPLNS] 2% Fee | No Registration | fst.inetrader.com
Post by: m0gliE on January 26, 2014, 09:43:16 AM
Fastcoin recommended settings for P2Pool nodes
----------------------------------------------
 
Updated - 1/25/14
 
- p2pool/networks.py
 
    fastcoin=math.Object(
        PARENT=networks.nets['fastcoin'],
        SHARE_PERIOD=6, # seconds
        NEW_SHARE_PERIOD=6, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=60, # shares
        SPREAD=150, # blocks
        NEW_SPREAD=150, # blocks
        IDENTIFIER='3bcc5afe1939ff7c'.decode('hex'),
        PREFIX='50879b32a0b48a21'.decode('hex'),
        P2P_PORT=23650,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=5150,
        BOOTSTRAP_ADDRS='fst.inetrader.com www.coin-mining.net'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),
 
- p2pool/bitcoin/networks.py
 
    fastcoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=9526,
        ADDRESS_VERSION=96,
        RPC_PORT=9527,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'fastcoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 32*100000000 >> (height + 1)//2592000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import___.css'ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=12, # s
        SYMBOL='FST',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Fastcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Fastcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.fastcoin'), 'fastcoin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://fst.webboise.com/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://fst.webboise.com/address/',
        TX_EXPLORER_URL_PREFIX='http://fst.webboise.com/tx/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=1e8,
    ),