Network
Cosmos
Warden
Chetasheet

Service operations

#Check Logs
sudo journalctl -f -u wardend
 
#Start service
sudo systemnctl start wardend
 
#Restart Service
sudo systemnctl restart wardend
 
withdraw all reward
wardend tx distribution withdraw-all-rewards --from $WALLET --chain-id buenavista-1 --gas auto --gas-adjustment 1.5 --fees 600uward 
Withdraw rewards and commission from your validator
wardend tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id buenavista-1 --gas auto --gas-adjustment 1.5 --fees 600uward -y 
Check wallet balance
wardend query bank balances $WALLET
Delegate to the validator itself
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 600uward -y 
Redelegate to other validators
wardend tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uward --from $WALLET --chain-id buenavista-1 --gas auto --gas-adjustment 1.5 --fees 600uward -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 600uward -y 
Transfer Funds
wardend tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uward --gas auto --gas-adjustment 1.5 --fees 600uward -y 

KEY MANAGEMENT

Create Wallet
wardend keys add $WALLET
Recover Existing Wallet
wardend keys add $WALLET --recover
Check All Available Wallet
wardend keys list
Check wallet funds
wardend q bank balances $WALLET_ADDRESS 

VALIDATOR INFORMATION

create a validator
wardend tx staking create-validator \
--amount 1000000uward \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--security-contact ""\
--pubkey $(wardend tendermint show-validator) \
--moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--chain-id buenavista-1 \
--gas auto \
--gas-adjustment 1.5 \
--fees 600uward
edit existing validator
wardend tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--from $WALLET \
--chain-id buenavista-1 \
--gas auto \
--gas-adjustment 1.5 \
--fees 600uward \
-y 
validator status/info
wardend status 2>&1 | jq
Unjail validator
wardend tx slashing unjail --from $WALLET --chain-id buenavista-1 --gas auto --gas-adjustment 1.5 --fees 600uward -y