Set Up Validators
Learn to set up Vince Chain validators
Vince Chain Validator Setup
The following guide will help you in setting up a Vince Chain validator on any hardware that meets the Node requirement. The commands below apply to any Linux OS.
Login for permission as a root user
Log off root user login as vinced user
Duplicate and compile vinced
, then run the following commands:
Setup vinced Genesis and Peers
To setup vinced Genesis and Peers, try running the following commands:
Setting up systemd
First, edit this file: sudo nano /etc/systemd/system/vinced.service
Then enter the following commands into the edited file above and save it:
Then use the following commands to start, stop, restart, and view logs.
Setting up wallet
Write down this command: vinced keys add --keyring-backend=file
It's for your wallet address and mnemonic phrase.
To check your balance
Enter the following command: vinced query bank balances --keyring-backend=file
Replacing validator name
Upon receiving the fund, you may replace your validator name with the receiver's VCE address.
The command line below used 1000000 VCE
(equivalent to 1000000000000000000000000 avince
or 10-18 vince
) as example:
Tip
If the keyring fails, you can recover it with: vinced keys add --recover
You may watch vinced
logs with the following command: sudo journalctl -u vinced -f
Last updated