pharos-agent-kit
Version:
Connect AI Agents to Pharos protocols
38 lines • 1.23 kB
TypeScript
import { StructuredTool } from "langchain/tools";
import { PharosAgentKit } from "../../agent";
import { z } from "zod";
declare const PharosERC721MintInputSchema: 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 PharosERC721MintTool extends StructuredTool<typeof PharosERC721MintInputSchema> {
private readonly pharosKit;
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(pharosKit: PharosAgentKit);
protected _call(input: z.infer<typeof PharosERC721MintInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=mint.d.ts.map