#check logs
sudo journalctl -u nubit-validatord -f
#start service
sudo systemctl start nubit-validatord
#stop service
sudo systemctl stop nubit-validatord
#restart service
sudo systemctl restart nubit-validatord
#service status
sudo systemctl status nubit-validatord
#enable service
sudo systemctl enable nubit-validatord
#disable service
sudo systemctl disable nubit-validatord
#reload all service files
sudo systemctl daemon-reload
#get node info
nubit-validatord status 2>&1 | jq -r
#get node id
nubit-validatord tendermint show-node-id
#add new wallet
nubit-validatord keys add <wallet-name>
#restore existing wallet
nubit-validatord keys add <wallet-name> --recover
#delete wallet
nubit-validatord keys delete <wallet-name>
#list all wallets
nubit-validatord keys list
#check balance
nubit-validatord q bank balances <wallet-address>
#withdraw all rewards
nubit-validatord tx distribution withdraw-all-rewards --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#withdraw rewards from specific validator
nubit-validatord tx distribution withdraw-rewards <validator-valoper-address> --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#delegate
nubit-validatord tx staking delegate <validator-valoper-address> ${10**network.other.denom_exponent}unub --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#redelegate
nubit-validatord tx staking redelegate <from-validator-valoper-address> <to-validator-valoper-address> ${10**network.other.denom_exponent}unub --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#unbond
nubit-validatord tx staking unbond <validator-valoper-address> ${10**network.other.denom_exponent}unub --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#transfer
nubit-validatord tx bank send <wallet-name> <wallet-address> ${10**network.other.denom_exponent}unub --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#vote "yes"
nubit-validatord tx gov vote <proposal-id> yes --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#vote "no"
nubit-validatord tx gov vote <proposal-id> no --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#vote "no with veto"
nubit-validatord tx gov vote <proposal-id> no_with_veto --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#vote "abstain"
nubit-validatord tx gov vote <proposal-id> abstain --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y
#view all proposals
nubit-validatord query gov proposals
#view proposal by ID
nubit-validatord query gov proposal <proposal-id>
#create validator
nubit-validatord tx staking create-validator \
--amount 1000000unub \
--moniker "" \
--identity "" \
--details "" \
--website "" \
--security-contact "" \
--pubkey $(nubit-validatord tendermint show-validator) \
--commission-rate 0.05 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--chain-id nubit-alphatestnet-1 \
--from <wallet-name> \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 0.025unub \
--node "https://rpc.nubit.testnet.dteam.tech:443" \
-y
#edit validator
nubit-validatord tx staking edit-validator \
--new-moniker "" \
--identity "" \
--details "" \
--website "" \
--security-contact "" \
--commission-rate 0.05 \
--chain-id nubit-alphatestnet-1 \
--from <wallet-name> \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 0.025unub \
--node "https://rpc.nubit.testnet.dteam.tech:443" \
-y
#unjail validator
nubit-validatord tx slashing unjail --from <wallet-name> --chain-id nubit-alphatestnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 0.025unub --node "https://rpc.nubit.testnet.dteam.tech:443" -y