Create Validator
Create Wallet
this command generate new wallet remember to save the mnemoic
lumerad keys add $WALLET
Add Exsisting Wallet
lumerad keys add $WALLET --recover
Save wallet and validator address
WALLET_ADDRESS=$(lumerad keys show $WALLET -a)
VALOPER_ADDRESS=$(lumerad 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
lumerad status 2>&1 | jq
lumerad query bank balances $WALLET_ADDRESS
Check your pubkey
lumerad tendermint show-validator
Create validator.json file
nano $HOME/.lumera/validator.json
{
"pubkey": {fill with your pubkey},
"amount": "1000000ulume",
"moniker": "your moniker name",
"identity": "",
"website": "",
"security": "",
"details": "Stake With Us And Stay Lazy Rich..!",
"commission-rate": "0.05",
"commission-max-rate": "0.1",
"commission-max-change-rate": "0.05",
"min-self-delegation": "1"
}
lumerad tx staking create-validator $HOME/.lumera/validator.json \
--from $WALLET \
--chain-id lumera-testnet-1
--gas-prices=0.25ulume \
--gas-adjustment=1.5 \
--gas=auto
And booom...!! your Validator has been up 🎉
Last updated