Author

Topic: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency - page 6089. (Read 9724115 times)

legendary
Activity: 966
Merit: 1000
Have you noticed this ?

Timed Hadrfork  Grin

Set ntp  Cheesy


https://github.com/darkcoinproject/darkcoin/blob/master/src/protocol.cpp#L16-L35

Code:
// The message start string is designed to be unlikely to occur in normal data.
// The characters are rarely used upper ascii, not valid as UTF-8, and produce
// a large 4-byte int at any alignment.
// Public testnet message start
static unsigned char pchMessageStartTestOld[4] = { 0xfc, 0xc1, 0xb7, 0xdc };
static unsigned char pchMessageStartTestNew[4] = { 0xce, 0xe2, 0xca, 0xff };
static unsigned int nMessageStartTestSwitchTime = 1398869551+(60*5);

// Darkcoin message start (switch from Litecoin's)
static unsigned char pchMessageStartLitecoin[4] = { 0xfb, 0xc0, 0xb6, 0xdb };
static unsigned char pchMessageStartDarkcoin[4] = { 0xbf, 0x0c, 0x6b, 0xbd };
static unsigned int nMessageStartSwitchTime = 1400094580; //Wed, 14 May 2014 19:09:40 GMT

void GetMessageStart(unsigned char pchMessageStart[], bool fPersistent)
{
    if (fTestNet)
        memcpy(pchMessageStart, (fPersistent || GetAdjustedTime() > nMessageStartTestSwitchTime)? pchMessageStartTestNew : pchMessageStartTestOld, sizeof(pchMessageStartTestNew));
    else
        memcpy(pchMessageStart, (fPersistent || GetAdjustedTime() > nMessageStartSwitchTime)? pchMessageStartDarkcoin : pchMessageStartLitecoin, sizeof(pchMessageStartDarkcoin));
}


From Litecoin { 0xfb, 0xc0, 0xb6, 0xdb } to Darkcoin { 0xbf, 0x0c, 0x6b, 0xbd }   Grin

Poetry right there. Smiley
legendary
Activity: 1176
Merit: 1036
Dash Developer
Have you noticed this ?

Timed Hadrfork  Grin

Set ntp  Cheesy


https://github.com/darkcoinproject/darkcoin/blob/master/src/protocol.cpp#L16-L35

Code:
// The message start string is designed to be unlikely to occur in normal data.
// The characters are rarely used upper ascii, not valid as UTF-8, and produce
// a large 4-byte int at any alignment.
// Public testnet message start
static unsigned char pchMessageStartTestOld[4] = { 0xfc, 0xc1, 0xb7, 0xdc };
static unsigned char pchMessageStartTestNew[4] = { 0xce, 0xe2, 0xca, 0xff };
static unsigned int nMessageStartTestSwitchTime = 1398869551+(60*5);

// Darkcoin message start (switch from Litecoin's)
static unsigned char pchMessageStartLitecoin[4] = { 0xfb, 0xc0, 0xb6, 0xdb };
static unsigned char pchMessageStartDarkcoin[4] = { 0xbf, 0x0c, 0x6b, 0xbd };
static unsigned int nMessageStartSwitchTime = 1400094580; //Wed, 14 May 2014 19:09:40 GMT

void GetMessageStart(unsigned char pchMessageStart[], bool fPersistent)
{
    if (fTestNet)
        memcpy(pchMessageStart, (fPersistent || GetAdjustedTime() > nMessageStartTestSwitchTime)? pchMessageStartTestNew : pchMessageStartTestOld, sizeof(pchMessageStartTestNew));
    else
        memcpy(pchMessageStart, (fPersistent || GetAdjustedTime() > nMessageStartSwitchTime)? pchMessageStartDarkcoin : pchMessageStartLitecoin, sizeof(pchMessageStartDarkcoin));
}


