Creating-validator
Create Validator
Create Wallet
this command generate new wallet remember to save the mnemoic
hippod keys add $WALLET
Add Exsisting Wallet
hippod keys add $WALLET --recover
Save wallet and validator address
WALLET_ADDRESS=$(hippod keys show $WALLET -a)
VALOPER_ADDRESS=$(hippod 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
hippod status 2>&1 | jq
hippod query bank balances $WALLET_ADDRESS
Check your pubkey
hippod tendermint show-validator
Create validator.json file
nano $HOME/.hippo/validator.json
{
"pubkey": {fill with your pubkey},
"amount": "1000000ahp",
"moniker": "your moniker name",
"identity": "",
"website": "",
"security": "your e-mail",
"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"
}
hippod tx staking edit-validator \
--new-moniker="" \
--identity="" \
--details="" \
--website="" \
--chain-id=hippo-protocol-1 \
--commission-rate=0.05 \
--from wallet \
--gas=auto \
--gas-prices 0.001ahp \
-y
And booom...!! your Validator has been up 🎉
Last updated