Creating Validator
Create Wallet
this command generate new wallet remember to save the mnemoic
exrpd keys add $WALLETAdd existing wallet
exrpd keys add $WALLET --recoverSave wallet and validator address
WALLET_ADDRESS=$(exrpd keys show $WALLET -a)
VALOPER_ADDRESS=$(exrpd 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_profilecheck sync status with this bellow command. if your node is fully synced, the output is catching up =false
exrpd status 2>&1 | jq exrpd query bank balances $WALLET_ADDRESS Check Your Pubkey
Create validator.json file
Creating Validator
And booom...!! your Validator has been up 🎉
Last updated