Author

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

sr. member
Activity: 434
Merit: 250
Quantum entangled and jump drive assisted messages
legendary
Activity: 1988
Merit: 1000
I do believe that something big is looming For DARK.. think a nice frothy bubble might be coming its best to be sitting in DRK right now  Grin Grin Grin

This is how I will look when I read everyones post about missing the dark train.......



I think just most of the people not considering when last years uptrend  bitcoin was at 650$,so I think they guess 0.011 is an high price,de facto is god damn cheap, 2,70 $ a darkcoin ? Tell thats to your children ,you've miss the chance of your life maybe. we've hit 0.028BTC last years,when BTC was at 650$, 17$ , same as now is  0.07  Roll Eyes Watch out
legendary
Activity: 1988
Merit: 1000
It impossible to go under 0.01,or it will be the summum of the illogical crypto. Dark have done more than bitcoin have ever do,look how much people are buying,order book start to be full of big order,I don't think we're going lower,it is the dummies thing ever if we do

New ATH coming Cheesy
legendary
Activity: 1120
Merit: 1000
It sounds like Greece has utterly capitulated to the terms of the Troika.

http://www.ft.com/cms/s/0/808f5fb0-b90e-11e4-b8e6-00144feab7de.html#axzz3SJLRUPBa

Humiliating.
hero member
Activity: 560
Merit: 500
I jut had a futuristic thought on InstantX.

 In a future where exchanges adopt this technology, its going to be arbitrage heaven. There will be humungous gains at first, but just like the mining war it will eventually level out with the massive use of bots, trade margins will become so thin, arbitrage will flat line.
yes, and after the storm and the arbritages have evened out, imagine all those .02 darkcoin charges for instantX going straight to the masternode holders Cool

I'm not sure they will ever implement IntantX for withdrawals. They need to keep some checks between your request and the actual sending of the funds because most are in cold storage (or should be!). Anyway, having it for deposits is a huge improvement already.
sr. member
Activity: 434
Merit: 250
Quantum entangled and jump drive assisted messages
I jut had a futuristic thought on InstantX.

 In a future where exchanges adopt this technology, its going to be arbitrage heaven. There will be humungous gains at first, but just like the mining war it will eventually level out with the massive use of bots, trade margins will become so thin, arbitrage will flat line.
yes, and after the storm and the arbritages have evened out, imagine all those .02 darkcoin charges for instantX going straight to the masternode holders Cool
sr. member
Activity: 434
Merit: 250
Quantum entangled and jump drive assisted messages
Been loving the market action of recent  Grin Heres my two cents for a short term view on the market... Enjoy
Set your Emas to 21 50 100 200 and have some fun trading
Nice chart, I always use the Macd indicator, the RSI is an interesting addition to help analysis  Grin
legendary
Activity: 1092
Merit: 1000
 I jut had a futuristic thought on InstantX.

 In a future where exchanges adopt this technology, its going to be arbitrage heaven. There will be humungous gains at first, but just like the mining war it will eventually level out with the massive use of bots, trade margins will become so thin, arbitrage will flat line.
legendary
Activity: 1092
Merit: 1000
 
 Here is chaeplin's tutorial on how to do 5 MN's from a single EC2 m3.medium instance on Amazon.

https://darkcointalk.org/threads/ec2-multiple-remote-nothing-mn-max-5.1660/

(chaeplin! Where are you buddy! hope all is well, we miss you!!)
sr. member
Activity: 478
Merit: 250
Because Darksend creates many new adresses for changes, do we have to backup Darkcoin wallet after completion of darksend premix or after sending coin with darksend?
There is a keypool of 1000 keys in a wallet so you have a gap of 1000 sending operations (one mixing round takes few 10s of them). Mixing 100 DRK for 2 rounds can take ~150-170 addresses, for example.

