sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
26 lines • 804 B
TypeScript
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 {
private readonly seiKit;
name: string;
description: string;
schema: any;
constructor(seiKit: SeiAgentKit);
protected _call(input: z.infer<typeof SeiERC721MintInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=mint.d.ts.map