@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
14 lines • 461 B
TypeScript
/**
* Zod validator for a block header specification within actions
*/
export const zBlock: z.ZodObject<{
number: z.ZodBigInt;
coinbase: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
timestamp: z.ZodBigInt;
difficulty: z.ZodBigInt;
gasLimit: z.ZodBigInt;
baseFeePerGas: z.ZodOptional<z.ZodBigInt>;
blobGasPrice: z.ZodOptional<z.ZodBigInt>;
}, z.core.$strict>;
import { z } from 'zod';
//# sourceMappingURL=zBlock.d.ts.map