Pages:
Author

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

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.
full member
Activity: 126
Merit: 100
You may want to try out pywallet -- https://github.com/jackjack-jj/pywallet

I haven't tried it with altcoin wallets, but for bitcoin wallets it lets you see your addresseses and such.
full member
Activity: 196
Merit: 100
Yes, wallet was created.
full member
Activity: 126
Merit: 100
Could anyone help me with this, please? I can't even do anything!

Hm, I can look into it. What are your machine specs? Do you have a firewall?

Win8 64-bit, i5-3337U, 8GB RAM, and GPU is Nvidia GT630M. I let it through Windows Firewall on private networks only.

Alternatively, is there a way to generate an address outside of the client so that I can start mining then solve the client issue later?

Hmm maybe there is a qt issue on windows 8. I'll dig around.

Was a wallet.dat created?
full member
Activity: 196
Merit: 100
Could anyone help me with this, please? I can't even do anything!

Hm, I can look into it. What are your machine specs? Do you have a firewall?

Win8 64-bit, i5-3337U, 8GB RAM, and GPU is Nvidia GT630M. I let it through Windows Firewall on private networks only.

Alternatively, is there a way to generate an address outside of the client so that I can start mining then solve the client issue later?
legendary
Activity: 2674
Merit: 2965
Terminated.
Why would anyone mine this?
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

Great! Thanks for making a pool! I'll add it to the OP.

Could anyone help me with this, please? I can't even do anything!

Started up the client. GUI windows opens and immediately hangs.

Hm, I can look into it. What are your machine specs? Do you have a firewall?
full member
Activity: 196
Merit: 100
Could anyone help me with this, please? I can't even do anything!

Started up the client. GUI windows opens and immediately hangs.
hero member
Activity: 796
Merit: 505
Wow, amazing, 150 coins :-D
member
Activity: 95
Merit: 10
Nothing
hero member
Activity: 592
Merit: 500
hero member
Activity: 796
Merit: 505
Is teh pool dead or what?
On payouts page in pool I have 100+ which is nothing compared to my wallet which is like 5 coins.

btw, ppl saying they sell 100k coins when there are 1000 blocks?




The payout page is you expected esitmated payout for the block we are trying to solve, not what is on it's way to you. If we find that block that is what you should get. roughly.



Ah, sorry mate. I dont know why but after refresh pool's payout page didnt update, I tried quite few times. In another browser it shows correct data :-p
hero member
Activity: 592
Merit: 500
Is teh pool dead or what?
On payouts page in pool I have 100+ which is nothing compared to my wallet which is like 5 coins.

btw, ppl saying they sell 100k coins when there are 1000 blocks?




The payout page is you expected esitmated payout for the block we are trying to solve, not what is on it's way to you. If we find that block that is what you should get. roughly.

hero member
Activity: 616
Merit: 526

btw, ppl saying they sell 100k coins when there are 1000 blocks?


Rewards are random. One can get anywhere from 50 to 10k from blocks 101 to 129600.
hero member
Activity: 796
Merit: 505
Is teh pool dead or what?
On payouts page in pool I have 100+ which is nothing compared to my wallet which is like 5 coins.

btw, ppl saying they sell 100k coins when there are 1000 blocks?


full member
Activity: 187
Merit: 100
Pow is so 1994 bro, get With the times and security

And what does Memecoin use...?
Pages:
Jump to: