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

    Event emitted when an order is filled or dropped by the orderbook (book-keeping receipt).

    interface OrderbookFillReceiptEvent {
        accountId: bigint;
        dropped: boolean;
        orderId: bigint;
        size: bigint;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • OrderbookFillReceiptEvent
    Index
    accountId: bigint

    Perpetuals account whose order was processed.

    dropped: boolean

    Whether the order was dropped instead of filled.

    orderId: bigint

    Encoded order ID.

    size: bigint

    Filled or dropped 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.