@coinbase/agentkit
Version:
Coinbase AgentKit core primitives
29 lines (28 loc) • 745 B
TypeScript
import { z } from "zod";
/**
* Input schema for getting all topics from Allora Network
*/
export declare const GetAllTopicsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
/**
* Input schema for getting inference data by topic ID from Allora Network
*/
export declare const GetInferenceByTopicIdSchema: z.ZodObject<{
topicId: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
topicId: number;
}, {
topicId: number;
}>;
/**
* Input schema for getting price inference for a token/timeframe pair
*/
export declare const GetPriceInferenceSchema: z.ZodObject<{
asset: z.ZodString;
timeframe: z.ZodString;
}, "strip", z.ZodTypeAny, {
asset: string;
timeframe: string;
}, {
asset: string;
timeframe: string;
}>;