echo $(wardend tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.warden/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Key management
Add New Wallet
wardend keys add $WALLET
Restore executing wallet
wardend keys add $WALLET --recover
List All Wallets
wardend keys list
Delete wallet
wardend keys delete $WALLET
Check Balance
wardend q bank balances $WALLET_ADDRESS
Export Key (save to wallet.backup)
wardend keys export $WALLET
View EVM Prived Key
wardend keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
wardend keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
wardend tx distribution withdraw-all-rewards --from $WALLET --chain-id chiado_10010-1 --gas auto --gas-adjustment 1.6 --fees 250000000000000award
Withdraw rewards and commission from your validator
wardend tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id chiado_10010-1 --gas auto --gas-adjustment 1.6 --fees 250000000000000award -y
Check your balance
wardend query bank balances $WALLET_ADDRESS
Delegate to Yourself
wardend tx staking delegate $(wardend keys show $WALLET --bech val -a) 1000000award --from $WALLET --chain-id chiado_10010-1 --gas auto --gas-adjustment 1.6 --fees 250000000000000award -y