Validator
Became Validator

Became Validator

⚠️

Remember, a validator can only have up to voting power of 500.000 $AREA

Tip: Before you start, it is advisable to have a look at the following documents

Create

areoncli tendermint show-validator

Example response:

{"@type":"/crypto.ed25519.PubKey","key":"7rBkuZCfZL8ji+qc/dAShD2JfwMKkv7r4UMcTm+SQGA="}
  areoncli validator create \
  --amount="100000000000000000000000area" \
  --pubkey='{"@type":"/crypto.ed25519.PubKey","key":"7rBkuZCfZL8ji+qc/dAShD2JfwMKkv7r4UMcTm+SQGA="}' \
  --moniker="$MONIKER" \
  --chain-id="areon_462-1" \
  --commission-rate="0.1" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --gas-adjustment="1.5" \
  --gas-prices="2500000000area" \
  --from="$WALLET" \
  --keyring-backend="file" \
  --gas="auto"

Edit

Some fields of your validator that you can change

areoncli validator edit \
  --new-moniker="$MONIKER" \
  --website="https://areon.network" \
  --identity="$IDENTITY" \
  --details="WeAreOn" \
  --chain-id="areon_462-1" \
  --commission-rate="0.1" \
  --gas-adjustment="1.5" \
  --gas-prices="2500000000area" \
  --from="$WALLET" \
  --keyring-backend="file" \
  --gas="auto"

Unjail

This method to use to avoid imprisonment if you missed a block and had problems with verification

areoncli validator unjail \
  --chain-id="areon_462-1" \
  --from="$WALLET" \
  --gas-prices="2500000000area" \
  --keyring-backend="file"

Commission

This method shows the commissions of the validator

areoncli validator commission $VALIDATOR_ADDRESS

Withdraw Commission

This method allows to transfer the commissions of the validator

areoncli validator withdraw-all-rewards \
  --chain-id="areon_462-1" \
  --from="$WALLET" \
  --gas-prices="2500000000area" \
  --keyring-backend="file"

Developed by the Areon Network Core Team. © 2024 All rights reserved.