Bitcoin Forum
April 27, 2024, 12:31:10 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  Print  
Author Topic: CRAVE: Revival  (Read 54972 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
btct22
Hero Member
*****
Offline Offline

Activity: 615
Merit: 502



View Profile
August 12, 2017, 09:28:13 PM
 #561

huge Buywall  Huh

somebody want to control our whole network?

hopefully a respectful investor

not a man who want to pump und dump and destroy. please no !

cannot afford my second MN atm  Cry



Someone just sold out to the wall in one go.   Now Crave 4th highest coin by volume, that's not a bad thing.  It wouldn't make sense to dump this coin  Grin Grin   
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
btct22
Hero Member
*****
Offline Offline

Activity: 615
Merit: 502



View Profile
August 13, 2017, 04:31:17 AM
 #562

With these big amounts buy walling the coin (another 24BTC on buy @ 30K gone up just now), dare I speculate that it's Bittrex or someone like that buying up coin stock for a launch?   

Or does someone else know more and would like to share, please  Wink   
J0HN3F1V3
Full Member
***
Offline Offline

Activity: 244
Merit: 100


View Profile
August 13, 2017, 09:07:05 AM
 #563

With these big amounts buy walling the coin (another 24BTC on buy @ 30K gone up just now), dare I speculate that it's Bittrex or someone like that buying up coin stock for a launch?   

Or does someone else know more and would like to share, please  Wink   

Not sure why someone would dump for such a cheap price
But sure its a good opportunity to pick up some cheap Crave

nekohachicoin
Member
**
Offline Offline

Activity: 112
Merit: 10

I say Hello :)


View Profile WWW
August 13, 2017, 01:45:31 PM
 #564

Masternode setup Guide for a VPS (LINUX OS)

The purpose of this guide is to setup a masternode on a VPS.

Requirements

     - crave wallet running on your local computer with at least 500 cravecoins
     - the software Putty to connect and send commands through SSH
     - the software WinSCP to see your VPS's folders, it will ease the configuration
     - a VPS running a linux distribution (Debian / Ubuntu are recommended or Raspbian for a Raspberry PI)

STEP 1 : Compiling the Crave wallet on your VPS

Connecting to the VPS

     - Make sure SSH is enabled on your VPS.
     - Start Putty and enter the VPS ip address. If your are running a VPS on your local network you need to put the local ip instead.
     - Enter your username and you password.

#################################################################################################################################################

You can skip the entire STEP 1 by downloading the compiled wallet  (tar.gz file), if you are using a Raspberry PI with Raspbian, download the ARM 32 bit version. In this case, open WinSCP, go into the /home/ folder and drag crave.tar.gz.
In Putty you have to run the following commands to extract then delete the archive, if the file is in the /home/ directory :
Code:
cd /home/
sudo tar xzvf CRAVE_BUILD_YOU_DLED.tar.gz
sudo rm -r CRAVE_BUILD_YOU_DLED.tar.gz
The crave folder will be created with everything in. The file "craved" is located in /home/crave/src :
Code:
cd crave/src
You can now directly follow STEP 2.

#################################################################################################################################################

If you dont want to skip then lets start :

Compiling the wallet

     - You need to gitclone the crave repositery :
Code:
sudo apt-get install git
git clone https://github.com/CooleRRSA/crave.git
A Crave folder will be created. To make a verification, open WinSCP and check your VPS files. You'll need to know the path of your crave folder for the next steps.

     - You need to install dependencies :
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool

     - You need to enter your Crave folder, use WinSCP to find the path. For exemple if the path is /home/crave , you need to use this command :
Code:
cd /home/crave
Now you can run this to start compiling :
Code:
cd src
sudo make -f makefile.unix
Your VPS will start compiling the wallet. It can take more than 1 hour on a Raspberry PI so be patient.
If your VPS lacks of RAM to compile, follow this guide to add memory using a swap file

     - If everything went well, you should have a new file in your crave/src folder :
Code:
ls
If there is a file named "craved", then your wallet is ready.


STEP 2 : Starting and configuring the wallet

     - To start the wallet, you need to enter the src folder and simply type :
Code:
./craved -daemon
You should get "Crave server starting". When you start the wallet for the first time a new folder is created with the chain, the conf file and so in. This folder is located in the same repositery as the crave one.
For exemple if your crave folder path is /home/crave , then the new folder path is /home/.crave (sometimes its located in the /root folder). You won't see it in WinSCP so you need to make hidden folders visible by clicking on the small icon at the bottom right of WinSCP.

     - Now you need to configure your wallet, first we need to close the wallet and edit the conf file :
