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 elysicstestnet-1 --gas auto --gas-adjustment 1.2 --gas-prices=0.0003uelys -yWithdraw rewards and commission from your validator
elysd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id elysicstestnet-1 --gas auto --gas-adjustment 1.2 --gas-prices=0.0003uelys -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 elysicstestnet-1 --gas auto --gas-adjustment 1.2 --gas-prices=0.0003uelys -yDelegate
elysd tx staking delegate <TO_VALOPER_ADDRESS> 1000000uelys --from $WALLET --chain-id elysicstestnet-1 --gas auto --gas-adjustment 1.2 --gas-prices=0.0003uelys -yRedelegate Stake to Another Validator
elysd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uelys --from $WALLET --chain-id elysicstestnet-1 --gas auto --gas-adjustment 1.2 --gas-prices=0.0003uelys -yUnbond
elysd tx staking unbond $(elysd keys show $WALLET --bech val -a) 1000000uelys --from $WALLET --chain-id elysicstestnet-1 --gas auto --gas-adjustment 1.2 --gas-prices=0.0003uelys -yTransfer Funds
elysd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uelys --chain-id elysicstestnet-1 --gas auto --gas-adjustment 1.2 --gas-prices=0.0003uelys -yLast updated