@glowlabs-org/events-sdk
Version:
Typed event SDK for Glow, powered by RabbitMQ and Zod.
19 lines (18 loc) • 595 B
TypeScript
import { z } from "zod";
export declare const auditPushedV1PayloadZ: z.ZodObject<{
farmId: z.ZodString;
protocolFeeUSDPrice_12Decimals: z.ZodString;
expectedProduction_12Decimals: z.ZodString;
txHash: z.ZodString;
}, "strip", z.ZodTypeAny, {
farmId: string;
protocolFeeUSDPrice_12Decimals: string;
expectedProduction_12Decimals: string;
txHash: string;
}, {
farmId: string;
protocolFeeUSDPrice_12Decimals: string;
expectedProduction_12Decimals: string;
txHash: string;
}>;
export type AuditPushedV1Payload = z.infer<typeof auditPushedV1PayloadZ>;