// Withdraw Rewards
emped tx distribution withdraw-all-rewards --from wallet --chain-id empe-testnet-2 --fees 500uempe -y
// Withdraw Rewards with Comission
emped tx distribution withdraw-rewards $(emped keys show wallet --bech val -a) --commission --from wallet --chain-id empe-testnet-2 --fees 500uempe -y
// Delegate Token to your own validator
emped tx staking delegate $(emped keys show wallet --bech val -a) 100000uempe --from wallet --chain-id empe-testnet-2 --fees 500uempe -y
// Delegate Token to other validator
emped tx staking redelegate $(emped keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 100000uempe --from wallet --chain-id empe-testnet-2 --fees 500uempe -y
// Unbond Token from your validator
emped tx staking unbond $(emped keys show wallet --bech val -a) 100000uempe --from wallet --chain-id empe-testnet-2 --fees 500uempe -y
// Send Token to another wallet
emped tx bank send wallet <TO_WALLET_ADDRESS> 100000uempe --from wallet --chain-id empe-testnet-2 --fees 500uempe -y
// Unjail
emped tx slashing unjail --from wallet --chain-id empe-testnet-2 --fees 500uempe -y