Author

Topic: [ANN][DGC] Digitalcoin | Multi-algo & Masternodes | Established 2013 - page 164. (Read 523584 times)

sr. member
Activity: 662
Merit: 250
Might be the wing place but I'll ask anyway looking to see if it's possible to get a android app for this coin and cryspty that would be awesome
I'm looking into making an android wallet.

awesome
legendary
Activity: 980
Merit: 1000
Might be the wing place but I'll ask anyway looking to see if it's possible to get a android app for this coin and cryspty that would be awesome
I'm looking into making an android wallet.
hero member
Activity: 532
Merit: 500
Might be the wing place but I'll ask anyway looking to see if it's possible to get a android app for this coin and cryspty that would be awesome
hero member
Activity: 532
Merit: 500
We now have two block explorers working(more details in the first post), so we shouldn't be left without ever again.  Smiley
If I can help by being a backup please tell me how I will put it on a vps with 99% uptime
legendary
Activity: 966
Merit: 1052
We now have two block explorers working(more details in the first post), so we shouldn't be left without ever again.  Smiley
hero member
Activity: 532
Merit: 500
Nice work Baritus. Dgc continues to gather momentum. Up over .0004 today and pushing that level again now on Cryptsy. Steady consistent rise unlike the pump and dumps of other alts. Looking good!
+1
hero member
Activity: 1361
Merit: 506
Nice work Baritus. Dgc continues to gather momentum. Up over .0004 today and pushing that level again now on Cryptsy. Steady consistent rise unlike the pump and dumps of other alts. Looking good!
legendary
Activity: 966
Merit: 1052
The network is completely stable and there are no risks to worry about.

legendary
Activity: 1694
Merit: 1054
Point. Click. Blockchain
Ok another question don't we need to spread the hash more looks like vern is almost all the hash right now

Yep. Vern thankfully closed the signup form. So we just need to give it some time.

Quite alot of time by the looks of it..

Pool Hashrate: 479.61 MH/s   
Network Hashrate: 595.05 Mh/s

He might have closed registration but that has not really reduced the high hash rate on the pool.

As of writing this Digicoinpool is at 80% of network hashrate!!!




This only shows how well this coin is designed.  WDC or any other alts would have blown up.  Well done Baritus...


-tb-
member
Activity: 70
Merit: 10
Ok here is another question is it possible to have someone make a plugin or something like that for opencart? Would love to turn my site from BTC to DGC  Grin
https://github.com/btcgear/OpenCart_Bitcoin

Shouldn't be too hard to have it interface with digitalcoind instead of bitcoind. I'll take a look at it.
Will you keep us updated on this? Thanks.

Also, thanks for joining the Dev team. baritus has been working hard. I'm sure he could use help.
sr. member
Activity: 289
Merit: 251
Please someone correct me if I am mistaken.  I am not a Python coder.

I have taken a quick look at the code and from my limited knowledge of Python
it seems that if "IDENTIFIER" and "PREFIX" values in p2pool/networks.py are not equal
between P2Pools, the pools will be working on their own individual shares (a block in P2Pool terms)
and not a collective block distributed amongst ALL P2Pools.  This is where the fragmentation
happens and results in a number of decentralised P2Pools.

So it seems the key here would be for ALL P2Pools to use the same "IDENTIFIER" and
"PREFIX" values.

So taking an example from akabane's kind submission to github,
if ALL P2Pool ops had the following in their p2pool/networks.py,
ALL P2Pools would acknowledge each other and work on the same
share (block)..

Code:
        IDENTIFIER='a5aed03050126d6d'.decode('hex'),
        PREFIX='b6c0601991aa19a3'.decode('hex'),

Please please correct me if I am mistaken...




As an example take a look at the litecoin pool at p2pool.org

The section at the bottom right has 4 peers out and 24 peers in  Grin

http://p2pool.org:9327/static/




Another example this time a DGC P2Pool.

http://208.117.43.200:5400 - Decagrog | 0.5% | Chicago, USA (Geekstorage)

2 Peers out / 4 Peers in

Decagrog, what codebase are you using for your pool?  Also what servers  do you have in the "BOOTSTRAP_ADDRS" variable
in p2pool/networks.py?



I'm using pretty much the same settings of akabane source, I'm just trying spread=72 from about 12hours and seems to have a better orphans ratio
Also I've tried to connect with CartmanSPC pool (see bootstrap_addr) but i can't see his ip in my p2pool log    Undecided


