Create a wallet
junctiond keys add $WALLET
To restore your keys you have created, do this
junctiond keys add $WALLET --recover
Save wallet and validator address
WALLET_ADDRESS=$(junctiond keys show $WALLET -a)
VALOPER_ADDRESS=$(junctiond 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
Check sync status, once your node is fully synced, the output from above will print "false"
junctiond status 2>&1 | jq .sync_info
After creating a validator, make sure the fund has been funded sucessfully
junctiond query bank balances $WALLET_ADDRESS