PLANQ VALIDATOR SETUP
# CREATE PLANQ WALLET OR RECOVER YOUR WALLET
# Create a New Wallet
planqd keys add validator
# Recover Wallet
planqd keys add validator --recover
# Find your public address of your validator wallet
planqd keys list
IMPORTANT: Send a few $PLQ to your Validator Wallet before start a validator
# CREATE VALIDATOR
planqd tx staking create-validator \
--amount 1000000000000000000aplanq \
--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 $(planqd tendermint show-validator) \
--chain-id planq_7070-2 \
--gas 1000000 \
--gas-prices 30000000000aplanq \
--gas-adjustment 1.15
# CHECK YOUR VALIDATOR
planqd status 2>&1 | jq .ValidatorInfo