Code:
    digital=math.Object(
        PARENT=networks.nets['digital'],
        SHARE_PERIOD=30, # seconds target spacing
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares coinbase maturity
        SPREAD=75, # blocks
        IDENTIFIER='a5aed03050126d6d'.decode('hex'),
        PREFIX='b6c0601991aa19a3'.decode('hex'),
        P2P_PORT=23396,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=True,
        WORKER_PORT=5400,
        BOOTSTRAP_ADDRS='pool.bounceme.net dgc.xpool.net'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),
legendary
Activity: 966
Merit: 1052
sr. member
Activity: 336
Merit: 250
Please someone correct me if I am mistaken.  I am not a Python coder.

I have taken a quick look at the code and from my limited knowledge of Python
it seems that if "IDENTIFIER" and "PREFIX" values in p2pool/networks.py are not equal
between P2Pools, the pools will be working on their own individual shares (a block in P2Pool terms)
and not a collective block distributed amongst ALL P2Pools.  This is where the fragmentation
happens and results in a number of decentralised P2Pools.

So it seems the key here would be for ALL P2Pools to use the same "IDENTIFIER" and
"PREFIX" values.

So taking an example from akabane's kind submission to github,
if ALL P2Pool ops had the following in their p2pool/networks.py,
ALL P2Pools would acknowledge each other and work on the same
share (block)..

Code:
        IDENTIFIER='a5aed03050126d6d'.decode('hex'),
        PREFIX='b6c0601991aa19a3'.decode('hex'),

Please please correct me if I am mistaken...




As an example take a look at the litecoin pool at p2pool.org

The section at the bottom right has 4 peers out and 24 peers in  Grin

http://p2pool.org:9327/static/




Another example this time a DGC P2Pool.

http://208.117.43.200:5400 - Decagrog | 0.5% | Chicago, USA (Geekstorage)

2 Peers out / 4 Peers in

Decagrog, what codebase are you using for your pool?  Also what servers  do you have in the "BOOTSTRAP_ADDRS" variable
in p2pool/networks.py?

full member
Activity: 163
Merit: 100
Here this is more like it. Just took another glance/screen shot:



Can push them over 755 but they dont run reliably at that rate and I dont want to be restarting the miner every couple days. It also uses up a lot more power.

Can you share your settings and hardware description? It's overclocked?
legendary
Activity: 1316
Merit: 1000
Ok another question don't we need to spread the hash more looks like vern is almost all the hash right now

Yep. Vern thankfully closed the signup form. So we just need to give it some time.

Quite alot of time by the looks of it..

Pool Hashrate: 479.61 MH/s   
Network Hashrate: 595.05 Mh/s

He might have closed registration but that has not really reduced the high hash rate on the pool.

As of writing this Digicoinpool is at 80% of network hashrate!!!

member
Activity: 113
Merit: 10
Also got an error on your link but it is still working when forging the url, so I do not think it is a bit matter to fix

http://dgc.p2pool.nl/block/f2e647681a3bedcd72292413f4d8af5553fe6302416e8e195399d1673348c495
http://dgc.p2pool.nl/search?q=75027

We can also used http://dgc.cryptocoinexplorer.com as an alternative.

full member
Activity: 186
Merit: 100
Monero
I think the block explorer stopped working. Huh
Anyone able to get this to work?

-Block explorer: http://dgc.p2pool.nl/chain/Digitalcoins
full member
Activity: 154
Merit: 100
Hack The Planet
Baratius or barbarious or Barbie or whatever.  Would you please answer my question directed at you right after you posted in my thread?  https://bitcointalksearch.org/topic/who-are-you-who-are-your-cryptocoin-devs-225643

Who are you and what qualifications do you have for running a crypto and why should I trust a person who joined a few weeks ago?

L00ser first answer to this : WHO IS Satoshi Nakamoto  Wink and how big is the bitcoin market.

Go and hide yourself under that rock that you crawled out off.  Grin
newbie
Activity: 42
Merit: 0
Ok another question don't we need to spread the hash more looks like vern is almost all the hash right now

Yep. Vern thankfully closed the signup form. So we just need to give it some time.
hero member
Activity: 532
Merit: 500
Ok here is another question is it possible to have someone make a plugin or something like that for opencart? Would love to turn my site from BTC to DGC  Grin
https://github.com/btcgear/OpenCart_Bitcoin

Shouldn't be too hard to have it interface with digitalcoind instead of bitcoind. I'll take a look at it.
Thanks please let me know
Jump to: