Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
ee5f210
feat: implement EIP-8037 state gas (reservoir model)
rakita Mar 13, 2026
d154685
Merge remote-tracking branch 'origin/main' into state-gas
rakita Mar 13, 2026
556602b
rm statetest jsons
rakita Mar 13, 2026
1e9fe4a
Rename spent to regular_gas_spent in ResultGas and simplify reservoir…
rakita Mar 16, 2026
257d261
Simplify EIP-8037 state gas: remove redundant fields from ResultGas a…
rakita Mar 18, 2026
4534164
Move EIP-7702 state gas refund split into pre_execution
rakita Mar 18, 2026
7a826db
Add PrecompileFailure type for state gas propagation on error
rakita Mar 18, 2026
a9b3634
Merge remote-tracking branch 'origin/main' into state-gas
rakita Mar 18, 2026
03b7c8d
Convert precompile errors to PrecompileFailure via .into()
rakita Mar 18, 2026
72b376c
Fix EIP-8037 state gas accounting regression
rakita Mar 18, 2026
3a29466
Move state gas deduction into first_frame_input
rakita Mar 18, 2026
b6ccdff
Fix EIP-8037 gas accounting: floor gas, reservoir, inspector, validation
rakita Mar 21, 2026
242243f
Fix EIP-8037 reservoir accounting: tx_gas_used, child revert refunds,…
rakita Mar 22, 2026
712dac7
Fix CREATE/CREATE2 static call check ordering for EIP-8037 state gas …
rakita Mar 22, 2026
7a999fc
Simplify last_frame_result: remove initial_reservoir parameter and fi…
rakita Mar 23, 2026
5f94ddb
Revert CREATE/CREATE2 static call check to before gas charging
rakita Mar 24, 2026
1e1d64d
Fix reservoir handling: restore state gas on revert/halt
rakita Mar 24, 2026
5001497
Fix EIP-8037 state_gas_spent accounting for EIP-7702 auth list
rakita Mar 24, 2026
319fe0a
Merge remote-tracking branch 'origin/main' into rakita/state-gas
rakita Mar 24, 2026
5aef2ce
Improve precompile reservoir handling and apply formatting fixes
rakita Mar 24, 2026
033d0ef
Fix precompile_provider compilation errors against current precompile…
rakita Mar 25, 2026
81d3b17
Simplify precompile interface: remove gas_limit from PrecompileOutput…
rakita Mar 25, 2026
94e0305
Fix EIP-8037 reservoir refill tests and complete precompile interface…
rakita Mar 25, 2026
03986fc
temporary remove all ee-tests
rakita Mar 25, 2026
9d5d898
Fix state gas accounting: include reservoir in total_gas_spent and pr…
rakita Mar 25, 2026
f77d65f
Apply formatting fixes and use saturating arithmetic for state gas spent
rakita Mar 25, 2026
ef18e6a
Revert "temporary remove all ee-tests"
rakita Mar 25, 2026
be396f7
Fix total_gas_spent to exclude reservoir and use saturating arithmetic
rakita Mar 25, 2026
7e01885
Use build_result_gas helper in system call gas handling
rakita Mar 27, 2026
4b975de
Merge remote-tracking branch 'origin/main' into rakita/state-gas
rakita Mar 27, 2026
8891655
bump rust to 1.91
rakita Mar 29, 2026
44a4233
Remove redundant gas_limit from Gas, delegate to GasTracker
rakita Apr 1, 2026
2cffb90
refactor(precompile): restructure PrecompileOutput for state gas and …
rakita Apr 7, 2026
a357a60
Merge remote-tracking branch 'origin/main' into rakita/state-gas
rakita Apr 7, 2026
d7267ab
refactor(precompile): move reservoir into PrecompileOutput and add Pr…
rakita Apr 7, 2026
28c73bb
fix: update bench and test code for new Precompile API
rakita Apr 8, 2026
d3b4555
docs: fix ResultGas doc comments to match current API
rakita Apr 9, 2026
74b2541
docs: fix broken doc links and typos in ResultGas
rakita Apr 9, 2026
0064a83
Merge remote-tracking branch 'origin/main' into state-gas
rakita Apr 9, 2026
99b3589
feat: track state_gas_spent and reservoir in GasInspector
rakita Apr 9, 2026
c8460de
fix: validate max(intrinsic_gas, floor_gas) against TX_MAX_GAS_LIMIT cap
rakita Apr 9, 2026
df67e80
chore: add must_use annotations to gas recording methods and minor cl…
rakita Apr 9, 2026
0634dfa
refactor: update custom_precompile_journal example to use PrecompileO…
rakita Apr 9, 2026
577c903
refactor: make Precompile::execute return Result<PrecompileOutput, Pr…
rakita Apr 9, 2026
3f340d8
chore: bump MSRV to 1.91 in CI
rakita Apr 9, 2026
f410840
fix: exclude EIP-8037 reservoir gas from op-revm fee settlement
rakita Apr 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: ["1.88", "stable", "nightly"]
rust: ["1.91", "stable", "nightly"]
flags: ["--no-default-features", "", "--all-features"]
steps:
- uses: actions/checkout@v6
Expand Down
Loading
Loading