@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
23 lines • 873 B
TypeScript
import { z } from "zod";
export declare enum GcDataTags {
Coins = "Coins",
CounterCurrencies = "CounterCurrencies",
ChartData = "ChartData"
}
export declare const MarketCoinSchema: z.ZodObject<{
id: z.ZodString;
name: z.ZodString;
symbol: z.ZodString;
}, z.core.$strip>;
export declare const SupportedCoinsSchema: z.ZodArray<z.ZodObject<{
id: z.ZodString;
name: z.ZodString;
symbol: z.ZodString;
}, z.core.$strip>>;
export declare const SupportedCounterCurrenciesSchema: z.ZodArray<z.ZodString>;
export declare const MarketChartApiResponseSchema: z.ZodObject<{
prices: z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
market_caps: z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
total_volumes: z.ZodArray<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
}, z.core.$strip>;
//# sourceMappingURL=types.d.ts.map