Cheat Sheet
If you use our auto-installation, we've included several scripts under ./scripts folder like:
./list_keys.sh
./check_balance.sh
./create_validator.sh
./unjail_validator.sh
./check_validator.sh
./start_wardend.sh
./check_log.shHere's other useful commands you might need
⚙️Service operations
sudo journalctl -fu wardendsudo systemctl daemon-reloadsudo systemctl enable wardendsudo systemctl disable wardendsudo systemctl start wardendsudo systemctl stop wardendsudo systemctl status wardendsudo systemctl status wardend🖥️Node operations
wardend status | jqwardend status 2>&1 | jq .NodeInfowardend status 2>&1 | jq .SyncInfo🗝️Key Management
wardend keys add $WALLETwardend keys add $WALLET --recoverwardend keys listwardend q bank balances $(wardend keys show $WALLET -a)💱Transaction operations
Withdraw all rewards
wardend tx distribution withdraw-all-rewards --from $WALLET --chain-id buenavista-1 --gas auto --gas-adjustment 1.5 --fees 500uward -ySelf delegate
wardend tx staking delegate $(wardend keys show $WALLET --bech val -a) 1000000uward --from $WALLET --chain-id buenavista-1 --gas auto --gas-adjustment 1.5 --fees 500uward -yUnbond
wardend tx staking unbond $(wardend keys show $WALLET --bech val -a) 1000000uward --from $WALLET --chain-id buenavista-1 --gas auto --gas-adjustment 1.5 --fees 500uward -yTransfer token
wardend tx bank send $WALLET <TO_WALLET_ADDRESS> 1000000uward --gas auto --gas-adjustment 1.5 --fees 500uward -y✅Validator operations
Create validator
Check Validator Setup
Unjail Validator
wardend tx slashing unjail \
--from $WALLET \
--chain-id buenavista-1 \
--fees=500uward -y Last updated
Was this helpful?