UNPKG

@coinbase/agentkit

Version:

Coinbase AgentKit core primitives

35 lines (34 loc) 811 B
import { z } from "zod"; /** * Input schema for getting protocol information */ export declare const GetProtocolSchema: z.ZodObject<{ protocolId: z.ZodString; }, "strict", z.ZodTypeAny, { protocolId: string; }, { protocolId: string; }>; /** * Input schema for getting token prices */ export declare const GetTokenPricesSchema: z.ZodObject<{ tokens: z.ZodArray<z.ZodString, "many">; searchWidth: z.ZodOptional<z.ZodString>; }, "strict", z.ZodTypeAny, { tokens: string[]; searchWidth?: string | undefined; }, { tokens: string[]; searchWidth?: string | undefined; }>; /** * Input schema for searching protocols */ export declare const SearchProtocolsSchema: z.ZodObject<{ query: z.ZodString; }, "strict", z.ZodTypeAny, { query: string; }, { query: string; }>;