emped keys add $WALLET --recover
WALLET_ADDRESS=$(emped keys show $WALLET -a)
VALOPER_ADDRESS=$(emped keys show $WALLET --bech val -a)
echo "export WALLET_ADDRESS="$WALLET_ADDRESS >> $HOME/.bash_profile
echo "export VALOPER_ADDRESS="$VALOPER_ADDRESS >> $HOME/.bash_profile
source $HOME/.bash_profile
emped query bank balances $WALLET_ADDRESS
emped tx staking create-validator \
--amount=1000000uempe \
--pubkey=$(emped tendermint show-validator) \
--moniker="fill_with_your_nodename" \
--identity="" \
--details="your slogan" \
--website="" \
--security-contact="fill your mail here" \
--chain-id=empe-testnet-2 \
--commission-rate=0.05 \
--commission-max-rate=0.10 \
--commission-max-change-rate=0.01 \
--min-self-delegation=1 \
--gas-prices 0.0001uempe \
--gas "auto" \
--gas-adjustment "1.5" \
--from $WALLET \
-y