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

    Interface ApiDcaTransactionForCloseOrderBody

    The request body for closing a DCA order, typically requiring a signature over a JSON message specifying which orders to cancel.

    interface ApiDcaTransactionForCloseOrderBody {
        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 user's signature corresponding to bytes.

    walletAddress: string

    The user's address initiating the close/cancel action.