HUMANS VALIDATOR SETUP

# CREATE HUMANS WALLET OR RECOVER YOUR WALLET

# Create a New Wallet
humansd keys add validator

# Recover Wallet
humansd keys add validator --recover

# Find your public address of your validator wallet
humansd keys list

IMPORTANT: Send a few $HEART to your Validator Wallet before start a validator

# CREATE VALIDATOR

humansd tx staking create-validator \
--amount 1000000000000000000aheart \
--commission-max-change-rate 0.01 \
--commission-max-rate 0.2 \
--commission-rate 0.05 \
--from validator \
--min-self-delegation 1 \
--moniker "Your Validator Name" \
--identity "your keybase-pgp" \
--security-contact "your security contact mail" \
--website "https://yourwebsite.com" \
--details "Add a description of your node" \
--pubkey $(humansd tendermint show-validator) \
--chain-id humans_1089-1 \
--gas auto \
--gas-prices 1800000000aheart

# CHECK YOUR VALIDATOR

humansd status 2>&1 | jq .ValidatorInfo