We suggest you try out joining a public testnet first. Information on how to join the most recent testnet can be found here.
What is a Validator?
Validators are responsible for committing new blocks to the blockchain through an automated voting process. A validator’s stake is slashed if they become unavailable or sign blocks at the same height. Because there is a chance of slashing, we suggest you read about Sentry Node Architecture to protect your node from DDOS attacks and to ensure high-availability.If you want to become a validator for the Hub’s
mainnet, you should learn more about security.Create Your Validator
Yourcosmosvalconspub can be used to create a new validator by staking tokens. You can find your validator pubkey by running:
Don’t use more
uatom than you have!When specifying commission parameters, the
commission-max-change-rate is used to measure % point change over the commission-rate. E.g. 1% to 2% is a 100% rate increase, but only 1 percentage point.Edit Validator Description
You can edit your validator’s public description. This info is to identify your validator, and will be relied on by delegators to decide which validators to stake to. Make sure to provide input for every flag below. If a flag is not included in the command the field will default to empty (--moniker defaults to the machine name) if the field has never been set or remain the same if it has been set in the past.
The key_name specifies which validator you are editing. If you choose to not include some of the flags below, remember that the —from flag must be included to identify the validator to update.
The --identity can be used as to verify identity with systems like Keybase or UPort. When using Keybase, --identity should be populated with a 16-digit string that is generated with a keybase.io account. It’s a cryptographically secure method of verifying your identity across multiple online networks. The Keybase API allows us to retrieve your Keybase avatar. This is how you can add a logo to your validator profile.
Please note that some parameters such as
commission-max-rate and commission-max-change-rate cannot be changed once your validator is up and running.commission-rate value must adhere to the following rules:
- Must be between 0 and the validator’s
commission-max-rate - Must not exceed the validator’s
commission-max-change-ratewhich is maximum % point change rate per day. In other words, a validator can only change its commission once per day and withincommission-max-change-ratebounds.
View Validator Description
View the validator’s information with this command:Track Validator Signing Information
In order to keep track of a validator’s signatures in the past you can do so by using thesigning-info command:
Unjail Validator
When a validator is “jailed” for downtime, you must submit anUnjail transaction from the operator account in order to be able to get block proposer rewards again (depends on the zone fee distribution).
Confirm Your Validator is Running
Your validator is active if the following command returns anything:bech32 encoded address in the ~/.gaia/config/priv_validator.json file.
Halting Your Validator
When attempting to perform routine maintenance or planning for an upcoming coordinated upgrade, it can be useful to have your validator systematically and gracefully halt. You can achieve this by either setting thehalt-height to the height at which you want your node to shutdown or by passing the --halt-height flag to gaiad. The node will shutdown with a zero exit code at that given height after committing
the block.
Advanced configuration
You can find more advanced information about running a node or a validator on the CometBFT Core documentation.Common Problems
Problem #1: My validator has voting_power: 0
Your validator has become jailed. Validators get jailed, i.e. get removed from the active validator set, if they do not vote on at least 500 of the last 10,000 blocks, or if they double sign.
If you got jailed for downtime, you can get your voting power back to your validator. First, if you’re not using Cosmovisor and gaiad is not running, start it up again:
Problem #2: My gaiad crashes because of too many open files
The default number of files Linux can open (per-process) is 1024. gaiad is known to open more than 1024 files. This causes the process to crash. A quick fix is to run ulimit -n 4096 (increase the number of open files allowed) and then restarting the process with gaiad start. If you are using systemd or another process manager to launch gaiad (such as Cosmovisor) this may require some configuration at that level. A sample systemd file to fix this issue is below: