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