Fields
| Field | Type | Description |
|---|---|---|
pc | number | Program counter |
op | number | Opcode (numeric) |
gas | bigint | Remaining gas |
gasCost | bigint | Cost of this op |
depth | number | Call depth |
stack | bigint[] | Stack state (optional) |
memory | Uint8Array | Memory state (optional) |
storage | Record<string, bigint> | Storage state (optional) |
error | string | Error if step failed (optional) |

