UNPKG

tensaikit

Version:

An autonomous DeFi AI Agent Kit on Katana enabling AI agents to plan and execute on-chain financial operations.

19 lines (18 loc) 420 B
import { z } from "zod"; /** * Schema for fetching token prices by symbol from Alchemy. * * Expects an object containing an array of token symbols. * * Example input: * { * symbols: ["ETH", "BTC", "POL"] * } */ export declare const AlchemyTokenPricesBySymbolSchema: z.ZodObject<{ symbols: z.ZodArray<z.ZodString, "many">; }, "strip", z.ZodTypeAny, { symbols: string[]; }, { symbols: string[]; }>;