AURA VALIDATOR SETUP
# CREATE AURA WALLET OR RECOVER YOUR WALLET
# Create a New Wallet
aurad keys add validator
# Or Recover Wallet
aurad keys add validator --recover
IMPORTANT: Send a few $AURA to your Validator Wallet before start a validator
# Find your public address of your validator wallet
aurad keys list
# CREATE VALIDATOR
aurad tx staking create-validator \
--amount 1000000uaura \
--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 $(aurad tendermint show-validator) \
--chain-id xstaxy-1 \
--gas auto \
--gas-prices 0.010uaura
#CHECK VOTING POWER
# Ckeck Your VP
curl -s http://0.0.0.0:26656/status | jq -r .result.validator_info.voting_power