1. Setup in main wallet
- Check that you have at least 1001 SFD in your wallet.
- Go to MasterNodes tab and press Create Masternode Controller button
- Follow the instructions in appeared window
- Input Masternode Name - it can be any text like "my_masternode"
- Input VPS IP Address , don't change PORT field, if you don't know what is it.
- After that you should wait 15 confirmations (about 15 minutes)
- In MasterNodes tab press ... near your MN and select Info
- In the appeared window press copy button at the bottom to copy MN config for your VPS
- Open any text editor and temporary paste just copied text there
2. Setup in VPS
- Login to your VPS via SSH ( if you don't know how, just use google "vps login via ssh")
- Now just copy and paste commands below:
sudo apt-get update
wget https://github.com/safedeal-project/safedeal/releases/download/v1.1.0.0/sfd-ubuntu18.04-daemon.tar.gz && tar -xf sfd-ubuntu18.04-daemon.tar.gz
sudo apt-get install build-essential libtool bsdmainutils autotools-dev autoconf pkg-config automake python3
sudo apt-get install libssl-dev libgmp-dev libevent-dev libboost-all-dev libsodium-dev cargo
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:pivx/pivx
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
sudo apt-get install libminiupnpc-dev
sudo apt-get install libzmq3-dev
mkdir .sfdcoin && touch .sfdcoin/safedeal.conf && nano .sfdcoin/safedeal.conf
After last command nano text editor will be opened in terminal.
Paste lines below:
daemon=1
server=1
rpcuser=sfd
rpcpassword=sfd123
addnode=194.32.79.108
addnode=45.153.185.44
addnode=93.115.23.197
addnode=194.32.76.205
addnode=95.111.238.208
and then add lines which you temporary saved in text editor. Save file and exit (ctrl+s, ctrl+x).
Now run sfd daemon and wait till blockchain will sync:
./safedeald
To check sync status input next command:
./safedeal-cli getinfo
Compare blocks value with value from explorer https://explorer.safedeal.trade/api/getblockcount
3. Start your Masternode
Open main wallet, go to MasterNodes tab, select Masternode and press Start!