Code:
./craved stop
cd ..
cd ..
cd .crave
sudo nano crave.conf
The nano command allow you to edit the conf.file. If you are lazy, you can simply create the crave.conf on your desktop and send it in the .crave folder through WinSCP.
The file should look something like that :
Code:
rpcuser=XXXXXXXXXXXXX
rpcpassword=XXXXXXXXXXXXXXXXXXXXXXXXXXXX
rpcallowip=127.0.0.1
#----
listen=1
server=1
daemon=1
staking=0
#--------------------
To save the file, press CTRL X, then YES, then ENTER to save.

     - Now we restart the wallet and we wait it the get fully synced
Code:
cd ..
cd crave/src
./craved
It should take some time to sync so be patient again.
To check the last block synced you can run :
Code:
./craved getmininginfo


Now you have the choice between two methods of running the masternode. The first named A will allow you to control your MN remotely and will be cold wallet style. The second named B just shows you how the run the MN on your VPS without remote control. I recommend you to use the first method, its easier and safer.


METHOD A : Sending coins and setting up the Masternode

     - Open your Windows wallet, go into the console and type :
Code:
masternode genkey
Copy this string in a txt file, its your masternode priv key.

     - We create a new address to receive your 500 cravecoins, type in the console :
Code:
getaccountaddress mn01
You can call it whatever you want (mn1 or 0 or abcd...). Copy the address printed in the txt file also.

     - Now send exactly 500 cravecoins to the address you just received and wait for 10 confirmations. You have to close the wallet now, we will reopen it later. Dont forget to backup your wallet.

     - You got some time to spare so we gonna edit your crave.conf. For Windows users the file is located in C:\Users\your_name\AppData\Roaming\Crave. To see this folder you need to make hidden folders visible. If you do not have the crave.conf file in your folder, create a txt file name "crave.txt" then change the extension to crave.conf. We need to edit this file, just copy :
Code:
rpcuser=SomeRandomString
rpcpassword=EvenLongerRandomString
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
logtimestamps=1

     - Now we gonna edit your VPS conf file again but before the VPS wallet must be closed and fresh (no transaction), the command is :
Code:
./craved stop

     - Now use WinSCP to navigate through your folders. The conf file is located in the .crave folder, i told you before. You can edit directly with WinSCP. The file has to be like this :
Code:
rpcuser=SomeRandomString
rpcpassword=EvenLongerRandomString
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
logtimestamps=1

port=9999
masternode=1
masternodeaddr=XXX.XXX.XXX.XXX:9999
masternodeprivkey=XXXXXXXXXXXXXXXXXXXXXXXXXX
This one must be exactly the same as the Windows one but we added 4 more lines.
Port : select an open port, I recommend you to use 9999
masternodeaddr : you have to put your VPS ip and the port.
masternodeprivkey : its the string you got from the "masternode genkey" command before.

