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