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

    Type Alias ApiPerpetualsStopOrderDatasBody

    ApiPerpetualsStopOrderDatasBody: {
        bytes: string;
        marketIds?: PerpetualsMarketId[];
        signature: string;
        walletAddress: SuiAddress;
    } & (
        | { accountCapId?: ObjectId; accountId: PerpetualsAccountId }
        | { vaultId: ObjectId }
    )

    Request body for fetching stop-order data associated with an account or vault, validated using a wallet signature.

    Type Declaration

    • bytes: string

      Serialized message bytes covered by signature.

    • OptionalmarketIds?: PerpetualsMarketId[]

      Optional market IDs used to limit the query.

    • signature: string

      Wallet signature over bytes from walletAddress.

    • walletAddress: SuiAddress

      Wallet address used to identify the signer or owner.