Nado Typescript SDK Documentation
    Preparing search index...

    Interface IndexerLiquidationEvent

    interface IndexerLiquidationEvent {
        timestamp: BigNumber;
        submissionIndex: string;
        tx: NadoTx;
        spot?: WithIndexerEvent<
            { amountLiquidated: BigNumber },
            IndexerEventSpotStateSnapshot,
        >;
        perp?: WithIndexerEvent<
            { amountLiquidated: BigNumber },
            IndexerEventPerpStateSnapshot,
        >;
        quote: WithIndexerEvent<
            { balanceDelta: BigNumber },
            IndexerEventSpotStateSnapshot,
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    timestamp: BigNumber
    submissionIndex: string
    tx: NadoTx
    spot?: WithIndexerEvent<
        { amountLiquidated: BigNumber },
        IndexerEventSpotStateSnapshot,
    >
    perp?: WithIndexerEvent<
        { amountLiquidated: BigNumber },
        IndexerEventPerpStateSnapshot,
    >
    quote: WithIndexerEvent<
        { balanceDelta: BigNumber },
        IndexerEventSpotStateSnapshot,
    >