Wallet Management

Add New Wallet

achillesd keys add $WALLET

Restore existing wallet

achillesd keys add $WALLET --recover

List All Wallets

achillesd keys list

Delete wallet

achillesd keys delete $WALLET

Check Balance

achillesd q bank balances $(achillesd keys show $WALLET -a)

Export Key (save to wallet.backup)

achillesd keys export $WALLET

View EVM Prived Key

achillesd keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

achillesd keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

achillesd tx distribution withdraw-all-rewards --from $WALLET --chain-id ithaca-1 --fees 50000uodis -y

Withdraw rewards and commission from your validator

achillesd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id ithaca-1 --fees 50000uodis -y

Check your balance

achillesd query bank balances $WALLET_ADDRESS

Delegate to Yourself

achillesd tx staking delegate $(achillesd keys show $WALLET --bech val -a) 1000000udesio --from $WALLET --chain-id ithaca-1 --fees 50000uodis -y

Delegate

achillesd tx staking delegate <TO_VALOPER_ADDRESS> 1000000udesio --from $WALLET --chain-id ithaca-1 --fees 50000uodis -y

Redelegate Stake to Another Validator

achillesd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000udesio --from $WALLET --chain-id ithaca-1 --fees 50000uodis -y

Unbond

achillesd tx staking unbond $(achillesd keys show $WALLET --bech val -a) 1000000udesio --from $WALLET --chain-id ithaca-1 --fees 50000uodis -y

Transfer Funds

achillesd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000udesio --chain-id ithaca-1 --fees 50000uodis -y

Last updated