Fixed Rates introduces predictable borrowing costs to Kamino by letting borrowers lock in a rate for a defined term — 1 month, 3 months, 6 months, or longer — without exposure to utilization-driven rate swings. A 5.5% 3-month loan charges 5.5% through maturity regardless of what the variable rate market does. For lenders and liquidity vaults, Fixed Rates introduces Conditional Liquidity: capital stays deployed and earning in variable reserves until a fixed-rate borrow match is found, eliminating the opportunity cost of pre-positioning. The system generates DeFi’s first on-chain yield curve — a live, market-priced term structure visible across all active fixed-rate reserves.Documentation Index
Fetch the complete documentation index at: https://kamino.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
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. As maturity approaches, borrowers have four options:
| Option | Condition | Outcome |
|---|---|---|
| Rollover — same reserve | Liquidity available, no withdrawal tickets queued | Loan extends for another full term at the same rate |
| Rollover — better rate | A lower-rate reserve of the same duration is available | Loan migrates to the cheaper reserve for a new term |
| Rollover — variable fallback | Fixed-rate reserves are unavailable | Position converts to the variable-rate reserve at the prevailing rate |
| Repay | Always available | Loan is closed, collateral is freed |
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.