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

    Type Alias ApiPerpetualsCancelStopOrdersBody

    ApiPerpetualsCancelStopOrdersBody: {
        sponsor?: PerpetualsSponsorConfig;
        stopOrderIds: ObjectId[];
        txKind?: SerializedTransaction;
        walletAddress: SuiAddress;
    } & (
        | { accountCapId?: ObjectId; accountId: PerpetualsAccountId }
        | { vaultId: ObjectId }
    )

    API request body for canceling stop orders identified by object IDs.

    Type Declaration

    • Optionalsponsor?: PerpetualsSponsorConfig

      Optional transaction sponsorship configuration.

    • stopOrderIds: ObjectId[]

      Stop-order object IDs to cancel.

    • OptionaltxKind?: SerializedTransaction

      Serialized transaction kind sent to the service.

    • walletAddress: SuiAddress

      Wallet address used to identify the signer or owner.