Validating on Paloma | Official Paloma Protocol Documentation

Validating on Paloma

Paloma is powered by the Tendermint consensus, an asynchronous, BFT consensus mechanism that uses DPoS (delegated proof of stake). Validators participating in consensus will propose blocks of transactions from the mempool and aim to reach consensus by broadcasting votes on their state. Validators on Paloma are required to run full nodes, commit new blocks to the Paloma blockchain, and participate in governance.

Paloma validators are elected into the validator pool by delegated stake from Paloma delegators, and will cast votes on behalf of their delegators. A validator's voting power is weighted according to their total stake.

The top 175 validators make up the active validator set and are the only validators that sign blocks and receive revenue from block production.

Validator responsibilities

On Paloma, a validator must:

Validating requires a significant amount of system administration knowledge and experience. Validators are required to stake real value through a bond deposit on the chain in order to participate in consensus. Mis-operation of a validator can lead to serious consequences that result in the loss of funds.

When in doubt, never hesitate to reach out to the Paloma or Cosmos community for questions or concerns about validating.

A successful validator operation will require the efforts of multiple highly-skilled individuals and continuous operational attention. Running a validator is considerably more involved than mining bitcoin. Running an effective operation is critical to avoiding unexpected unbonding or being slashed. This includes being able to respond to attacks, outages, as well as to maintain security and isolation in your data center.

New validators

Take advantage of the testnet environment if you would like to get started with validating on Paloma. Start by setting up a full node and understand the different components.

Take the time to decipher what is happening on-chain when blocks are produced, how consensus operates as a state machine, and how consensus is reached. Break down transactions, how validators verify and sign transactions, the block structure, the commitment scheme, and more.

Paloma is an omnichain interoperability protocol built on the CosmosSDK, meaning, validators should understand message passing and cross-chain consensus.

Don't rush into validating if you feel like there are gaps that may jeopardize your funds. Of course, there is always a risk when staking on the blockchain, but there is a big difference when staking with confidence and staking without.

Validator states

After a validator is created with the create-validator transaction, it can be in three states:

All Delegators have the same state as their validator.

Delegations are not necessarily bonded. GRAIN can be delegated and bonded, delegated and unbonding, delegated and unbonded, or liquid.

Incentive scheme

Each member of a validator's staking pool (validators and their associated delegators) earns revenue:

This total revenue is divided among a validator's staking pool according to each validator's weight. The revenue is then divided among delegators in proportion to each delegator's stake. Note that a commission on delegators' revenue is applied by the validator before it is distributed.

Validator commission

Validators can set commissions on the fees they receive as an additional incentive.

The revenue received by a validator's pool is split between a validator and their delegators. A validator can apply a commission on the part of the revenue that goes to its delegators. This commission is set as a percentage. Each validator is free to set its initial commission, maximum daily commission change rate, and maximum commission. The mainnet enforces the parameters that each validator sets. These parameters can only be defined when initially declaring candidacy, and may only be constrained further after being declared.

Validators who set their commission rate to 100% are not seeking delegations as the entire commission goes to them. This is the case when the validator has enough self-stake.

Block provisions distribution

Block provisions are distributed proportionally to each validator relative to their total stake. This means that even though each validator gains rewards with each provision, all validators will still maintain equal weight.

Fees distribution

Fees are distributed to validators in the same way as commission: proportionally to each validator relative to their total stake. A Block proposer can also get a bonus if the proposer includes more than the minimum of required precommits.

Block rewards

When a validator is selected to propose the next block, they must include at least two-thirds of the precommits for the previous block in the form of validator signatures. Proposers who include more than two thirds receive a bonus proportional to the amount of additional precommits. This reward ranges from 1% if the proposer includes two thirds of the precommits to 5% if the proposer includes 100% of the precommits. If a proposer waits too long however, other validators may timeout and move on to the next proposer. This is why validators have to find a balance between wait time to get the most signatures and the risk of losing out on proposing the next block. This feature aims to incentivize non-empty block proposals, better networking between validators, and to mitigate censorship.

Block reward example

There are 10 validators with equal stake. Each has a 1% commission and 20% self-bonded GRAIN. If a successful block collects 1005 SDT in fees, and the proposer includes 100% of the signatures in their block, they will receive the full 5% bonus.
Use this simple equation to find the reward $R$ for each validator:

$$9R ~ + ~ R ~ + ~ 5%(R) ~ = ~ 1005 ~ \Leftrightarrow ~ R ~ = ~ 1005 ~/ ~10.05 ~ = ~ 100$$

Slashing

Warning

Even if a validator does not intentionally misbehave, it can still be slashed if its node crashes, loses connectivity, gets DDoSed, or if its private key is compromised.

If a validator misbehaves, their bonded stake along with their delegators' stake will be slashed. The severity of the punishment depends on the type of fault. There are main faults that can result in slashing of funds:

Additional resources