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