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