Skip to content
Reading depth

Each view includes the earlier layers; the complete engineer or auditor page is shown by default.

Loan-to-value is the ratio of debt value to collateral value under a stated price, eligibility, and aggregation model.

Split balance category cue

Loan-to-value, or LTV, compares debt value with collateral value under one stated valuation and eligibility model.

Token amounts with different units cannot be compared directly. LTV converts collateral and debt to one reference unit and expresses leverage as a ratio. It helps limit new borrowing and shows how price or interest changes consume a buffer.

Mortgage LTV is the direct analogy. In DeFi, collateral and debt prices can change continuously, debt accrues programmatically, and protocols may use separate thresholds for new borrowing and liquidation. Multi-asset factors can make a displayed aggregate ratio less informative than its components.

collateralValueUsd = collateralAmount × collateralPriceUsd
loanToValue = debtValueUsd / collateralValueUsd

Both values use USD in this example, so LTV is a unitless fraction. 0.60 is 60%; it is not the number 60 and not 6,000 basis points unless converted explicitly. Positive debt with zero credited collateral is unsafe, not a valid division result.

  1. Inventory eligible collateral and outstanding debt with explicit token amounts and decimal scales.
  2. Convert every amount to one stated reference unit using compatible price directions and observations.
  3. Sum credited collateral value under the selected eligibility and haircut model.
  4. Sum debt value, including accrued interest and any model-defined obligations.
  5. Divide debt value by collateral value, handling zero collateral as an explicit unsafe boundary.
  6. Compare current LTV with the maximum-borrow and liquidation thresholds, then recompute after every state or price change.

The gap between borrowing and liquidation boundaries is a buffer for price movement and interest. Exact names and behavior vary by protocol.

Capital flow is borrowing, repayment, and collateral movement. Information flow is prices and factors. Claim flow is the borrower debt paired with the creditor’s collateral and repayment rights; computing LTV creates no additional claim. Return flow does not originate in the ratio, although borrower interest can increase debt and therefore LTV. Risk flow reaches the borrower when LTV approaches liquidation and reaches suppliers when recovery value becomes insufficient.

LTV produces no return. It constrains how much borrowed purchasing power a borrower receives. The borrower pays interest and loses collateral first during liquidation; any shortfall follows the pool’s reserve and supplier loss rules.

Test compatible units, price direction, decimals, zero collateral, multiple assets, eligibility, haircuts, debt indices, rounding, stale prices, same-block state changes, maximum-LTV enforcement, and separation from liquidation thresholds. Use validated fraction constructors rather than mixing percentages, fractions, and basis points.

Compound III’s collateral documentation is one primary example of separate factors for borrowing and liquidation. Its parameters and aggregation model are protocol-specific. The documentation was reviewed 2026-08-10.

  • “60% LTV means 60 tokens of debt.” LTV is a unitless ratio of reference values.
  • “Maximum LTV is the liquidation threshold.” Protocols can and often do separate them.
  • “LTV changes only when prices change.” Borrowing, repayment, collateral movement, and interest also change it.

Continue with the protocol-defined health factor.

Machine-readable model

Key equations

Canonical expressions come from the structured concept record. KaTeX renders the notation, while the plain-text expression and variable table keep its meaning and units inspectable without JavaScript. Read the narrative above for the model's domain, assumptions, and rounding rules.

  1. Equation 1

    Plain-text equation: loanToValue = debtValue / collateralValue

Assurance contract

Security properties

These structured statements define desired behavior. Their stable IDs can bind tests, invariants, specifications, audit findings, or proof results without turning descriptive review advice into an assurance claim.

Desired · not evaluated: No test, audit, or proof result is implied until scoped evidence is linked to this property.

  1. Debt and collateral values use compatible units, price times, decimals, eligibility, and aggregation rules

  2. Zero collateral with positive debt is handled as an unsafe position rather than division by zero

  3. Additional borrowing is rejected when it would exceed maximum LTV

  4. Repayment, collateral changes, and interest update LTV from reconciled state

Knowledge check

Quiz

Answer in your own words, then open the model answer.

What problem does Loan-to-value exist to address?

Model answer

Loan-to-value gives borrowers and protocols a comparable measure of leverage and remaining borrowing capacity before a position reaches configured limits.