Wallet Management
Add New Wallet
wardend keys add $WALLET --key-type eth_secp256k1Restore existing wallet
wardend keys add $WALLET --key-type eth_secp256k1 --recoverList All Wallets
wardend keys listDelete wallet
wardend keys delete $WALLETCheck Balance
wardend q bank balances $(wardend keys show $WALLET -a)Export Key (save to wallet.backup)
wardend keys export $WALLETView EVM Prived Key
wardend keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
wardend keys import $WALLET wallet.backupTokens
Withdraw all rewards
wardend tx distribution withdraw-all-rewards --from $WALLET --chain-id buenavista-1 --fees 10000uward -yWithdraw rewards and commission from your validator
wardend tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id buenavista-1 --fees 10000uward -yCheck your balance
wardend query bank balances $WALLET_ADDRESSDelegate to Yourself
wardend tx staking delegate $(wardend keys show $WALLET --bech val -a) 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -yDelegate
wardend tx staking delegate <TO_VALOPER_ADDRESS> 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -yRedelegate Stake to Another Validator
wardend tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -yUnbond
wardend tx staking unbond $(wardend keys show $WALLET --bech val -a) 1000000uward --from $WALLET --chain-id buenavista-1 --fees 10000uward -yTransfer Funds
wardend tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uward --chain-id buenavista-1 --fees 10000uward -yLast updated