aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Event emitted when a taker order is executed.

    interface FilledTakerOrderEvent {
        accountId: bigint;
        baseAssetDelta: number;
        collateralDeltaUsd: number;
        marketId: string;
        quoteAssetDelta: number;
        side: PerpetualsOrderSide;
        takerFeesUsd: number;
        takerPnlUsd: number;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • FilledTakerOrderEvent
    Index
    accountId: bigint

    Taker account whose order was executed.

    baseAssetDelta: number

    Signed base-asset delta from the fill.

    collateralDeltaUsd: number

    Taker collateral change from the fill, in USD.

    marketId: string

    Market containing the executed order.

    quoteAssetDelta: number

    Signed quote-asset delta from the fill.

    Derived position side from the signed base delta.

    takerFeesUsd: number

    Taker fees from the fill, in USD.

    takerPnlUsd: number

    Taker PnL from the fill, in USD.

    timestamp: number | undefined

    Timestamp of the event, if available.

    txnDigest: string

    The transaction digest associated with the event.

    type: string

    A string identifying the Move event type.