Wallet Management

Add New Wallet

atomoned keys add $WALLET

Restore existing wallet

atomoned keys add $WALLET --recover

List All Wallets

atomoned keys list

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-testnet-1 --fees -y

Withdraw rewards and commission from your validator

atomoned tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id atomone-testnet-1 --fees -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-testnet-1 --fees -y

Delegate

atomoned tx staking delegate <TO_VALOPER_ADDRESS> 1000000uatone --from $WALLET --chain-id atomone-testnet-1 --fees -y

Redelegate Stake to Another Validator

atomoned tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uatone --from $WALLET --chain-id atomone-testnet-1 --fees -y

Unbond

atomoned tx staking unbond $(atomoned keys show $WALLET --bech val -a) 1000000uatone --from $WALLET --chain-id atomone-testnet-1 --fees -y

Transfer Funds

atomoned tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uatone --chain-id atomone-testnet-1 --fees -y

Last updated