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