# APR methodology

**Annual Percentage Rate** (APR) is one of the most widely used metrics in DeFi and a common benchmark for comparing yields. Because different parts of the protocol accrue value in different ways, we use two distinct APR calculation methods.&#x20;

1\) APR for **Watt assets** is calculated as:

$$
\frac{tokenRatio\_t - tokenRatio\_{t-1}}{ tokenRatio\_{t-1}} \* 100 \* 365
$$

whereas $$tokenRatio$$ is described [here](/the-protocol/watt-assets/token-ratio.md).

2\) APR for **liquidity pools** listed in the app is calculated as:&#x20;

$$
\left( \frac{\mathrm{Rewards}*{\text{sum, }t\ \mathrm{days}}}
{\overline{\mathrm{LP}}*{\text{staked, daily over }t\ \mathrm{days}}} \right)
\times \frac{365}{t}
$$

Here, $$Rewards$$ refer to the amount of Watt collected fees to be distributed,\
and $$LP$$ represents the average value of liquidity staked in the pool.

To maintain healthy incentives for liquidity providers, fees are not distributed immediately upon collection. Instead, they are released gradually over several days following our **custom distribution curve**. This approach:

* Smooths out short-term APR spikes or drops caused by sudden liquidity inflows or outflows.
* Provides more consistent returns for LPs over time.

Due to this smoothing, a quick “back-of-the-envelope” APR calculation using only the 24-hour fees and the current 24-hour average liquidity from the app will not accurately match the exact realized APR.


---

# 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.watt.si/the-protocol/apr-methodology.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.
