Bitcoin Forum
June 08, 2024, 02:58:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 [258] 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 ... 1832 »
  Print  
Author Topic: ★★DigiByte|极特币★★[DGB]✔ Core v6.16.5.1 - DigiShield, DigiSpeed, Segwit  (Read 3058382 times)
sakkosekk
Full Member
***
Offline Offline

Activity: 224
Merit: 100



View Profile
February 09, 2014, 10:26:21 PM
 #5141


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

It just a bump on the ride Wink
mmininginc
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
February 09, 2014, 10:43:27 PM
 #5142

Where's your server located?

Belgium
HollowStorm
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
February 09, 2014, 10:49:34 PM
Last edit: February 09, 2014, 11:31:31 PM by HollowStorm
 #5143

@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!
Gazza1
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
February 09, 2014, 10:51:21 PM
 #5144

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.

Impossible is a word found only in the dictionary of fools.
martins
Full Member
***
Offline Offline

Activity: 140
Merit: 100

Residencial Castor Apart-Hotel


View Profile WWW
February 09, 2014, 11:15:03 PM
 #5145

@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

mmininginc
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
February 09, 2014, 11:18:00 PM
 #5146

@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.
mmininginc
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
February 09, 2014, 11:51:41 PM
 #5147

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://bitcointalk.org/index.php?topic=214512.0
That's about it... it takes a while to figure it out for new alt-coins. No way around it.
Gazza1
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
February 09, 2014, 11:54:29 PM
 #5148

**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

Impossible is a word found only in the dictionary of fools.
HollowStorm
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
February 09, 2014, 11:56:14 PM
 #5149

@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?
martins
Full Member
***
Offline Offline

Activity: 140
Merit: 100

Residencial Castor Apart-Hotel


View Profile WWW
February 10, 2014, 12:18:36 AM
 #5150

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://bitcointalk.org/index.php?topic=214512.0
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

WutriCoin
Full Member
***
Offline Offline

Activity: 224
Merit: 100



View Profile
February 10, 2014, 12:28:40 AM
Last edit: February 12, 2014, 07:19:44 PM by WutriCoin
 #5151

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/

mmininginc
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
February 10, 2014, 01:49:14 AM
 #5152

It would be great if anyone used the P2Pool node of the guy who posted the config. Roll Eyes
https://bitcointalk.org/index.php?topic=408268.msg5039898#msg5039898
http://p2p.mine.bz:9024
Tnx Wink
DigiByte (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1051


Official DigiByte Account


View Profile WWW
February 10, 2014, 02:23:03 AM
 #5153


Every alt is down in price. Waiting on BTC and Gox situation.
Yes, tomorrow will be a very interesting day in the Crypto world.

DigiByte (OP)
Legendary
*
Offline Offline

Activity: 1722
Merit: 1051


Official DigiByte Account


View Profile WWW
February 10, 2014, 02:29:17 AM
 #5154

New DGB mining pool has been added! http://dgb.codedmaster.com/

We also added a new P2P pool to the list and website: http://p2p.mine.bz:9024/static/

Please PM us if we are missing anyone!

boozoodoo
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile WWW
February 10, 2014, 05:05:56 AM
 #5155

Morecoins.org perfect pool for you!



Our benefits:

Stable and fast SSD cloud hosting
Stratum with VARDIFF
Proportional payments
E-mail notification
Skilled technical support 24/7
Unique DDoS protection system

niceman
Sr. Member
****
Offline Offline

Activity: 336
Merit: 254

CoinMine.pw


View Profile WWW
February 10, 2014, 05:58:45 AM
 #5156

Now you can mine DigiByte at www.CoinMine.pw - the best place to park your workers forever! Roll Eyes


No one second DOWNTIME since pool starts.


  • Several coins to mine from one account
  • Unique functions
  • Easy switch worker from web interface without reconnects and stales!
  • Switch and monitor workers with API !
  • Auto switch workers with personal Coin Sets and Coin's Difficulty range for every Worker
  • USD and LTC rates for all mined coins!
  • Profitability calculator for LTC and USD for all coins!
  • Really FAST and clean interface.
  • Self-written server software optimized for maximum performance!
  • Cool and impressive functions adds almost every day!

And off course standard:

  • Dedicated Xeon Server
  • SSD HDD RAID
  • Several 1Gbit Europe Uplinks
  • DDOS Protection
  • IRC and E-mail support!
  • Stratum
  • VARDIFF
  • PPL(10MIN)S Payout
  • Auto Payouts every minute

And most interesting

Still totally 0% fees (mining and payout) during active development phase
Your donates are very appreciated

WutriCoin
Full Member
***
Offline Offline

Activity: 224
Merit: 100



View Profile
February 10, 2014, 08:30:18 AM
 #5157

New DGB mining pool has been added! http://dgb.codedmaster.com/

We also added a new P2P pool to the list and website: http://p2p.mine.bz:9024/static/

Please PM us if we are missing anyone!

Please add http://dgbpool.cloudapp.net:9024/ to P2Pool list
boozoodoo
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile WWW
February 10, 2014, 09:37:21 AM
Last edit: February 10, 2014, 05:23:09 PM by boozoodoo
 #5158

Morecoins.org perfect pool for you!



Our benefits:

Stable and fast SSD cloud hosting
Stratum with VARDIFF
Proportional payments
E-mail notification
Skilled technical support 24/7
Unique DDoS protection system

Hi, I want to say to all users of our pool - thank you so much that you are with us! Soon we are pleasantly (I hope) will surprise you =) And thanks again! Stay with us!

WutriCoin
Full Member
***
Offline Offline

Activity: 224
Merit: 100



View Profile
February 10, 2014, 10:22:32 AM
Last edit: February 12, 2014, 07:19:31 PM by WutriCoin
 #5159

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/

illodin
Hero Member
*****
Offline Offline

Activity: 966
Merit: 1003


View Profile
February 10, 2014, 10:45:46 AM
 #5160

Stop the pool spam ffs this thread is so annoying to read.
Pages: « 1 ... 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 [258] 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 ... 1832 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!