sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
33 lines • 1.06 kB
TypeScript
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { CancelOrderReturnType } from "../../../node_modules/citrex-sdk/lib/types.js";
import { z } from "zod";
declare const CitrexCancelOrderInputSchema: z.ZodObject<{
orderId: z.ZodString;
productId: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
productId: number;
orderId: string;
}, {
productId: number;
orderId: string;
}>;
export declare class SeiCitrexCancelOrderTool extends StructuredTool<typeof CitrexCancelOrderInputSchema> {
private readonly seiKit;
name: string;
description: string;
schema: z.ZodObject<{
orderId: z.ZodString;
productId: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
productId: number;
orderId: string;
}, {
productId: number;
orderId: string;
}>;
constructor(seiKit: SeiAgentKit);
_call(input: z.infer<typeof CitrexCancelOrderInputSchema>): Promise<CancelOrderReturnType | undefined>;
}
export {};
//# sourceMappingURL=cancelOrder.d.ts.map