Pages:
Author

Topic: [ANN][BEL] Bells - Fast and fun! - Scrypt - Random Block Rewards - No Premine - page 16. (Read 33274 times)

full member
Activity: 126
Merit: 100
I created stratum pool for bells bel.blocksolved.com with 1,5% fee.  
Per my calculations average return per block should be 280 coins and this number is greatly influenced by 1% chance of getting 10000, so I think it's a good idea to do pool mining Smiley


Great! Thank you. Added it to OP Smiley
full member
Activity: 120
Merit: 100
I created stratum pool for bells bel.blocksolved.com with 1,5% fee.  
Per my calculations average return per block should be 280 coins and this number is greatly influenced by 1% chance of getting 10000, so I think it's a good idea to do pool mining Smiley
hero member
Activity: 592
Merit: 500
I want another 10k block!
full member
Activity: 126
Merit: 100
The QT crashes if you try to encrypt your wallet or do anything on the console. Bad coin.

This happens on one of my machines, I'll look into it when I get a chance. I think it might have something to do with one of the dlls and certain architectures.
member
Activity: 106
Merit: 10
CryptoBeggar
Everything fine here too !!! Tongue
hero member
Activity: 592
Merit: 500
Everything fine here, been using the console with no problem and just encrypted my wallet!


11:45:49

getmininginfo


11:45:49

{
"blocks" : 8241,
"currentblocksize" : 0,
"currentblocktx" : 0,
"difficulty" : 0.14894961,
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"networkhashps" : 13621016,
"pooledtx" : 0,
"testnet" : false
}
newbie
Activity: 16
Merit: 0
The QT crashes if you try to encrypt your wallet or do anything on the console. Bad coin.
hero member
Activity: 592
Merit: 500
Wow, the total network hashrate has virtually doubled lol. People seem to be wanting these.. Kiss
hero member
Activity: 592
Merit: 500
This explains the jump in diff then haha! Wink
member
Activity: 106
Merit: 10
CryptoBeggar
i was late for almost all coins so im gonna give a go Smiley
member
Activity: 104
Merit: 10
Trying to find my way.
Well..mining this for the lols..but I've been having trouble getting my NVIDIA Quadro K1000M working on mining..any pointers?

Are you using cudaminer? Should be able to eek out a few khash with it Cheesy I would mine on the pool tho.

Lol it turns out that after getting cudaminer working that my CPU is faster than that GPU..but yeah I'm mining on that pool. Don't know if this coin is going anywhere (doubt it), but tis funny.
full member
Activity: 168
Merit: 100
I like the idea of random reward but the logo seems "not serious" for me !
Expecting shitcoin to be "serious"? Are you serious?
newbie
Activity: 40
Merit: 0
I like the idea of random reward but the logo seems "not serious" for me !

full member
Activity: 126
Merit: 100
Well..mining this for the lols..but I've been having trouble getting my NVIDIA Quadro K1000M working on mining..any pointers?

Are you using cudaminer? Should be able to eek out a few khash with it Cheesy I would mine on the pool tho.
member
Activity: 104
Merit: 10
Trying to find my way.
Well..mining this for the lols..but I've been having trouble getting my NVIDIA Quadro K1000M working on mining..any pointers?
full member
Activity: 126
Merit: 100
Wedge, what is your Bells addy? I'd like to give you a few BELs as a thanks for creating the first pool Smiley

Much obliged.

B9bWKzrfAny5RiAMCPk7JaVk5ZRTBk4waj

Sent! I'm working on a block explorer too, but if someone wants to make one on a (likely) more reliable host, I'll send a few BELs their way as well Smiley
full member
Activity: 187
Merit: 100
great work - can you share the p2pool source code so we can install another p2pool instances? i am in EU.

Using the lastest p2pool version from forrestv this should be all you need to get up and running.  
Notes: Being the first, I had to choose what ports to use, 19928 and 19929 seemed to make as much sense as any.  But if there are any known conflicts, we can change those.
Also the subsidy function is completely wrong, I had no idea how to write it for this coin.  But everything seems to work in spite of that.
Also there's no block explorer yet, but that detail can be filled in once one exists.
Everything else should be good.

networks.py:
Code:
bellscoin=math.Object(
        PARENT=networks.nets['bellscoin'],
        SHARE_PERIOD=15, # seconds, controls share difficulty
        CHAIN_LENGTH=24*60*60//30, # shares
        REAL_CHAIN_LENGTH=24*60*60//30, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=10, # blocks
        IDENTIFIER='e037d5b8c6923415'.decode('hex'),
        PREFIX='7208c1a53ef629b0'.decode('hex'),
        P2P_PORT=19929,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=19928,
        BOOTSTRAP_ADDRS='www.outhashed.com'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

and bitcoin/networks.py:
Code:
bellscoin=math.Object(
        P2P_PREFIX='c0c0c0c0'.decode('hex'),
        P2P_PORT=19919,
        ADDRESS_VERSION=25,
        RPC_PORT=19918,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'bellsaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//600000,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60, # s
        SYMBOL='BEL',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Bells') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Bells/') if platform.system() == 'Darwin' else os.path.exp$
        BLOCK_EXPLORER_URL_PREFIX='http://nonexistent-bellscoin-explorer/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://nonexistent-bellscoin-explorer/address/',
        TX_EXPLORER_URL_PREFIX='http://nonexistent-bellscoin-explorer/tx/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=0.1e8,
    ),
full member
Activity: 187
Merit: 100
Wedge, what is your Bells addy? I'd like to give you a few BELs as a thanks for creating the first pool Smiley

Much obliged.

B9bWKzrfAny5RiAMCPk7JaVk5ZRTBk4waj
full member
Activity: 126
Merit: 100
First pool is up!

http://www.outhashed.com:19928/static/

US based P2Pool stratum server node
Low Latency, 1Gb/sec!
99.99% Uptime hosting

No registration needed, just connect with your BEL address as the username, password can be anything.

Sample CGMiner config:

Code:
cgminer --scrypt -o www.outhashed.com:19928 -u  -p anything

Wedge, what is your Bells addy? I'd like to give you a few BELs as a thanks for creating the first pool Smiley
full member
Activity: 190
Merit: 100
First pool is up!

http://www.outhashed.com:19928/static/

US based P2Pool stratum server node
Low Latency, 1Gb/sec!
99.99% Uptime hosting

No registration needed, just connect with your BEL address as the username, password can be anything.

Sample CGMiner config:

Code:
cgminer --scrypt -o www.outhashed.com:19928 -u  -p anything

great work - can you share the p2pool source code so we can install another p2pool instances? i am in EU.
Pages:
Jump to: