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

    Interface ApiLimitOrdersCancelOrderTransactionBody

    Body required to cancel an existing limit order, typically including the user's signature of a JSON message referencing order IDs.

    interface ApiLimitOrdersCancelOrderTransactionBody {
        bytes: string;
        orderObjectIds: string[];
        signature: string;
        walletAddress: string;
    }
    Index
    bytes: string

    The signed bytes of the cancellation message.

    orderObjectIds: string[]

    The order object IDs to cancel. Required: the signed message no longer carries them, so they must travel in the body.

    signature: string

    The signature over those bytes, verifying user intent.

    walletAddress: string

    The Sui address of the user who owns the order(s).