@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
10 lines • 501 B
TypeScript
import type { InternalError, InvalidAddressError, InvalidParamsError } from '@tevm/errors';
/**
* Errors that can occur during the dumpState method.
*
* This type represents the possible errors that can be encountered while executing the
* `dumpState` method in TEVM. It includes internal errors, invalid address errors, and
* invalid parameter errors.
*/
export type TevmDumpStateError = InternalError | InvalidAddressError | InvalidParamsError;
//# sourceMappingURL=TevmDumpStateError.d.ts.map