Please, can i run staking node on a raspberry pi 3? How can i do it? I already put my wallet.dat file with my wallet info and nevacoin.conf with addnodes from current network on .nevacoin folder. So, can i run a GUI client? If not, how can i monitor the connection and the wallet activity (blocks, stakes)?
You can compile the qt gui wallet, but you have to install all the dependencies first.
1. Open terminal
2. Run:
sudo apt-get install git build-essential automake autoconf qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev
3. Run:
git clone https://github.com/Nevacoin/nevacoin.git && cd nevacoin
4. Run:
qmake
5. Run:
make
6. Wait a long time. If all goes well you will have the nevacoin-qt executable appear in the git directory
OR you can use the daemon:
https://github.com/Nevacoin/nevacoin/releases/download/v1.4.0/nevacoind_raspberry_v1.4.zipThe basic steps:
1. Add the line daemon=1 to nevacoin.conf, so the whole conf would look like this:
daemon=1
addnode=x.x.x.x
addnode=x.x.x.x
2. Copy the nevacoind executable from the zip above into /usr/local/bin (use sudo if necessary)
3. Run nevacoind by typing nevacoind into the terminal.
4. Run RPC commands from the terminal to get info about the node, a few examples:
nevacoind help <<<--- will list all possible commands
nevacoind getinfo
nevacoind listtransactions <<<<----to check the latest transactions, stakes
nevacoind walletpassphrase YOURPASSWORD 9999999 true <<<<---- Unlocks the wallet for staking, if it is encrypted
nevacoind getstakinginfo
Good luck!