Author

Topic: ★★DigiByte|极特币★★[DGB]✔ Core v6.16.5.1 - DigiShield, DigiSpeed, Segwit - page 1575. (Read 3058803 times)

full member
Activity: 126
Merit: 100
It would be great if anyone used the P2Pool node of the guy who posted the config. Roll Eyes
https://bitcointalksearch.org/topic/m.5039898
http://p2p.mine.bz:9024
Tnx Wink
full member
Activity: 224
Merit: 100
Azure DigiByte P2Pool

DDOS reisistant P2Pool Node

http://dgbpool.cloudapp.net:9022/

To connect to this P2Pool node simply point your miner at:

URL: stratum+tcp://dgbpool.cloudapp.net:9022
Username: Your DGB address
Password: Anything

Sample configuration

cgminer.exe --scrypt -o stratum+tcp://dgbpool.cloudapp.net:9022 -u DT7EVu3upbtudLrGxvppZgfz4q4L9ridR3 -p X

Fast facts

1. P2Pool nodes are all part of one single, big, distributed pool
2. When any p2pool worker on any node finds a block, everyone on all the nodes gets paid their share
3. There is no pool wallet, and hence no payout threshold. Payments go directly to your wallet
4. The distributed nature of p2pool resists DDoS attacks

Decentralize the hashrate!

http://dgbpool.cloudapp.net:9022/

full member
Activity: 140
Merit: 100
Residencial Castor Apart-Hotel
do you have any guide to setup a p2pool? not only localy but to others connect to it

That others can connect to it is standard, as long as your machine is reachable from the Internet.
I used these sources to get my P2Pool nodes running:
Node requirements are on this page: https://github.com/forrestv/p2pool
P2Pool parameters are covered in this thread: https://bitcointalksearch.org/topic/finding-p2pool-networkspy-values-for-new-altcoins-214512
That's about it... it takes a while to figure it out for new alt-coins. No way around it.
im mining at your p2pool here is my adress DTaj1VFP5wgeF6dAicTbS38GQvrcv4Z2AD
member
Activity: 70
Merit: 10
@mmininginc
Thanks for Sharing the Digibyte Network networks.py code Smiley

Heres my P2pool info:
8<
        BOOTSTRAP_ADDRS='pool2eu.dgbmining.com'.split(' '),
8<

To The DigiMoon!
Np.
We should add each other's address here....
      BOOTSTRAP_ADDRS='p2p.mine.bz pool2eu.dgbmining.com'.split(' '),
A space to separate.

In fact only other node addresses matter. When you launch P2Pool, you will see that the server tries to make a connection with itself, detects it, and bans his own address. That's because your own address is in this line. I put my own address in the posted config only in order to let other nodes find my node.


Done. Removed my node's address and added only that node's address
So are we connected yet?
full member
Activity: 238
Merit: 100
**FOR SALE**

6x 7970 Sapphire DualX - 275k DigiBytes a piece
6x 280x Sapphire DualX - 325k DigiBytes a piece
1x Intel i7 3770k - 275k DigiBytes
1x Asus P8Z77M PRO mobo 90k Digibytes
1x Samsung Galaxy S3 Unlocked 285k Digibytes

PM for interest and offers!  Going going fast!!! Cheesy
full member
Activity: 126
Merit: 100
do you have any guide to setup a p2pool? not only localy but to others connect to it

That others can connect to it is standard, as long as your machine is reachable from the Internet.
I used these sources to get my P2Pool nodes running:
Node requirements are on this page: https://github.com/forrestv/p2pool
P2Pool parameters are covered in this thread: https://bitcointalksearch.org/topic/finding-p2pool-networkspy-values-for-new-altcoins-214512
That's about it... it takes a while to figure it out for new alt-coins. No way around it.
full member
Activity: 126
Merit: 100
@mmininginc
Thanks for Sharing the Digibyte Network networks.py code Smiley

Heres my P2pool info:
8<
        BOOTSTRAP_ADDRS='pool2eu.dgbmining.com'.split(' '),
8<

To The DigiMoon!
Np.
We should add each other's address here....
      BOOTSTRAP_ADDRS='p2p.mine.bz pool2eu.dgbmining.com'.split(' '),
A space to separate.

