// TODO strongly type this error import type { Hex } from '@tevm/utils' /** * Result of Mine Method */ export type MineResult = | { blockHashes: Array errors?: undefined } | { blockHashes?: undefined /** * Description of the exception, if any occurred */ errors?: Error[] }