UNPKG

@tevm/actions

Version:

A typesafe library for writing forge scripts in typescript

10 lines 296 B
import type { Hex } from './Hex.js'; import type { StructLog } from './StructLog.js'; /** Result from `debug_*` with no tracer */ export type TraceResult = { failed: boolean; gas: bigint; returnValue: Hex; structLogs: Array<StructLog>; }; //# sourceMappingURL=TraceResult.d.ts.map