In fact only other node addresses matter. When you launch P2Pool, you will see that the server tries to make a connection with itself, detects it, and bans his own address. That's because your own address is in this line. I put my own address in the posted config only in order to let other nodes find my node.
full member
Activity: 140
Merit: 100
Residencial Castor Apart-Hotel
@mmininginc
Thanks for Sharing the Digibyte Network networks.py code Smiley

Heres my P2pool info:

Pool2eu.dgbmining.com:10024
EU Node! Feel free to join!

Feel free to contribute to the Digibyte P2pool Network!

Heres my config:

To enable the DGB P2Pool network to grow,
networks.py
    digibyte=math.Object(
        PARENT=networks.nets['digibyte'],
        SHARE_PERIOD=15, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=30, # blocks
        IDENTIFIER='400690cf35352b24'.decode('hex'),
        PREFIX='fa1fb851e8c0a924'.decode('hex'),
        P2P_PORT=8024,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=10024,
        BOOTSTRAP_ADDRS='pool2eu.dgbmining.com'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),
bitcoin/networks.py
    digibyte=math.Object(
        P2P_PREFIX='fac3b6da'.decode('hex'), #pchmessagestart
        P2P_PORT=12024,
        ADDRESS_VERSION=30, #pubkey_address
        RPC_PORT=14022,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'digibyteaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 8000 *100000000 >> (height + 1)//1051200,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60, # s
        SYMBOL='DGB',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'digibyte') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/digibyte/') if platform.system() == 'Darwin' else os.path.expanduser('~/.digibyte'), 'digibyte.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://altexplorer.net/block/', #dummy
        ADDRESS_EXPLORER_URL_PREFIX='http://altexplorer.net/address/',
        TX_EXPLORER_URL_PREFIX='http://altexplorer.net/tx/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=0.03e8,
    ),


To The DigiMoon!

do you have any guide to setup a p2pool? not only localy but to others connect to it
full member
Activity: 238
Merit: 100
Are multipools even profitable for the miner?  It seems like with all the coin switching they would make less, unless the miners were getting pps, which I doubt they are.
member
Activity: 70
Merit: 10
@mmininginc
Thanks for Sharing the Digibyte Network networks.py code Smiley

Heres my P2pool info:

Pool2eu.dgbmining.com:10024
EU Node! Feel free to join! set your wallet address as your username and the password as anything..

Feel free to contribute to the Digibyte P2pool Network!

Heres my config:

To enable the DGB P2Pool network to grow,
networks.py
    digibyte=math.Object(
        PARENT=networks.nets['digibyte'],
        SHARE_PERIOD=15, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=30, # blocks
        IDENTIFIER='400690cf35352b24'.decode('hex'),
        PREFIX='fa1fb851e8c0a924'.decode('hex'),
        P2P_PORT=8024,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=10024,
        BOOTSTRAP_ADDRS='p2p.mine.bz pool2eu.dgbmining.com'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),
bitcoin/networks.py
    digibyte=math.Object(
        P2P_PREFIX='fac3b6da'.decode('hex'), #pchmessagestart
        P2P_PORT=12024,
        ADDRESS_VERSION=30, #pubkey_address
        RPC_PORT=14022,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'digibyteaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 8000 *100000000 >> (height + 1)//1051200,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60, # s
        SYMBOL='DGB',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'digibyte') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/digibyte/') if platform.system() == 'Darwin' else os.path.expanduser('~/.digibyte'), 'digibyte.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://altexplorer.net/block/', #dummy
        ADDRESS_EXPLORER_URL_PREFIX='http://altexplorer.net/address/',
        TX_EXPLORER_URL_PREFIX='http://altexplorer.net/tx/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=0.03e8,
    ),


To The DigiMoon!
full member
Activity: 126
Merit: 100
full member
Activity: 224
Merit: 100

Every alt is down in price. Waiting on BTC and Gox situation.

It just a bump on the ride Wink
legendary
Activity: 1386
Merit: 1023

