# Allora SRB

ALLOSRB is a benchmark representing the mean, annualized staking rate across all active Allora validators.

ALLOSRB is calculated and published by Staking Rewards via the [Allora Profile](https://www.stakingrewards.com/asset/allora) and [Data API](https://www.stakingrewards.com/data-api).<br>

> **TL;DR:** Allora uses a custom emission model where block rewards are split between cosmos validators (25%) and Allora network participants (75%). The validator staking reward rate is derived from the validator cut per block, annualized and adjusted for community tax, divided by total bonded tokens.

$$
ALLOSRB = (vc \* bpm \* 12) \* (1 - ct) / bt
$$

<table data-full-width="false"><thead><tr><th width="141">Formula key</th><th width="176">Metric name</th><th>Description</th></tr></thead><tbody><tr><td>vc</td><td>Validator Cut</td><td>The per-block ALLO emission allocated to cosmos validators, sourced from the custom mint module's emission_info endpoint</td></tr><tr><td>bpm</td><td>Blocks Per Month</td><td>The number of blocks produced per month, sourced from the emission_info endpoint (currently ~471,300)</td></tr><tr><td>ct</td><td>Community Tax</td><td>The percentage of staking rewards directed to the community pool (currently 2%)</td></tr><tr><td>bt</td><td>Bonded Tokens</td><td>The total amount of ALLO tokens bonded (staked) across all active validators</td></tr></tbody></table>

* **Non-compounded**: ALLOSRB excludes returns from reinvestment of rewards, presenting the base annualized rate.
* **Validator Emissions Only**: The SRB uses the validator cut (25% of total block emissions). The remaining 75% goes to Allora network participants (workers and reputers) and is excluded from the staking reward rate.
* **All Rewards Counted**: Includes both claimed and unclaimed staking rewards across all validators.
* **Community Tax Adjusted**: The community tax (currently 2%) is deducted before calculating the effective staking reward rate.

***

### ALLO Emission Model

Allora is a **Cosmos SDK L1 blockchain** focused on decentralized AI, but it replaces the standard Cosmos mint module with a **custom emission model**. The standard `/cosmos/mint/v1beta1/*` endpoints are not implemented.

Here's how the emission model works:

1. **Custom Mint Module**: All emission data is served through the `/mint/v5/emission_info` endpoint, which provides validator cut, blocks per month, emission per month, and circulating supply in a single call.
2. **Split Emissions**: Each block's emission is split: **25% to cosmos validators** who secure the network, and **75% to Allora network participants** (workers producing AI/ML inferences and reputers scoring outputs).
3. **Bitcoin-Like Decreasing Emissions**: Total emissions decrease over time using an EMA smoothing mechanism, targeting a hard cap of 1,000,000,000 ALLO.
4. **Delegation**: Token holders delegate ALLO to validators. Validators charge a commission (minimum 5% enforced on-chain) on delegator rewards. Rewards are distributed proportionally to stake.

***

### Validator-Level SRB: ALLOSRB(v)

$$
ALLOSRB(v) = ALLOSRB \* (1 - c)
$$

<table data-full-width="false"><thead><tr><th width="141">Formula key</th><th width="176">Metric name</th><th>Description</th></tr></thead><tbody><tr><td>c</td><td>Commission</td><td>The validator's commission rate (5–100%), representing the percentage of delegator rewards retained by the validator. Minimum 5% is enforced on-chain.</td></tr></tbody></table>

***

### Observation Period

1. Determined based on the latest emission data from the custom mint module at the point of evaluation. The `validator_cut` and `blocks_per_month` values reflect the current emission state.
2. Annualized by multiplying monthly emissions by 12 for a comprehensive year-long projection.

***

### Calculation Frequency

The calculation happens every 6 hours and is immediately published via Data API.

***

### Slashing

ALLOSRB does not factor in the possibility of slashing occurrences. Allora implements slashing for both downtime (0.01% slash) and double signing (5% slash), with a signed blocks window of 9,000 blocks and a minimum 33% signing requirement.

***

### Allora Real Reward Rate (ALLOSRB^R)

The real reward rate calculates the ALLOSRB adjusted for inflation in the network.

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

<table data-full-width="false"><thead><tr><th width="150.33333333333331">Formula key</th><th width="187">Metric name</th><th>Description</th></tr></thead><tbody><tr><td>i</td><td>Inflation Rate</td><td>The annual inflation rate of the ALLO token supply, calculated as: (emission_per_month * 12) / total_bank_supply</td></tr></tbody></table>

{% hint style="info" %}
**Inflation Rate Behaviour**

Allora's inflation rate is calculated using total bank supply (not circulating supply) to provide a meaningful metric. The circulating supply (\~231M ALLO) is significantly smaller than the total minted supply (\~787M ALLO) due to locked vesting tokens (\~556M ALLO). Using circulating supply would produce a misleadingly high inflation figure (\~137%). The actual inflation rate against total supply is approximately **0.4%**. As the ecosystem treasury depletes over time and emissions decrease via EMA smoothing, the inflation rate will continue to decline toward zero as supply approaches the 1B ALLO hard cap.
{% endhint %}

***

### Other Allora metrics calculated by Staking Rewards:

<table><thead><tr><th width="190">Metric</th><th>Description</th></tr></thead><tbody><tr><td>Delegated Tokens</td><td>The number of ALLO tokens delegated to validators by external delegators.</td></tr><tr><td>Self Staked Tokens</td><td>The number of ALLO tokens bonded by validators directly from their own balance.</td></tr><tr><td>Staking Wallets</td><td>The total number of unique delegations on-chain. It doesn't distinguish based on unique delegator addresses.</td></tr><tr><td>Fee Revenue</td><td>Annualized transaction fees in USD.</td></tr><tr><td>Rewards Per Year</td><td>Annual rewards distributed to stakers in USD.</td></tr></tbody></table>

***

#### Data Sources:

* [Staking Rewards](https://www.stakingrewards.com/) from indexed Allora mainnet REST LCD API endpoints, including the custom mint module (`/mint/v5/`) and standard Cosmos staking module

***

#### References:

* <https://docs.allora.network/>
* <https://allora.network/>
* <https://www.stakingrewards.com/asset/allora>

***

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

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

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

```
Last updated on 04/09/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/cosmos-ecosystem-srb/allora-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.
