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