How keypool works: Darkcoin wallet generates 1000 keys on initialization (originally it's 100 for Bitcoin btw). Keys are used one by one but every time you use one address new address added at the end of a list. So at any given time you have 1000 addresses that are already known to you but yet unused. 1000 addresses should be enough in most cases and even after mixing you can open your backup wallet and still will be able to see/move all your coins.

If you feel you that you need more safety you can create new wallet with larger keepool by adding -keepool command line option. If you already have wallet.dat you can move it somewhere else or use -wallet cmd-line option to create another one. So it should be smth like this:
Code:
darkcoind-qt -wallet=walletwithlargekeypool.dat -keypool=10000
This will generate new wallet "walletwithlargekeypool.dat" in your data folder and this wallet will always have 10000 pre-generated keys. Keep in mind that this however can take quite a long time to generate (depends on your environment).
I use option keypoolrefill when I'm close to limit and until then I don't do any new backups.
Of course, it depends how you feel with that
Yep, that's another good option. Thanks for noticing! Smiley

Thank you,
legendary
Activity: 1068
Merit: 1020
Sup folks! I have some doubts on running multiple MNs.
Are all of them embedded to the same daemon - VPS? Any reference link would be fine too.
Thank you.

You can run multiple masternodes on the same VPS.  Just launch each instance with the datadir option.

darkcoind.exe -datadir=c:\drkmn1
darkcoind.exe -datadir=c:\drkmn2

Each datadir should have it's own darkcoin.conf file with the following lines modified from the single masternode config.

rpcallowip=127.0.0.1 <- this doesn't change
externalip=[External IP address #1]
bind=[External IP address #1]
rpcport=9911 <- Doesn't matter what number.  Just needs to be different in each darkcoin.conf running on the same VPS.

I think that's it.  Just monitor your VPS to make sure you're not maxing out it's capabilities.

You should be restricted to port 9999:

https://github.com/darkcoin/darkcoin/commit/c56a54d211c211373b27c8fda4133717b69a42f1

As stated before, you also need different static external IPs for each..so if your VPS supports that and you can configure the routing on the VM, go for it.
sr. member
Activity: 249
Merit: 250
Sup folks! I have some doubts on running multiple MNs.
Are all of them embedded to the same daemon - VPS? Any reference link would be fine too.
Thank you.

You can run multiple masternodes on the same VPS.  Just launch each instance with the datadir option.

darkcoind.exe -datadir=c:\drkmn1
darkcoind.exe -datadir=c:\drkmn2

Each datadir should have it's own darkcoin.conf file with the following lines modified from the single masternode config.

rpcallowip=127.0.0.1 <- this doesn't change
externalip=[External IP address #1]
bind=[External IP address #1]
rpcport=9911 <- Doesn't matter what number.  Just needs to be different in each darkcoin.conf running on the same VPS.

I think that's it.  Just monitor your VPS to make sure you're not maxing out it's capabilities.

You should be restricted to port 9999:

https://github.com/darkcoin/darkcoin/commit/c56a54d211c211373b27c8fda4133717b69a42f1

Is that for the port for the external ip address?  That's always 9999, but the RPC port can be different since that's handle internally.
legendary
Activity: 1442
Merit: 1018
Sup folks! I have some doubts on running multiple MNs.
Are all of them embedded to the same daemon - VPS? Any reference link would be fine too.
Thank you.

You can run multiple masternodes on the same VPS.  Just launch each instance with the datadir option.

darkcoind.exe -datadir=c:\drkmn1
darkcoind.exe -datadir=c:\drkmn2

Each datadir should have it's own darkcoin.conf file with the following lines modified from the single masternode config.

rpcallowip=127.0.0.1 <- this doesn't change
externalip=[External IP address #1]
bind=[External IP address #1]
rpcport=9911 <- Doesn't matter what number.  Just needs to be different in each darkcoin.conf running on the same VPS.

I think that's it.  Just monitor your VPS to make sure you're not maxing out it's capabilities.

You should be restricted to port 9999:

https://github.com/darkcoin/darkcoin/commit/c56a54d211c211373b27c8fda4133717b69a42f1
sr. member
Activity: 249
Merit: 250
Sup folks! I have some doubts on running multiple MNs.
Are all of them embedded to the same daemon - VPS? Any reference link would be fine too.
Thank you.

You can run multiple masternodes on the same VPS.  Just launch each instance with the datadir option.

darkcoind.exe -datadir=c:\drkmn1
darkcoind.exe -datadir=c:\drkmn2

Each datadir should have it's own darkcoin.conf file with the following lines modified from the single masternode config.

rpcallowip=127.0.0.1 <- this doesn't change
externalip=[External IP address #1]
bind=[External IP address #1]
rpcport=9911 <- Doesn't matter what number.  Just needs to be different in each darkcoin.conf running on the same VPS.

I think that's it.  Just monitor your VPS to make sure you're not maxing out it's capabilities.
legendary
Activity: 3570
Merit: 1126
The latest shift for the Xpool Multipool paid out over 14+ DRK, 53+ BTCD, 26+FIBRE & 0.03+ BTC.

** We are now merge mining on all algos. X11: Unitus - SCRYPT: Dogecoin & ViaCoin & SysCoin - SHA256: DevCoin & NameCoin.

Any problems, please PM as I may miss your post.

Cheers!

www.xpool.ca
hero member
Activity: 685
Merit: 500
Is the wallet.dat compatible to both - 32 and 64-bit Darkcoin soft versions?

Yep and cross platform (Windows to Linux, Linux to OSX, etc). Although if you are building from source, be aware of DB compatibility issues between builds. If you runs binaries, you're fine.

OK, thanks!
legendary
Activity: 1442
Merit: 1018
Is the wallet.dat compatible to both - 32 and 64-bit Darkcoin soft versions?

Yep and cross platform (Windows to Linux, Linux to OSX, etc). Although if you are building from source, be aware of DB compatibility issues between builds. If you runs binaries, you're fine.
hero member
Activity: 685
Merit: 500
Is the wallet.dat compatible to both - 32 and 64-bit Darkcoin soft versions?
legendary
Activity: 1092
Merit: 1000
Sup folks! I have some doubts on running multiple MNs.
Are all of them embedded to the same daemon - VPS? Any reference link would be fine too.
Thank you.

Right now you need 1 static IP per node.
legendary
Activity: 1092
Merit: 1001
Sup folks! I have some doubts on running multiple MNs.
Are all of them embedded to the same daemon - VPS? Any reference link would be fine too.
Thank you.
Jump to: