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