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

    Event emitted when an existing order is reduced (partial cancellation or adjustment of size).

    interface ReducedOrderEvent {
        accountId: bigint;
        marketId: string;
        orderId: bigint;
        sizeChange: bigint;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    Index
    accountId: bigint

    Perpetuals account whose order was reduced.

    marketId: string

    Market containing the reduced order.

    orderId: bigint

    Encoded reduced order ID.

    sizeChange: bigint

    Reduced 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.