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

    Type Alias LiquidationPointDto

    type LiquidationPointDto = {
        creditedNetNative: number;
        creditedNetUsd: number;
        liquidations: number;
        repaidNative: number;
        repaidUsd: number;
        seizedNative: number;
        seizedUsd: number;
        timestamp: string;
    }
    Index

    Properties

    creditedNetNative: number

    NET collateral credited to liquidators, in native units — the counterpart of seizedNative. 0 under SeizeMode::Transfer.

    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 in the bin. Excludes the share-credit receiver leg, which is a second position batch for the same liquidation.

    repaidNative: number
    repaidUsd: number
    seizedNative: 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.

    timestamp: string

    Bin timestamp (ISO-8601).