Wallet Management

Add New Wallet

emped keys add $WALLET

Restore existing wallet

emped keys add $WALLET --recover

List All Wallets

emped keys list

Delete wallet

emped keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

emped keys export $WALLET

View EVM Prived Key

emped keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

emped keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

emped tx distribution withdraw-all-rewards --from $WALLET --chain-id empe-testnet-2 --fees 3000uempe --gas auto -y

Withdraw rewards and commission from your validator

emped tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id empe-testnet-2 --fees 3000uempe --gas auto -y

Check your balance

emped query bank balances $WALLET_ADDRESS

Delegate to Yourself

emped tx staking delegate $(emped keys show $WALLET --bech val -a) 1000000uempe --from $WALLET --chain-id empe-testnet-2 --fees 3000uempe --gas auto -y

Delegate

emped tx staking delegate <TO_VALOPER_ADDRESS> 1000000uempe --from $WALLET --chain-id empe-testnet-2 --fees 3000uempe --gas auto -y

Redelegate Stake to Another Validator

emped tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uempe --from $WALLET --chain-id empe-testnet-2 --fees 3000uempe --gas auto -y

Unbond

emped tx staking unbond $(emped keys show $WALLET --bech val -a) 1000000uempe --from $WALLET --chain-id empe-testnet-2 --fees 3000uempe --gas auto -y

Transfer Funds

emped tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uempe --chain-id empe-testnet-2 --fees 3000uempe --gas auto -y

Last updated