Save the file. In the same folder, delete your wallet.dat (if it's an empty wallet there is no problem, else backup it then delete), the txlvldb folder and the blk00001.dat using WinSCP.

Keep WinSCP open, we gonna copy some files. Go back to your Windows crave folder where you edited the first crave.conf and drag the txlvldb folder and the blk00001.dat file to your .crave VPS folder. It will take 3-4 minutes to copy. When its done, we can start again the VPS wallet. If your VPS crave folder path is /home/crave then :

Code:
cd /home/crave/src
./craved
The server is starting. You can now close Putty and WinSCP.

     - Now open you Windows wallet again, you should have your 10 confirmations now. Go into the console and type :
Code:
masternode outputs
A string will be printed, something like that : "aa7c6c173f7b691e5a070a37aeazd23557636ad1b4b43680ace39d522e1d4493" "1" . The first part is your transaction hash, the "1" is the index.
Save them in your txt file.

     - Now we gonna create the masternode.conf file. In you wallet, click on the "Masternode" tab, you will see the list of active masternodes. Click on My masternode and on Create.
A box appears :
Alias : its name of your masternode, type mn01
Address : its the IP and the port you used in your VPS conf file, use the same.
Privkey : its your masternode privkey from the "masternode genkey" command.
TxHash : its the first part of the "masternode outputs" command, in my example its aa7c6c173f7b691e5a070a37aeazd23557636ad1b4b43680ace39d522e1d4493
OutputIndex : its the last number, in my case its 1

Click Ok and wait few seconds. A new entry is created, its your masternode. It should say that your masternode is not on the list.
To start it, unlock the wallet, and press start and you are done !



METHOD B : Sending coins and setting up the Masternode

     - When your wallet is synced, you need to setup the masternode :
Code:
./craved masternode genkey
You'll receive a long string of letters and numbers. Copy it in a txt file, you'll need it later.

     - Lets create a new receiving address :
Code:
./craved getaccountaddress 0
This address will receive your coins. Save also this one in the txt file.
Open your Windows wallet if it isnt yet and send exactly 500 crave to this address. You'll have to pay a fee in addition.
You now need to wait for 10 confirmations before we continue.

#################################################################################################################################################

     - To pass time, we gonna secure your wallet :
Code:
./craved encryptwallet YOUR_WALLET_PASSWORD
Dont forget this password to unlock your wallet later. The wallet will shutdown alone after few seconds.

     - Before restarting the wallet, we gonna edit the conf file again (you can do that on Windows and send the file through WinSCP if you want to)
Code:
cd ..
cd ..
cd .crave
sudo nano crave.conf
The conf file must look like that :
Code:
rpcuser=XXXXXXXXXXXXX
rpcpassword=XXXXXXXXXXXXXXXXXXXXXXXXXXXX
rpcallowip=127.0.0.1
#----
listen=1
server=1
daemon=1
staking=0
#--------------------
masternode=1
masternodeaddr=XXX.XXX.XXX.XXX:PORT
masternodeprivkey=XXXXXXXXXXXXXXXXXXXXXXXXX
Masternodeaddr is the ip and the port used by your VPS. The port must be open.
Masternodeprivekey is the string you got from the "masternodegenkey" command.

     - You need to restart the wallet now :
Code:
cd ..
cd crave/src
./craved
Everytime you start your wallet, wait 1 min before sending commands to make sure it is fully loaded.

     - You need to backup your wallet. I usually backup it in the home folder to avoid permission problems :
Code:
./craved backupwallet /home/
Use WinSCP to copy this wallet.dat to your local machine in case something goes wrong.

#################################################################################################################################################

The wallet in now ready to run the masternode

     - First check if your transaction has the 10 confirmations needed with the block explorer using your receiving address to search. Then we check if your 500 cravecoins are credited into your wallet
Code:
./craved getbalance
You should get 500.00000000

     - We can now start the masternode
Code:
./craved masternode start YOUR_WALLET_PASSWORD
You should get "Masternode successfully started".

You can close Putty and let it run.


Happy Masternoding



Here a link to get all the commands available.



In case you want to get your 500 coins back :

     - Unlock your wallet for few seconds :
Code:
./craved walletpassphrase YOU_WALLET_PASSWORD 120

     - Setting up the default fee amount :
Code:
./craved settxfee 0.00001

     - Sending your coin back :
Code:
./craved sendfrom 0 THE_RECEIVING_ADDRESS amount
If you have 502 craves on your MN, the amount must be 502-0.00001=501.99999 (reduced by fees)


I'll probably edit this guide in the future since its not perfect.

You can also check here and here as examples if you have troubles.

Donate : C44KanjHjCgcJimsCyLJKV9XkEpW2tGfZb

Thank you for creating the setup guide.
I'd like to ask you a point, is there a problem with the local PC to save Wallet mac?
(I have only mac...)



██████████  ✔  PoSToken - First PoS Smart Contract Token - Get Your Free Tokens Now!
█     PoSToken    █  ✔  Free Airdrop ●  No-ICO  ●  100% Annual Interest First Year
██████████  ✔  ANN ●  WebSite  ●  Twitter  ●  Slack  ●  Whitepaper
Miner-room101
Member
**
Offline Offline

Activity: 69
Merit: 10


View Profile
August 13, 2017, 08:56:08 PM
 #565

Is it ok to run a master node from your staking wallet or should they be kept separate?

btct22
Hero Member
*****
Offline Offline

Activity: 615
Merit: 502



View Profile
August 13, 2017, 10:47:28 PM
 #566

Is it ok to run a master node from your staking wallet or should they be kept separate?

It should work fine, I have some remote masternodes but the controlling wallet is staking without any trouble, don't see why local masternode should be different.  

The only danger I know of is the collateral transaction getting split up by the staking so it's worth giving it a try.
Miner-room101
Member
**
Offline Offline

Activity: 69
Merit: 10


View Profile
August 13, 2017, 11:01:31 PM
 #567

Is it ok to run a master node from your staking wallet or should they be kept separate?

It should work fine, I have some remote masternodes but the controlling wallet is staking without any trouble, don't see why local masternode should be different.  

The only danger I know of is the collateral transaction getting split up by the staking so it's worth giving it a try.

I think I remember reading that you could stop specific blocks from staking so I might be able to use this to stop that happening.  I  will give it a go and report back.

btct22
Hero Member
*****
Offline Offline

Activity: 615
Merit: 502



View Profile
August 15, 2017, 06:19:03 AM
 #568

This big buy wall right now (38.6BTC at 35Ksat) is like watching a poker game or something, the earlier 24BTC  flushed out a big player, and now it's a standoff..  Who will fold next  Shocked   

Or are there only true Cravers left who aren't letting go now?  That would be pretty cool -  upwards from here eh?!?!
dmanicus
Full Member
***
Offline Offline

Activity: 251
Merit: 100


Official


View Profile
August 15, 2017, 06:39:32 AM
 #569

If the crave team ever needs help doing a manual coin swap and then forking in the middle of the coin swap, let me know.

Disclaimer:this is just an inside joke, no fork or coin swap for crave
dsutil
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
August 16, 2017, 10:19:21 AM
 #570

In a masternode configured without remote wallet (method A), Is it possible to use the reward address functionality? I mean, to receive the reward in another address?
btct22
Hero Member
*****
Offline Offline

Activity: 615
Merit: 502



View Profile
August 16, 2017, 07:42:32 PM
 #571

In a masternode configured without remote wallet (method A), Is it possible to use the reward address functionality? I mean, to receive the reward in another address?

I've had a look through the source code to see if I could spot the setting being loaded out of the main config file but it doesn't appear to be a supported feature.   Happy to be proven wrong by someone with more knowledge  Tongue


TheKingInYellow
Sr. Member
****
Offline Offline

Activity: 546
Merit: 257


Have you found the Yellow Sign?


View Profile
August 17, 2017, 02:01:11 AM
 #572

Proud to finally join the CRAVE community~

DAPS Project, anonymizing assets for the world. Controlling your financial sovereignty is your right, join now!
DAPS (Decentralized - Anonymous - Payment - System)
Zero-Knowledge Proofs - Revolutionary Proof-Of-Audit algo - Masternodes - PoSv3 - Worldwide community
dsutil
Member
**
Offline Offline

Activity: 116
Merit: 10


View Profile
August 17, 2017, 07:32:02 AM
 #573

In a masternode configured without remote wallet (method A), Is it possible to use the reward address functionality? I mean, to receive the reward in another address?

I've had a look through the source code to see if I could spot the setting being loaded out of the main config file but it doesn't appear to be a supported feature.   Happy to be proven wrong by someone with more knowledge  Tongue




I have not found it either in the code :-(

Maybe CoolerRSA can help us. Thanks for your answer.
tammuz
Full Member
***
Offline Offline

Activity: 263
Merit: 101


La Liberté guidant le peuple


View Profile
August 18, 2017, 02:45:46 AM
 #574

Does anyone have issues with wallet synchronization?
btct22
Hero Member
*****
Offline Offline

Activity: 615
Merit: 502



View Profile
August 18, 2017, 02:55:26 AM
 #575

Does anyone have issues with wallet synchronization?

Not me, but you can download a starting point from here and then hopefully it will sync for you sooner..

http://cryptochainer.com/dir/
CDarvin81
Member
**
Offline Offline

Activity: 81
Merit: 10


View Profile
August 18, 2017, 06:55:13 AM
 #576

Hi,

one little sutpid question.
Is it possible to send funds > 500 from a masternode, and the masternode will running without errors?

Like my MN Staked 10 Crave and i will send this to an other wallet.
cpozzer
Sr. Member
****
Offline Offline

Activity: 434
Merit: 251



View Profile
August 18, 2017, 07:06:32 AM
 #577

Hi,

one little sutpid question.
Is it possible to send funds > 500 from a masternode, and the masternode will running without errors?

Like my MN Staked 10 Crave and i will send this to an other wallet.

You have to activate coin feature "expert"

Settings > options > display

Then when you send you will see a box that is called inputs, hit that box and select the rewards and not the 500.

Thats it.

Remember you need to fully unlock the wallet and the restart it when you finished to make it work (masternode)

    ▄▄▄▄▄▄▄▄▄▄▄▄▄▄,           
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▄       
    ▀▀▀▀▀▀▀▀▀▀▀▀▀▓▓▓▓▓▓▓█⌐   
    ▄▄▄▄▄▄▄▄▄▄▄▄▄µ  ▀▓▓▓▓▓▌   
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄ ▐▓▓▓▓▌ 
    ▓▓▓▓▀▀▀▀▀▀▀▀▀▓▓▓▓▌ "▓▓▓▓▄
    ▓▓▓▓m         ▓▓▓▓⌐ ▓▓▓▓▌
    ▓▓▓▓m        ▄▓▓▓▓  ▓▓▓▓▌
    ▓▓▓▓m ╫▓▓▓▓▓▓▓▓▓▓Ü ▄▓▓▓▓¬
    ▓▓▓▓m ╫▓▓▓▓▓▓▓▓▀ .█▓▓▓▓▀ 
    ▓▓▓▓m         ,▄█▓▓▓▓▓╙   
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀     
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀▀       
DigitalPrice
Cryptocurrency & Projects
■ PrivateSend
■ InstantSend
■ Masternodes




■ FullPos coin   
■ Active Team   
■ Active Projects




Coinmarketcap
Exchanges      
Website          




.BUY DIGITALPRICE.
Join the Revolution






CDarvin81
Member
**
Offline Offline

Activity: 81
Merit: 10


View Profile
August 18, 2017, 07:17:32 AM
 #578

Hi,

one little sutpid question.
Is it possible to send funds > 500 from a masternode, and the masternode will running without errors?

Like my MN Staked 10 Crave and i will send this to an other wallet.

You have to activate coin feature "expert"

Settings > options > display

Then when you send you will see a box that is called inputs, hit that box and select the rewards and not the 500.

Thats it.

Remember you need to fully unlock the wallet and the restart it when you finished to make it work (masternode)

and how do i do this on cmd line, my node is on vps
cpozzer
Sr. Member
****
Offline Offline

Activity: 434
Merit: 251



View Profile
August 18, 2017, 07:18:40 AM
 #579

Hi,

one little sutpid question.
Is it possible to send funds > 500 from a masternode, and the masternode will running without errors?

Like my MN Staked 10 Crave and i will send this to an other wallet.

You have to activate coin feature "expert"

Settings > options > display

Then when you send you will see a box that is called inputs, hit that box and select the rewards and not the 500.

Thats it.

Remember you need to fully unlock the wallet and the restart it when you finished to make it work (masternode)

and how do i do this on cmd line, my node is on vps

Oh, i thought you had it on windows. I dunno how its done on command like, try and go to the slack and ask, im sure someone will be able to help you there.

    ▄▄▄▄▄▄▄▄▄▄▄▄▄▄,           
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▄       
    ▀▀▀▀▀▀▀▀▀▀▀▀▀▓▓▓▓▓▓▓█⌐   
    ▄▄▄▄▄▄▄▄▄▄▄▄▄µ  ▀▓▓▓▓▓▌   
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▄ ▐▓▓▓▓▌ 
    ▓▓▓▓▀▀▀▀▀▀▀▀▀▓▓▓▓▌ "▓▓▓▓▄
    ▓▓▓▓m         ▓▓▓▓⌐ ▓▓▓▓▌
    ▓▓▓▓m        ▄▓▓▓▓  ▓▓▓▓▌
    ▓▓▓▓m ╫▓▓▓▓▓▓▓▓▓▓Ü ▄▓▓▓▓¬
    ▓▓▓▓m ╫▓▓▓▓▓▓▓▓▀ .█▓▓▓▓▀ 
    ▓▓▓▓m         ,▄█▓▓▓▓▓╙   
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀     
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀▀       
DigitalPrice
Cryptocurrency & Projects
■ PrivateSend
■ InstantSend
■ Masternodes




■ FullPos coin   
■ Active Team   
■ Active Projects




Coinmarketcap
Exchanges      
Website          




.BUY DIGITALPRICE.
Join the Revolution






CDarvin81
Member
**
Offline Offline

Activity: 81
Merit: 10


View Profile
August 18, 2017, 07:19:41 AM
 #580

Hi,

one little sutpid question.
Is it possible to send funds > 500 from a masternode, and the masternode will running without errors?

Like my MN Staked 10 Crave and i will send this to an other wallet.

You have to activate coin feature "expert"

Settings > options > display

Then when you send you will see a box that is called inputs, hit that box and select the rewards and not the 500.

Thats it.

Remember you need to fully unlock the wallet and the restart it when you finished to make it work (masternode)

and how do i do this on cmd line, my node is on vps

Oh, i thought you had it on windows. I dunno how its done on command like, try and go to the slack and ask, im sure someone will be able to help you there.

ok thx. Smiley
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  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!