UNPKG

@glowlabs-org/events-sdk

Version:

Typed event SDK for Glow, powered by RabbitMQ and Zod.

48 lines (47 loc) 1.14 kB
import { z } from "zod"; export declare const applicationPriceQuoteV2AlphaPayloadZ: z.ZodObject<{ applicationId: z.ZodString; createdAt: z.ZodString; prices: z.ZodObject<{ GCTL: z.ZodString; GLW: z.ZodString; USDC: z.ZodString; USDG: z.ZodString; }, "strip", z.ZodTypeAny, { GCTL: string; GLW: string; USDC: string; USDG: string; }, { GCTL: string; GLW: string; USDC: string; USDG: string; }>; signature: z.ZodString; gcaAddress: z.ZodString; }, "strip", z.ZodTypeAny, { applicationId: string; gcaAddress: string; createdAt: string; prices: { GCTL: string; GLW: string; USDC: string; USDG: string; }; signature: string; }, { applicationId: string; gcaAddress: string; createdAt: string; prices: { GCTL: string; GLW: string; USDC: string; USDG: string; }; signature: string; }>; export interface ApplicationPriceQuoteV2AlphaPayload extends z.infer<typeof applicationPriceQuoteV2AlphaPayloadZ> { }