@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
13 lines • 593 B
TypeScript
/**
* Zod validator for a valid mine action invocation
*/
export const zMineParams: z.ZodObject<{
throwOnFail: z.ZodOptional<z.ZodBoolean>;
blockCount: z.ZodOptional<z.ZodNumber>;
interval: z.ZodOptional<z.ZodNumber>;
onBlock: z.ZodOptional<z.ZodFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
onReceipt: z.ZodOptional<z.ZodFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
onLog: z.ZodOptional<z.ZodFunction<z.core.$ZodFunctionArgs, z.core.$ZodFunctionOut>>;
}, z.core.$strip>;
import { z } from 'zod';
//# sourceMappingURL=zMineParams.d.ts.map