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