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