Left Curve Software Stack
    Preparing search index...

    Type Alias LiquidatedData

    type LiquidatedData = {
        adl_price: string | null;
        adl_realized_funding?: string | null;
        adl_realized_pnl: string;
        adl_size: string;
        pair_id: string;
        user: string;
    }
    Index

    Properties

    adl_price: string | null
    adl_realized_funding?: string | null

    Funding settled on the liquidated user's position immediately before each ADL fill, accumulated across all counter-party fills for this pair. null for liquidations executed before v0.17.0 — funding was reported as part of adl_realized_pnl prior to that release.

    adl_realized_pnl: string

    Closing PnL realized by the liquidated user from ADL fills, accumulated across all counter-party fills for this pair. Prior to v0.17.0 (exclusive) this also bundled the funding settled on the user's position immediately before each ADL fill; from v0.17.0 (inclusive) onward, that funding component is reported separately as adl_realized_funding.

    adl_size: string
    pair_id: string
    user: string