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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
#[cfg(not(feature = "std"))]
use alloc as std;
use std::{collections::BTreeMap, string::ToString, vec::Vec};
use alloy_evm::{precompiles::PrecompilesMap, Database};
use alloy_primitives::{Address, Bytes, TxKind, U256};
use delegate::delegate;
use op_revm::{
constants::{BASE_FEE_RECIPIENT, L1_FEE_RECIPIENT, OPERATOR_FEE_RECIPIENT},
handler::{IsTxError, OpHandler},
transaction::deposit::DEPOSIT_TRANSACTION_TYPE,
OpHaltReason, OpTransactionError,
};
use revm::{
context::{
result::{ExecutionResult, FromStringError, InvalidTransaction},
transaction::{AuthorizationTr, TransactionType},
Block, Cfg, ContextError, ContextTr, FrameStack, JournalTr, LocalContextTr, Transaction,
},
handler::{
evm::{ContextDbError, FrameInitResult},
instructions::InstructionProvider,
post_execution::output as post_execution_output,
pre_execution::validate_account_nonce_and_code,
EthFrame, EvmTr, EvmTrError, FrameInitOrResult, FrameResult, FrameTr, Handler,
ItemOrResult,
},
inspector::{
handler::{frame_end, frame_start},
inspect_instructions, InspectorEvmTr, InspectorFrame, InspectorHandler,
},
interpreter::{
gas::get_tokens_in_calldata, interpreter::EthInterpreter, interpreter_action::FrameInit,
CallOutcome, CallScheme, CreateOutcome, FrameInput, Gas, InitialAndFloorGas,
InstructionResult, InterpreterAction, InterpreterResult,
},
primitives::CALL_STACK_LIMIT,
Inspector, Journal,
};
use crate::{
constants, dispatch_system_contract_interceptors, is_deposit_like_transaction,
is_mega_system_transaction_with, limit::ACCOUNT_INFO_WRITE_SIZE, sent_from_system_address,
ExternalEnvTypes, HostExt, JournalInspectTr, MegaContext, MegaEvm, MegaHaltReason,
MegaInstructions, MegaSpecId, MegaTransactionError, MEGA_SYSTEM_TRANSACTION_SOURCE_HASH,
};
/// Revm handler for `MegaETH`. It internally wraps the [`op_revm::handler::OpHandler`] and inherits
/// most functionalities from Optimism.
#[allow(missing_debug_implementations)]
pub struct MegaHandler<EVM, ERROR, FRAME> {
op: OpHandler<EVM, ERROR, FRAME>,
}
impl<EVM, ERROR, FRAME> MegaHandler<EVM, ERROR, FRAME> {
/// Create a new `MegaethHandler`.
pub fn new() -> Self {
Self { op: OpHandler::new() }
}
}
impl<EVM, ERROR, FRAME> Default for MegaHandler<EVM, ERROR, FRAME> {
fn default() -> Self {
Self::new()
}
}
impl<DB, EVM, ERROR, FRAME, ExtEnvs> MegaHandler<EVM, ERROR, FRAME>
where
DB: Database,
ExtEnvs: ExternalEnvTypes,
EVM: EvmTr<Context = MegaContext<DB, ExtEnvs>>,
ERROR: FromStringError + From<InvalidTransaction>,
{
/// The hook to be called in `revm::handler::Handler::run_without_catch_error` and
/// `revm::handler::InspectorHandler::inspect_run_without_catch_error`.
///
/// Promotes a legacy `system_address` transaction into the OP deposit-style path so it
/// bypasses signature, nonce, and fee validation. REX5+ restores nonce and chain-id
/// checks before the promotion (the deposit path otherwise drops them, leaving the
/// transaction replayable). Pre-REX5 specs preserve the original behavior so existing
/// chain replay is unaffected.
#[inline]
fn before_run(&self, evm: &mut EVM) -> Result<(), ERROR> {
let ctx = evm.ctx_mut();
let spec = ctx.spec;
if spec.is_enabled(MegaSpecId::MINI_REX) {
let system_address = ctx.system_address;
let is_rex5_enabled = spec.is_enabled(MegaSpecId::REX5);
// Honor the same `CfgEnv` toggles as the canonical revm validate path.
// Ordinary txs are already filtered by the upstream validate path before
// reaching this promotion logic, so keeping system txs aligned here does
// not introduce a separate replay-only escape hatch.
let cfg = ctx.cfg();
let cfg_chain_id = cfg.chain_id;
let tx_chain_id_check = cfg.tx_chain_id_check;
let disable_nonce_check = cfg.disable_nonce_check;
let disable_eip3607 = cfg.disable_eip3607;
let tx = ctx.tx();
if sent_from_system_address(tx, system_address) {
// Whitelist rejection has no canonical `InvalidTransaction` variant; keep the
// existing string-error shape pre-REX5 callers already expect.
if !is_mega_system_transaction_with(tx, system_address) {
return Err(FromStringError::from_string(
"Mega system transaction callee is not in the whitelist".to_string(),
));
}
if is_rex5_enabled {
if tx_chain_id_check {
match tx.chain_id() {
None => return Err(InvalidTransaction::MissingChainId.into()),
Some(cid) if cid != cfg_chain_id => {
return Err(InvalidTransaction::InvalidChainId.into());
}
Some(_) => {}
}
}
// Inspect without warming so validation does not mutate the EIP-2929
// access list. The journal cache still lets consecutive in-block system
// txs observe committed nonce bumps.
let tx_nonce = tx.nonce();
// EIP-3607 reads `info.code`; pass `load_code = true` so the
// `code_by_hash` is paid here rather than silently bypassing the
// guard against a lazy-code DB.
let state_account = ctx
.journal_mut()
.inspect_account(system_address, true)
.map_err(|e| -> ERROR {
FromStringError::from_string(format!(
"Mega system transaction state read failed: {e:?}"
))
})?;
validate_account_nonce_and_code(
&mut state_account.info,
tx_nonce,
disable_eip3607,
disable_nonce_check,
)?;
}
// Mark the tx as deposit-style for `OpHandler` and force gas_price to 0
// so fee / L1 / operator / beneficiary accounting all degenerate to no-ops.
let tx = &mut ctx.inner.tx;
tx.deposit.source_hash = MEGA_SYSTEM_TRANSACTION_SOURCE_HASH;
tx.base.gas_price = 0;
}
}
ctx.on_new_tx();
Ok(())
}
/// The hook to be called in `revm::handler::Handler::execution` and
/// `revm::inspector::InspectorHandler::inspect_execution` to check if the initial gas exceeds
/// the tx gas limit, if so, we halt with out of gas.
#[inline]
fn before_execution(
&self,
evm: &mut EVM,
init_and_floor_gas: &InitialAndFloorGas,
) -> Result<Option<FrameResult>, ERROR> {
// Check if the initial gas exceeds the tx gas limit, if so, we halt with out of gas
let ctx = evm.ctx();
let tx = ctx.tx();
if tx.gas_limit() < init_and_floor_gas.initial_gas {
// If not sufficient gas, we halt with out of gas
let oog_frame_result = gen_oog_frame_result(tx.kind(), tx.gas_limit());
return Ok(Some(oog_frame_result));
}
Ok(None)
}
}
/// A fee recipient's pre-reward state, captured before delegating to op-revm so the
/// post-reward diff can tell whether the credit changed or materialised the account.
struct FeeRecipientSnapshot {
address: Address,
balance: U256,
was_empty: bool,
}
/// One EIP-7702 authorization that would actually apply, as determined by the read-only
/// pre-application scan in [`MegaHandler::scan_applied_eip7702_authorizations`].
struct AppliedAuthorization {
/// The recovered authority account the authorization delegates.
authority: Address,
/// `true` if applying the authorization materializes an account that does not yet exist.
creates_authority: bool,
}
impl<DB, EVM, ERROR, FRAME, ExtEnvs> MegaHandler<EVM, ERROR, FRAME>
where
DB: Database,
ExtEnvs: ExternalEnvTypes,
EVM: EvmTr<Context = MegaContext<DB, ExtEnvs>>,
ERROR: From<DB::Error> + FromStringError,
{
/// Read-only scan of a transaction's EIP-7702 authorization list, mirroring revm's auth-list
/// application order: the chain-id / `u64::MAX`-nonce / non-empty-non-7702-code gates, the
/// per-authority account-nonce match, and the sequential simulated-nonce tracking for repeated
/// authorities. Returns the authorizations that would actually apply; it does not mutate
/// delegation bytecode (revm's `apply_eip7702_auth_list` does that later). This is the single
/// shared source of the gating logic for the REX5 state-growth pass and the REX6 consolidated
/// accounting, so the two cannot drift.
///
/// `caller_nonce_already_bumped` selects the caller-nonce baseline: for a call tx,
/// `validate_against_state_and_deduct_caller` bumps the caller's nonce by 1 before
/// `apply_eip7702_auth_list` checks it. A scan running after that bump (REX5, in
/// `pre_execution`) passes `true`; one running before it (REX6, in `validate`) passes `false`,
/// so a self-authorization (`authority == caller`) is compared against `caller.nonce + 1` and
/// matches the real application. Each net-new authority appears at most once (the simulated
/// nonce dedupes repeats), so callers may treat the `creates_authority` entries as a set.
fn scan_applied_eip7702_authorizations(
&self,
evm: &mut EVM,
caller_nonce_already_bumped: bool,
) -> Result<Vec<AppliedAuthorization>, ERROR> {
let ctx = evm.ctx_mut();
let chain_id = ctx.cfg().chain_id;
let (tx, journal) = ctx.tx_journal_mut();
let caller = tx.caller();
// Transaction-local simulated auth-list state, mirroring revm's sequential processing
// when the same authority appears multiple times in one tx. A `BTreeMap` keeps
// per-authorization lookup/update at O(log N) instead of the O(N) linear scan a `Vec`
// would need, bounding the whole pass at O(N log N) (an attacker could otherwise drive
// O(N²) node CPU with many unique authorities in one tx). The map is only ever keyed,
// never iterated for output, so the produced `applied` list is unchanged.
let mut simulated_authorities = BTreeMap::<Address, u64>::new();
let mut applied = Vec::new();
for authorization in tx.authorization_list() {
let auth_chain_id = authorization.chain_id();
if !auth_chain_id.is_zero() && auth_chain_id != U256::from(chain_id) {
continue;
}
if authorization.nonce() == u64::MAX {
continue;
}
let Some(authority) = authorization.authority() else {
continue;
};
let (authority_nonce, creates_authority) = if let Some(nonce) =
simulated_authorities.get(&authority).copied()
{
(nonce, false)
} else {
// No-warm read: this scan is a pre-flight count and must not change the
// access list. Authority warming is owned by revm's authorization application;
// `inspect_account` keeps that boundary clean.
let authority_acc = journal.inspect_account(authority, true)?;
if let Some(bytecode) = &authority_acc.info.code {
if !bytecode.is_empty() && !bytecode.is_eip7702() {
continue;
}
}
// Mirror the call tx caller's own nonce bump for a self-authorization, unless this
// scan already runs after that bump. Type-4 txs are always calls (a missing `to`
// is rejected at validation as `Eip7702CannotBeCreate`), so no `is_call` guard is
// needed — the authorization list is non-empty only for calls.
let effective_nonce = if !caller_nonce_already_bumped && authority == caller {
authority_acc.info.nonce.saturating_add(1)
} else {
authority_acc.info.nonce
};
(
effective_nonce,
authority_acc.is_empty() &&
authority_acc.is_loaded_as_not_existing_not_touched(),
)
};
if authorization.nonce() != authority_nonce {
continue;
}
applied.push(AppliedAuthorization { authority, creates_authority });
let next_nonce = authority_nonce.saturating_add(1);
// insert overwrites an existing entry and inserts a new one otherwise,
// matching the prior find-or-push.
simulated_authorities.insert(authority, next_nonce);
}
Ok(applied)
}
/// Records REX5 state growth for EIP-7702 authorizations that create authority accounts.
///
/// Runs in `pre_execution` (after the caller nonce bump) and charges only the state-growth
/// dimension; overflow is latched into `AdditionalLimit::has_exceeded_limit` and surfaced as
/// the normal execution failure at the first frame. The caller gates this to the REX5-only
/// path (REX5 on, REX6 off, type-4 tx); REX6+ accounts for every per-authorization effect in
/// the consolidated `validate`-time scan (`record_rex6_eip7702_authority_accounting`) instead.
#[inline]
fn record_rex5_eip7702_authority_state_growth(&self, evm: &mut EVM) -> Result<(), ERROR> {
// Pre-execution pass runs after the caller nonce bump.
let applied = self.scan_applied_eip7702_authorizations(evm, true)?;
let authority_creations =
applied.iter().filter(|auth| auth.creates_authority).count() as u64;
if authority_creations > 0 {
evm.ctx_mut()
.additional_limit
.borrow_mut()
.on_rex5_eip7702_authority_creations(authority_creations);
}
Ok(())
}
/// Side-effect-free read of a fee recipient's balance and emptiness.
///
/// Uses `inspect_account` (no warming) so reading the recipients to account the
/// post-execution reward does not perturb gas or the access list.
fn fee_recipient_balance_and_emptiness(
evm: &mut EVM,
address: Address,
) -> Result<(U256, bool), ERROR> {
let info = &evm
.ctx_mut()
.journal_mut()
.inspect_account(address, false)
.map_err(|e| {
ERROR::from_string(format!(
"Failed to inspect fee recipient {address} for REX6 reward accounting: {e:?}",
))
})?
.info;
Ok((info.balance, info.is_empty()))
}
/// Snapshots the distinct accounts op-revm credits in the post-execution reward path,
/// each with its pre-reward balance and emptiness.
///
/// The set is the block beneficiary plus the L1 / base-fee / operator fee vaults.
/// It is deduplicated because the block beneficiary may coincide with a fee vault, and
/// op-revm would otherwise issue two `balance_incr`s to the same on-chain account — which
/// is still a single account write.
fn snapshot_fee_recipients(evm: &mut EVM) -> Result<Vec<FeeRecipientSnapshot>, ERROR> {
let recipients = [
evm.ctx().block().beneficiary(),
L1_FEE_RECIPIENT,
BASE_FEE_RECIPIENT,
OPERATOR_FEE_RECIPIENT,
];
let mut snapshots: Vec<FeeRecipientSnapshot> = Vec::with_capacity(recipients.len());
for address in recipients {
if snapshots.iter().any(|snapshot| snapshot.address == address) {
continue;
}
let (balance, was_empty) = Self::fee_recipient_balance_and_emptiness(evm, address)?;
snapshots.push(FeeRecipientSnapshot { address, balance, was_empty });
}
Ok(snapshots)
}
/// REX6 consolidated EIP-7702 authorization accounting.
///
/// Runs in `validate`, before the gas-limit check and fee affordability, and is the single
/// source of truth for per-authorization effects — replacing the pre-REX6 split between the
/// ungated `before_tx_start` DataSize/KV charges and the pre-execution state-growth scan:
/// - charges data size +40 / KV +1 for every *applied* authority (one that passed the chain-id
/// / nonce / code gates), not every recoverable one;
/// - charges state growth +1 for each *net-new* authority and returns its address so the caller
/// can add the dynamic SALT account-creation gas to `initial_gas`;
/// - marks beneficiary detention when an applied authority is the block beneficiary.
///
/// Returns the net-new authority addresses; the caller uses them both to charge SALT gas and
/// to avoid double-charging an auth-materialized value-transfer recipient. The caller gates
/// this to REX6 type-4 transactions; pre-REX6 keeps the old split frozen.
#[inline]
fn record_rex6_eip7702_authority_accounting(
&self,
evm: &mut EVM,
) -> Result<Vec<Address>, ERROR> {
// Runs in validate, before the caller nonce bump.
let applied = self.scan_applied_eip7702_authorizations(evm, false)?;
// Record per-applied-authority resources + beneficiary detention. Dynamic SALT gas is
// charged by the caller from `materialized` (the net-new authorities).
let ctx = evm.ctx_mut();
let beneficiary = ctx.inner.block.beneficiary;
let mut materialized = Vec::new();
let mut beneficiary_applied = false;
for auth in applied {
ctx.additional_limit
.borrow_mut()
.on_rex6_eip7702_authority_applied(auth.creates_authority);
if auth.creates_authority {
// The scanner yields each net-new authority once, so `materialized` stays a set.
debug_assert!(!materialized.contains(&auth.authority));
materialized.push(auth.authority);
}
if auth.authority == beneficiary {
beneficiary_applied = true;
}
}
// An applied authority that is the block beneficiary mutates beneficiary state, so mark
// it and re-derive the REX4 beneficiary detention cap — the cap set at `on_new_tx`
// predates this scan and would otherwise miss the authority-side access.
if beneficiary_applied {
ctx.check_and_mark_beneficiary_balance_access(&beneficiary);
if let Some(limit) = ctx.volatile_data_tracker.borrow().get_compute_gas_limit() {
ctx.additional_limit.borrow_mut().set_compute_gas_limit(limit);
}
}
Ok(materialized)
}
}
impl<DB: Database, INSP, ExtEnvs: ExternalEnvTypes> MegaEvm<DB, INSP, ExtEnvs> {
/// This is the hook to be called in the beginning of the `frame_run` and `inspect_frame_run`
/// functions. This function checks if the additional limit is already exceeded, if so, we
/// should immediately stop and synthesize an interpreter action and return it.
#[inline]
fn before_frame_run(
ctx: &MegaContext<DB, ExtEnvs>,
frame: &EthFrame<EthInterpreter>,
) -> Result<Option<InterpreterAction>, ContextDbError<MegaContext<DB, ExtEnvs>>> {
// Check if the additional limit is already exceeded, if so, we should immediately stop
// and synthesize an interpreter action.
if ctx.spec.is_enabled(MegaSpecId::MINI_REX) {
if let Some(interpreter_result) =
ctx.additional_limit.borrow_mut().before_frame_run(frame)
{
return Ok(Some(InterpreterAction::Return(interpreter_result)));
}
}
Ok(None)
}
/// This is the hook to be called in the `frame_run` and `inspect_frame_run`
/// functions after the instructions are executed. Apply `MiniRex` additional limits after
/// running instructions.
///
/// This handles:
/// - Charging `CODEDEPOSIT_STORAGE_GAS` for successful create operations
/// - Updating additional limits via `after_create_frame_run`
/// - Recording gas remaining for later compute gas tracking
///
/// Returns `Some(gas_remaining)` if `MiniRex` is enabled and action is a Return,
/// for use in `after_frame_run`.
#[inline]
fn after_frame_run_instructions(
ctx: &MegaContext<DB, ExtEnvs>,
frame: &EthFrame<EthInterpreter>,
action: &mut InterpreterAction,
) -> Result<(), ContextDbError<MegaContext<DB, ExtEnvs>>> {
if !ctx.spec.is_enabled(MegaSpecId::MINI_REX) {
return Ok(());
}
let is_rex5 = ctx.spec.is_enabled(MegaSpecId::REX5);
if let InterpreterAction::Return(interpreter_result) = action {
// Charge storage gas cost for the number of bytes
if frame.data.is_create() && interpreter_result.is_ok() {
let code_deposit_storage_gas = constants::mini_rex::CODEDEPOSIT_STORAGE_GAS *
interpreter_result.output.len() as u64;
if !interpreter_result.gas.record_cost(code_deposit_storage_gas) {
interpreter_result.result = InstructionResult::OutOfGas;
}
}
// REX5+: pre-charge canonical code-deposit compute gas before
// process_next_action commits the CREATE checkpoint. Skip when
// revm's return_create would not charge it; the existing
// limit-side hook below owns the result-marking on exceed.
if is_rex5 && frame.data.is_create() {
let cfg = ctx.cfg();
if will_return_create_charge_code_deposit(
interpreter_result,
cfg.max_code_size(),
cfg.spec().into(),
cfg.is_eip3541_disabled(),
) {
let code_len = interpreter_result.output.len() as u64;
let canonical_code_deposit_gas =
code_len.saturating_mul(revm::interpreter::gas::CODEDEPOSIT);
let _ = ctx
.additional_limit
.borrow_mut()
.record_compute_gas(canonical_code_deposit_gas);
}
}
}
// Update additional limits. MiniRex is guaranteed to be enabled here.
ctx.additional_limit.borrow_mut().after_frame_run_instructions(frame, action);
Ok(())
}
/// Apply `MiniRex` additional limits after frame action processing.
///
/// Under REX5+ for CREATE results, the code-deposit compute gas was
/// already pre-charged in [`after_frame_run_instructions`]; pass
/// `None` here so the post-action hook does not double-record.
#[inline]
fn after_frame_run(
ctx: &MegaContext<DB, ExtEnvs>,
frame_output: &mut ItemOrResult<FrameInit, FrameResult>,
gas_remaining_before_process_action: Option<u64>,
) -> Result<(), ContextDbError<MegaContext<DB, ExtEnvs>>> {
if !ctx.spec.is_enabled(MegaSpecId::MINI_REX) {
return Ok(());
}
let is_rex5 = ctx.spec.is_enabled(MegaSpecId::REX5);
if let ItemOrResult::Result(frame_result) = frame_output {
// REX5+: code-deposit compute gas for CREATE results was already
// pre-charged. Skip post-action recording so we don't double-count.
let pass_through = if is_rex5 && matches!(frame_result, FrameResult::Create(_)) {
None
} else {
gas_remaining_before_process_action
};
ctx.additional_limit.borrow_mut().after_frame_run(frame_result, pass_through);
}
Ok(())
}
}
/// Mirrors `revm_handler::frame::return_create`'s pre-commit predicate.
/// Returns `true` iff `return_create` would charge `code_len * CODEDEPOSIT`
/// from the interpreter gas and commit the checkpoint.
///
/// REVIEW ON UPSTREAM BUMP: keep in lockstep with
/// `revm-handler::frame::return_create`. Any revm bump that touches the
/// predicate inputs (`is_ok`, EIP-3541 gate, EIP-170 gate, code-deposit
/// gas availability) requires re-auditing this helper.
fn will_return_create_charge_code_deposit(
interpreter_result: &InterpreterResult,
max_code_size: usize,
runtime_spec_id: revm::primitives::hardfork::SpecId,
is_eip3541_disabled: bool,
) -> bool {
use revm::primitives::hardfork::SpecId;
if !interpreter_result.result.is_ok() {
return false;
}
if !is_eip3541_disabled &&
runtime_spec_id.is_enabled_in(SpecId::LONDON) &&
interpreter_result.output.first() == Some(&0xEF)
{
return false;
}
if runtime_spec_id.is_enabled_in(SpecId::SPURIOUS_DRAGON) &&
interpreter_result.output.len() > max_code_size
{
return false;
}
let code_deposit_gas = (interpreter_result.output.len() as u64)
.saturating_mul(revm::interpreter::gas::CODEDEPOSIT);
interpreter_result.gas.remaining() >= code_deposit_gas
}
impl<DB: Database, EVM, ERROR, FRAME, ExtEnvs: ExternalEnvTypes> Handler
for MegaHandler<EVM, ERROR, FRAME>
where
EVM: EvmTr<Context = MegaContext<DB, ExtEnvs>, Frame = FRAME>,
ERROR: EvmTrError<EVM>
+ From<OpTransactionError>
+ From<MegaTransactionError>
+ FromStringError
+ IsTxError
+ core::fmt::Debug,
FRAME: FrameTr<FrameResult = FrameResult, FrameInit = FrameInit>,
{
type Evm = EVM;
type Error = ERROR;
type HaltReason = MegaHaltReason;
delegate! {
to self.op {
fn validate_env(&self, evm: &mut Self::Evm) -> Result<(), Self::Error>;
fn validate_against_state_and_deduct_caller(
&self,
evm: &mut Self::Evm,
) -> Result<(), Self::Error>;
fn reimburse_caller(&self, evm: &mut Self::Evm, exec_result: &mut <<Self::Evm as EvmTr>::Frame as FrameTr>::FrameResult) -> Result<(), Self::Error>;
fn refund(&self, evm: &mut Self::Evm, exec_result: &mut <<Self::Evm as EvmTr>::Frame as FrameTr>::FrameResult, eip7702_refund: i64);
}
}
fn pre_execution(&self, evm: &mut Self::Evm) -> Result<u64, Self::Error> {
self.validate_against_state_and_deduct_caller(evm)?;
self.load_accounts(evm)?;
// EIP-7702 authority state-growth handling, split by spec era. Only type-4 txs reach
// either branch, and no exempt (system-originated) tx is type-4 here — system txs are
// legacy-typed pre-promotion / deposit-typed post-promotion, and a type-4 system caller is
// rejected earlier in `before_run` — so neither branch consults `is_exempt()`.
if evm.ctx().tx().tx_type() == TransactionType::Eip7702 {
if evm.ctx().spec.is_enabled(MegaSpecId::REX6) {
// `validate()` (`record_rex6_eip7702_authority_accounting`) already charged every
// applied authority against the pre-frame resource dimensions it touches (a
// persistent account write on `data_size` + `kv_update`; `state_growth` for net-new
// authorities; and — when an applied authority is the block beneficiary — a lowered
// detention cap that the intrinsic `compute_gas` can then exceed). If any of those
// pushed the tx over a per-tx limit, the first frame halts anyway — but
// `apply_eip7702_auth_list` `mark_touch`es every authority in pre-execution, and a
// HALT (unlike an `Err`) does not roll those pre-frame writes back. Skip the whole
// list so the halt discards them.
//
// Gate on `AdditionalLimit::limit_exceeded()`: that is the exact condition
// `frame_result_if_exceeding_limit` halts on, so skipping here covers every
// pre-frame dimension (`DataSize`/`KVUpdate`/`ComputeGas`/`StateGrowth`) that could
// trigger that halt — including compute overflows and any dimension added later —
// with no risk of the check and the halt disagreeing. (It is false for both
// `WithinLimit` and `Exempt`, matching the halt path.) `Ok(0)` forgoes the
// existing-authority EIP-7702 refund (`post_execution::refund` records it
// unconditionally) — the intended all-or-nothing consequence of skipping the whole
// list (see `test_rex6_authority_state_growth_overflow_forgoes_refund`).
if evm.ctx().additional_limit.borrow().limit_exceeded() {
return Ok(0);
}
} else if evm.ctx().spec.is_enabled(MegaSpecId::REX5) {
// REX5 runs the authority state-growth scan here in pre-execution; REX6 folds it
// into `validate()`'s accounting above instead.
self.record_rex5_eip7702_authority_state_growth(evm)?;
}
}
self.apply_eip7702_auth_list(evm)
}
fn run_system_call(
&mut self,
evm: &mut Self::Evm,
) -> Result<ExecutionResult<Self::HaltReason>, Self::Error> {
// system call does not call `pre_execution` and `post_execution`, so we need to extract
// some logic from them.
let ctx = evm.ctx_mut();
ctx.on_new_tx();
// dummy values that are not used.
let init_and_floor_gas = InitialAndFloorGas::new(0, 0);
// call execution and than output.
match self
.execution(evm, &init_and_floor_gas)
.and_then(|exec_result| self.execution_result(evm, exec_result))
{
out @ Ok(_) => out,
Err(e) => self.catch_error(evm, e),
}
}
fn run_without_catch_error(
&mut self,
evm: &mut Self::Evm,
) -> Result<ExecutionResult<Self::HaltReason>, Self::Error> {
self.before_run(evm)?;
let init_and_floor_gas = self.validate(evm)?;
let eip7702_refund = self.pre_execution(evm)? as i64;
let mut exec_result = self.execution(evm, &init_and_floor_gas)?;
self.post_execution(evm, &mut exec_result, init_and_floor_gas, eip7702_refund)?;
// Prepare the output
self.execution_result(evm, exec_result)
}
/// This function copies the logic from `revm::handler::Handler::validate` to and
/// add additional storage gas cost for calldata.
///
/// REX5+ adds a final initial+floor gas validation after all Mega-side dynamic storage gas
/// has been accounted for. Pre-REX5 specs keep the historical mid-sequence check exactly
/// where it was so byte-for-byte replay is preserved.
fn validate(&self, evm: &mut Self::Evm) -> Result<InitialAndFloorGas, Self::Error> {
self.validate_env(evm)?;
let mut initial_and_floor_gas = self.validate_initial_tx_gas(evm)?;
// REX6 only (gated on type-4 tx + REX6 spec): consolidated EIP-7702 authorization
// accounting. Records the per-applied-authority DataSize/KV/StateGrowth + beneficiary
// detention, and returns the net-new authority addresses so the caller folds the dynamic
// SALT account-creation gas into `initial_gas` before the gas-limit / fee-affordability
// check. Pre-REX6 / non-EIP-7702 produces `Vec::new()` and the SALT-gas loop is a no-op.
let record_rex6_accounting = {
let ctx = evm.ctx();
ctx.spec.is_enabled(MegaSpecId::REX6) && ctx.tx().tx_type() == TransactionType::Eip7702
};
let materialized_authorities = if record_rex6_accounting {
self.record_rex6_eip7702_authority_accounting(evm)?
} else {
Vec::new()
};
let ctx = evm.ctx_mut();
let is_mini_rex_enabled = ctx.spec.is_enabled(MegaSpecId::MINI_REX);
let is_rex_enabled = ctx.spec.is_enabled(MegaSpecId::REX);
let is_rex5_enabled = ctx.spec.is_enabled(MegaSpecId::REX5);
if is_mini_rex_enabled {
// record the initial gas cost as compute gas cost, limit exceeding will be captured in
// `frame_init` function.
ctx.additional_limit()
.borrow_mut()
.record_compute_gas(initial_and_floor_gas.initial_gas);
// MegaETH MiniRex modification: calldata storage gas costs (10x the standard EVM rates)
// - Standard tokens: 40 gas per token (vs 4)
// - EIP-7623 floor: 100 gas per token (vs 10)
let tokens_in_calldata = get_tokens_in_calldata(ctx.tx().input(), true);
let calldata_storage_gas =
constants::mini_rex::CALLDATA_STANDARD_TOKEN_STORAGE_GAS * tokens_in_calldata;
initial_and_floor_gas.initial_gas += calldata_storage_gas;
let floor_calldata_storage_gas =
constants::mini_rex::CALLDATA_STANDARD_TOKEN_STORAGE_FLOOR_GAS * tokens_in_calldata;
initial_and_floor_gas.floor_gas += floor_calldata_storage_gas;
// MegaETH Rex modification: additional intrinsic storage gas cost
// Add 39,000 gas on top of base intrinsic gas for all transactions
if is_rex_enabled {
initial_and_floor_gas.initial_gas += constants::rex::TX_INTRINSIC_STORAGE_GAS;
}
// Pre-REX5: keep the historical mid-sequence initial-gas check here so existing
// stable-spec replays produce exactly the same OOG-after-fee-charge result on
// transactions whose final Mega-adjusted initial_gas exceeds gas_limit only after
// CREATE/new-account storage gas is added below.
//
// REX5+: this mid-sequence check is deferred to the final check below, which runs
// after CREATE/new-account storage gas has also been added so a transaction that
// cannot fit its final Mega-side intrinsic+storage gas is rejected as a validation
// error before pre_execution() debits the sender or bumps the nonce.
if !is_rex5_enabled && initial_and_floor_gas.initial_gas > ctx.tx().gas_limit() {
return Err(InvalidTransaction::CallGasCostMoreThanGasLimit {
gas_limit: ctx.tx().gas_limit(),
initial_gas: initial_and_floor_gas.initial_gas,
}
.into());
}
// MegaETH modification: additional storage gas cost for creating account
let kind = ctx.tx().kind();
let is_rex5_enabled = ctx.spec.is_enabled(MegaSpecId::REX5);
let (callee_address, storage_gas) = match kind {
TxKind::Create => {
let caller = ctx.tx().caller();
// REX5+: derive the created address from the caller's
// state nonce — the same value `make_create_frame` uses
// for the actual deployment. Pre-REX5 keeps `tx.nonce()`.
let nonce = if is_rex5_enabled {
ctx.journal_mut()
.inspect_account(caller, false)
.map_err(|e| {
Self::Error::from_string(format!(
"Failed to inspect caller account for CREATE storage gas: {e:?}",
))
})?
.info
.nonce
} else {
ctx.tx().nonce()
};
let created_address = caller.create(nonce);
let storage_gas = if is_rex_enabled {
// Rex spec distinguishes between contract creation and account creation.
ctx.create_contract_storage_gas(created_address)
} else {
// Mini-Rex spec does not distinguish between contract creation and account
// creation.
ctx.new_account_storage_gas(created_address)
};
(created_address, storage_gas)
}
TxKind::Call(address) => {
// Reading emptiness through the journal (instead of the raw DB) is
// observationally equivalent on every spec, relying on two invariants:
// pre-REX6 the journal holds no entries when `validate` runs (each
// transaction's journal is drained at finalize, and access-list warming /
// `deduct_caller` only run in `pre_execution`, after `validate`), so the
// read observes exactly the DB value; and the cold entry the read inserts
// is the call target, which frame init loads for every call transaction
// anyway, so the transaction's returned state gains no new account.
// Under REX6 the authority scan above may have journaled applied
// authorities already; for those the read observes the applied
// delegation, which is the intended REX6 semantics.
let new_account = !ctx.tx().value().is_zero() &&
ctx.journal_mut().inspect_account(address, false)?.info.is_empty() &&
// If an applied EIP-7702 authorization materializes this recipient, its
// creation gas is charged via the authority SALT gas below — don't
// double-charge the value-transfer new-account gas for the same account.
!materialized_authorities.contains(&address);
let storage_gas =
if new_account { ctx.new_account_storage_gas(address) } else { Some(0) };
(address, storage_gas)
}
};
initial_and_floor_gas.initial_gas += storage_gas.ok_or_else(|| {
let err_str =
format!("Failed to get storage gas for callee address: {callee_address}",);
Self::Error::from_string(err_str)
})?;
// REX6: dynamic SALT account-creation gas for each net-new EIP-7702 authority,
// folded into initial_gas so it is enforced against gas_limit / fee affordability.
// `materialized_authorities` is empty pre-REX6, so this is a no-op on stable specs.
for authority in &materialized_authorities {
let authority_storage_gas =
ctx.new_account_storage_gas(*authority).ok_or_else(|| {
Self::Error::from_string(format!(
"Failed to get storage gas for EIP-7702 authority: {authority}",
))
})?;
initial_and_floor_gas.initial_gas += authority_storage_gas;
}
// REX5+: charge dynamic new-account storage gas for a deposit-driven caller
// materialisation (either `tx.mint() > 0` balance increment or pre-execution
// nonce bump). Mirrors the `TxKind::Call(address) with value` branch above,
// but for the caller side. Detection runs here so we observe the pre-
// pre-execution state — `OpHandler::pre_execution` (run after `validate`) is
// what actually materialises the caller account.
//
// `data_size` / `kv_update` are intentionally NOT touched: their
// `before_tx_start` hooks already record the caller's account-info write
// unconditionally for every transaction. Only `state_growth` (which has no
// pre-existing caller-side accounting) and intrinsic gas need the charge.
// Skip this branch inside sandbox contexts: the sandbox view of `caller`'s nonce
// is overridden to 0 by `SandboxDb`, which would mis-classify a previously
// materialised signer as empty on retry. The keyless-deploy outer flow charges
// caller materialisation explicitly via `charge_caller_materialization_pre_sandbox`
// before constructing the sandbox tx, based on the parent journal-visible state.
if is_rex5_enabled && !ctx.is_inside_sandbox() {
let caller = ctx.tx().caller();
let system_address = ctx.system_address;
if is_deposit_like_transaction(&ctx.inner.tx, system_address) {
// Journal read equivalence: as for the recipient emptiness check above,
// the journal is empty at `validate` time on frozen specs (drained at the
// previous transaction's finalize, warmed only in `pre_execution`), so
// this observes the raw DB value, and the inserted cold entry is the
// caller, which `deduct_caller` loads for every transaction anyway.
let caller_is_empty =
ctx.journal_mut().inspect_account(caller, false)?.info.is_empty();
if caller_is_empty {
// Self-call corner: if the deposit is a `TxKind::Call(caller)` with
// non-zero `value` AND the same empty caller as callee, the existing
// callee branch above has already charged `new_account_storage_gas(caller)`
// for the same account materialisation. Don't charge the gas a second
// time — but still record the state-growth event (the existing branch
// never records state_growth; the +1 here reflects the single account
// materialisation that pre_execution will perform).
let already_charged_as_callee = matches!(
ctx.tx().kind(),
TxKind::Call(addr) if addr == caller,
) && !ctx.tx().value().is_zero();
if !already_charged_as_callee {
let storage_gas =
ctx.new_account_storage_gas(caller).ok_or_else(|| {
let err_str = format!(
"Failed to get storage gas for deposit caller: {caller}",
);
Self::Error::from_string(err_str)
})?;
initial_and_floor_gas.initial_gas += storage_gas;
}
ctx.additional_limit.borrow_mut().record_deposit_caller_creation();
}
}
}
// REX5+: final initial+floor gas validation, after every Mega-side storage gas
// contribution has been added. A transaction that fails either bound is rejected
// here as a canonical validation error so callers see Err(...) rather than an
// ExecutionResult::Halt with full gas spent — i.e. fees and nonce stay untouched
// when the tx cannot fit its final intrinsic+storage gas requirement.
if is_rex5_enabled {
let gas_limit = ctx.tx().gas_limit();
if initial_and_floor_gas.initial_gas > gas_limit {
return Err(InvalidTransaction::CallGasCostMoreThanGasLimit {
gas_limit,
initial_gas: initial_and_floor_gas.initial_gas,
}
.into());
}
if initial_and_floor_gas.floor_gas > gas_limit {
return Err(InvalidTransaction::GasFloorMoreThanGasLimit {
gas_limit,
gas_floor: initial_and_floor_gas.floor_gas,
}
.into());
}
}
}
Ok(initial_and_floor_gas)
}
/// This function copies the logic from `revm::handler::Handler::execution` to and
/// add new account storage gas
#[inline]
fn execution(
&mut self,
evm: &mut Self::Evm,
init_and_floor_gas: &InitialAndFloorGas,
) -> Result<FrameResult, Self::Error> {
if let Some(oog_frame_result) = self.before_execution(evm, init_and_floor_gas)? {
return Ok(oog_frame_result);
}
let gas_limit = evm.ctx().tx().gas_limit() - init_and_floor_gas.initial_gas;
// Create first frame action
let first_frame_input = self.first_frame_input(evm, gas_limit)?;
// Run execution loop
let mut frame_result = self.run_exec_loop(evm, first_frame_input)?;
// Handle last frame result
self.last_frame_result(evm, &mut frame_result)?;
Ok(frame_result)
}
fn reward_beneficiary(
&self,
evm: &mut Self::Evm,
exec_result: &mut <<Self::Evm as EvmTr>::Frame as FrameTr>::FrameResult,
) -> Result<(), Self::Error> {
if evm.ctx().disable_beneficiary {
return Ok(());
}
// Pre-REX6: frozen. Delegate unchanged so stable-spec replay is byte-for-byte —
// the post-execution fee-reward materialisations remain unaccounted exactly as
// historical REX5-and-earlier blocks recorded them.
if !evm.ctx().spec.is_enabled(MegaSpecId::REX6) {
return self.op.reward_beneficiary(evm, exec_result);
}
// REX6: op-revm credits the beneficiary + fee vaults HERE, after `last_frame_result`
// finalised the trackers — so these writes escape DataSize / KV / StateGrowth unless
// accounted now. Deposit / keyless-sandbox txs credit nothing (op-revm early-returns),
// so the diff naturally records nothing for them.
let snapshots = Self::snapshot_fee_recipients(evm)?;
self.op.reward_beneficiary(evm, exec_result)?;
for snapshot in snapshots {
let (balance, now_empty) =
Self::fee_recipient_balance_and_emptiness(evm, snapshot.address)?;
if balance == snapshot.balance {
continue;
}
// One account-info write = 40 bytes DataSize + 1 KV update; a newly materialised
// account also counts as +1 StateGrowth. TX-persistent lane (frames are gone).
let mut limit = evm.ctx().additional_limit.borrow_mut();
limit.data_size.merge_persistent_usage(ACCOUNT_INFO_WRITE_SIZE);
limit.kv_update.merge_persistent_usage(1);
if snapshot.was_empty && !now_empty {
limit.state_growth.merge_persistent_usage(1);
}
}
Ok(())
}
fn last_frame_result(
&mut self,
evm: &mut Self::Evm,
frame_result: &mut <<Self::Evm as EvmTr>::Frame as FrameTr>::FrameResult,
) -> Result<(), Self::Error> {
let is_mini_rex = evm.ctx().spec.is_enabled(MegaSpecId::MINI_REX);
if is_mini_rex {
// Update the additional limit before returning the frame result
evm.ctx().additional_limit.borrow_mut().before_frame_return_result::<true>(frame_result)
}
// Call the inner last_frame_result function first
// This will finalize gas accounting according to REVM's rules:
// - Spends all gas_limit
// - Only refunds remaining gas if is_ok_or_revert()
self.op.last_frame_result(evm, frame_result)?;
// After REVM's gas accounting, we need to return the rescued gas from additional limits.
if is_mini_rex {
let ctx = evm.ctx_mut();
let additional_limit = ctx.additional_limit.borrow();
let gas = frame_result.gas_mut();
gas.erase_cost(additional_limit.rescued_gas);
}
Ok(())
}
fn execution_result(
&mut self,
evm: &mut Self::Evm,
result: <<Self::Evm as EvmTr>::Frame as FrameTr>::FrameResult,
) -> Result<ExecutionResult<Self::HaltReason>, Self::Error> {
// Capture volatile data info for error reporting
let volatile_info = evm
.ctx()
.spec
.is_enabled(MegaSpecId::MINI_REX)
.then(|| {
let volatile_data_tracker = evm.ctx().volatile_data_tracker.borrow();
volatile_data_tracker.get_volatile_data_info()
})
.flatten();
// Deposit-style sandbox txs: bypass op-revm's HaltedDepositPostRegolith conversion so
// that a runtime halt surfaces as `Ok(Halt(actual_reason, actual_gas_used))` instead of
// being squashed into `FailedDeposit(gas_limit)`. The keyless-deploy outer flow needs
// the real halt reason to distinguish runtime halts (which must merge sandbox state and
// charge `sandbox_gas_used` against the outer gas counter) from validation-rejects
// (which still flow through `catch_error` and produce `FailedDeposit`).
let result = if evm.ctx().is_inside_sandbox() &&
evm.ctx().tx().tx_type() == DEPOSIT_TRANSACTION_TYPE
{
match core::mem::replace(evm.ctx().error(), Ok(())) {
Err(ContextError::Db(e)) => return Err(e.into()),
Err(ContextError::Custom(e)) => return Err(Self::Error::from_string(e)),
Ok(_) => (),
}
let exec_result =
post_execution_output(evm.ctx(), result).map_haltreason(OpHaltReason::Base);
evm.ctx().journal_mut().commit_tx();
evm.ctx().chain_mut().clear_tx_l1_cost();
evm.ctx().local_mut().clear();
evm.frame_stack().clear();
exec_result
} else {
self.op.execution_result(evm, result)?
};
Ok(result.map_haltreason(|reason| {
let mut additional_limit = evm.ctx().additional_limit.borrow_mut();
if additional_limit.is_exceeding_limit_halt(&reason) {
if let Some(access_type) = volatile_info {
if let Some(halt) =
additional_limit.detained_compute_gas_halt_reason(access_type)
{
return halt;
}
}
// normal additional limit exceeded (no volatile data access, or detention
// was not more restrictive than the per-tx compute gas limit)
additional_limit
.check_limit()
.maybe_halt_reason()
.expect("should have a halt reason")
} else {
// not due to additional limit exceeded
MegaHaltReason::Base(reason)
}
}))
}
fn catch_error(
&self,
evm: &mut Self::Evm,
error: Self::Error,
) -> Result<ExecutionResult<Self::HaltReason>, Self::Error> {
let result = self.op.catch_error(evm, error)?;
Ok(result.map_haltreason(MegaHaltReason::Base))
}
}
impl<DB, EVM, ERROR, ExtEnvs: ExternalEnvTypes> InspectorHandler
for MegaHandler<EVM, ERROR, EthFrame<EthInterpreter>>
where
DB: Database,
MegaContext<DB, ExtEnvs>: ContextTr<Journal = Journal<DB>>,
Journal<DB>: revm::inspector::JournalExt,
EVM: InspectorEvmTr<
Context = MegaContext<DB, ExtEnvs>,
Frame = EthFrame<EthInterpreter>,
Inspector: Inspector<
<<Self as revm::handler::Handler>::Evm as EvmTr>::Context,
EthInterpreter,
>,
>,
ERROR: EvmTrError<EVM>
+ From<OpTransactionError>
+ From<MegaTransactionError>
+ FromStringError
+ IsTxError
+ core::fmt::Debug,
{
type IT = EthInterpreter;
fn inspect_run_without_catch_error(
&mut self,
evm: &mut Self::Evm,
) -> Result<ExecutionResult<Self::HaltReason>, Self::Error> {
self.before_run(evm)?;
let init_and_floor_gas = self.validate(evm)?;
let eip7702_refund = self.pre_execution(evm)? as i64;
let mut frame_result = self.inspect_execution(evm, &init_and_floor_gas)?;
self.post_execution(evm, &mut frame_result, init_and_floor_gas, eip7702_refund)?;
self.execution_result(evm, frame_result)
}
/// This function copies the logic from `Handler::execution` to add
/// new account storage gas and early OOG check with inspector support.
#[inline]
fn inspect_execution(
&mut self,
evm: &mut Self::Evm,
init_and_floor_gas: &InitialAndFloorGas,
) -> Result<FrameResult, Self::Error> {
if let Some(oog_frame_result) = self.before_execution(evm, init_and_floor_gas)? {
return Ok(oog_frame_result);
}
let gas_limit = evm.ctx().tx().gas_limit() - init_and_floor_gas.initial_gas;
// Create first frame action
let first_frame_input = self.first_frame_input(evm, gas_limit)?;
// Run execution loop with inspector
let mut frame_result = self.inspect_run_exec_loop(evm, first_frame_input)?;
// Handle last frame result
self.last_frame_result(evm, &mut frame_result)?;
Ok(frame_result)
}
}
impl<DB, INSP, ExtEnvs: ExternalEnvTypes> revm::handler::EvmTr for MegaEvm<DB, INSP, ExtEnvs>
where
DB: Database,
{
type Context = MegaContext<DB, ExtEnvs>;
type Instructions = MegaInstructions<DB, ExtEnvs>;
type Precompiles = PrecompilesMap;
type Frame = EthFrame<EthInterpreter>;
#[inline]
fn ctx(&mut self) -> &mut Self::Context {
&mut self.inner.ctx
}
#[inline]
fn ctx_ref(&self) -> &Self::Context {
&self.inner.ctx
}
#[inline]
fn ctx_instructions(&mut self) -> (&mut Self::Context, &mut Self::Instructions) {
(&mut self.inner.ctx, &mut self.inner.instruction)
}
#[inline]
fn ctx_precompiles(&mut self) -> (&mut Self::Context, &mut Self::Precompiles) {
(&mut self.inner.ctx, &mut self.inner.precompiles)
}
fn frame_stack(&mut self) -> &mut FrameStack<Self::Frame> {
&mut self.inner.frame_stack
}
fn frame_init(
&mut self,
mut frame_init: <Self::Frame as revm::handler::FrameTr>::FrameInit,
) -> Result<FrameInitResult<'_, Self::Frame>, ContextDbError<Self::Context>> {
let is_mini_rex_enabled = self.ctx().spec.is_enabled(MegaSpecId::MINI_REX);
let is_rex_enabled = self.ctx().spec.is_enabled(MegaSpecId::REX);
let is_rex3_enabled = self.ctx().spec.is_enabled(MegaSpecId::REX3);
let is_rex4_enabled = self.ctx().spec.is_enabled(MegaSpecId::REX4);
let is_rex5_enabled = self.ctx().spec.is_enabled(MegaSpecId::REX5);
let additional_limit = self.ctx().additional_limit.clone();
// Check if this is a call to the oracle contract and mark it as accessed.
// This handles both direct transaction calls and internal CALL operations.
// Rex3+: Oracle access gas detention is triggered by SLOAD (not CALL), so skip this
// CALL-based check for Rex3 and later specs.
//
// The check uses `target_address` which equals the oracle address for CALL and
// STATICCALL, but equals the caller's address for CALLCODE and DELEGATECALL (since
// those execute in the caller's state context). CALLCODE and DELEGATECALL are therefore
// never detected here by design — they do not access oracle state.
//
// MiniRex: Only CALL triggers oracle access detection. STATICCALL, CALLCODE, and
// DELEGATECALL bypass it.
// Rex: STATICCALL is added to oracle access detection (unifying CALL-like behavior).
if is_mini_rex_enabled && !is_rex3_enabled {
if let FrameInput::Call(call_inputs) = &frame_init.frame_input {
let detect_oracle = match call_inputs.scheme {
CallScheme::Call => true,
// Rex fixes the bug in MiniRex where STATICCALL bypasses oracle access
// detection.
CallScheme::StaticCall => is_rex_enabled,
// CALLCODE and DELEGATECALL have target_address = caller (not oracle),
// so check_and_mark_oracle_access would never match anyway.
CallScheme::CallCode | CallScheme::DelegateCall => false,
};
// Mega system address is exempted from volatile data access enforcement.
if detect_oracle && call_inputs.caller != self.ctx().system_address {
let volatile_data_tracker = self.ctx().volatile_data_tracker.clone();
let mut tracker = volatile_data_tracker.borrow_mut();
if tracker.check_and_mark_oracle_access(&call_inputs.target_address) {
if let Some(compute_gas_limit) = tracker.get_compute_gas_limit() {
additional_limit.borrow_mut().set_compute_gas_limit(compute_gas_limit);
}
}
}
}
}
// REX4+: If a TX-level limit is already exceeded (e.g., intrinsic DataSize/KVUpdate
// overflow from before_tx_start), abort before interceptor dispatch. Interceptors
// return synthetic results that skip before_frame_init(), which would otherwise
// catch the exceeded limit.
//
// Gated to REX4 only: pre-REX4 specs use TX-global check_limit() which catches
// intrinsic overflow during execution. Changing pre-REX4 behavior would break replay.
if is_rex4_enabled {
// Separate borrow scope: the RefMut must be dropped before push_empty_frame
// borrows again.
let exceeded = additional_limit
.borrow_mut()
.frame_result_if_exceeding_limit(&frame_init.frame_input);
if let Some(frame_result) = exceeded {
additional_limit.borrow_mut().push_empty_frame();
return Ok(FrameInitResult::Result(frame_result));
}
}
// REX5+: enforce `CALL_STACK_LIMIT` before interceptor dispatch. Interceptors
// short-circuit before revm's `make_call_frame` runs its own depth check, so
// without this guard a system contract could be invoked at unbounded depth.
// Scope mirrors interceptor dispatch (Call/StaticCall only); other schemes still
// flow into revm where its own depth check applies.
if is_rex5_enabled {
if let FrameInput::Call(call_inputs) = &frame_init.frame_input {
if matches!(call_inputs.scheme, CallScheme::Call | CallScheme::StaticCall) &&
frame_init.depth > CALL_STACK_LIMIT as usize
{
let frame_result = gen_call_too_deep_result(call_inputs);
additional_limit.borrow_mut().push_empty_frame();
return Ok(FrameInitResult::Result(frame_result));
}
}
}
// System contract interception dispatch.
// Each interceptor checks target address and ABI-decodes function selectors.
// Side-effect interceptors (oracle hint) usually return None.
// Short-circuiting paths return Some(FrameResult).
// These synthetic results skip `AdditionalLimit::before_frame_init`; we only push an
// empty tracking frame to keep the additional-limit stacks aligned.
//
// Only `CALL` and `STATICCALL` enter interceptor dispatch. `CALLCODE` and
// `DELEGATECALL` execute in the caller's state context, so intercepting them
// would apply system-contract logic in the wrong state context — the scheme
// guard enforces this policy explicitly rather than relying on upstream
// call-frame semantics to keep `target_address` distinct.
if let FrameInput::Call(call_inputs) = &frame_init.frame_input {
if matches!(call_inputs.scheme, CallScheme::Call | CallScheme::StaticCall) {
if let Some(result) =
dispatch_system_contract_interceptors(self.ctx(), call_inputs, frame_init.depth)
{
// Push an empty frame to keep the limit tracker stack balanced:
// `frame_return_result` / `last_frame_result` will pop a frame, but
// `after_frame_init` (which normally pushes) was skipped.
if is_mini_rex_enabled {
additional_limit.borrow_mut().push_empty_frame();
}
return Ok(FrameInitResult::Result(result));
}
}
}
if is_mini_rex_enabled {
if let Some(frame_result) = additional_limit
.borrow_mut()
.before_frame_init(&mut frame_init, self.ctx().journal_mut())?
{
return Ok(FrameInitResult::Result(frame_result));
}
}
// call the inner frame_init function to initialize the frame
let init_result = self.inner.frame_init(frame_init)?;
// Apply the additional limits only when the `MINI_REX` spec is enabled.
if is_mini_rex_enabled {
additional_limit.borrow_mut().after_frame_init(&init_result);
}
Ok(init_result)
}
/// This method copies the logic from `revm::handler::EvmTr::frame_run` to and add additional
/// logic before `process_next_action` to handle the additional limit.
#[inline]
fn frame_run(
&mut self,
) -> Result<FrameInitOrResult<Self::Frame>, ContextDbError<Self::Context>> {
let frame = self.inner.frame_stack.get();
let context = &mut self.inner.ctx;
let instructions = &mut self.inner.instruction;
// Before frame_run Hook
let mut action = if let Some(action) = Self::before_frame_run(context, frame)? {
action
} else {
frame.interpreter.run_plain(instructions.instruction_table(), context)
};
// After frame_run instructions Hook
Self::after_frame_run_instructions(context, frame, &mut action)?;
// Record gas remaining before frame action processing
let gas_remaining_before = match (&action, context.spec.is_enabled(MegaSpecId::MINI_REX)) {
(InterpreterAction::Return(interpreter_result), true) => {
Some(interpreter_result.gas.remaining())
}
_ => None,
};
// Process the frame action, it may need to create a new frame or return the current frame
// result.
let mut frame_output = frame
.process_next_action::<_, ContextDbError<Self::Context>>(context, action)
.inspect(|i| {
if i.is_result() {
frame.set_finished(true);
}
})?;
// After frame_run Hook
Self::after_frame_run(context, &mut frame_output, gas_remaining_before)?;
Ok(frame_output)
}
fn frame_return_result(
&mut self,
mut result: <Self::Frame as revm::handler::FrameTr>::FrameResult,
) -> Result<
Option<<Self::Frame as revm::handler::FrameTr>::FrameResult>,
ContextDbError<Self::Context>,
> {
let ctx = self.ctx_ref();
let is_mini_rex = ctx.spec.is_enabled(MegaSpecId::MINI_REX);
// Apply the additional limits only when the `MINI_REX` spec is enabled.
if is_mini_rex {
// call the `on_frame_return` function to update the `AdditionalLimit` if the limit is
// exceeded, return the error frame result
ctx.additional_limit.borrow_mut().before_frame_return_result::<false>(&mut result);
}
// Call the inner frame_return_result function to return the frame result.
let ret = self.inner.frame_return_result(result)?;
// Rex4+: Re-enable volatile data access when the disabling frame has returned.
// The inner handler has already popped the frame and committed/reverted the journal,
// so journal depth is decremented at this point. If it dropped below disable_depth,
// the frame that invoked disableVolatileDataAccess() has returned and the disable
// should no longer restrict sibling calls.
if self.ctx_ref().spec.is_enabled(MegaSpecId::REX4) {
let depth = self.ctx_ref().journal_ref().depth();
self.ctx_ref().volatile_data_tracker.borrow_mut().enable_access_if_returning(depth);
}
Ok(ret)
}
}
impl<DB, INSP, ExtEnvs: ExternalEnvTypes> revm::inspector::InspectorEvmTr
for MegaEvm<DB, INSP, ExtEnvs>
where
DB: Database,
INSP: Inspector<MegaContext<DB, ExtEnvs>>,
{
type Inspector = INSP;
fn inspector(&mut self) -> &mut Self::Inspector {
&mut self.inner.inspector
}
fn ctx_inspector(&mut self) -> (&mut Self::Context, &mut Self::Inspector) {
(&mut self.inner.ctx, &mut self.inner.inspector)
}
fn ctx_inspector_frame(
&mut self,
) -> (&mut Self::Context, &mut Self::Inspector, &mut Self::Frame) {
(&mut self.inner.ctx, &mut self.inner.inspector, self.inner.frame_stack.get())
}
fn ctx_inspector_frame_instructions(
&mut self,
) -> (&mut Self::Context, &mut Self::Inspector, &mut Self::Frame, &mut Self::Instructions) {
(
&mut self.inner.ctx,
&mut self.inner.inspector,
self.inner.frame_stack.get(),
&mut self.inner.instruction,
)
}
/// Override `inspect_frame_init` to handle the case when inspector returns early.
///
/// When an inspector's `call` or `create` hook returns `Some(outcome)`, the default
/// implementation returns early without calling `frame_init`. This means no frame is
/// pushed to the additional limit trackers. However, `frame_return_result` will still
/// be called and expect to pop a frame.
///
/// To keep the frame stacks aligned, we push a dummy frame when inspector returns early.
#[inline]
fn inspect_frame_init(
&mut self,
mut frame_init: <Self::Frame as FrameTr>::FrameInit,
) -> Result<FrameInitResult<'_, Self::Frame>, ContextDbError<Self::Context>> {
let (ctx, inspector) = self.ctx_inspector();
let is_mini_rex_enabled = ctx.spec.is_enabled(MegaSpecId::MINI_REX);
let is_rex4_enabled = ctx.spec.is_enabled(MegaSpecId::REX4);
let is_rex5_enabled = ctx.spec.is_enabled(MegaSpecId::REX5);
// Check if inspector wants to skip this call/create
if let Some(mut output) = frame_start(ctx, inspector, &mut frame_init.frame_input) {
// Inspector intercepted — `frame_init()` is skipped entirely, so neither
// `frame_result_if_exceeding_limit` nor `before_frame_init` would run.
//
// The priority order below mirrors `frame_init`'s exact order so that a
// TX-level additional-limit exceed is reported instead of being shadowed by
// a CallTooDeep guard:
// 1. TX-level limit exceed (REX4+)
// 2. CALL_STACK_LIMIT depth guard (REX5+)
// 3. Deliver the inspector's synthetic output
// Each early-return path calls `frame_end` to keep inspector callbacks paired.
// (1) REX4+: if a TX-level limit is already exceeded (e.g., intrinsic
// overflow), abort to ensure correct gas rescue before inspector callbacks.
// Gated to REX4 to avoid changing stable spec behavior.
if is_rex4_enabled {
let exceeded = ctx
.additional_limit
.borrow_mut()
.frame_result_if_exceeding_limit(&frame_init.frame_input);
if let Some(mut frame_result) = exceeded {
ctx.additional_limit.borrow_mut().push_empty_frame();
frame_end(ctx, inspector, &frame_init.frame_input, &mut frame_result);
return Ok(ItemOrResult::Result(frame_result));
}
}
// (2) REX5+: enforce CALL_STACK_LIMIT for Call/StaticCall so an inspector
// cannot deliver a synthetic call result at unbounded depth, mirroring the
// protection added to `frame_init` before interceptor dispatch.
if is_rex5_enabled {
if let FrameInput::Call(call_inputs) = &frame_init.frame_input {
if matches!(call_inputs.scheme, CallScheme::Call | CallScheme::StaticCall) &&
frame_init.depth > CALL_STACK_LIMIT as usize
{
let mut frame_result = gen_call_too_deep_result(call_inputs);
ctx.additional_limit.borrow_mut().push_empty_frame();
frame_end(ctx, inspector, &frame_init.frame_input, &mut frame_result);
return Ok(ItemOrResult::Result(frame_result));
}
}
}
// (3) MINI_REX+: push empty frame to keep the limit tracker stack balanced
// (`before_frame_return_result` will pop).
if is_mini_rex_enabled {
ctx.additional_limit.borrow_mut().push_empty_frame();
}
frame_end(ctx, inspector, &frame_init.frame_input, &mut output);
return Ok(ItemOrResult::Result(output));
}
// Normal path - delegate to frame_init (which pushes a real frame)
let frame_input = frame_init.frame_input.clone();
if let ItemOrResult::Result(mut output) = self.frame_init(frame_init)? {
let (ctx, inspector) = self.ctx_inspector();
frame_end(ctx, inspector, &frame_input, &mut output);
return Ok(ItemOrResult::Result(output));
}
// Frame created successfully - initialize the interpreter
let (ctx, inspector, frame) = self.ctx_inspector_frame();
inspector.initialize_interp(frame.interpreter(), ctx);
Ok(ItemOrResult::Item(frame))
}
/// This method copies the logic from `MegaEvm::frame_run` with inspector support.
/// It adds the same additional limit checks while using `inspect_instructions` instead of
/// `run_plain`.
#[inline]
fn inspect_frame_run(
&mut self,
) -> Result<FrameInitOrResult<Self::Frame>, ContextDbError<Self::Context>> {
let (ctx, inspector, frame, instructions) = self.ctx_inspector_frame_instructions();
let mut action = if let Some(action) = Self::before_frame_run(ctx, frame)? {
action
} else {
inspect_instructions(
ctx,
frame.interpreter(),
inspector,
instructions.instruction_table(),
)
};
// Apply additional limits and storage gas cost
Self::after_frame_run_instructions(ctx, frame, &mut action)?;
// Record gas remaining before frame action processing
let gas_remaining_before = match (&action, ctx.spec.is_enabled(MegaSpecId::MINI_REX)) {
(InterpreterAction::Return(interpreter_result), true) => {
Some(interpreter_result.gas.remaining())
}
_ => None,
};
// Process the frame action, it may need to create a new frame or return the current frame
// result.
let mut frame_output = frame
.process_next_action::<_, ContextDbError<Self::Context>>(ctx, action)
.inspect(|i| {
if i.is_result() {
frame.set_finished(true);
}
})?;
// After frame_run Hook
Self::after_frame_run(ctx, &mut frame_output, gas_remaining_before)?;
// Call frame_end for inspector callback
if let ItemOrResult::Result(frame_result) = &mut frame_output {
let (ctx, inspector, frame) = self.ctx_inspector_frame();
frame_end(ctx, inspector, frame.frame_input(), frame_result);
}
Ok(frame_output)
}
}
/// Builds a `FrameResult` matching revm's `make_call_frame` `CallTooDeep` return:
/// `Gas::new(gas_limit)` (no spend, fully refundable to caller via `erase_cost`),
/// empty output, and the caller's `return_memory_offset`.
///
/// Used by the REX5+ depth guard that runs before system-contract interceptor dispatch.
/// Interceptors short-circuit before revm's own depth check, so without this guard a
/// system contract could be invoked at any call-stack depth.
fn gen_call_too_deep_result(call_inputs: &revm::interpreter::CallInputs) -> FrameResult {
FrameResult::Call(CallOutcome::new(
InterpreterResult::new(
InstructionResult::CallTooDeep,
Bytes::new(),
Gas::new(call_inputs.gas_limit),
),
call_inputs.return_memory_offset.clone(),
))
}
/// Builds a top-level `FrameResult` for the case where `validate()` returned an
/// `initial_gas` that exceeds the transaction's `gas_limit` by the time
/// `before_execution` re-checks it.
///
/// The frame result carries `InstructionResult::OutOfGas` with `Gas::new_spent(gas_limit)`
/// (entire tx budget burnt, no remaining), matching how an EVM-level OOG halt is
/// represented for top-level transactions. The `FrameResult` variant (`Call` vs `Create`)
/// is chosen by `tx_kind` so the downstream output helper can extract the right
/// fields without re-matching on transaction kind.
///
/// Called from `MegaHandler::before_execution` when `tx.gas_limit() < init_gas`,
/// which can happen after `MegaHandler::validate` has added any MegaETH-specific
/// intrinsic gas (calldata storage gas, REX intrinsic storage gas, callee-side
/// new-account storage gas, or the REX5+ deposit-caller storage gas).
fn gen_oog_frame_result(tx_kind: TxKind, gas_limit: u64) -> FrameResult {
match tx_kind {
TxKind::Call(_address) => FrameResult::Call(CallOutcome::new(
InterpreterResult::new(
InstructionResult::OutOfGas,
Bytes::new(),
Gas::new_spent(gas_limit),
),
Default::default(),
)),
TxKind::Create => FrameResult::Create(CreateOutcome::new(
InterpreterResult::new(
InstructionResult::OutOfGas,
Bytes::new(),
Gas::new_spent(gas_limit),
),
None,
)),
}
}