UNPKG

sei-agent-kit

Version:

A package for building AI agents on the SEI blockchain

26 lines 745 B
import { z } from "zod"; import { StructuredTool } from "langchain/tools"; import { SeiAgentKit } from "../../agent"; declare const SeiMintTakaraInputSchema: z.ZodObject<{ ticker: z.ZodString; mintAmount: z.ZodString; }, "strip", z.ZodTypeAny, { mintAmount: string; ticker: string; }, { mintAmount: string; ticker: string; }>; /** * LangChain tool for minting Takara tokens */ export declare class SeiMintTakaraTool extends StructuredTool { private readonly seiKit; name: string; description: string; schema: any; constructor(seiKit: SeiAgentKit); protected _call({ ticker, mintAmount }: z.infer<typeof SeiMintTakaraInputSchema>): Promise<string>; } export {}; //# sourceMappingURL=mint.d.ts.map