P2pool mining is available at
http://dutchpool.org:19720 , almost 5MH/s mining currently. And if anyone is interested in setting up their own p2pool-node, here are the parameters you'll need to run it:
p2pool/networks.py
ufo=math.Object(
PARENT=networks.nets['ufo'],
SHARE_PERIOD=15, # seconds target spacing
CHAIN_LENGTH=12*60*60//15, # shares
REAL_CHAIN_LENGTH=12*60*60//15, # shares
TARGET_LOOKBEHIND=20, # shares coinbase maturity
SPREAD=50, # blocks
IDENTIFIER='fc656266636f696e'.decode('hex'),
PREFIX='fe636e696e6c656a'.decode('hex'),
P2P_PORT=18720,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=19720,
BOOTSTRAP_ADDRS='dutchpool.org'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),
p2pool/bitcoin/networks.py
ufo=math.Object(
P2P_PREFIX='fcd9b7dd'.decode('hex'), #pchmessagestart
P2P_PORT=9887,
ADDRESS_VERSION=27, #pubkey_address
RPC_PORT=9888,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'ufo address' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 5000*100000000,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=90, # s
SYMBOL='UFO',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'ufo')
if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/ufo/')
if platform.system() == 'Darwin' else os.path.expanduser('~/.ufo'), 'ufo.conf'),
BLOCK_EXPLORER_URL_PREFIX='
http://ufo.cryptocoinexplorer.com/block/',
ADDRESS_EXPLORER_URL_PREFIX='
http://ufo.cryptocoinexplorer.com/address/',
TX_EXPLORER_URL_PREFIX='
http://ufo.cryptocoinexplorer.com/transaction/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF=2**16,
DUST_THRESHOLD=0.03e8,
),