UNPKG

@glowlabs-org/events-sdk

Version:

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

19 lines (18 loc) 493 B
import { z } from "zod"; export declare const auditPfeesPaidV2PayloadZ: z.ZodObject<{ farmId: z.ZodString; payer: z.ZodString; amount_12Decimals: z.ZodString; txHash: z.ZodString; }, "strip", z.ZodTypeAny, { farmId: string; txHash: string; payer: string; amount_12Decimals: string; }, { farmId: string; txHash: string; payer: string; amount_12Decimals: string; }>; export type AuditPfeesPaidV2Payload = z.infer<typeof auditPfeesPaidV2PayloadZ>;