Borrow Interest Rate

Mitigating liquidity risk through the borrow interest rate model

Aave’s interest rate algorithm is calibrated to manage liquidity risk and optimise utilisation. The borrow interest rates are derived from the Utilisation Rate UU.

UU is an indicator of the availability of capital within the pool. The interest rate model manages liquidity risk in the protocol through user incentives to support liquidity:

  • When capital is available: low interest rates to encourage borrowing.

  • When capital is scarce: high interest rates to encourage repayments of debt and additional supplying.

To retrieve the interest rate strategy contract on-chain, see this section of the developer docs.

Interest Rate Model

Liquidity risk materialises when utilisation is high, and this becomes more problematic as UU gets closer to 100%. To tailor the model to this constraint, the interest rate curve is split in two parts around an optimal utilisation rate UoptimalU_{optimal}. Before UoptimalU_{optimal}the slope is small, after it begins rising sharply.

The interest rateRtR_tfollows the model:

ifUUoptimal:Rt=R0+UtUoptimalRslope1if \hspace{1mm} U \leq U_{optimal}: \hspace{1cm} R_t = R_0 + \frac{U_t}{U_{optimal}} R_{slope1}

ifU>Uoptimal:Rt=R0+Rslope1+UtUoptimal1UoptimalRslope2if \hspace{1mm} U > U_{optimal}: \hspace{1cm} R_t = R_0 + R_{slope1} + \frac{U_t-U_{optimal}}{1-U_{optimal}}R_{slope2}

In the borrow rate technical implementation, the calculateCompoundedInterest method relies on an approximation that mostly affects high interest rates. The resulting actual borrow rate is as follows:

ActualAPY=(1+TheoreticalAPY/secsperyear)secsperyear1Actual APY = (1+Theoretical APY/secsperyear)^{secsperyear}-1

  • When UUoptimalU \leq U_{optimal} the borrow interest rates increase slowly with utilisation

  • When U>UoptimalU > U_{optimal} the borrow interest rates increase sharply with utilisation to above 50% APY if the liquidity is fully utilised.

Both the variable and stable interest models, are derived from the formula above from the Whitepaper with different parameters for each asset.

Variable debt see their rate constantly evolving with utilisation.

Alternatively, stable debts maintain their interest rate at issuance until the specific rebalancing conditions are met. In V3 interest models are optimised by new rate strategy parameter Optimal Stable/Total Debt Ratio to algorithmically manage stable rate.

ifratio<ratioo:Rt=r0+ratioratioo1ratiooRbaseif \hspace{1mm} ratio < ratio_{o}: \hspace{1cm} R_{t} = r_{0} + \frac{ratio - ratio_{o}}{1 - ratio_{o}}R_{base}

Model Parameters

First, it’s crucial to distinguish assets that are used predominantly as collateral (i.e., volatile assets), which need liquidity at all times to enable liquidations. Second, the asset’s liquidity on Aave is an important factor as the more liquidity, the more stable the utilisation. The interest rates of assets with lower liquidity levels should be more conservative.

It is also key to consider market conditions (i.e., how can the asset be used in the current market?). Aave’s borrowing costs must be aligned with market yield opportunities, or there would be a rate arbitrage with users incentivized to borrow all the liquidity on Aave to take advantage of higher yield opportunities.

With the rise of liquidity mining, Aave adapted its cost of borrowing by lowering the Uoptimal of the assets affected. This increased the borrow costs that are now partially offset by the liquidity reward.

Variable Interest Rate Model Parameters

Variable rate parameters:

  • UoptimalU_{optimal}

  • Base Variable Borrow Rate

  • Variable Rate Slope 1

  • Variable Rate Slope 2

Stable Interest Rate Model Parameters

Stable rate parameters:

  • UoptimalU_{optimal}

  • Base Variable Borrow Rate

  • Variable Rate Slope 1

  • Variable Rate Slope 2

  • Stable to Total Debt Ratio

The stable rate provides predictability for the borrower; however, it comes at a cost, as the interest rates are higher than the variable rate.

The assets that are most exposed to liquidity risk do not offer stable rate borrowing.

The base rate of the stable rate model corresponds to the average market rate of the asset.

Stable Interest Rate Rebalance

In certain conditions, the protocol enables stable rates to be rebalanced to avoid a large percentage of liquidity being borrowed at a stable rate below market variable rate. In V3, The condition for rebalance is if the current supply rate <= supply rate if all borrows are variable * 0.9, smart contract reference.

V3 Interest rate Parameters

The interest rate parameters for V3 markets have been deployed with 3 interest rate strategies calibrated per cluster of assets that share similar risk profiles.

Rate Strategy Volatile One

Volatile assets need liquidity at all times and are thus calibrated at a low Optimal Utilisation Ratio

AAVE, BAL, CRV, DPI, GHST, LINK, SUSHI, WAVAX, WBTC, WETH, WFTM, WMATIC, WONE

ParametersValue

Optimal Usage

45%

Base Variable Borrow Rate

0

Variable Rate Slope 1

4%

Variable Rate Slope 2

300%

Base Stable Borrow Rate

2%

Stable Rate Slope 1

7%

Stable Rate Slope 2

300%

Optimal Stable to Total Debt Ratio

20%

Rate Strategy Stable One

Low liquidity stablecoins have lower Optimal Utilisation Ratio than those with higher liquidity.

DAI

ParametersValue

Optimal Usage

90%

Base Variable Borrow Rate

0

Variable Rate Slope 1

4%

Variable Rate Slope 2

60%

Base Stable Borrow Rate

2%

Stable Rate Slope 1

0.5%

Stable Rate Slope 2

60%

Optimal Stable to Total Debt Ratio

20%

Rate Strategy Stable Two

High liquidity stablecoins which are callibrated to lower rates to encourage borrow.

SUSD, USDC, USDT, EURS, JEUR, AGEUR

ParametersValue

Optimal Usage

80%

Base Variable Borrow Rate

0

Variable Rate Slope 1

4%

Variable Rate Slope 2

75%

Base Stable Borrow Rate

1%

Stable Rate Slope 1

0.5%

Stable Rate Slope 2

75%

Optimal Stable to Total Debt Ratio

20%

When market conditions change, the interest rate parameters must be changed to adapt to utilisation on Aave’s market as well as to incentives across DeFi.

Supply rate

The borrow interest rates paid are distributed as yield for aToken holders who have supplied to the protocol, excluding a share of yields sent to the ecosystem reserve defined by the reserve factor. This interest rate is generated on the asset that is borrowed out then shared among all the liquidity providers. The supply APY, DtD_t, is:

St=Ut(SBtSt+VBtVt)(1Rt)S_t = U_t ( SB_t S_t + VB_t V_t)(1-R_t)

  • UtU_t, the utilisation ratio

  • SBtSB_t, the share of stable borrows

  • StS_t, the average stable rate

  • VBtVB_t, the share of variable borrows

  • VtV_t, the variable rate

  • RtR_t, the reserve factor

You can view the protocol's deposit APY on the Aave App for each asset.

The average Supply APY over a period also includes Flash Loan fees.

Last updated