@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
11 lines (9 loc) • 452 B
text/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