revm-handler 18.0.0

Revm handler crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [18.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v17.0.0...revm-handler-v18.0.0 - 2026-04-10

### Added

- add EIP-8037 / TIP-1016 state gas support ([#3406]https://github.com/bluealloy/revm/pull/3406)
- add CallInput::as_bytes ([#3515]https://github.com/bluealloy/revm/pull/3515)
- add crate-level re-exports for all revm-* dependencies ([#3507]https://github.com/bluealloy/revm/pull/3507)
- Part of amsterdam devnet3 EIP updates ([#3438]https://github.com/bluealloy/revm/pull/3438)

### Other

- move EIP-8037 gas cap validation into validate_initial_tx_gas ([#3552]https://github.com/bluealloy/revm/pull/3552)
- remove option for known bytecode ([#3532]https://github.com/bluealloy/revm/pull/3532)
- use AnyError for PrecompileError::Fatal and EVMError::Custom ([#3502]https://github.com/bluealloy/revm/pull/3502)
- *(handler)* rename misleading `underflow` variable to `success` ([#3486]https://github.com/bluealloy/revm/pull/3486)

## [17.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v16.0.0...revm-handler-v17.0.0 - 2026-03-04

### Other

- bump revm-database-interface to v10.0.0

## [16.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v15.0.0...revm-handler-v16.0.0 - 2026-03-02

### Added

- *(gas_params)* add configurable EIP-7702 auth refund ([#3366]https://github.com/bluealloy/revm/pull/3366)

### Fixed

- *(handler)* respect is_fee_charge_disabled in calculate_caller_fee ([#3401]https://github.com/bluealloy/revm/pull/3401)

### Other

- *(handler)* remove Default for EthPrecompiles and EthInstructions ([#3434]https://github.com/bluealloy/revm/pull/3434)
- remove unused alloy-provider dev-dependency ([#3423]https://github.com/bluealloy/revm/pull/3423)
- [**breaking**] add logs to Revert and Halt variants of ExecutionResult ([#3424]https://github.com/bluealloy/revm/pull/3424)
- [**breaking**] add ResultGas struct to ExecutionResult ([#3413]https://github.com/bluealloy/revm/pull/3413)
- [**breaking**] flatten Bytecode ([#3375]https://github.com/bluealloy/revm/pull/3375)
- remove GPL mention and update gmp feature comments ([#3383]https://github.com/bluealloy/revm/pull/3383)
- use fixed bytes hashmaps from alloy-core ([#3358]https://github.com/bluealloy/revm/pull/3358)
- *(handler)* extract duplicate ContextError handling ([#3312]https://github.com/bluealloy/revm/pull/3312)
- *(revm-handler)* add ItemOrResult::map_item (alias map_frame) ([#3320]https://github.com/bluealloy/revm/pull/3320)

## [15.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v14.1.0...revm-handler-v15.0.0 - 2026-01-15

### Added

- add `new_oog` helpers to InterpreterResult, CallOutcome, CreateOutcome, and FrameResult ([#3309]https://github.com/bluealloy/revm/pull/3309)
- new gas params, tx initial gas and codedeposit ([#3260]https://github.com/bluealloy/revm/pull/3260)
- move GasParams to Cfg ([#3229]https://github.com/bluealloy/revm/pull/3229)
- Gas params ([#3132]https://github.com/bluealloy/revm/pull/3132)
- *(create)* Implement Cache for CreateInputs::created_address ([#3218]https://github.com/bluealloy/revm/pull/3218)
- JournaledAccount sload/sstore ([#3201]https://github.com/bluealloy/revm/pull/3201)
- Restrict Database::Error. JournaledAccountTr ([#3199]https://github.com/bluealloy/revm/pull/3199)

### Fixed

- *(create)* Fix CreateInputs::created_address Cache invalidation ([#3222]https://github.com/bluealloy/revm/pull/3222)

### Other

- apply improvements from ai-bot labeled PRs ([#3297]https://github.com/bluealloy/revm/pull/3297)
- fix typos, grammar errors, and improve documentation consistency ([#3294]https://github.com/bluealloy/revm/pull/3294)
- happy new year, 2026 licence ([#3272]https://github.com/bluealloy/revm/pull/3272)
- description of `Handler::validate_against_state_and_deduct_caller` should match responsibilities ([#3256]https://github.com/bluealloy/revm/pull/3256)
- *(handler)* eliminate code duplication in transaction validation ([#3243]https://github.com/bluealloy/revm/pull/3243)
- *(handler)* validate_initial_tx_gas takes &mut Evm  ([#3235]https://github.com/bluealloy/revm/pull/3235)
- *(clippy)* remove unused imports ([#3227]https://github.com/bluealloy/revm/pull/3227)
- optimize vector initialization using size hints ([#3200]https://github.com/bluealloy/revm/pull/3200)
- apply_auth_list helper fn ([#3187]https://github.com/bluealloy/revm/pull/3187)
- *(fmt)* merge all imports ([#3184]https://github.com/bluealloy/revm/pull/3184)

## [14.1.0]https://github.com/bluealloy/revm/compare/revm-handler-v14.0.0...revm-handler-v14.1.0 - 2025-11-14

### Other

- updated the following local packages: revm-context-interface, revm-context, revm-database, revm-interpreter

## [14.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v12.0.2...revm-handler-v14.0.0 - 2025-11-10

### Added

- process precompile logs to inspector ([#3148]https://github.com/bluealloy/revm/pull/3148)
- add gas refund to PrecompileOutput ([#3152]https://github.com/bluealloy/revm/pull/3152)

### Other

- merge v98 versions bumps ([#3155]https://github.com/bluealloy/revm/pull/3155)

## [12.0.2]https://github.com/bluealloy/revm/compare/revm-handler-v12.0.1...revm-handler-v12.0.2 - 2025-11-10

### Other

- updated the following local packages: revm-database, revm-context

## [12.0.1]https://github.com/bluealloy/revm/compare/revm-handler-v12.0.0...revm-handler-v12.0.1 - 2025-11-07

### Other

- updated the following local packages: revm-primitives, revm-context, revm-bytecode, revm-state, revm-database-interface, revm-context-interface, revm-database, revm-interpreter, revm-precompile

## [12.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v11.2.0...revm-handler-v12.0.0 - 2025-10-30

### Added

- JournaledAccount, a nice way to update and track changes ([#3086]https://github.com/bluealloy/revm/pull/3086)
- dont load access list immediately ([#3116]https://github.com/bluealloy/revm/pull/3116)

### Fixed

- hook up Cfg::memory_limit ([#3129]https://github.com/bluealloy/revm/pull/3129)

### Other

- *(op)* use helper function in validate against state ([#3069]https://github.com/bluealloy/revm/pull/3069)
- remove redundant alloy-eip7702 from handler dev-dependencies ([#3105]https://github.com/bluealloy/revm/pull/3105)

## [11.2.0]https://github.com/bluealloy/revm/compare/revm-handler-v11.1.2...revm-handler-v11.2.0 - 2025-10-17

### Added

- Optional Bytecode in CallInput ([#3110]https://github.com/bluealloy/revm/pull/3110)

## [11.1.2]https://github.com/bluealloy/revm/compare/revm-handler-v11.1.1...revm-handler-v11.1.2 - 2025-10-15

### Other

- updated the following local packages: revm-bytecode, revm-state, revm-database-interface, revm-context-interface, revm-context, revm-database, revm-interpreter

## [11.1.1]https://github.com/bluealloy/revm/compare/revm-handler-v11.1.0...revm-handler-v11.1.1 - 2025-10-15

### Other

- resize short addresses bitvec instead of reallocating ([#3083]https://github.com/bluealloy/revm/pull/3083)
- *(handler)* extract duplicate gas price validation ([#3045]https://github.com/bluealloy/revm/pull/3045)

## [11.1.0]https://github.com/bluealloy/revm/compare/revm-handler-v11.0.0...revm-handler-v11.1.0 - 2025-10-09

### Other

- helper calculate_caller_fee ([#3040]https://github.com/bluealloy/revm/pull/3040)

## [11.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v10.0.1...revm-handler-v11.0.0 - 2025-10-07

### Added

- Support bubbling up first precompile error messages  ([#2905]https://github.com/bluealloy/revm/pull/2905)
- in JumpTable use Bytes instead of BitVec ([#3014]https://github.com/bluealloy/revm/pull/3014)
- add transaction index to batch execution error handling ([#3000]https://github.com/bluealloy/revm/pull/3000)
- allow EIP-7623 to be disabled ([#2985]https://github.com/bluealloy/revm/pull/2985)
- send bytecode with call input ([#2963]https://github.com/bluealloy/revm/pull/2963)
- *(revme)* ef blockchain tests cli ([#2935]https://github.com/bluealloy/revm/pull/2935)

### Fixed

- Apply spelling corrections from PRs #2926, #2915, #2908 ([#2978]https://github.com/bluealloy/revm/pull/2978)
- interpreter_result_mut should return mutable reference ([#2941]https://github.com/bluealloy/revm/pull/2941)
- FrameStack mark push/end_init as unsafe ([#2929]https://github.com/bluealloy/revm/pull/2929)

### Other

- changelog update for v87 ([#3056]https://github.com/bluealloy/revm/pull/3056)
- add boundless ([#3043]https://github.com/bluealloy/revm/pull/3043)
- helper function gas_balance_spending ([#3030]https://github.com/bluealloy/revm/pull/3030)
- helper caller_initial_modification added ([#3032]https://github.com/bluealloy/revm/pull/3032)
- Frame use From in place of Into ([#3036]https://github.com/bluealloy/revm/pull/3036)
- EvmTr and InspectorEvmTr receive all/all_mut fn ([#3037]https://github.com/bluealloy/revm/pull/3037)
- add ensure_enough_balance helper ([#3033]https://github.com/bluealloy/revm/pull/3033)
- prealloc few frames ([#2965]https://github.com/bluealloy/revm/pull/2965)
- Fix infinite recursion in EthPrecompiles PrecompileProvider methods ([#2962]https://github.com/bluealloy/revm/pull/2962)
- add SECURITY.md ([#2956]https://github.com/bluealloy/revm/pull/2956)
- update `EthFrame::invalid` visibility ([#2947]https://github.com/bluealloy/revm/pull/2947)
- remove unused generic from validate_tx_env and fix call site ([#2946]https://github.com/bluealloy/revm/pull/2946)
- cargo update ([#2930]https://github.com/bluealloy/revm/pull/2930)
- *(handler)* provide `&CallInputs`to`PrecompileProvider::run` ([#2921]https://github.com/bluealloy/revm/pull/2921)

## [10.0.1]https://github.com/bluealloy/revm/compare/revm-handler-v10.0.0...revm-handler-v10.0.1 - 2025-09-23

### Other

- updated the following local packages: revm-context-interface, revm-context, revm-interpreter

## [10.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v9.0.1...revm-handler-v10.0.0 - 2025-08-23

### Added

- *(fusaka)* Add PrecompileId ([#2904]https://github.com/bluealloy/revm/pull/2904)

## [9.0.1]https://github.com/bluealloy/revm/compare/revm-handler-v9.0.0...revm-handler-v9.0.1 - 2025-08-12

### Other

- updated the following local packages: revm-primitives, revm-bytecode, revm-state, revm-context-interface, revm-database, revm-precompile, revm-database-interface, revm-context, revm-interpreter

## [9.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v8.1.0...revm-handler-v9.0.0 - 2025-08-06

### Added

- short address for journal cold/warm check ([#2849]https://github.com/bluealloy/revm/pull/2849)
- gastable, record static gas in Interpreter loop ([#2822]https://github.com/bluealloy/revm/pull/2822)
- fix renamed functions for system_call ([#2824]https://github.com/bluealloy/revm/pull/2824)
- Align naming of SystemCallEvm function to ExecuteEvm ([#2814]https://github.com/bluealloy/revm/pull/2814)

### Fixed

- nonce changed is not reverted in journal if fail due to insufficient balance ([#2805]https://github.com/bluealloy/revm/pull/2805)

### Other

- update README.md ([#2842]https://github.com/bluealloy/revm/pull/2842)
- rm commented code ([#2839]https://github.com/bluealloy/revm/pull/2839)
- *(benches)* clean up criterion callsites ([#2833]https://github.com/bluealloy/revm/pull/2833)
- improve ExtBytecode hash handling ([#2826]https://github.com/bluealloy/revm/pull/2826)
- fix run-tests.sh ([#2801]https://github.com/bluealloy/revm/pull/2801)
- reuse global crypto provide idea ([#2786]https://github.com/bluealloy/revm/pull/2786)
- add rust-version and note about MSRV ([#2789]https://github.com/bluealloy/revm/pull/2789)
- Add dyn Crypto trait to PrecompileFn ([#2772]https://github.com/bluealloy/revm/pull/2772)
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [8.1.0]https://github.com/bluealloy/revm/compare/revm-handler-v8.0.3...revm-handler-v8.1.0 - 2025-07-23

### Added

- add a way for precompiles to revert ([#2711]https://github.com/bluealloy/revm/pull/2711)

### Fixed

- fully deprecate serde-json ([#2767]https://github.com/bluealloy/revm/pull/2767)
- system call should have 30M gas limit ([#2755]https://github.com/bluealloy/revm/pull/2755)
- gas deduction with `disable_balance_check` ([#2699]https://github.com/bluealloy/revm/pull/2699)

### Other

- change gas parameter to immutable reference ([#2702]https://github.com/bluealloy/revm/pull/2702)
- remove State bound from JournalTr in Handler::Evm ([#2715]https://github.com/bluealloy/revm/pull/2715)

## [8.0.3]https://github.com/bluealloy/revm/compare/revm-handler-v8.0.2...revm-handler-v8.0.3 - 2025-07-14

### Other

- simplify gas calculations by introducing a used() method ([#2703]https://github.com/bluealloy/revm/pull/2703)

## [8.0.2]https://github.com/bluealloy/revm/compare/revm-handler-v8.0.1...revm-handler-v8.0.2 - 2025-07-03

### Other

- document external state transitions for EIP-4788 and EIP-2935 ([#2678]https://github.com/bluealloy/revm/pull/2678)
- minor fixes ([#2686]https://github.com/bluealloy/revm/pull/2686)
- fix in pre_execution.rs about nonce bump for CREATE ([#2684]https://github.com/bluealloy/revm/pull/2684)

## [8.0.1]https://github.com/bluealloy/revm/compare/revm-handler-v7.0.1...revm-handler-v8.0.1 - 2025-06-30

### Added

- optional_eip3541 ([#2661]https://github.com/bluealloy/revm/pull/2661)

### Other

- cargo clippy --fix --all ([#2671]https://github.com/bluealloy/revm/pull/2671)
- use TxEnv::builder ([#2652]https://github.com/bluealloy/revm/pull/2652)
- fix copy-pasted inner doc comments ([#2663]https://github.com/bluealloy/revm/pull/2663)

## [7.0.1]https://github.com/bluealloy/revm/compare/revm-handler-v7.0.0...revm-handler-v7.0.1 - 2025-06-20

### Fixed

- call stack_frame.clear() at end ([#2656]https://github.com/bluealloy/revm/pull/2656)

## [7.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v6.0.0...revm-handler-v7.0.0 - 2025-06-19

### Added

- remove EOF ([#2644]https://github.com/bluealloy/revm/pull/2644)
- configurable contract size limit ([#2611]https://github.com/bluealloy/revm/pull/2611) ([#2642]https://github.com/bluealloy/revm/pull/2642)
- *(precompile)* rug/gmp-based modexp ([#2596]https://github.com/bluealloy/revm/pull/2596)
- change blob_max_count to max_blobs_per_tx ([#2608]https://github.com/bluealloy/revm/pull/2608)
- add optional priority fee check configuration ([#2588]https://github.com/bluealloy/revm/pull/2588)

### Other

- lints handler inspector interpreter ([#2646]https://github.com/bluealloy/revm/pull/2646)
- bump all deps ([#2647]https://github.com/bluealloy/revm/pull/2647)
- re-use frame allocation ([#2636]https://github.com/bluealloy/revm/pull/2636)
- store coinbase address separately to avoid cloning warm addresses in the common case ([#2634]https://github.com/bluealloy/revm/pull/2634)
- rename `transact` methods ([#2616]https://github.com/bluealloy/revm/pull/2616)

## [6.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v5.0.1...revm-handler-v6.0.0 - 2025-06-06

### Added

- add with_caller for system_transact ([#2587]https://github.com/bluealloy/revm/pull/2587)
- *(Osaka)* EIP-7825 tx limit cap ([#2575]https://github.com/bluealloy/revm/pull/2575)
- expand timestamp/block_number to u256 ([#2546]https://github.com/bluealloy/revm/pull/2546)
- transact multi tx ([#2517]https://github.com/bluealloy/revm/pull/2517)

### Other

- tag v75 revm v24.0.1 ([#2563]https://github.com/bluealloy/revm/pull/2563) ([#2589]https://github.com/bluealloy/revm/pull/2589)
- *(docs)* add lints to database-interface and op-revm crates ([#2568]https://github.com/bluealloy/revm/pull/2568)
- unify calling of journal account loading ([#2561]https://github.com/bluealloy/revm/pull/2561)
- ContextTr rm *_ref, and add *_mut fn ([#2560]https://github.com/bluealloy/revm/pull/2560)
- *(cfg)* add tx_chain_id_check fields. Optimize effective gas cost calc ([#2557]https://github.com/bluealloy/revm/pull/2557)
- simplify Interpreter loop ([#2544]https://github.com/bluealloy/revm/pull/2544)

## [5.0.1]https://github.com/bluealloy/revm/compare/revm-handler-v5.0.0...revm-handler-v5.0.1 - 2025-05-31

### Other

- unify calling of journal account loading

## [5.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v4.1.0...revm-handler-v5.0.0 - 2025-05-22

### Added

- make blob max number optional ([#2532]https://github.com/bluealloy/revm/pull/2532)

### Other

- add TxEnvBuilder::build_fill ([#2536]https://github.com/bluealloy/revm/pull/2536)
- make crates.io version badge clickable ([#2526]https://github.com/bluealloy/revm/pull/2526)
- fix clippy ([#2523]https://github.com/bluealloy/revm/pull/2523)
- Storage Types Alias ([#2461]https://github.com/bluealloy/revm/pull/2461)


## [4.1.0]https://github.com/bluealloy/revm/compare/revm-handler-v4.0.0...revm-handler-v4.1.0 - 2025-05-07

Dependency bump

## [4.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v3.0.1...revm-handler-v4.0.0 - 2025-05-07

### Added

- system_call switch order of inputs, address than bytes ([#2485]https://github.com/bluealloy/revm/pull/2485)
- *(Osaka)* disable EOF ([#2480]https://github.com/bluealloy/revm/pull/2480)
- skip cloning of call input from shared memory ([#2462]https://github.com/bluealloy/revm/pull/2462)
- Add a custom address to the CreateScheme. ([#2464]https://github.com/bluealloy/revm/pull/2464)
- remove spec id verification on `apply_eip7702_auth_list` ([#2466]https://github.com/bluealloy/revm/pull/2466)
- *(Handler)* merge state validation with deduct_caller ([#2460]https://github.com/bluealloy/revm/pull/2460)
- replace input Bytes and refactored code where required ([#2453]https://github.com/bluealloy/revm/pull/2453)
- *(tx)* Add Either RecoveredAuthorization ([#2448]https://github.com/bluealloy/revm/pull/2448)
- *(EOF)* Changes needed for devnet-1 ([#2377]https://github.com/bluealloy/revm/pull/2377)
- Move SharedMemory buffer to context ([#2382]https://github.com/bluealloy/revm/pull/2382)

### Fixed

- *(eof)* extdelegate bytecode check after eip7702 load ([#2417]https://github.com/bluealloy/revm/pull/2417)
- skip account list for legacy ([#2400]https://github.com/bluealloy/revm/pull/2400)

### Other

- Add clones to FrameData ([#2482]https://github.com/bluealloy/revm/pull/2482)
- Add Bytecode address to Interpreter ([#2479]https://github.com/bluealloy/revm/pull/2479)
- copy edit The Book ([#2463]https://github.com/bluealloy/revm/pull/2463)
- bump dependency version ([#2431]https://github.com/bluealloy/revm/pull/2431)
- fixed broken link ([#2421]https://github.com/bluealloy/revm/pull/2421)
- backport from release branch ([#2415]https://github.com/bluealloy/revm/pull/2415) ([#2416]https://github.com/bluealloy/revm/pull/2416)
- *(lints)* revm-context lints ([#2404]https://github.com/bluealloy/revm/pull/2404)

## [3.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v2.0.0...revm-handler-v3.0.0 - 2025-04-09

### Added

- support for system calls ([#2350]https://github.com/bluealloy/revm/pull/2350)

### Other

- make blob params u64 ([#2385]https://github.com/bluealloy/revm/pull/2385)
- add 0x prefix to b256! and address! calls ([#2345]https://github.com/bluealloy/revm/pull/2345)

## [2.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0...revm-handler-v2.0.0 - 2025-03-28

### Added

- cache precompile warming ([#2317]https://github.com/bluealloy/revm/pull/2317)
- provide more context to precompiles ([#2318]https://github.com/bluealloy/revm/pull/2318)
- Add JournalInner ([#2311]https://github.com/bluealloy/revm/pull/2311)

### Fixed

- broken disable balance check ([#2286]https://github.com/bluealloy/revm/pull/2286)

### Other

- remove outdated TODO comments ([#2325]https://github.com/bluealloy/revm/pull/2325)
- add EIP-170 contract code size limit tests ([#2312]https://github.com/bluealloy/revm/pull/2312)
- Remove LATEST variant from SpecId enum ([#2299]https://github.com/bluealloy/revm/pull/2299)
- add unit test for EIP-3860 initcode size limit ([#2302]https://github.com/bluealloy/revm/pull/2302)

## [1.0.0]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.7...revm-handler-v1.0.0 - 2025-03-24

### Other

- updated the following local packages: revm-database, revm-precompile

## [1.0.0-alpha.7]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.6...revm-handler-v1.0.0-alpha.7 - 2025-03-21

### Added

- Remove PrecompileError from PrecompileProvider ([#2233]https://github.com/bluealloy/revm/pull/2233)
- allow reuse of API for calculating initial tx gas for tx ([#2215]https://github.com/bluealloy/revm/pull/2215)

### Other

- remove wrong `&mut` and duplicated spec ([#2276]https://github.com/bluealloy/revm/pull/2276)
- Add custom instruction example ([#2261]https://github.com/bluealloy/revm/pull/2261)
- use AccessListItem associated type instead of AccessList ([#2214]https://github.com/bluealloy/revm/pull/2214)

## [1.0.0-alpha.6]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.5...revm-handler-v1.0.0-alpha.6 - 2025-03-16

### Added

- *(docs)* MyEvm example and book cleanup ([#2218]https://github.com/bluealloy/revm/pull/2218)

## [1.0.0-alpha.5]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.4...revm-handler-v1.0.0-alpha.5 - 2025-03-12

### Added

- add custom error to context ([#2197]https://github.com/bluealloy/revm/pull/2197)
- Add tx/block to EvmExecution trait ([#2195]https://github.com/bluealloy/revm/pull/2195)

### Other

- add debug to precompiles type ([#2193]https://github.com/bluealloy/revm/pull/2193)

## [1.0.0-alpha.4]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.3...revm-handler-v1.0.0-alpha.4 - 2025-03-11

### Added

- decouple first_frame_input from inspector ([#2180]https://github.com/bluealloy/revm/pull/2180)

### Fixed

- *(op)* fix inspection call ([#2184]https://github.com/bluealloy/revm/pull/2184)
- correct propagate features ([#2177]https://github.com/bluealloy/revm/pull/2177)

### Other

- Add comments to handler methods ([#2188]https://github.com/bluealloy/revm/pull/2188)
- remove CTX phantomdata from precompile providers ([#2178]https://github.com/bluealloy/revm/pull/2178)

## [1.0.0-alpha.3]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.2...revm-handler-v1.0.0-alpha.3 - 2025-03-10

### Other

- updated the following local packages: revm-interpreter, revm-precompile

## [1.0.0-alpha.2]https://github.com/bluealloy/revm/compare/revm-handler-v1.0.0-alpha.1...revm-handler-v1.0.0-alpha.2 - 2025-03-10

### Added

- *(handler)* add MainnetContext alias generic over Database ([#2166]https://github.com/bluealloy/revm/pull/2166)
- remove specification crate ([#2165]https://github.com/bluealloy/revm/pull/2165)

### Fixed

- *(op)* Handler deposit tx halt, catch_error handle ([#2144]https://github.com/bluealloy/revm/pull/2144)
- call clear ([#2091]https://github.com/bluealloy/revm/pull/2091)

### Other

- op-revm cleanup and few docs ([#2156]https://github.com/bluealloy/revm/pull/2156)
- JournalTr, JournalOutput, op only using revm crate ([#2155]https://github.com/bluealloy/revm/pull/2155)
- rename transact_previous to replay, move EvmTr traits ([#2153]https://github.com/bluealloy/revm/pull/2153)
- docs and cleanup (rm Custom Inst) ([#2151]https://github.com/bluealloy/revm/pull/2151)
- move mainnet builder to handler crate ([#2138]https://github.com/bluealloy/revm/pull/2138)
- add immutable gas API to LoopControl ([#2134]https://github.com/bluealloy/revm/pull/2134)
- PrecompileErrors to PrecompileError ([#2103]https://github.com/bluealloy/revm/pull/2103)
- re-export all crates from `revm` ([#2088]https://github.com/bluealloy/revm/pull/2088)

## [1.0.0-alpha.1]https://github.com/bluealloy/revm/releases/tag/revm-handler-v1.0.0-alpha.1 - 2025-02-16

### Added

- Split Inspector trait from EthHandler into standalone crate (#2075)
- Introduce Auth and AccessList traits (#2079)
- Evm structure (Cached Instructions and Precompiles) (#2049)
- Add essential EIP-7756 tracing fields (#2023)
- Context execution (#2013)
- EthHandler trait (#2001)
- *(EIP-7623)* adjuct floor gas check order (main) (#1991)
- *(EIP-7840)* Add blob schedule to execution client cfg (#1980)
- *(eip7702)* apply latest EIP-7702 changes, backport from v52 (#1969)
- *(EIP-7623)* Increase calldata cost. backport from rel/v51 (#1965)
- simplify Transaction trait (#1959)
- align Block trait (#1957)
- expose precompile address in Journal, DB::Error: StdError (#1956)
- Make Ctx journal generic (#1933)
- removed create address collision check (#1928)
- Restucturing Part7 Handler and Context rework (#1865)
- *(examples)* generate block traces (#895)
- implement EIP-4844 (#668)
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode (#376)
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` (#239)
- Introduce ByteCode format, Update Readme (#156)

### Fixed

- *(Inspector)* call handler functions (#2026)
- deduplicate validate_initial_tx_gas API (#2006)
- *(eof)* dont run precompile on ext delegate call (#1964)
- fix typos ([#620]https://github.com/bluealloy/revm/pull/620)

### Other

- set alpha.1 version
- backport op l1 fetch perf (#2076)
- relax trait req in EthPrecompiles::default (#2071)
- add default generics for InterpreterTypes (#2070)
- API cleanup (#2067)
- Add helpers with_inspector with_precompile (#2063)
- Add bytecode hash in interpreter [#1888]https://github.com/bluealloy/revm/pull/1888 ([#1952]https://github.com/bluealloy/revm/pull/1952)
- Make inspector use generics, rm associated types (#1934)
- fix comments and docs into more sensible (#1920)
- Rename PRAGUE_EOF to OSAKA (#1903)
- Bump new logo (#1735)
- *(README)* add rbuilder to used-by (#1585)
- added simular to used-by (#1521)
- add Trin to used by list (#1393)
- Fix typo in readme ([#1185]https://github.com/bluealloy/revm/pull/1185)
- Add Hardhat to the "Used by" list ([#1164]https://github.com/bluealloy/revm/pull/1164)
- Add VERBS to used by list ([#1141]https://github.com/bluealloy/revm/pull/1141)
- license date and revm docs (#1080)
- *(docs)* Update the benchmark docs to point to revm package (#906)
- *(docs)* Update top-level benchmark docs (#894)
- clang requirement (#784)
- Readme Updates (#756)
- Logo (#743)
- book workflow ([#537]https://github.com/bluealloy/revm/pull/537)
- add example to revm crate ([#468]https://github.com/bluealloy/revm/pull/468)
- Update README.md ([#424]https://github.com/bluealloy/revm/pull/424)
- add no_std to primitives ([#366]https://github.com/bluealloy/revm/pull/366)
- revm-precompiles to revm-precompile
- Bump v20, changelog ([#350]https://github.com/bluealloy/revm/pull/350)
- typos (#232)
- Add support for old forks. ([#191]https://github.com/bluealloy/revm/pull/191)
- revm bump 1.8. update libs. snailtracer rename ([#159]https://github.com/bluealloy/revm/pull/159)
- typo fixes
- fix readme typo
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52]https://github.com/bluealloy/revm/pull/52)
- readme. debuger update
- Bump revm v0.3.0. README updated
- readme
- Add time elapsed for tests
- readme updated
- Include Basefee into cost calc. readme change
- Initialize precompile accounts
- Status update. Taking a break
- Merkle calc. Tweaks and debugging for eip158
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
- TEMP
- one tab removed
- readme
- README Example simplified
- Gas calculation for Call/Create. Example Added
- readme usage
- README changes
- Static gas cost added
- Subroutine changelogs and reverts
- Readme postulates
- Spelling
- Restructure project
- First iteration. Machine is looking okay