BITSONG VALIDATOR SETUP
# CREATE BITSONG WALLET OR RECOVER YOUR WALLET
# Create a New Wallet
bitsongd keys add validator
# Recover Wallet
bitsongd keys add validator --recover
IMPORTANT: Send a few $BTSG to your Validator Wallet before start a validator
# Find your public address of your validator wallet
bitsongd keys list
# CREATE VALIDATOR
bitsongd tx staking create-validator \
--amount 1000000ubtsg \
--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 $(bitsongd tendermint show-validator) \
--chain-id bitsong-2b \
--gas 300000 \
--fees 800ubtsg
# CHECK YOUR VOTING POWER
# Ckeck Your Voting Power
curl -s http://0.0.0.0:26656/status | jq -r .result.validator_info.voting_power