Understanding the Liquidation Threshold

Collateral Ratio

Collateral ratio is based on the values set in Davos smart contracts and is defined by Davos. It defines the bar when a liquidation even should happen and is slightly above the max possible borrow.

The collateral ratio is:

  • For vUSC and vUSDT — 93% of the deposited collateral value.

  • For every other supported token — 66% of the deposited collateral value.

At the current collateral ratio = .66, for each unit of the supported collateral (except vUSDT, vUSDT), users will be able to borrow up to 0.66 worth of DUSD. For example, for 10 units of collateral each worth $2, which makes up $20 total, the user will be able to borrow up to _user_deposit_ \* _liquidation_ratio_ = 20 \* 0.66 = $13.2 — up to 13 DUSD.

The collateral ratio is:

  • For vUSC and vUSDT — 93% of the deposited collateral value.

  • For every other supported token — 66% of the deposited collateral value.

We recommend users to borrow way under the ratio to avoid a risk of loan liquidation.

Liquidation Threshold

The protocol also defines a liquidation threshold a.k.a. liquidation ratio. This threshold is calculated as 0.66 of the initial price of collateral when it was deposited by the user.

For example, if the user deposited 10 units of collateral when each unit was worth $2, which makes up $20 total, the liquidation threshold would be user_deposit_ \* _liquidation_ratio_ = 20 \* 0.66 = $13.2.

If the price of user's collateral went down, for example, to $1.8 per unit, then the unit price with safety margin would be _current_price_of_collateral_unit \* _liquidation_ratio_ = 1.8 \* 0.66 = $1.188 and the total worth of collateral would be _price_of_colatteral_with_safety_margin_ \* _amount_of_collateral_ = 1.188 \* 10 = $11.88. $11.88 would pass over the liquidation threshold of $13.2 _borrowed_amount_ - _current_worth_of_colateral_ = 13 - 11.88 = $1.12, which is >$0, which would be a clear trigger for a liquidation event through a Dutch auction.

Why Use Liquidation Threshold

The loan liquidation mechanism that Davos Protocol implements ensures that if the TVL of the user’s collateral ever falls below the amount of DUSD the user withdraws then their position will be liquidated. This ensures that the protocol without-fail is over-collateralized and fully backed by accepted LSTs.

You can track if any of your positions are close to being liquidated in the web app under the Liquidation section of the navigation bar.

Liquidation Model In Detail

The liquidation mechanism is applied to ensure that DUSD remains fully backed by accepted LSTs as collateral. When the price of your collateral goes under a certain value, the liquidation process may be triggered and your collateral may be sold in a Dutch auction.

The liquidation model is best described by the following example (correct for both Polygon and Ethereum):

Last updated