feat: tickers schema was updated

This commit is contained in:
Mikhail Gladchenko
2024-05-06 17:57:26 +01:00
parent f9f849a84e
commit 3a12373b48
2 changed files with 2 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ export const tickerSchema = z.object({
volume24: z.number(),
change24: z.number(),
lastPrice: z.number(),
pricePrecision: z.number(),
networks: z.array(z.nativeEnum(SupportedChainId)),
});