@xoxno/sdk-js
    Preparing search index...

    Type Alias LiquidationLeaderRowDto

    type LiquidationLeaderRowDto = {
        accountsLiquidated: number;
        creditedNetUsd: number;
        liquidations: number;
        liquidator: string;
        repaidUsd: number;
        seizedUsd: number;
    }
    Index

    Properties

    accountsLiquidated: number

    Distinct liquidatee accounts touched.

    creditedNetUsd: number

    NET collateral actually credited to liquidators, fee removed. Only SeizeMode::Credit liquidations expose it; under SeizeMode::Transfer the fee is withheld inside the pool and never reaches the event stream, so this reads 0 there. Not a substitute for seizedUsd.

    liquidations: number

    Distinct liquidation events executed.

    liquidator: string

    Liquidator (caller) address.

    repaidUsd: number
    seizedUsd: number

    GROSS collateral removed from liquidatees, protocol liquidation fee still inside. This is liquidation volume, NOT liquidator payout — the payout is lower by that fee under both seize modes. Do not add creditedNetUsd to it: they are two views of the same collateral.