Validator Setup

Create/restore a key pair

  • Create Wallet

hippod keys add <your-wallet-name>
  • Restore Wallet

hippod keys add <your-wallet-name> --recover

Create Your Validator

PUBKEY=$(hippod tendermint show-validator)

cat > $HOME/.hippo/validatortx.txt << EOM
{
  "pubkey": $PUBKEY,
  "amount": "1000000000000000000ahp",
  "moniker": "",
  "identity": "", 
  "website": "",
  "security": "",
  "details": "",
  "commission-rate": "0.1",
  "commission-max-rate": "0.2",
  "commission-max-change-rate": "0.01",
  "min-self-delegation": "1"
}
EOM

To create your validator use the following command:

hippod tx staking create-validator $HOME/.hippo/validatortx.txt \
  --from=<your-wallet-name> \
  --chain-id="hippo-protocol-1" \
  --gas="auto" \
  --gas-prices="1000000000000000000ahp" \
  --gas-adjustment=1.5 \
  --yes

Last updated