TENET VALIDATOR SETUP

# CREATE TENET WALLET OR RECOVER YOUR WALLET

# Create a New Wallet
tenetd keys add validator

# Recover Wallet
tenetd keys add validator --recover

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

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

# CREATE VALIDATOR

tenetd tx staking create-validator \
--amount 1000000000000000000atenet \
--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 $(tenetd tendermint show-validator) \
--chain-id tenet_1559-1 \
--gas auto \
--gas-prices 20000000000atenetq \
--gas-adjustment 1.15

# CHECK YOUR VALIDATOR

planqd status 2>&1 | jq .ValidatorInfo