Useful Command

#Check node status
curl http://127.0.0.1:26657/status

#Query Your Validator
viper servicers query servicer your_wallet_address

#Check Balance
viper wallet query account-balance your_wallet_address

#Backup Wallet
viper wallet export-encrypted
# or
viper wallet export-raw

#Recovery Wallet
viper wallet import-encrypted
# or
viper wallet import-raw

#Fetch Wallet Info
viper wallet fetch-account your_wallet_address

#List all account
viper wallet list-accounts

#Change wallet password
viper wallet change-pass your_wallet_address --pwd-new input-new-passwd --pwd-old input-old-passwd

#Check logs of the node
sudo journalctl -u viper -f -o cat

#Restart the node
sudo systemctl restart viper.service

#Stop the node
sudo systemctl stop viper.service

Last updated