interface IndexerLiquidationEvent {
    timestamp: BigNumber;
    submissionIndex: string;
    lps: WithIndexerEvent<{
        amountLpDecomposed: BigNumber;
        underlyingBalanceDelta: BigNumber;
    }, IndexerEventBalanceStateSnapshot>[];
    spot?: WithIndexerEvent<{
        amountLiquidated: BigNumber;
    }, IndexerEventSpotStateSnapshot>;
    perp?: WithIndexerEvent<{
        amountLiquidated: BigNumber;
    }, IndexerEventPerpStateSnapshot>;
    quote: WithIndexerEvent<{
        balanceDelta: BigNumber;
    }, IndexerEventSpotStateSnapshot>;
}

Hierarchy (view full)

Properties

timestamp: BigNumber
submissionIndex: string
lps: WithIndexerEvent<{
    amountLpDecomposed: BigNumber;
    underlyingBalanceDelta: BigNumber;
}, IndexerEventBalanceStateSnapshot>[]
spot?: WithIndexerEvent<{
    amountLiquidated: BigNumber;
}, IndexerEventSpotStateSnapshot>
perp?: WithIndexerEvent<{
    amountLiquidated: BigNumber;
}, IndexerEventPerpStateSnapshot>
quote: WithIndexerEvent<{
    balanceDelta: BigNumber;
}, IndexerEventSpotStateSnapshot>