Create Wallet

# to create a new wallet, use the following command. don’t forget to save the mnemonic
initiad keys add $WALLET

# to restore exexuting wallet, use the following command
initiad keys add $WALLET --recover

# save wallet and validator address
WALLET_ADDRESS=$(initiad keys show $WALLET -a)
VALOPER_ADDRESS=$(initiad 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

# before creating a validator, you need to fund your wallet and check balance
initiad query bank balances $WALLET_ADDRESS