sei-agent-kit
Version:
A package for building AI agents on the SEI blockchain
35 lines • 1.04 kB
TypeScript
import { z } from "zod";
import { StructuredTool } from "langchain/tools";
import { SeiAgentKit } from "../../agent";
declare const SeiBorrowTakaraInputSchema: z.ZodObject<{
ticker: z.ZodString;
borrowAmount: z.ZodString;
}, "strip", z.ZodTypeAny, {
ticker: string;
borrowAmount: string;
}, {
ticker: string;
borrowAmount: string;
}>;
/**
* LangChain tool for borrowing against Takara tokens
*/
export declare class SeiBorrowTakaraTool extends StructuredTool<typeof SeiBorrowTakaraInputSchema> {
private readonly seiKit;
name: string;
description: string;
schema: z.ZodObject<{
ticker: z.ZodString;
borrowAmount: z.ZodString;
}, "strip", z.ZodTypeAny, {
ticker: string;
borrowAmount: string;
}, {
ticker: string;
borrowAmount: string;
}>;
constructor(seiKit: SeiAgentKit);
protected _call({ ticker, borrowAmount }: z.infer<typeof SeiBorrowTakaraInputSchema>): Promise<string>;
}
export {};
//# sourceMappingURL=borrow.d.ts.map