import type { TraceResult } from '../common/TraceResult.js'; import type { Hex } from '../common/index.js'; export type StructLog = { readonly depth: number; readonly gas: bigint; readonly gasCost: bigint; readonly op: string; readonly pc: number; readonly stack: Array; readonly error?: { error: string; errorType: string; }; }; export type DebugTraceTransactionResult = TraceResult; export type DebugTraceCallResult = { failed: boolean; gas: bigint; returnValue: Hex; structLogs: Array; }; //# sourceMappingURL=DebugResult.d.ts.map