The rate grid
Each market maintains multiple reserves per debt token. Instead of a single USDC reserve, the market exposes a full rate grid: one variable reserve plus one reserve per rate-and-duration combination currently offered. Each reserve is independent — it has its own liquidity, its own utilization, and its own borrowers. A position in theUSDC 5.5% 3m reserve has no interaction with the USDC 6.0% 6m reserve.
Example rate grid for USDC debt in a single market:
| Rate | 1 month | 3 months | 6 months | 12 months |
|---|---|---|---|---|
| 5.0% | USDC 5.0% 1m | USDC 5.0% 3m | — | — |
| 5.5% | — | USDC 5.5% 3m | USDC 5.5% 6m | — |
| 6.0% | — | USDC 6.0% 3m | USDC 6.0% 6m | USDC 6.0% 12m |
| 7.0% | — | — | USDC 7.0% 6m | USDC 7.0% 12m |
USDC 6.0% 6m does not affect liquidity in adjacent reserves. Borrowers and lenders interact only within their specific reserve.
Conditional Liquidity
Liquidity vaults face an inherent problem when offering fixed-rate lending: capital sitting in a fixed-rate reserve earns nothing until a borrower arrives. Conditional Liquidity solves this by letting vaults signal capacity on fixed-rate reserves without moving capital. Capital remains in variable-rate reserves, earning the live variable yield. The vault posts a conditional signal on one or more fixed-rate reserves, declaring that it can fill up to a specified amount at that rate and duration. When a matching Borrow Order is submitted, the protocol atomically:- Pulls the required amount from the vault’s variable-rate position
- Deposits it into the target fixed-rate reserve
- Delivers it to the borrower
USDC 5.5% 3m reserve fills first, the signal on USDC 6.0% 6m is satisfied from the same capital pool, first match wins.
Conditional Liquidity is a vault-level feature. Retail lenders depositing directly into a reserve do not post conditional signals — they provide committed liquidity to that specific reserve immediately.
Borrow Orders
Borrowers access fixed-rate reserves through the Borrow Orders system. A Borrow Order specifies the desired debt token, rate ceiling, term, and amount. The protocol matches the order against available conditional and committed liquidity across the rate grid and fills at the best available rate up to the borrower’s ceiling. See Borrow Orders for the full mechanics of order submission, partial fills, and matching logic.Early repayment
You can repay a fixed-rate loan at any time before maturity without waiting for the term to end. During the first term only, an early repayment penalty may apply. The penalty compensates lenders who committed capital for the agreed duration. After a rollover into a subsequent term, there is no early repayment penalty. The penalty is calculated based on the minimum interest that would have accrued had the loan run longer. Interest already paid on the loan reduces the penalty proportionally — the longer you have been in the loan, the smaller the effective penalty on early exit.The early repayment penalty applies during the first term only. Once a loan rolls over into a new term, you can exit at any time without penalty.
Rollover
Fixed-rate loans have a maturity date equal toloan_start + term_duration. At maturity, the protocol attempts to automatically roll the loan into a new fixed-rate term. The new term runs at the same rate the borrower already has, or at a lower rate if a cheaper reserve of the same duration is available. The borrower stays in a fixed-rate position across maturity by default and can repay at any point during the rollover window to close out the loan.
If both fixed-rate rollover paths are blocked at maturity, the protocol falls back to the paths described below. This typically happens when withdrawal tickets are queued in the target reserves or when those reserves lack liquidity.
How auto-rollover works
At maturity, the protocol evaluates the following paths in order and executes the first one that succeeds:- Rollover — same fixed-rate reserve. If the reserve has sufficient available liquidity and no withdrawal tickets are queued, the loan extends for another full term at the same rate.
- Rollover — better fixed-rate reserve. If a lower-rate reserve of the same duration is available, the loan migrates there for a new term at the lower rate.
- Fallback — variable-rate reserve for the same asset. If both fixed-rate paths are blocked but the market has a variable-rate reserve of the same debt asset with enough free liquidity, the loan is converted into that variable-rate reserve at the prevailing rate. The position remains open under variable-rate mechanics from that point on.
- Liquidation eligibility. If none of the paths above succeeds, the loan becomes eligible for liquidation after the grace period. This includes situations where the market lacks a variable-rate reserve of the same asset, and situations where that variable reserve has insufficient free liquidity to absorb the position.
Grace period
A grace period of approximately 6 hours applies after maturity. During the grace period the position remains healthy and any of the rollover paths above can complete without penalty. After the grace period expires, if none of the rollover paths has succeeded, the position becomes eligible for liquidation regardless of the collateral health ratio. An expired fixed-rate loan that has exhausted every rollover path is treated as a protocol-level breach in its own right, independent of price action.When the variable-rate fallback applies
Whether the variable-rate fallback is available depends on the structure of the market the loan lives in. A market that lists both a fixed-rate reserve and a variable-rate reserve for the same debt asset has a fallback path. A market with only fixed-rate reserves for that asset moves directly toward liquidation when fixed rollover paths fail. The variable reserve’s own liquidity also matters. If it is at or near full utilization at the moment of rollover, it cannot absorb additional debt, and the fallback path effectively closes. Borrowers should check the structure and current state of the relevant variable reserve before treating fallback as a safety net.Withdrawal Queue
Fixed-rate reserves lock lender capital for the duration of the term — lenders cannot withdraw on demand mid-term. To exit a position before borrowers repay, lenders submit a withdrawal ticket specifying the amount they want returned. Tickets enter a per-reserve FIFO queue. Queued tickets are filled as capital re-enters the reserve through borrower repayments and liquidations. There is no guarantee of fill timing; a reserve with low repayment activity may take the full remaining term to return queued capital. The queue directly affects borrower rollover eligibility. Any queued ticket in a reserve blocks rollover for all borrowers in that reserve. This is by design: lenders who have signaled intent to exit cannot be re-committed to a new term without their consent. Borrowers planning to roll should check whether any withdrawal tickets are queued before maturity.Withdrawal ticket status is visible on-chain. If a reserve has queued tickets approaching your loan maturity, plan for repayment rather than assuming rollover will succeed.