> For the complete documentation index, see [llms.txt](https://docs.increment.fi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.increment.fi/protocols/decentralized-money-market/interest-rate-model.md).

# Interest Rate Model

{% hint style="info" %}
The interest rate for each market is determined dynamically, purely based on supply and demand of that market. Interest is calculated and accrued on a per-block basis, with an average of \~1.25s mainnet [blocktime](https://docs.onflow.org/cadence/measuring-time/#time-on-the-flow-blockchain) and \~0.8s testnet blocktime as of June 2023.
{% endhint %}

### Interest Rate Model for {Flow, stFlow, BLT, USDC, FUSD} markets&#x20;

<table><thead><tr><th width="150">baseRate</th><th width="150">criticalRate</th><th width="150">criticalPoint</th><th width="150">baseSlope</th><th width="150">jumpSlope</th><th>reserveFactor</th></tr></thead><tbody><tr><td>0.1%</td><td>10.1%</td><td>80%</td><td>0.125</td><td>3.5</td><td>10%</td></tr></tbody></table>

<figure><img src="/files/qHumXpX6dTg3hd1pV0Pg" alt=""><figcaption></figcaption></figure>

Users will be charged interests for borrowing fungible token assets. The borrow interest rate is algorithmically-set based on supply and demand of the asset - which is reflected by the asset pool utilization rate.&#x20;

### Utilization Rate

$$
poolUtilizationRate = \frac{poolBorrows}{poolBorrows + poolCash - poolReserve}
$$

### Borrow Interest Rate

A critical point (80%) exists in the borrow interest rate model:&#x20;

* When utilization rate is below the critical point, a flatter slope is applied
* Once utilization rate exceeds the critical point, the slope becomes much steeper - This incentives borrowers to pay back the borrowed assets while at the same also incentives suppliers to deposit assets to earn a high APR.&#x20;

$$
borrowInterestRate=\left{
\begin{array}{ll}
baseRate\ +\ baseSlope\cdot utilRate, & \mbox{utilRate$\<criticalPoint$}\\
jumpSlope\cdot\left(utilRate-criticalPoint\right)+criticalRate, & \mbox{utilRate$\ge criticalPoint$}
\end{array}
\right.
$$

### Supply Interest Rate

Supply interest rate is inferred from borrow interest rate after deducting the fraction goes to the pool reserve:

$$
supplyInterestRate = (1 - reserveFactor) \cdot utilRate \cdot borrowInterestRate
$$

### Reserve

Each asset pool maintains a FungibleToken Vault as pool reserve, whose balance comes from a fraction of generated interests, determined by **reserveFactor**. Reserve serves the purpose of incentivization and risk mitigation, such as protection against smart contracts exploits, oracle attacks, emergency shutdown, etc.&#x20;


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.increment.fi/protocols/decentralized-money-market/interest-rate-model.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
