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