Add New Wallet
atomoned keys add $WALLET
Restore existing wallet
atomoned keys add $WALLET --recover
List All Wallets
Delete wallet
atomoned keys delete $WALLET
Check Balance
atomoned q bank balances $(atomoned keys show $WALLET -a)
Export Key (save to wallet.backup)
atomoned keys export $WALLET
View EVM Prived Key
atomoned keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
atomoned keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
atomoned tx distribution withdraw-all-rewards --from $WALLET --chain-id atomone-1 --fees 2000uatone-y
Withdraw rewards and commission from your validator
atomoned tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id atomone-1 --fees 2000uatone-y
Check your balance
atomoned query bank balances $WALLET_ADDRESS
Delegate to Yourself
atomoned tx staking delegate $(atomoned keys show $WALLET --bech val -a) 1000000uatone --from $WALLET --chain-id atomone-1 --fees 2000uatone-y
Delegate
atomoned tx staking delegate <TO_VALOPER_ADDRESS> 1000000uatone --from $WALLET --chain-id atomone-1 --fees 2000uatone-y
Redelegate Stake to Another Validator
atomoned tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uatone --from $WALLET --chain-id atomone-1 --fees 2000uatone-y
Unbond
atomoned tx staking unbond $(atomoned keys show $WALLET --bech val -a) 1000000uatone --from $WALLET --chain-id atomone-1 --fees 2000uatone-y
Transfer Funds
atomoned tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uatone --chain-id atomone-1 --fees 2000uatone-y