Server is back. I've sent a grant to miners.
http://jkc.sytes.net:19327/Cgminer example:
cgminer --scrypt -s 5 -o jkc.sytes.net:19327 -u YOUR_JKCCOIN_ADDRESS -p x
Status:
http://jkc.sytes.net:19327/static/Fee (1%):
http://jkc.sytes.net:19327/feeForum thread:
https://bitcointalksearch.org/topic/annjkcp2poolstratumhttpjkcsytesnet19327-1-fee-201196If anyone want to run a p2pool for JKCCoin, these are the params we are using:
p2pool/networks.py
junkcoin=math.Object(
PARENT=networks.nets['junkcoin'],
SHARE_PERIOD=60, # seconds
CHAIN_LENGTH=24*60*60//10, # shares
REAL_CHAIN_LENGTH=24*60*60//10, # shares
TARGET_LOOKBEHIND=70, # shares
SPREAD=120, # blocks
IDENTIFIER='e031F5b8c6924210'.decode('hex'),
PREFIX='e290192ba6d4729a'.decode('hex'),
P2P_PORT=19455,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=False,
WORKER_PORT=19327,
BOOTSTRAP_ADDRS='jkc.sytes.net trollbox.chickenkiller.com'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-alt',
VERSION_CHECK=lambda v: True,
),
p2pool/bitcoin/networks.py
junkcoin=math.Object(
P2P_PREFIX='fbc0b6db'.decode('hex'),
P2P_PORT=9772,
ADDRESS_VERSION=16,
RPC_PORT=9771,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'junkcoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//1080000,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=60, # s
SYMBOL='JKC',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Junkcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Junkcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.junkcoin'), 'junkcoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://d.evco.in/abe/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://d.evco.in/abe/address/',
SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF=2**12,
),