/** * Zod validator for a block header specification within actions */ export const zBlock: z.ZodObject<{ number: z.ZodBigInt; coinbase: z.ZodPipe>; timestamp: z.ZodBigInt; difficulty: z.ZodBigInt; gasLimit: z.ZodBigInt; baseFeePerGas: z.ZodOptional; blobGasPrice: z.ZodOptional; }, z.core.$strict>; import { z } from 'zod'; //# sourceMappingURL=zBlock.d.ts.map