Create Wallet
# to create a new wallet, use the following command. don’t forget to save the mnemonic
galacticad keys add $WALLET
# to restore exexuting wallet, use the following command
galacticad keys add $WALLET --recover
# save wallet and validator address
WALLET_ADDRESS=$(galacticad keys show $WALLET -a)
VALOPER_ADDRESS=$(galacticad 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
galacticad query bank balances $WALLET_ADDRESS