Creating Your Validator

Get some SIDE tokens from faucet

check your balances:

Copy

$ sided query bank balances side162ttnnflhvuazp42vxu5jf3fgxy750lrn3zrld
balances:
- amount: "999999900000000000"
  denom: uside
  pagination:
  next_key: null
  total: "0"

Create Your Validator

Copy

sided tx staking create-validator \
--from=alice \
--amount=400000000uside \
--pubkey=$(sided tendermint show-validator)  \
--moniker="side_node" \
--security-contact="[email protected]" \
--chain-id="S2-testnet-2" \
--commission-rate="0.1" \
--commission-max-rate="0.2" \
--commission-max-change-rate="0.05" \
--min-self-delegation="400000000" \
--fees="50000uside"

If you need further explanation for each of these command flags: