UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

38 lines 1.2 kB
import { StructuredTool } from "langchain/tools"; import { SeiAgentKit } from "../../agent"; import { z } from "zod"; declare const SeiERC721MintInputSchema: z.ZodObject<{ recipient: z.ZodString; tokenAddress: z.ZodString; tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>; }, "strip", z.ZodTypeAny, { recipient: string; tokenId: string | number; tokenAddress: string; }, { recipient: string; tokenId: string | number; tokenAddress: string; }>; export declare class SeiERC721MintTool extends StructuredTool<typeof SeiERC721MintInputSchema> { private readonly seiKit; name: string; description: string; schema: z.ZodObject<{ recipient: z.ZodString; tokenAddress: z.ZodString; tokenId: z.ZodUnion<[z.ZodString, z.ZodNumber]>; }, "strip", z.ZodTypeAny, { recipient: string; tokenId: string | number; tokenAddress: string; }, { recipient: string; tokenId: string | number; tokenAddress: string; }>; constructor(seiKit: SeiAgentKit); protected _call(input: z.infer<typeof SeiERC721MintInputSchema>): Promise<string>; } export {}; //# sourceMappingURL=mint.d.ts.map