Liquidations
How to perform liquidations on Ionise? Liquidations involve seizing collateral from under-collateralized accounts to repay outstanding debts.
Account Liquidity Calculations
A user who has negative account liquidity is subject to liquidation by other users of the protocol to return his/her account liquidity back to positive (i.e. above the collateral requirement).
When a liquidation occurs, a liquidator may repay some or all of an outstanding borrow on behalf of a borrower and in return receive a discounted amount of collateral held by the borrower; this discount is defined as the liquidation incentive. A liquidator may close up to a certain fixed percentage (i.e. close factor) of any individual outstanding borrow of the underwater account.
Liquidators must interact with each iToken contract in which they wish to repay a borrow and seize another asset as collateral. When collateral is seized, the liquidator is transferred iTokens, which they may redeem the same as if they had supplied the asset themselves. Users must approve each iToken contract before calling liquidate (i.e. on the borrowed asset which they are repaying), as they are transferring funds into the contract.
Finding Under-Collateralized Accounts
The first step to performing a liquidation is to identify under-collateralized accounts. Here's a suggested approach to finding under-collateralized accounts:
Create a record of account balances: To identify under-collateralized accounts efficiently, liquidators can maintain an off-chain mapping of accounts and balances by indexing market events to detect new positions and update existing ones:
Mint
: Event emitted when tokens are minted.Redeem
: Event emitted when tokens are redeemed.Borrow
: Event emitted when underlying is borrowed.RepayBorrow
: Event emitted when a borrow is repaid. By listening to these events, liquidators can track changes in positions and update the balances of users accordingly.
Get account balances: Use the
vTokenBalancesAll
function provided by VenusLens to retrieve supply and borrow balances for multiple iTokens associated with an account. This function takes an array of iTokens and the account address as parameters.Get underlying asset prices: Use the
vTokenUnderlyingPriceAll
function provided by the VenusLens to retrieve the underlying asset prices for multiple iTokens. This function takes an array of iTokens as a parameter.Calculate liquidity shortfall: With the supply and borrow balances obtained from step 2 and the underlying asset prices from step 3, calculate the liquidity shortfall for each account. This can be done by taking the scalar product of the balances and prices and comparing them against the LT values.
By following this approach, you can efficiently identify under-collateralized accounts.
Performing the Liquidation
Once an under-collateralized account has been identified, the liquidation process can be initiated using the liquidateBorrow
function. liquidateBorrow
is provided by the Liquidator contract. Regardless of which market is used as collateral or which should be seized, this is the contract to call.
There are two important values to know for this process:
The close factor. This is the percent of a under-collateralized loan that can be repaid in a single transaction. If a user has multiple borrowed assets, the closeFactor applies to any single asset (not the aggregate borrow balance). Example: If Alice has under-collateralized loan of 10,000 USDT, and the close factor is 50%, you can max liquidate 5000 USDT in a single transaction.
The Liquidation incentive. This is how much additional collateral is given to liquidators. For example, if incentive is 1.1, liquidators receive an extra 10% of the borrower's collateral for every unit they close.
Here's an overview of the steps involved:
Calculate the liquidation amount: Determine the amount of debt to be repaid and the collateral to be seized. This is typically calculated by examining the borrower's debt balance, the market's close factor and liquidation incentive.
Call the
liquidateBorrow()
function on the liquidator contract
Collateral > minLiquidatableCollateral
--> liquidateBorrow()
: Call the liquidateBorrow
function on the relevant vToken contract. This function requires several parameters, including the borrower's address, the amount of debt to be repaid, and the collateral to be seized. Refer to the iToken contract documentation for specific details on the function's required parameters.
Last updated