From Litecoin { 0xfb, 0xc0, 0xb6, 0xdb } to Darkcoin { 0xbf, 0x0c, 0x6b, 0xbd }   Grin
hero member
Activity: 2170
Merit: 640
Undeads.com - P2E Runner Game
This article (http://www.coindesk.com/bitcoin-thriving-argentinas-black-market-economy/) got me thinking about about the black market and it's global market value.

It turns out it's circa 1.6 Trillion Dollars (http://www.havocscope.com/products/ranking/).

The current currency of the black market is US Dollars but they are turning to Bitcoin and inevitably will turn to anonymous coins in the future, and as Darkcoin is the leader in this field I predict they will start using it once it has been proven to be reliable in the coming months/years.

The potential for this coin is huge....

1.6 Trillion / 22 Million = ~$73900 per coin --- Wow

Maybe this is why we are seeing massive amounts of DRK being purchased at the current low price.

The 1.6 Trillion is the yearly turnover in USD? You can`t deduct a price for DRK from that. In theory one DRK at one USD would be enough with (unrealistically high) velocity, if it changed hands 1.6 trillion times. But still, the potential for DRK is huge, I just do not know how to quantify it.

First we need to take on LTC and bypass it.
Shouldn't be too much of a hassle.
And then run up to the cap of BTC, will take a couple of weeks longer, probably.
And have a fiat exchange ready, around the way.

Would give a quote of ~ US$ 250 with the current BTC price.
With the impact of such a shift and some favorable propaganda it might even shoot higher than BTC ever was.
sr. member
Activity: 294
Merit: 250
Have you noticed this ?

Timed Hardrfork  Grin

Set ntp  Cheesy


https://github.com/darkcoinproject/darkcoin/blob/master/src/protocol.cpp#L16-L35

Code:
// The message start string is designed to be unlikely to occur in normal data.
// The characters are rarely used upper ascii, not valid as UTF-8, and produce
// a large 4-byte int at any alignment.
// Public testnet message start
static unsigned char pchMessageStartTestOld[4] = { 0xfc, 0xc1, 0xb7, 0xdc };
static unsigned char pchMessageStartTestNew[4] = { 0xce, 0xe2, 0xca, 0xff };
static unsigned int nMessageStartTestSwitchTime = 1398869551+(60*5);

// Darkcoin message start (switch from Litecoin's)
static unsigned char pchMessageStartLitecoin[4] = { 0xfb, 0xc0, 0xb6, 0xdb };
static unsigned char pchMessageStartDarkcoin[4] = { 0xbf, 0x0c, 0x6b, 0xbd };
static unsigned int nMessageStartSwitchTime = 1400094580; //Wed, 14 May 2014 19:09:40 GMT

void GetMessageStart(unsigned char pchMessageStart[], bool fPersistent)
{
    if (fTestNet)
        memcpy(pchMessageStart, (fPersistent || GetAdjustedTime() > nMessageStartTestSwitchTime)? pchMessageStartTestNew : pchMessageStartTestOld, sizeof(pchMessageStartTestNew));
    else
        memcpy(pchMessageStart, (fPersistent || GetAdjustedTime() > nMessageStartSwitchTime)? pchMessageStartDarkcoin : pchMessageStartLitecoin, sizeof(pchMessageStartDarkcoin));
}

legendary
Activity: 1442
Merit: 1018
Here's the new schedule for development:

- RC2 (masternode payments, DGW3) : May 14th
- RC3 (1000 DRK limit and denominated change) : May 21st
- After this, I'll find someone to vet the code and open source.
- RC4 (Bugs, security issues)
- Testing, then opensource

I'm wondering, if the  darksend code is opensource, so another coin can implements it and DarkCoin will loose some value because it will not be the only one providing the feature ?
Or I'm wrong ?

Would require massive forks to any coins implementing it and from the standpoint of what is out there, I'd wager there are very few coins with capable devs of not only implementing the change, but maintaining it or even improving it.

But, with open source, anything is possible. I personally think POS is the way to go, even with the energy savings of mining with X11. Not sure how staking would work in regards to masternodes though.
full member
Activity: 280
Merit: 100
The Future Of Work
When I do "getinfo"  I don't get the port number at all.  Should it be showing up here?  Maybe that's my problem when trying to set up my remote wallet?

Sorry, was tired, I meant "darkcoind masternode list," not "darkcoind getinfo."   Embarrassed

Ah!  Thank you for that, one mystery solved, LOL

Now if I could figure out how to get my ip off the masternode list so I can redo it!
hero member
Activity: 611
Merit: 500
Here's the new schedule for development:

- RC2 (masternode payments, DGW3) : May 14th
- RC3 (1000 DRK limit and denominated change) : May 21st
- After this, I'll find someone to vet the code and open source.
- RC4 (Bugs, security issues)
- Testing, then opensource

I'm wondering, if the  darksend code is opensource, so another coin can implements it and DarkCoin will loose some value because it will not be the only one providing the feature ?
Or I'm wrong ?

How's Bitcoin doing compared to all of its forks and clones? First movers have a big advantage plus this coin has a full time dev detected to fixing any issues that might arise.  

Easy choice vs any future attempted clonecoins.
sr. member
Activity: 294
Merit: 250
Here's the new schedule for development:

- RC2 (masternode payments, DGW3) : May 14th
- RC3 (1000 DRK limit and denominated change) : May 21st
- After this, I'll find someone to vet the code and open source.
- RC4 (Bugs, security issues)
- Testing, then opensource

I'm wondering, if the  darksend code is opensource, so another coin can implements it and DarkCoin will loose some value because it will not be the only one providing the feature ?
Or I'm wrong ?


Darksend is not a LEGO block Smiley
full member
Activity: 147
Merit: 100

I'm wondering, if the  darksend code is opensource, so another coin can implements it and DarkCoin will loose some value because it will not be the only one providing the feature ?
Or I'm wrong ?

correct
but doesn't mean drk will lose value necessarily
hero member
Activity: 789
Merit: 501
Here's the new schedule for development:

- RC2 (masternode payments, DGW3) : May 14th
- RC3 (1000 DRK limit and denominated change) : May 21st
- After this, I'll find someone to vet the code and open source.
- RC4 (Bugs, security issues)
- Testing, then opensource

I'm wondering, if the  darksend code is opensource, so another coin can implements it and DarkCoin will loose some value because it will not be the only one providing the feature ?
Or I'm wrong ?
sr. member
Activity: 294
Merit: 250


https://bitcointalksearch.org/topic/m.6488297


Here's the new schedule for development:

- RC2 (masternode payments, DGW3) : May 14th
- RC3 (1000 DRK limit and denominated change) : May 21st
- After this, I'll find someone to vet the code and open source.
- RC4 (Bugs, security issues)
- Testing, then opensource

So not yet.
sr. member
Activity: 284
Merit: 250

i just logged in at my account and ...
hmmm "You last logged in from 37.187.47..... on Monday, May 5th at 4:40 pm" Huh?
plz, feeleep, check it
thx

Logout and login once again..
yeap working fine now
thx
hero member
Activity: 685
Merit: 500

i just logged in at my account and ...
hmmm "You last logged in from 37.187.47..... on Monday, May 5th at 4:40 pm" Huh?
plz, feeleep, check it
thx

Logout and login once again..
hero member
Activity: 789
Merit: 501
Just a question, DRK come from 0.60$ to 1.60$ with the RC of the DarkSend.
With a final DarkSend and a good adoption of the Dark, what is the price you predict ?

Place your bet now, I'll post the result in a week.
https://fr.surveymonkey.com/s/5P2NF3G

We will see if we made a good prediction in 3 months ! Smiley
legendary
Activity: 984
Merit: 1000
This article (http://www.coindesk.com/bitcoin-thriving-argentinas-black-market-economy/) got me thinking about about the black market and it's global market value.

It turns out it's circa 1.6 Trillion Dollars (http://www.havocscope.com/products/ranking/).

The current currency of the black market is US Dollars but they are turning to Bitcoin and inevitably will turn to anonymous coins in the future, and as Darkcoin is the leader in this field I predict they will start using it once it has been proven to be reliable in the coming months/years.

The potential for this coin is huge....

1.6 Trillion / 22 Million = ~$73900 per coin --- Wow

Maybe this is why we are seeing massive amounts of DRK being purchased at the current low price.

The 1.6 Trillion is the yearly turnover in USD? You can`t deduct a price for DRK from that. In theory one DRK at one USD would be enough with (unrealistically high) velocity, if it changed hands 1.6 trillion times. But still, the potential for DRK is huge, I just do not know how to quantify it.
sr. member
Activity: 284
Merit: 250
Just posted this on my pool news page:

To compensate latest website unavailability due to DDoS attack I decided to make following changes:

- fee is removed completely (0% now)!
- payouts after only 10 confirmations!


Come and join https://www2.coinmine.pl/drk/

feeleep

I am back  Wink

By the way does the IP recognition works right?
"You last logged in from 37.187.47... ". That's not my IP at all  Cool

thats interesting - I will check this out

i just logged in at my account and ...
hmmm "You last logged in from 37.187.47..... on Monday, May 5th at 4:40 pm" Huh?
plz, feeleep, check it
thx

Edit: working fine now.
newbie
Activity: 2
Merit: 0
This article (http://www.coindesk.com/bitcoin-thriving-argentinas-black-market-economy/) got me thinking about about the black market and it's global market value.

It turns out it's circa 1.6 Trillion Dollars (http://www.havocscope.com/products/ranking/).

The current currency of the black market is US Dollars but they are turning to Bitcoin and inevitably will turn to anonymous coins in the future, and as Darkcoin is the leader in this field I predict they will start using it once it has been proven to be reliable in the coming months/years.

The potential for this coin is huge....

1.6 Trillion / 22 Million = ~$73900 per coin --- Wow

Maybe this is why we are seeing massive amounts of DRK being purchased at the current low price.

Interesting points. Also has to be born in mind that the worlds reserve currency ie USD is currently hovering above 79 on the dollar index.http://www.bloomberg.com/quote/DXY:CUR It needs to stay above 80. If it goes below 79 we may see it take a further dive as people get out of it. The USD is the currency of choice for the black market and certain criminals who wont want to see their assets take a dive. Maybe they will go to the Euro or ? We can also see Bitcoin rallying a little at the time of writing. We can also see BTC starting to pace the dollar index and below is a link to a site that shows at the time of writing that bitcoin is indicated as a "strong buy" as the dollar shows a little weakness and the beginnings of correlation with the USD index. Perhaps DRK will also assume this role in time. Especially since it appears to offer 2 advantages over BTC ie Anonymity and speed.
 More here:- http://forextv.com/forex-analysis/bitcoin-price-pacing-us-dollar-index/
hero member
Activity: 616
Merit: 501
DarkCoin Mac OS X Update v0.9.2.2
updated 5th May 2014

URL: http://darkcoin.io/downloads/DarkCoin-Qt-MacOSX-v0.9.2.2.zip

MIRRORS:
* https://www.dropbox.com/s/tyf7vh79d8tgtlz/DarkCoin-Qt-MacOSX-v0.9.2.2.zip
* https://www.mediafire.com/?207nru428qybi8y

zip shasum: 8b2397f06f6c9b55d3496dfec4ff1c5237f7d114


[DRK tips]: XtwzEuurDTNeVK5a26AzzZDdVkkPkAQ7Eu

If you appreciate this release, please support me by sending a few DRK.




No darksend with this version ?

https://ip.bitcointalk.org/?u=http%3A%2F%2Fwww.heberger-image.fr%2Fdata%2Fimages%2F22281_dark_sans_darksend.png&t=539&c=CsIYSYqUwD__cw


v0.9.2.2 DRK donations list (thanks a lot!)
Code:
1.45662795 -- anonymous
hero member
Activity: 854
Merit: 1000
A small suggestion for the darkcoin.io website.

Make the main navigation buttons clickable if they don't have multiple links in the dropdown.  For example, don't make me hover, then move to the dropdown for, "News" when there is only one item in the dropdown.  It's fine to have the dropdown, but also make the main nav button a clickable link.
Jump to: