Author

Topic: [ANN] CRAVE 1st POS Masternodes | Dark Assets | I2P | Market =Embrace The Dark= - page 503. (Read 826757 times)

member
Activity: 82
Merit: 10
I created the page

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

i have forwarded dev the password so he can edit it. You can also chat live with other investors.

thanks  Smiley

nice looks good. might switch from IRC to your chatroom when you get more users. too many scammers on IRC

but someone just would try to scam on their site too.

they would be banned and the same username would not be used again so eventually that would end this problem

ok your site looks good though neatly laid out
legendary
Activity: 938
Merit: 1000

you might want to use the tor packages provided here: https://www.torproject.org/docs/debian.html.en to make sure it's up to date

for multiple nodes you duplicate the service config like this:

HiddenServiceDir /home/username/hidden_service1/
HiddenServicePort 9999 127.0.0.1:9999

HiddenServiceDir /home/username/hidden_service2/
HiddenServicePort 9999 127.0.0.1:9998

HiddenServiceDir /home/username/hidden_service3/
HiddenServicePort 9999 127.0.0.1:9997

the hot machine's config needs that changing port as it's rpcport. masternodeaddr's port is 9999. either listen=0 or changing port is needed to keep them from clashing if doing multiple.

you can add the tor= part to cold config so you don't need to specify each time you run the client.


Thank you very much !!! 


legendary
Activity: 1302
Merit: 1001
i have an issue with running a mn on a raspberry..

cant compile the new wallet..i have errors in the key.cpp

everything with libsecp256k1

what can i do Sad

edit:i think i found the problem Smiley
newbie
Activity: 2
Merit: 0
I created the page

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

i have forwarded dev the password so he can edit it. You can also chat live with other investors.

thanks  Smiley

nice looks good. might switch from IRC to your chatroom when you get more users. too many scammers on IRC

but someone just would try to scam on their site too.

they would be banned and the same username would not be used again so eventually that would end this problem
member
Activity: 82
Merit: 10
I created the page

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

i have forwarded dev the password so he can edit it. You can also chat live with other investors.

thanks  Smiley

nice looks good. might switch from IRC to your chatroom when you get more users. too many scammers on IRC

but someone just would try to scam on their site too.
member
Activity: 117
Merit: 10
All my steps from everything I've read,  feel free to correct or comment on any errors.


1. Set up Masternode computer Note: if using TOR, might not have to expose ports!
#Set up portforwarding on router to computer/ip port 9999

Code:
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git
sudo apt-get install ufw
ufw allow ssh/tcp
ufw limit ssh/tcp #this command limits SSH connections to 6 every 30 seconds for greater security---
ufw allow 9999/tcp
ufw logging on
ufw enable


2. Install Tor & Configure torrc on Masternode computer

Code:
sudo apt-get install tor
sudo /etc/init.d/tor start

#Check that the Tor service is running on port 9050:
Code:
ss -aln | grep 9050

#Make directory that is readable/writeable by the user that will be running Tor.
Code:
mkdir /home/username/hidden_service/

#Configure torrc, usually found in /etc/tor
Code:
nano /etc/tor/torrc
#add the following & save:

    HiddenServiceDir /home/username/hidden_service/
    HiddenServicePort 9999 127.0.0.1:9999

#Restart Tor
Code:
sudo /etc/init.d/tor stop
sudo /etc/init.d/tor start

#Make note of created *hiddenservicename*.onion in:
Code:
/var/lib/tor/YOURHIDDENSERVICENAME/hostname


3. Configure Local/Cold wallet & Generate masternodeprivkey

#Go to Debug window > Console

Code:
masternode genkey
getaccountaddress 0


#Make note of masternode key and accountaddress
#Send 500 crave to the accountaddress

Code:
nano ~/.crave/crave.conf

#Paste the following:

Code:
rpcuser=MAKEUPNAME
rpcpassword=MAKEUPPASSWORD
rpcallowip=127.0.0.1
rpcport=USEDIFFERENTPORTNUMFOREACHCLIENT
listen=0
server=1
daemon=1
logtimestamps=1
masternode=1
masternodeprivkey=MASTERNODEKEYFROMCONSOLE
masternodeaddr=HIDDENSERVICENAME.ONION:9999

# Save / Write out the file


4. Configure the Masternode computer "craved daemon"

#First build secp256ki
Code:
git clone https://github.com/bitcoin/secp256k1.git
./autogen.sh
./configure
make
./tests  #optional
sudo make install 
ldconfig

