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.sh
Here's other useful commands you might need
⚙️Service operations
sudo journalctl -fu wardend
sudo systemctl start wardend
🖥️Node operations
wardend status | jq
🗝️Key Management
wardend keys add $WALLET
💱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 -y
Self 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 -y
Unbond
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 -y
Transfer 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?