Glossary

Utilization Rate

The utilization rate in DeFi lending is the percentage of deposited assets currently borrowed, directly affecting interest rates.

Key Takeaways

  • Utilization rate measures the percentage of deposited assets currently lent out in a lending protocol. It is calculated as total borrows divided by total supply.
  • Interest rates follow a kinked curve tied to utilization: borrowing is cheap at low utilization but spikes sharply past an optimal threshold (typically 80-93%) to incentivize repayment and protect liquidity pool withdrawals.
  • At or near 100% utilization, depositors cannot withdraw their funds, creating a temporary liquidity crisis. Protocol design treats this as an emergency state to be resolved through rate pressure.

What Is Utilization Rate?

Utilization rate is the core metric that governs how DeFi lending protocols set interest rates. It represents the fraction of total deposited (supplied) assets that are currently borrowed. A pool with $80 million borrowed from $100 million in total deposits has a utilization rate of 80%.

The concept is borrowed from traditional banking, where banks monitor what fraction of their deposits are lent out. In DeFi, the utilization rate is calculated on-chain in real time and directly feeds into algorithmic interest rate models. When utilization rises, borrowing becomes more expensive and supplying becomes more profitable. When it falls, the opposite occurs.

Understanding utilization rate is essential for anyone interacting with lending protocols like Aave or Compound, whether as a borrower seeking the cheapest rates or a depositor chasing the highest APY.

How It Works

The utilization rate formula is straightforward:

Utilization Rate (U) = Total Borrows / Total Supply

Example:
  Total Supply  = 100,000,000 USDC
  Total Borrows =  85,000,000 USDC
  U = 85,000,000 / 100,000,000 = 0.85 (85%)

What makes utilization rate powerful is how it connects to the interest rate curve. Most lending protocols use a kinked (piecewise linear) interest rate model with an optimal utilization threshold. Below this threshold, rates increase gradually. Above it, rates spike steeply to discourage further borrowing and incentivize new deposits.

The Kinked Interest Rate Model

Aave V3 defines interest rates using four parameters per asset: optimal utilization (U_optimal), base rate, slope 1, and slope 2. The borrow rate is computed differently depending on whether current utilization is above or below the optimal point:

// Below optimal utilization (U <= U_optimal):
BorrowRate = BaseRate + (U / U_optimal) * Slope1

// Above optimal utilization (U > U_optimal):
BorrowRate = BaseRate + Slope1 + ((U - U_optimal) / (1 - U_optimal)) * Slope2

// Supply rate is derived from the borrow rate:
SupplyRate = BorrowRate * U * (1 - ReserveFactor)

Slope 1 governs the gentle incline before the kink. Slope 2 governs the steep incline after it. The difference in magnitude is dramatic: for a stablecoin like DAI on Aave, slope 1 might be 4% while slope 2 is 75%. This means crossing the optimal threshold causes borrowing costs to escalate rapidly.

Optimal Utilization by Asset Type

Different asset types have different optimal utilization thresholds, reflecting their risk profiles:

Asset TypeTypical U_optimalRationale
Stablecoins (USDC, DAI)90-93%Low volatility means less withdrawal risk
Major tokens (WETH)80-92%Moderate volatility requires a larger liquidity buffer
Long-tail assets45-70%High volatility and liquidation risk demand significant reserves

Governance processes regularly adjust these parameters. In August 2026, Aave governance proposed raising slope 1 by 50 basis points across 22 stablecoin reserves to optimize DAO revenue. Earlier in May 2026, emergency adjustments were made to WETH rate parameters following a bridge security incident.

Compound V3 Variation

Compound V3 (Comet) uses a similar kinked model but with a notable difference: supply and borrow rates have independent slopes and kink values rather than deriving supply rates from borrow rates. This gives the protocol more granular control over incentives for each side of the market.

// Compound V3 borrow rate calculation:
// Below kink:
BorrowRate = borrowRateBase + borrowRateSlopeLow * U

// Above kink:
BorrowRate = borrowRateBase + (borrowRateSlopeLow * kink)
           + borrowRateSlopeHigh * (U - kink)

Why It Matters

Utilization rate is the single most important variable for both borrowers and lenders in DeFi. Borrowers can save significantly by timing their loans to periods of low utilization when rates are compressed. Lenders earn more when utilization rises, as a larger share of the pool is generating interest.

For protocols in the broader stablecoin yield landscape, the utilization rate is the primary driver of supply-side yields. When stablecoin utilization on Aave sits around 90%, USDC supply APY typically falls in the 3-5% range. On Layer 2 deployments like Arbitrum and Base, yields can run 50-150 basis points higher due to different supply and demand dynamics.

The relationship between utilization and yield also matters for stablecoin ecosystems like USDB, where understanding how lending markets generate yield helps users evaluate the sustainability of returns.

Use Cases

Rate Optimization for Borrowers

Sophisticated borrowers monitor utilization rates across multiple protocols and chains to find the cheapest borrowing costs. A pool at 60% utilization offers dramatically lower rates than one at 92%. Tools and aggregators help borrowers compare real-time rates across Aave, Compound, and other lending protocols.

Yield Strategy for Depositors

Yield-seeking depositors target pools near optimal utilization, where supply rates are maximized without the liquidity risk that comes with extreme utilization. Some yield aggregators automatically shift deposits across pools to chase the highest risk-adjusted returns driven by utilization dynamics.

Protocol Risk Management

Protocol governance teams use utilization data to calibrate risk parameters. If a particular asset consistently runs above optimal utilization, governance may raise the optimal threshold, increase slope parameters, or adjust collateral factors to rebalance the market. Conversely, persistently low utilization may signal that borrowing costs are too high or demand has shifted elsewhere.

Liquidation Monitoring

Utilization spikes often correlate with volatile market conditions. When utilization nears 100%, liquidation bots and risk monitors pay close attention, as the inability to withdraw collateral can cascade into broader liquidation cascades. Monitoring utilization alongside health factors gives a more complete picture of systemic risk.

Risks and Considerations

Withdrawal Lockout at Full Utilization

When utilization hits 100%, every deposited asset is lent out and no liquidity remains for withdrawals. Depositors are effectively locked until borrowers repay or new deposits arrive. In April 2026, Aave's USDT pool hit 100% utilization and remained above 99% for roughly 135 consecutive hours, temporarily preventing depositor withdrawals.

The steep slope 2 parameter is designed to make this state unsustainable: borrowing rates can exceed 50-100% APY, pressuring borrowers to repay quickly. However, during extreme market events, even punitive rates may not resolve the situation fast enough.

Oracle and Liquidation Interactions

High utilization makes oracle reliability even more critical. If prices move sharply during a period of full utilization, positions that should be liquidated may not be serviceable because liquidators cannot source the needed assets from the pool. This interaction between utilization and oracle risk is a key concern for protocol risk managers.

Rate Volatility

Near the kink point, small changes in utilization produce large rate swings. A pool sitting at 89% utilization with a 90% optimal threshold could see borrowing costs double if utilization moves just two percentage points. Borrowers with variable-rate loans face unpredictable costs during periods of high utilization volatility.

Governance Risk

Interest rate model parameters are set through governance, which introduces its own risks. Parameter changes that are too aggressive can cause capital flight. Changes that are too conservative can leave the protocol earning less revenue than it should. The tension between depositor protection and protocol profitability is an ongoing governance challenge, as seen in Aave's frequent rate adjustment proposals throughout 2025 and 2026.

This glossary entry is for informational purposes only and does not constitute financial or investment advice. Always do your own research before using any protocol or technology.