Add New Wallet
wardend keys add $WALLET --key-type eth_secp256k1
Restore existing wallet
wardend keys add $WALLET --key-type eth_secp256k1 --recover
List All Wallets
Delete wallet
wardend keys delete $WALLET
Check Balance
wardend q bank balances $(wardend keys show $WALLET -a)
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 buenavista-1 --fees 10000uward -y
Withdraw rewards and commission from your validator
wardend tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id buenavista-1 --fees 10000uward -y
Check your balance
wardend query bank balances $WALLET_ADDRESS
Delegate to Yourself
wardend tx staking delegate $(wardend keys show $WALLET --bech val -a) 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -y
Delegate
wardend tx staking delegate <TO_VALOPER_ADDRESS> 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -y
Redelegate Stake to Another Validator
wardend tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -y
Unbond
wardend tx staking unbond $(wardend keys show $WALLET --bech val -a) 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -y
Transfer Funds
wardend tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uward --chain-id buenavista-1 --fees 10000uward -y