kingcoinproject (OP)
Newbie
Offline
Activity: 56
Merit: 0
|
|
August 21, 2013, 08:38:41 AM Last edit: August 26, 2013, 02:19:47 AM by kingcoinproject |
|
[ANN][KING]KingCoin,New POW+POS Coin with new scrypt algo|First coin with native Coin Control Features|No Premine
KingCoin - The Coin rule the whole world. What is KingCoin?- First coin support native coin control features - New algo: Keccak 512 + Chacha + Keccak 256 Specifications:- POS+POW - alog: Keccak 512 + Chacha + Keccak 256 - Coin Control features: control which coin to send, avoid to send those coins that have bigger coin age, this features will save the interest of your coins, to enable this function, you must select "Display coin control features (experts only!)" under menu options. - P2P port: 33332, RPC port: 33333 - Total coins: 0.1 billion - 60 seconds a block - Reward per block: maximum reward is 8 coins, minimum reward is 1 coins, the block reward varies based on the diff and hash power - Annual interest: 0.32% - No premine - Mining need 128 confirm, transaction need 4 confirm - Min stake age: 8 days, max stake age: 32 days - support of more than 40 languages Official Website:http://www.kingcoin.in/ (under construction) Download:Windows EXE: https://app.box.com/s/6s8bbaev1003hkr4gcyjCPU Miner: https://app.box.com/s/hakgmcr609cn83evn6ebSource code: kingcoin: https://github.com/kingcoin/kingcoinkingcoincpuminer: https://app.box.com/s/ubkx36wv35039sj6sge6Getting Started:1. Start up kingcoin.exe, wait for it to load, then exit. 2. Put kingcoin.conf (see sample file below) in your c:/users/**yourcomputername**/AppData/Roaming/kingcoin 3. restart kingcoin-qt, and you should connect and sync. 4. For solo mining, use the mining page in kingcoin.exe and begin mining. Sample kingcoin.conf:listen=1 daemon=1 server=1 rpcuser=u rpcpassword=p rpcport=33333 addnode=198.66.99.113
Mining:Solo mining:- setup kingcoin.conf in %appdata%/kingcoin - fill kingcoin.conf in the form of sample kingcoin.conf - use mining page in the kingcoin.exe to solo mine Pool mining:Currently, no pools for KingCoin, wish some people can make a pool for KingCoin. Use KingCPUMiner.exe for pool mining, example usage of KingCPUMiner.exe: KingCPUMiner.exe -a scrypt-new -o http://127.0.0.1:33333 -u u -p p Support KingCoin:To support kingcoin, please send donation to KING address: KqgAUyAKUbhEKYx1PPgsUXLR3KZYdnkL3o.
|
|
|
|
kingcoinproject (OP)
Newbie
Offline
Activity: 56
Merit: 0
|
|
August 21, 2013, 08:52:33 AM |
|
Reserved.
|
|
|
|
kingcoinproject (OP)
Newbie
Offline
Activity: 56
Merit: 0
|
|
August 21, 2013, 09:07:36 AM |
|
Reserved for pools.
|
|
|
|
kingcoinproject (OP)
Newbie
Offline
Activity: 56
Merit: 0
|
|
August 21, 2013, 09:26:36 AM |
|
Need donations. Address is: KqgAUyAKUbhEKYx1PPgsUXLR3KZYdnkL3o
|
|
|
|
kingcoinproject (OP)
Newbie
Offline
Activity: 56
Merit: 0
|
|
August 21, 2013, 09:37:07 AM |
|
This coin is great, everyone, please come to this coin.
|
|
|
|
|
zulufields
Member
Offline
Activity: 85
Merit: 10
|
|
August 21, 2013, 09:47:06 AM |
|
any faucets planned ?
|
|
|
|
kingcoinproject (OP)
Newbie
Offline
Activity: 56
Merit: 0
|
|
August 21, 2013, 09:54:58 AM |
|
any faucets planned ?
Currently no faucet plans, because this coin has no premine, I don't have rights to post this in alternative currencies, can you repost this thread there?
|
|
|
|
guugll
|
|
August 21, 2013, 11:00:55 AM |
|
i like the name :-) but more than that i like p2pool - every new coin DEV sould already consider to deliver the p2pool developed for that coin in order to make it easy to mine also for the low level mining rigs below 2MH/s because there is so many of use low level miners... decentralized coin and decentralized pool is something you should not separate. definitelly here is a big question how to implement the special logic into p2pool - thats too much for me - what about you King Dev team? i know you need to modify this two files for make it working on network level: p2pool/p2pool/networks.pynovacoin=math.Object( PARENT=networks.nets['novacoin'], SHARE_PERIOD=30, # seconds CHAIN_LENGTH=24*60*60//30, # shares REAL_CHAIN_LENGTH=24*60*60//30, # shares TARGET_LOOKBEHIND=200, # shares SPREAD=3, # blocks IDENTIFIER='e037d5b8c6923510'.decode('hex'), PREFIX='7208c1a53ef649b0'.decode('hex'), P2P_PORT=9777, MIN_TARGET=0, MAX_TARGET=2**256//2**20 - 1, PERSIST=True, WORKER_PORT=8336, BOOTSTRAP_ADDRS='188.120.239.144 81.200.245.198 85.234.62.99 81.200.241.54 217.77.220.40'.split(' '), ANNOUNCE_CHANNEL='#p2pool-alt', VERSION_CHECK=lambda v: v >= 60004, ), p2pool/p2pool/bitcoin/networks.pythis def get_subsidy(nCap, nMaxSubsidy, bnTarget): bnLowerBound = 0.01 bnUpperBound = bnSubsidyLimit = nMaxSubsidy bnTargetLimit = 0x00000fffff000000000000000000000000000000000000000000000000000000
while bnLowerBound + 0.01 <= bnUpperBound: bnMidValue = (bnLowerBound + bnUpperBound) / 2 if pow(bnMidValue, nCap) * bnTargetLimit > pow(bnSubsidyLimit, nCap) * bnTarget: bnUpperBound = bnMidValue else: bnLowerBound = bnMidValue
nSubsidy = round(bnMidValue, 2)
if nSubsidy > bnMidValue: nSubsidy = nSubsidy - 0.01
return int(nSubsidy * 1000000) and this novacoin=math.Object( P2P_PREFIX='e4e8e9e5'.decode('hex'), P2P_PORT=7777, ADDRESS_VERSION=8, RPC_PORT=8344, RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue( 'novacoinaddress' in (yield bitcoind.rpc_help()) and not (yield bitcoind.rpc_getinfo())['testnet'] )), SUBSIDY_FUNC=lambda target: get_subsidy(6, 100, target), BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)), POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)), BLOCK_PERIOD=600, # s SYMBOL='NVC', CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'NovaCoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/NovaCoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.novacoin'), 'novacoin.conf'), BLOCK_EXPLORER_URL_PREFIX='http://novacoin.ru/block/', ADDRESS_EXPLORER_URL_PREFIX='http://novacoin.ru/address/', SANE_TARGET_RANGE=(2**256//2**20//1000 - 1, 2**256//2**20 - 1), ), the novacoin is also PoW&PoS so it could be a help but i am lost in that special "algo" so what about the King Dev team and p2pool?
|
|
|
|
kingcoinproject (OP)
Newbie
Offline
Activity: 56
Merit: 0
|
|
August 21, 2013, 11:52:39 AM |
|
i like the name :-) but more than that i like p2pool - every new coin DEV sould already consider to deliver the p2pool developed for that coin in order to make it easy to mine also for the low level mining rigs below 2MH/s because there is so many of use low level miners... decentralized coin and decentralized pool is something you should not separate. definitelly here is a big question how to implement the special logic into p2pool - thats too much for me - what about you King Dev team? i know you need to modify this two files for make it working on network level: p2pool/p2pool/networks.pynovacoin=math.Object( PARENT=networks.nets['novacoin'], SHARE_PERIOD=30, # seconds CHAIN_LENGTH=24*60*60//30, # shares REAL_CHAIN_LENGTH=24*60*60//30, # shares TARGET_LOOKBEHIND=200, # shares SPREAD=3, # blocks IDENTIFIER='e037d5b8c6923510'.decode('hex'), PREFIX='7208c1a53ef649b0'.decode('hex'), P2P_PORT=9777, MIN_TARGET=0, MAX_TARGET=2**256//2**20 - 1, PERSIST=True, WORKER_PORT=8336, BOOTSTRAP_ADDRS='188.120.239.144 81.200.245.198 85.234.62.99 81.200.241.54 217.77.220.40'.split(' '), ANNOUNCE_CHANNEL='#p2pool-alt', VERSION_CHECK=lambda v: v >= 60004, ), p2pool/p2pool/bitcoin/networks.pythis def get_subsidy(nCap, nMaxSubsidy, bnTarget): bnLowerBound = 0.01 bnUpperBound = bnSubsidyLimit = nMaxSubsidy bnTargetLimit = 0x00000fffff000000000000000000000000000000000000000000000000000000
while bnLowerBound + 0.01 <= bnUpperBound: bnMidValue = (bnLowerBound + bnUpperBound) / 2 if pow(bnMidValue, nCap) * bnTargetLimit > pow(bnSubsidyLimit, nCap) * bnTarget: bnUpperBound = bnMidValue else: bnLowerBound = bnMidValue
nSubsidy = round(bnMidValue, 2)
if nSubsidy > bnMidValue: nSubsidy = nSubsidy - 0.01
return int(nSubsidy * 1000000) and this novacoin=math.Object( P2P_PREFIX='e4e8e9e5'.decode('hex'), P2P_PORT=7777, ADDRESS_VERSION=8, RPC_PORT=8344, RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue( 'novacoinaddress' in (yield bitcoind.rpc_help()) and not (yield bitcoind.rpc_getinfo())['testnet'] )), SUBSIDY_FUNC=lambda target: get_subsidy(6, 100, target), BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)), POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)), BLOCK_PERIOD=600, # s SYMBOL='NVC', CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'NovaCoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/NovaCoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.novacoin'), 'novacoin.conf'), BLOCK_EXPLORER_URL_PREFIX='http://novacoin.ru/block/', ADDRESS_EXPLORER_URL_PREFIX='http://novacoin.ru/address/', SANE_TARGET_RANGE=(2**256//2**20//1000 - 1, 2**256//2**20 - 1), ), the novacoin is also PoW&PoS so it could be a help but i am lost in that special "algo" so what about the King Dev team and p2pool? You should check the source code to find out the correcty parameters, maybe I can help you later, but I'm working on the website now.
|
|
|
|
jdebunt
Legendary
Offline
Activity: 1596
Merit: 1010
|
|
August 21, 2013, 12:23:40 PM |
|
Reserved.
|
|
|
|
Magic8Ball
Legendary
Offline
Activity: 1050
Merit: 1000
|
|
August 21, 2013, 12:27:30 PM |
|
Is it a CPU coin? Can I just mine with setgenerate?
EDIT: Looks like its just scrypt.
|
|
|
|
minerapia
|
|
August 21, 2013, 12:33:43 PM |
|
maybe source for miner thanks
|
donations -> btc: 1M6yf45NskQxWXknkMTzQ8o6wShQcSY4EC ltc: LeTpCd6cQL26Q1vjc9kJrTjjFMrPhrpv6j
|
|
|
aetos
|
|
August 21, 2013, 12:44:08 PM |
|
WHY AL BLOCKS ARE REJECTED?
|
|
|
|
TheSpiral
Full Member
Offline
Activity: 322
Merit: 113
Sinbad Mixer: Mix Your BTC Quickly
|
|
August 21, 2013, 12:45:51 PM |
|
WHY AL BLOCKS ARE REJECTED?
Because you're mining on the wrong miner. Read the first post.
|
|
|
|
cryptohunter
Legendary
Offline
Activity: 2100
Merit: 1167
MY RED TRUST LEFT BY SCUMBAGS - READ MY SIG
|
|
August 21, 2013, 12:49:47 PM |
|
WHY AL BLOCKS ARE REJECTED?
Because you're mining on the wrong miner. Read the first post. Yeah weird coin. Says scrypt in the example for pool mining? but cgminer throws all rejects
|
|
|
|
TheSpiral
Full Member
Offline
Activity: 322
Merit: 113
Sinbad Mixer: Mix Your BTC Quickly
|
|
August 21, 2013, 12:52:38 PM |
|
WHY AL BLOCKS ARE REJECTED?
Because you're mining on the wrong miner. Read the first post. Yeah weird coin. Says scrypt in the example for pool mining? but cgminer throws all rejects What is KingCoin? - First coin support native coin control features - New algo: Keccak 512 + Chacha + Keccak 256
Specifications: - POS+POW - alog: Keccak 512 + Chacha + Keccak 256
|
|
|
|
Giskard
|
|
August 21, 2013, 12:53:16 PM |
|
WHY AL BLOCKS ARE REJECTED?
Because you're mining on the wrong miner. Read the first post. Yeah weird coin. Says scrypt in the example for pool mining? but cgminer throws all rejects It looks like a modified version of scrypt. With the cpuminer you have to specify --algo=scrypt-new. I've been able to get 2 blocks with the cpuminer under windows, but none under linux when I do setgenerate true -1. Does setgenerate work in the daemon?
|
|
|
|
aetos
|
|
August 21, 2013, 12:54:53 PM |
|
how do you set kingminer .bat file?
|
|
|
|
TheSpiral
Full Member
Offline
Activity: 322
Merit: 113
Sinbad Mixer: Mix Your BTC Quickly
|
|
August 21, 2013, 12:55:58 PM |
|
how do you set kingminer .bat file?
Use KingCPUMiner.exe for pool mining, example usage of KingCPUMiner.exe: KingCPUMiner.exe -a scrypt-new -o http://127.0.0.1:33333 -u u -p p Apparently, I have to read for everyone....
|
|
|
|
|