Liquidations

Defining liquidations, health factor, and weighted thresholds.

How does the protocol ensure over-collaterization while allowing users leveraged operations?

When doing leverage with Gearbox, your Credit Account becomes the collateral for external protocols/actions: both your initial funds and the borrowed amount you got from the protocol. Gearbox Protocol sees which tokens your portfolio consists of and can determine its value at all times, which are always calculated in the underlying borrowed asset which you opened that Credit Account in.

Gearbox uses a risk model to continuously assess the quality-value of a Credit Account. For each Credit Account, it computes its health factor.

Anyone can check the health factor and liquidate positions with a health factor less than 1.

As a user with a leverage position, you need to watch out for your health factor. Having it just above 1 puts you in risk of getting liquidated. Learn how to avoid liquidations.

pageHow to avoid liquidations

Learn about the current fee model a user pays in case of a liquidation:

pageProtocol Fees

What is a Health Factor?

Health Factor is a numeric representation of your account health. If your health factor drops below 1 or close to it, you might be liquidated. The higher the number is, the safer you are. There are some tips on how you can avoid liquidations, check them here.

Hf(t)=TWV(t)b(t)+interest  accrued(t),H_{f}(t) =\frac{TWV(t)}{b(t) +interest\;accrued(t)},

where b(t) is borrowed amount.

Let's dive into some math formulas to clarify how computation of the health factor works.

Total Value

Represents the Credit Account's balance in the underlying asset.

TV(t)=  ci(t)pi(t),TV(t)=\sum{\;c_i(t)*p_i(t)},

where c_i - balance of i-th asset in credit account, p_i - price of i-th asset calculated in underlying asset(from oracle).

Threshold Weighted Value

TWV(t)=min(Qi(t),  ci(t)pi(t)LTi)TWV(t)=\sum{min(Q_i(t),\;c_i(t)*p_i(t)*LT_i) }

where: Q_i - Quota amount for i-th asset in Credit Account (see Quotas and Gaugessection),

c_i - balance of i-th asset in credit account, p_i - price of i-th asset calculated in underlying asset(from oracle), LT_i - liquidation threshold, the credit account manager constant showing the maximum allowable ratio of Loan-To-Value for the i-th asset.

Liquidation Threshold

Liquidation thresholds represents maximum allowable ratio of Loan-To-Value for the i-th asset (LTV is reciprocal of over-collaterization ratio of i-th asset). LT_i for underlying asset is constant and equals:

LTU=100%Liquidation  PremiumLiquidation  FeeLT_U =100\% - Liquidation\;Premium -Liquidation\;Fee

How is Liquidation Threshold defined?

Gearbox Protocol uses statistics of 5-min, 15-min, 1h change of i-th asset's price (price is in the underlying asset) for the last 180 days.

Anybody can run a liquidator bot and secure the protocol. You can chat about setting up your bot and other liquidator-things in Discord.

Last updated