# Chainlink SRB

LINKSRB is a benchmark representing the mean, annualized staking rate across all active Chainlink staking pools.

LINKSRB is calculated and published by Staking Rewards via the [Chainlink Profile](https://www.stakingrewards.com/asset/chainlink) and [Data API](https://www.stakingrewards.com/data-api).

> **TL;DR:** Chainlink Staking v0.2 distributes LINK rewards via a Reward Vault that emits tokens at fixed rates across three buckets: community base, operator base, and operator delegated. The asset-level reward rate is the total annual emission divided by total staked LINK across both pools.

$$
LINKSRB = (e\_{cb} + e\_{ob} + e\_{od}) \* t\_y / (st\_{c} + st\_{o})
$$

<table data-full-width="false"><thead><tr><th width="154">Formula key</th><th width="220">Metric name</th><th>Description</th></tr></thead><tbody><tr><td>e<sub>cb</sub></td><td>Community Base Emission</td><td>LINK tokens emitted per second to the Community Staking Pool from the Reward Vault.</td></tr><tr><td>e<sub>ob</sub></td><td>Operator Base Emission</td><td>LINK tokens emitted per second to Node Operators as base rewards.</td></tr><tr><td>e<sub>od</sub></td><td>Operator Delegated Emission</td><td>LINK tokens emitted per second to Node Operators as delegation rewards (funded by community staker delegation fee).</td></tr><tr><td>st<sub>c</sub></td><td>Community Staked Tokens</td><td>Total LINK staked in the Community Staking Pool.</td></tr><tr><td>st<sub>o</sub></td><td>Operator Staked Tokens</td><td>Total LINK staked in the Node Operator Staking Pool.</td></tr><tr><td><span class="math">t_y</span></td><td>Year Constant</td><td>31,536,000 seconds (365 days)</td></tr></tbody></table>

* LINKSRB takes into account all accumulated rewards, whether they have been claimed or remain unclaimed.
* LINKSRB operates on a non-compounded basis, meaning it excludes returns generated from the reinvestment of rewards.
* Chainlink Staking v0.2 operates on Ethereum mainnet with two distinct pools: a Community Staking Pool (cap: 40,875,000 LINK) and a Node Operator Staking Pool (cap: 4,125,000 LINK).
* Emission rates are fixed per reward period and configured in the Reward Vault contract. When a reward period ends, the rate drops to zero until a new period is funded.

#### Slashing

{% hint style="info" %}
Chainlink Staking v0.2 implements slashing as part of its oracle service security model. Stakers can be slashed if a feed goes down and is not recovered within the alerting window. LINKSRB does not factor in the possibility of slashing occurrences.
{% endhint %}

***

### Chainlink Community Staking Rewards Rate: LINKSRB(c) <a href="#chainlink-community-staking-rewards-rate-linksrb-c" id="chainlink-community-staking-rewards-rate-linksrb-c"></a>

The community staker reward rate is derived from the community base emission bucket only:

$$
LINKSRB(c) = e\_{cb} \* t\_y / st\_{c}
$$

Community stakers also pay a delegation fee (currently 4%) that is redirected to node operators via the operator delegated emission bucket. This fee is already excluded from the community base emission.

***

### Chainlink Node Operator Staking Rewards Rate: LINKSRB(v) <a href="#chainlink-node-operator-staking-rewards-rate-linksrb-v" id="chainlink-node-operator-staking-rewards-rate-linksrb-v"></a>

Node operator reward rates include both base and delegated emission buckets:

$$
LINKSRB(v) = (e\_{ob} + e\_{od}) \* t\_y / st\_{o}
$$

<table data-full-width="false"><thead><tr><th width="141">Formula Key</th><th width="220">Metric name</th><th>Description</th></tr></thead><tbody><tr><td>e<sub>ob</sub></td><td>Operator Base Emission</td><td>LINK emitted per second as base operator rewards.</td></tr><tr><td>e<sub>od</sub></td><td>Operator Delegated Emission</td><td>LINK emitted per second as delegation rewards from community stakers.</td></tr><tr><td>st<sub>o</sub></td><td>Operator Staked Tokens</td><td>Total LINK staked across all node operators.</td></tr></tbody></table>

All registered node operators share the same reward rate since emissions are distributed proportionally to their stake. The operator commission (delegation rate) is uniform at 4% (400 basis points), set at the protocol level via the Reward Vault contract.

***

### Inflation Rate

$$
i = 0
$$

**Inflation Rate Behaviour**

LINK is a fixed-supply ERC-20 token with a total supply of 1,000,000,000 LINK. There is no minting mechanism and no inflation. Staking rewards are distributed from a pre-funded Reward Vault, not from newly minted tokens.

***

### Real Reward Rate: LINKSRB^R

$$
LINKSRB^R = (1 + LINKSRB) / (1 + i) - 1
$$

Since LINK has zero inflation, the real reward rate equals the nominal reward rate:

$$
LINKSRB^R = LINKSRB
$$

***

#### Observation Period:

1. The LINKSRB is determined based on the current emission rates from the Reward Vault contract and total staked tokens in both pools at the point of evaluation.
2. This data is then annualized for a comprehensive year-long projection.

#### Calculation

The calculation happens every 6 hours and is immediately published via [Data API](https://www.stakingrewards.com/data-api).

#### Limitations

1. LINKSRB employs a 365-day convention for annualizing staking rates. This convention remains consistent and does not accommodate adjustments for leap years.
2. Reward periods are time-bounded. When the current reward period ends, emission rates drop to zero until a new period is funded by the protocol. LINKSRB reflects the current emission state and does not predict future reward periods.
3. LINKSRB does not account for the individual staker ramp-up multiplier (rewards linearly increase over 90 days per staker). The benchmark assumes the aggregate steady-state rate.
4. The number of unique community staking wallets is not available from the smart contracts and is not currently tracked.

***

#### Other Metrics

| Metric               | Description                                                                          |
| -------------------- | ------------------------------------------------------------------------------------ |
| Staked Tokens        | Total LINK staked across Community and Node Operator pools                           |
| Self Staked Tokens   | Total LINK staked by node operators in the Operator Pool                             |
| Total Validators     | Number of registered node operators                                                  |
| Active Validators    | Number of active node operators (same as total; all registered operators are active) |
| Benchmark Commission | Protocol-level delegation rate (4%), uniform across all operators                    |

***

#### Data Sources:

* Chainlink Staking v0.2 smart contracts on Ethereum mainnet (Community Pool, Operator Pool, Reward Vault) via Ethereum JSON-RPC
* CoinGecko (price, circulating supply)

***

#### References:

* <https://chain.link/economics/staking>
* <https://blog.chain.link/chainlink-staking-v0-2-overview/>
* <https://docs.chain.link/chainlink-staking/overview>

***

:books: [Learn more about LINK Staking](https://www.stakingrewards.com/asset/chainlink)

:bar\_chart: [Calculate your LINK Staking Rewards](https://www.stakingrewards.com/calculator?asset=chainlink)

:gear: [Access historic Chainlink Staking Data via API](https://www.stakingrewards.com/data-api)

```
Last updated on 04/14/2026
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.stakingrewards.com/staking-data/methodologies/chainlink-srb.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