Every alt is down in price. Waiting on BTC and Gox situation.
sr. member
Activity: 336
Merit: 250
A benefit of a faster retarget keeps multi pools off your coin thats one of the reasons why I like it.
legendary
Activity: 1062
Merit: 1003
i recomend you guys dont change your hash to any onther coin, mine DGB and get its difficulty to 50+ im all in! seams like the difficulty improves the coin value
i saw diff 18 and the price went almost 200 satoshis now we're dropping slow in difficulty and the price went down also diff 12 and price is 135 satoshis ! a little up the difficulty but following the same padron! if we could hit 40-50+ in difficulty we could hit 300-400 satoshis but we need to keep it up in difficulty ... oh jeez save us!

would kimoto gravity well help with this?

Kimoto would just make the difficulty more variable, but what Martins is talking about is average network hash. A faster retarget would make it more difficult to judge the real average difficulty in my opinion as difficulty would be all over the place from block to block.
member
Activity: 84
Merit: 11
Just wanted to let everyone know our development goals to achieve by the end of next week:

1) Get listed on Cryptsy
2) Finish all newbie guides so DigiByte can become a bridge for new users into the crypto world.
3) Finish promo video & DigiMan
4) Start Facebook advertising


Keep messaging Cryptsy here: https://cryptsy.freshdesk.com/support/discussions/topics/72581

Thanks for the update.

I have looked through the posts and I see lots of people complaining about value of the coin. We all have to realize the only WAY the value of the coin will increase if more people are holding it. This means the coin must be used for something other than speculation. Look at DogeCoin why is it rising? Many people are holding it. Everyone talks about. It has a "network effect".
newbie
Activity: 31
Merit: 0
i recomend you guys dont change your hash to any onther coin, mine DGB and get its difficulty to 50+ im all in! seams like the difficulty improves the coin value
i saw diff 18 and the price went almost 200 satoshis now we're dropping slow in difficulty and the price went down also diff 12 and price is 135 satoshis ! a little up the difficulty but following the same padron! if we could hit 40-50+ in difficulty we could hit 300-400 satoshis but we need to keep it up in difficulty ... oh jeez save us!

would kimoto gravity well help with this?
member
Activity: 70
Merit: 10
Because the only DGB P2Pool server was charging 10% fee (p2pool.neocities.org), I've setup a new P2Pool node for DigiByte:
http://p2p.mine.bz:9024
Feel free to join.

To enable the DGB P2Pool network to grow, here's my P2Pool configuration:
networks.py
    digibyte=math.Object(
        PARENT=networks.nets['digibyte'],
        SHARE_PERIOD=15, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=30, # blocks
        IDENTIFIER='400690cf35352b24'.decode('hex'),
        PREFIX='fa1fb851e8c0a924'.decode('hex'),
        P2P_PORT=8024,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=9024,
        BOOTSTRAP_ADDRS='p2p.mine.bz'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),
bitcoin/networks.py
    digibyte=math.Object(
        P2P_PREFIX='fac3b6da'.decode('hex'), #pchmessagestart
        P2P_PORT=12024,
        ADDRESS_VERSION=30, #pubkey_address
        RPC_PORT=14022,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'digibyteaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 8000 *100000000 >> (height + 1)//1051200,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60, # s
        SYMBOL='DGB',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'digibyte') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/digibyte/') if platform.system() == 'Darwin' else os.path.expanduser('~/.digibyte'), 'digibyte.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://altexplorer.net/block/', #dummy
        ADDRESS_EXPLORER_URL_PREFIX='http://altexplorer.net/address/',
        TX_EXPLORER_URL_PREFIX='http://altexplorer.net/tx/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
        DUST_THRESHOLD=0.03e8,
    ),


Happy mining!

Where's your server located?
legendary
Activity: 1062
Merit: 1003
What happened to http://dgb.smalltimeminer.com/ - they locked registrations and had 800+ miners for the past few weeks. Now around 50, registrations are open again, heard lots of good things about this pool and have been wanting to get on it since i started mining DGB.

Currently mining on http://digi.coinium.org/ but 120 confirms is silly, needs to be lowered to 20 like most pools.

Try More Coins Pool: http://digi.morecoins.org I mine there now .. Note: Round Earnings are not credited until 10 confirms.

Not sure why they dropped users, but they used to have a lot of very big farms which are no longer there. The new user block only came down a few hours ago btw, so it seems this just crept up on them. I've been using them without any problem for about 2 weeks & payouts are just 8 confirms.
member
Activity: 84
Merit: 11
Jump to: