sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
20 lines • 599 B
TypeScript
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
import { z } from "zod";
declare const CitrexWithdrawInputSchema: z.ZodObject<{
amount: z.ZodString;
}, "strip", z.ZodTypeAny, {
amount: string;
}, {
amount: string;
}>;
export declare class SeiCitrexWithdrawTool extends StructuredTool {
private readonly seiKit;
name: string;
description: string;
schema: any;
constructor(seiKit: SeiAgentKit);
_call(input: z.infer<typeof CitrexWithdrawInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=withdraw.d.ts.map