Accepted Collateral Assets
Synclear accepts a curated set of on-chain assets as collateral. Each asset class carries a distinct maximum LTV, liquidation threshold, and liquidation penalty reflecting its price volatility and on-chain liquidity depth.
Max LTV is the maximum ratio of loan principal to collateral value permitted at the time of drawdown. Liquidation Threshold is the LTV at which a position becomes eligible for liquidation — slightly above Max LTV to provide a buffer. Liquidation Penalty is the additional discount applied to collateral seized during liquidation, paid to the liquidator as an incentive.
LP token collateral is subject to additional pricing methodology (TWAP-based fair value) to account for impermanent loss risk. LTV parameters for all assets are governed by the Synclear risk committee and may be updated with 48-hour on-chain notice.
Posting Collateral
Collateral is deposited into a dedicated escrow vault contract associated with your credit line. The deposit process requires two transactions:- ERC-20 approval — approve the escrow vault contract to transfer the collateral amount from your wallet.
- Deposit transaction — call
collateralVault.deposit(creditLineId, asset, amount)to transfer collateral into escrow.
Health Factor Calculation
The health factor is the primary metric for monitoring position safety. It is calculated as:collateralValueis the current USD value of all posted collateral, sourced from on-chain oraclesliquidationThresholdis the asset-specific threshold from the table aboveoutstandingDebtis the drawn principal plus all accrued interest
Example
A business posts 10 ETH as collateral. At a current ETH price of 30,000. Liquidation threshold for ETH is 80%.Adding Collateral to Avoid Liquidation
If your health factor is declining, the fastest remediation is to post additional collateral. You do not need to close the credit line — additional collateral deposits are accepted at any time while the credit line is open.How to top up collateral
How to top up collateral
- Navigate to Borrow → Your Credit Lines and select the credit line to top up.
- Click Add Collateral. You can add the same asset already posted or any other accepted collateral asset.
- Approve the escrow vault contract to spend the additional collateral amount.
- Confirm the deposit transaction. The health factor will update within one block of confirmation.
collateralVault.deposit(creditLineId, asset, amount) directly from your operating contract for automated top-up logic.Partial repayment to improve health factor
Partial repayment to improve health factor
Repaying a portion of the outstanding debt reduces the denominator in the health factor formula and improves your ratio immediately. Partial repayments are processed atomically — the health factor updates in the same block as the repayment transaction. See Credit Lines for repayment instructions.
Liquidation Mechanics
When a position’s health factor reaches or drops below 1.0, it becomes available to liquidators — third-party accounts or bots that monitor the protocol for undercollateralized positions. Liquidation process:- A liquidator calls
liquidationEngine.liquidate(creditLineId, debtAmount, collateralAsset), specifying the debt amount they wish to repay and the collateral asset they want to receive. - The protocol validates that the position is eligible (health factor ≤ 1.0).
- The liquidator repays up to 50% of the outstanding debt in a single transaction (the close factor).
- The protocol releases to the liquidator the equivalent collateral value plus the liquidation penalty discount.
- The position’s debt and collateral balances are updated. If health factor is restored above 1.0, no further liquidation is possible until conditions deteriorate again.