Validator Operations

Create New Validator

# Create validator.json file
(cat <<EOF
{
  "pubkey": "$(junod tendermint show-validator)",
  "amount": "1000000ujunox",
  "moniker": "$MONIKER",
  "identity": "",
  "website": "",
  "security": "",
  "details": "",
  "commission-rate": "0.05",
  "commission-max-rate": "0.2",
  "commission-max-change-rate": "0.01",
  "min-self-delegation": "1"
}
EOF
) > $HOME/.juno/validator.json

# Create a validator using the JSON configuration
junod tx staking create-validator $HOME/.juno/validator.json \
--from $WALLET \
--gas-adjustment 1.4 --gas auto --gas-prices 0.1ujunox -y

Edit Existing Validator

Validator info

Validator Details

Jailing info

Slashing parameters

Unjail validator

Active Validators List

Check Validator key

Signing info

Last updated