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

    Event emitted when an order is canceled.

    interface CanceledOrderEvent {
        accountId: bigint;
        marketId: string;
        orderId: bigint;
        side: PerpetualsOrderSide;
        size: bigint;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • CanceledOrderEvent
    Index
    accountId: bigint

    Perpetuals account whose order was canceled.

    marketId: string

    Market containing the canceled order.

    orderId: bigint

    Encoded canceled order ID.

    Side of the canceled order.

    size: bigint

    Canceled size in the order's raw integer scale.

    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.