Wallet Management

Add New Wallet

elysd keys add $WALLET

Restore existing wallet

elysd keys add $WALLET --recover

List All Wallets

elysd keys list

Delete wallet

elysd keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

elysd keys export $WALLET

View EVM Prived Key

elysd keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

elysd keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

elysd tx distribution withdraw-all-rewards --from $WALLET --chain-id elys-1 --fees 2000uatom -y

Withdraw rewards and commission from your validator

elysd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id elys-1 --fees 2000uatom -y

Check your balance

elysd query bank balances $WALLET_ADDRESS

Delegate to Yourself

elysd tx staking delegate $(elysd keys show $WALLET --bech val -a) 1000000uelys --from $WALLET --chain-id elys-1 --fees 2000uatom -y

Delegate

elysd tx staking delegate <TO_VALOPER_ADDRESS> 1000000uelys --from $WALLET --chain-id elys-1 --fees 2000uatom -y

Redelegate Stake to Another Validator

elysd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uelys --from $WALLET --chain-id elys-1 --fees 2000uatom -y

Unbond

elysd tx staking unbond $(elysd keys show $WALLET --bech val -a) 1000000uelys --from $WALLET --chain-id elys-1 --fees 2000uatom -y

Transfer Funds

elysd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uelys --chain-id elys-1 --fees 2000uatom -y

Last updated