gitextract_wugh22sf/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── src/ │ ├── common.rs │ ├── continuation/ │ │ ├── interrupt.rs │ │ ├── interrupt_data.rs │ │ ├── mod.rs │ │ └── resume_data.rs │ ├── evmc.rs │ ├── host.rs │ ├── instructions/ │ │ ├── arithmetic.rs │ │ ├── bitwise.rs │ │ ├── boolean.rs │ │ ├── call.rs │ │ ├── control.rs │ │ ├── external.rs │ │ ├── instruction_table.rs │ │ ├── memory.rs │ │ ├── mod.rs │ │ ├── properties.rs │ │ └── stack_manip.rs │ ├── interpreter.rs │ ├── lib.rs │ ├── opcode.rs │ ├── state.rs │ ├── tracing/ │ │ └── mod.rs │ └── util/ │ ├── bytecode.rs │ ├── mocked_host.rs │ ├── mod.rs │ └── tester.rs └── tests/ ├── basefee.rs ├── call.rs ├── eip2929.rs ├── execute.rs ├── other.rs └── state.rs