Sources of Rewards

There are two main sources of rewards in Solana: producing transaction blocks and voting for blocks (i.e. consensus participation)

Proposing end-user transaction blocks

Validators are assigned to propose blocks (i.e. slot leaders). If they successfully produce blocks, they receive the base fees and priority fees from end-users and any MEV (maximum extractable value) they might extract. In terms of delegator rewards, validators do not share fees from block production to delegators. Meanwhile, MEV extracted through running the Jito Labs client is shared with delegators based on the commission rate set by validators.

Voting for blocks

As mentioned in #voting-effectiveness, validators are called to vote for every observed block that is on the correct fork. For every successful vote a validator casts, they receive one vote credit. These credits are multiplied by stake-weight to obtain points. After which, these points form the main basis for distributing the per-epoch inflation rate of the supply of the Solana token (SOL) that is given to validators.

Here is an example to illustrate:

  • Total SOL supply: 560,382,222

  • Annual inflation rate: 5.76%

  • Epochs per year: 182.5 epochs

    • Based on an ideal slot duration of 400 milliseconds or 48 hours per epoch and 365 days in a year
  1. For a given epoch the total supply of SOL tokens is multiplied by the epoch inflation rate (we can call this absolute inflation):
absolute inflation=epoch inflation rate×total supply=0.000316×560,382,222177,080\text{absolute inflation} = \text{epoch inflation rate} \times \text{total supply} \\ = 0.000316 \times 560,382,222 \approx 177,080
  1. For each validator account epoch credits are multiplied by stake delegated to them to obtain each validator’s points

  2. Each validator is awarded a share of absolute inflation based on their points

  3. The share of inflation is paid to the stake accounts delegated to the validator pro-rata

  4. The validator receives their commission into the vote account

Example for absolute inflation of 177,080 with three validators:

TOTAL REWARDS

Delegator StakeValidatorCreditsPointsPoints %Total Rewards
150 SOLA - 350 SOL413,000144,550,00031.6%55,943
200 SOL
150 SOLB - 350 SOL420,000147,000,00032.1%56,891
200 SOL
400 SOLC - 400 SOL415,000166,000,00036.3%64,244
TOTAL457,550,000100%177,080

VALIDATOR AND DELEGATOR REWARDS

Delegator StakeValidatorTotal RewardsCommission RateCommission RewardsDelegator Rewards
150 SOLA - 350 SOL55,94310%5,59421,578
200 SOL28,770
150 SOLB - 350 SOL56,8915%2,84523,162
200 SOL30,884
400 SOLC - 400 SOL64,2445%3,21261,032
TOTAL177,080

From the above, we can see that validators A and B have the same stake-weight, however they have a different number of credits. As a result the delegators to validator B have earned higher pre-commission rewards.

In the next sections, we will go through the methodologies for computing the delegator APR and validator APR.

Get going