#Get the crave daemon:
Code:
git clone https://github.com/industrialcoinmagic/crave.git

#Take the following steps to build daemon (no UPnP support):
Code:
cd ~/crave/src
make -f makefile.unix USE_UPNP=
strip craved

#Run ./craved and let it sync:
Code:
./craved
./craved getinfo | grep blocks #to find current block number & compare to blockexplorer

Code:
nano ~/.crave/crave.conf

#Paste the following:

Code:
rpcallowip=127.0.0.1
rpcuser=MAKEUPYOUROWNUSERNAME
rpcpassword=MAKEUPYOUROWNPASSWORD
rpcport=MAKEUPYOUROWNPORT
server=1
daemon=1
listen=1
staking=0
port=9999
masternodeaddr=HIDDENSERVICENAME.ONION:9999
masternode=1
masternodeprivkey=MASTERNODEKEYFROMCONSOLE

# Save / Write out the file


5. Last step

#Start the masternode daemon
Code:
./craved -conf=~/.crave/crave.conf

#Then start the local/cold wallet with tor option
Code:
./crave-qt -tor=127.0.0.1:9050

#Start masternode go to Debug > console
Code:
masternode start

#Check if the masternode is running correctly:
Code:
./craved  masternode list | grep YOUR-IP

#If working:
Code:
YOURIPSERVICENAME:1



you might want to use the tor packages provided here: https://www.torproject.org/docs/debian.html.en to make sure it's up to date

for multiple nodes you duplicate the service config like this:

HiddenServiceDir /home/username/hidden_service1/
HiddenServicePort 9999 127.0.0.1:9999

HiddenServiceDir /home/username/hidden_service2/
HiddenServicePort 9999 127.0.0.1:9998

HiddenServiceDir /home/username/hidden_service3/
HiddenServicePort 9999 127.0.0.1:9997

the hot machine's config needs that changing port as it's rpcport. masternodeaddr's port is 9999. either listen=0 or changing port is needed to keep them from clashing if doing multiple.

you can add the tor= part to cold config so you don't need to specify each time you run the client.
hero member
Activity: 616
Merit: 500
I created the page

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

i have forwarded dev the password so he can edit it. You can also chat live with other investors.

thanks  Smiley

nice looks good. might switch from IRC to your chatroom when you get more users. too many scammers on IRC
legendary
Activity: 2758
Merit: 1075
I created the page

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

i have forwarded dev the password so he can edit it. You can also chat live with other investors.

thanks  Smiley
newbie
Activity: 2
Merit: 0
I created the page

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

i have forwarded dev the password so he can edit it. You can also chat live with other investors.
legendary
Activity: 2758
Merit: 1075
guys walls moving up, get in fast .....
legendary
Activity: 1428
Merit: 1001
Fucker of "the system"
can someone help make a page somewhere that has all the mn setup info, reward and costs etc ... maybe add it on crave fb...so when anyone asks we can easily point them there Smiley

what about this. its laid out pretty nice. do not know if dev has created it but dev should be able to edit the page. got its own chatroom too

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

that info is allready posted and dosent seem to help everyone so much

whoever created the page should add the required stuff.


i have no idea how to set these up i really dont use tor or the darknet , im really above the boards when it comes to crypto and report my earnings
legendary
Activity: 1610
Merit: 1008
Forget-about-it
https://www.digitalocean.com/help/policy/



"What is your policy on TOR?

You will be responsible for the sub-users that connect to your TOR service. If there is abuse that is a result of your sub-users, we do not have a way to tell the difference, so it will be as if your account was abusive. This will get flagged by our backend and lead to your account being suspended and virtual servers destroyed.

We do not recommend running open services where any user can connect and possibly be abusive, as it will all fall under your account and can lead to service interruptions for you.

We also do not restrict the installation of software, but you are responsible for how it is used and how freely available you make the service."

so keep your private key.. if they happen to wipe your server... import it back into your wallet no problem right?
legendary
Activity: 1610
Merit: 1008
Forget-about-it
you can now vote for Crave on cryptsy
vote lolololololololololololololol
legendary
Activity: 1428
Merit: 1001
Fucker of "the system"
member
Activity: 197
Merit: 11
you can now vote for Crave on cryptsy
I just threw a cryptsy point on it
full member
Activity: 140
Merit: 100
can someone help make a page somewhere that has all the mn setup info, reward and costs etc ... maybe add it on crave fb...so when anyone asks we can easily point them there Smiley

what about this. its laid out pretty nice. do not know if dev has created it but dev should be able to edit the page. got its own chatroom too

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

that info is allready posted and dosent seem to help everyone so much

whoever created the page should add the required stuff.
legendary
Activity: 1453
Merit: 1030
https://www.digitalocean.com/help/policy/



"What is your policy on TOR?

You will be responsible for the sub-users that connect to your TOR service. If there is abuse that is a result of your sub-users, we do not have a way to tell the difference, so it will be as if your account was abusive. This will get flagged by our backend and lead to your account being suspended and virtual servers destroyed.

We do not recommend running open services where any user can connect and possibly be abusive, as it will all fall under your account and can lead to service interruptions for you.

We also do not restrict the installation of software, but you are responsible for how it is used and how freely available you make the service."
legendary
Activity: 1428
Merit: 1001
Fucker of "the system"
can someone help make a page somewhere that has all the mn setup info, reward and costs etc ... maybe add it on crave fb...so when anyone asks we can easily point them there Smiley

what about this. its laid out pretty nice. do not know if dev has created it but dev should be able to edit the page. got its own chatroom too

http://digitalcurrencyinvestors.com/2015/04/crave-coin-3/

that info is allready posted and dosent seem to help everyone so much
legendary
Activity: 2758
Merit: 1075
All my steps from everything I've read,  feel free to correct or comment on any errors.


1. Set up Masternode computer Note: if using TOR, might not have to expose ports!
#Set up portforwarding on router to computer/ip port 9999

Code:
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git
sudo apt-get install ufw
ufw allow ssh/tcp
ufw limit ssh/tcp #this command limits SSH connections to 6 every 30 seconds for greater security---
ufw allow 9999/tcp
ufw logging on
ufw enable


2. Install Tor & Configure torrc on Masternode computer

Code:
sudo apt-get install tor
sudo /etc/init.d/tor start

#Check that the Tor service is running on port 9050:
Code:
ss -aln | grep 9050

#Make directory that is readable/writeable by the user that will be running Tor.
Code:
mkdir /home/username/hidden_service/

#Configure torrc, usually found in /etc/tor
Code:
nano /etc/tor/torrc
#add the following & save:

    HiddenServiceDir /home/username/hidden_service/
    HiddenServicePort 9999 127.0.0.1:9999

#Restart Tor
Code:
sudo /etc/init.d/tor stop
sudo /etc/init.d/tor start

#Make note of created *hiddenservicename*.onion in:
Code:
/var/lib/tor/YOURHIDDENSERVICENAME/hostname


3. Configure Local/Cold wallet & Generate masternodeprivkey

#Go to Debug window > Console

Code:
masternode genkey
getaccountaddress 0


#Make note of masternode key and accountaddress
#Send 500 crave to the accountaddress

Code:
nano ~/.crave/crave.conf

#Paste the following:

Code:
rpcuser=MAKEUPNAME
rpcpassword=MAKEUPPASSWORD
rpcallowip=127.0.0.1
rpcport=USEDIFFERENTPORTNUMFOREACHCLIENT
listen=0
server=1
daemon=1
logtimestamps=1
masternode=1
masternodeprivkey=MASTERNODEKEYFROMCONSOLE
masternodeaddr=HIDDENSERVICENAME.ONION:9999

# Save / Write out the file


4. Configure the Masternode computer "craved daemon"

#First build secp256ki
Code:
git clone https://github.com/bitcoin/secp256k1.git
./autogen.sh
./configure
make
./tests  #optional
sudo make install 
ldconfig

#Get the crave daemon:
Code:
git clone https://github.com/industrialcoinmagic/crave.git

#Take the following steps to build daemon (no UPnP support):
Code:
cd ~/crave/src
make -f makefile.unix USE_UPNP=
strip craved

#Run ./craved and let it sync:
Code:
./craved
./craved getinfo | grep blocks #to find current block number & compare to blockexplorer

Code:
nano ~/.crave/crave.conf

#Paste the following:

Code:
rpcallowip=127.0.0.1
rpcuser=MAKEUPYOUROWNUSERNAME
rpcpassword=MAKEUPYOUROWNPASSWORD
rpcport=MAKEUPYOUROWNPORT
server=1
daemon=1
listen=1
staking=0
port=9999
masternodeaddr=HIDDENSERVICENAME.ONION:9999
masternode=1
masternodeprivkey=MASTERNODEKEYFROMCONSOLE

# Save / Write out the file


5. Last step

#Start the masternode daemon
Code:
./craved -conf=~/.crave/crave.conf

#Then start the local/cold wallet with tor option
Code:
./crave-qt -tor=127.0.0.1:9050

#Start masternode go to Debug > console
Code:
masternode start

#Check if the masternode is running correctly:
Code:
./craved  masternode list | grep YOUR-IP

#If working:
Code:
YOURIPSERVICENAME:1



if someone will verify this is correct ill go ahead and make a page

excellent...sologap can you check pleeeeeeease  Smiley
legendary
Activity: 1428
Merit: 1001
Fucker of "the system"
All my steps from everything I've read,  feel free to correct or comment on any errors.


1. Set up Masternode computer Note: if using TOR, might not have to expose ports!
#Set up portforwarding on router to computer/ip port 9999

Code:
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev automake libdb++-dev libssl-dev git
sudo apt-get install ufw
ufw allow ssh/tcp
ufw limit ssh/tcp #this command limits SSH connections to 6 every 30 seconds for greater security---
ufw allow 9999/tcp
ufw logging on
ufw enable


2. Install Tor & Configure torrc on Masternode computer

Code:
sudo apt-get install tor
sudo /etc/init.d/tor start

#Check that the Tor service is running on port 9050:
Code:
ss -aln | grep 9050

#Make directory that is readable/writeable by the user that will be running Tor.
Code:
mkdir /home/username/hidden_service/

#Configure torrc, usually found in /etc/tor
Code:
nano /etc/tor/torrc
#add the following & save:

    HiddenServiceDir /home/username/hidden_service/
    HiddenServicePort 9999 127.0.0.1:9999

#Restart Tor
Code:
sudo /etc/init.d/tor stop
sudo /etc/init.d/tor start

#Make note of created *hiddenservicename*.onion in:
Code:
/var/lib/tor/YOURHIDDENSERVICENAME/hostname


3. Configure Local/Cold wallet & Generate masternodeprivkey

#Go to Debug window > Console

Code:
masternode genkey
getaccountaddress 0


#Make note of masternode key and accountaddress
#Send 500 crave to the accountaddress

Code:
nano ~/.crave/crave.conf

#Paste the following:

Code:
rpcuser=MAKEUPNAME
rpcpassword=MAKEUPPASSWORD
rpcallowip=127.0.0.1
rpcport=USEDIFFERENTPORTNUMFOREACHCLIENT
listen=0
server=1
daemon=1
logtimestamps=1
masternode=1
masternodeprivkey=MASTERNODEKEYFROMCONSOLE
masternodeaddr=HIDDENSERVICENAME.ONION:9999

# Save / Write out the file


4. Configure the Masternode computer "craved daemon"

#First build secp256ki
Code:
git clone https://github.com/bitcoin/secp256k1.git
./autogen.sh
./configure
make
./tests  #optional
sudo make install 
ldconfig

#Get the crave daemon:
Code:
git clone https://github.com/industrialcoinmagic/crave.git

#Take the following steps to build daemon (no UPnP support):
Code:
cd ~/crave/src
make -f makefile.unix USE_UPNP=
strip craved

#Run ./craved and let it sync:
Code:
./craved
./craved getinfo | grep blocks #to find current block number & compare to blockexplorer

Code:
nano ~/.crave/crave.conf

#Paste the following:

Code:
rpcallowip=127.0.0.1
rpcuser=MAKEUPYOUROWNUSERNAME
rpcpassword=MAKEUPYOUROWNPASSWORD
rpcport=MAKEUPYOUROWNPORT
server=1
daemon=1
listen=1
staking=0
port=9999
masternodeaddr=HIDDENSERVICENAME.ONION:9999
masternode=1
masternodeprivkey=MASTERNODEKEYFROMCONSOLE

# Save / Write out the file


5. Last step

#Start the masternode daemon
Code:
./craved -conf=~/.crave/crave.conf

#Then start the local/cold wallet with tor option
Code:
./crave-qt -tor=127.0.0.1:9050

#Start masternode go to Debug > console
Code:
masternode start

#Check if the masternode is running correctly:
Code:
./craved  masternode list | grep YOUR-IP

#If working:
Code:
YOURIPSERVICENAME:1



if someone will verify this is correct ill go ahead and make a page
Jump to: