Hardforks and Specs
MegaETH hardfork and spec versioning — how behavioral changes are versioned, activated, and tracked across network upgrades.
MegaETH versions its verifiable behavior through hardforks and specs. This page defines both concepts and summarizes what each spec introduces.
Hardfork vs Spec
The protocol distinguishes between two related concepts:
Hardfork — A network upgrade event: when changes are activated on the chain. A hardfork may include protocol-level changes beyond MegaEVM (e.g., networking, state sync, RPC behavior). Represented as
MegaHardforkin the reference implementation.Spec — A set of MegaETH verifiable behaviors: what a correct node does. A spec captures the execution-layer semantics that determine node correctness. Represented as
MegaSpecIdin the reference implementation.
Multiple hardforks can map to the same spec. A hardfork can also map to an older spec. For example: MiniRex → MINI_REX, MiniRex1 → EQUIVALENCE (rollback), MiniRex2 → MINI_REX (restoration).
This documentation covers specs — the verifiable behavioral definitions that determine correctness of a MegaETH node. Protocol-level changes outside the verifiable execution layer (e.g., networking, peer discovery) that are part of a hardfork are not covered here.
Spec Progression
EQUIVALENCE → MINI_REX → REX → REX1 → REX2 → REX3 → REX4 (unstable)Each newer spec includes all previous behaviors. All specs build on Optimism Isthmus (Ethereum Prague) as the base layer. The latest spec (currently REX4) may be marked unstable, meaning its semantics can still change before network activation.
Backward Compatibility
EVM semantics for stable (activated) specs are frozen. A new spec may add behavior or change the unstable spec, but it never alters what an existing stable spec does. Every spec carries the invariant: "Stable pre-{Spec} semantics MUST remain unchanged."
This means:
Contracts deployed under a given spec will continue to behave identically after future upgrades.
Adding or modifying a system contract requires introducing a new spec.
Changing gas costs, opcode behavior, or resource limits requires a new spec.
Implementations MUST gate spec-specific behavior on the active spec.
Spec Summary
EQUIVALENCE
The baseline spec. Maintains full compatibility with Optimism Isthmus EVM. Adds block environment access tracking for parallel execution support.
MINI_REX
The first spec to introduce MegaETH-specific modifications:
Multidimensional resource limits — Compute gas (1B), data size (3.125 MB), KV updates (125K)
Dynamic gas costs — SALT bucket-based scaling
Gas detention — Volatile data access triggers gas limiting
SELFDESTRUCT disabled
Large contract support — 512 KB contracts (21x increase from 24 KB)
See MiniRex Network Upgrade for full details.
REX
Refines the storage gas economics introduced in MINI_REX:
Refined storage gas formulas — Gradual scaling (20K–32K base costs vs MiniRex's 2M)
Transaction intrinsic storage gas — 39,000 flat fee for all transactions
Zero cost fresh storage — Minimum-sized SALT buckets charge 0 storage gas
Security fixes — DELEGATECALL, STATICCALL, CALLCODE properly enforce gas forwarding and oracle access detection
State growth tracking — New resource limit dimension
See Rex Network Upgrade for full details.
REX1
Limit reset fix — Resets compute gas limits at the start of each transaction
Inherits Rex semantics fully
See Rex1 Network Upgrade for full details.
REX2
SELFDESTRUCT restored — Re-enabled with EIP-6780 semantics
KeylessDeploy system contract — Enables deterministic cross-chain deployment (Nick's Method)
See Rex2 Network Upgrade for full details.
REX3
Increased oracle access gas limit — Raised from 1M to 20M
SLOAD-based oracle detention — Triggers on SLOAD from oracle storage instead of CALL to oracle contract
Keyless deploy compute gas tracking — Records the 100K overhead as compute gas
See Rex3 Network Upgrade for full details.
REX4 (unstable)
Rex4 is the current unstable specification and is subject to change before activation.
Per-call-frame resource budgets — All four resource dimensions (compute gas, data size, KV updates, state growth) are bounded per call frame with 98/100 forwarding
Relative gas detention cap — Effective detained limit is
current_usage + capinstead of an absolute capStorage gas stipend — Value-transferring CALL/CALLCODE receives an additional 23,000 gas for storage gas operations, fixing LOG events in
receive()under the dual gas modelMegaAccessControl system contract — Allows contracts to proactively disable volatile data access for a call subtree
MegaLimitControl system contract — Allows querying effective remaining compute gas under detention and call frame limits
Keyless deploy sandbox environment inheritance — Sandbox inherits parent transaction's external environment for dynamic pricing and oracle behavior
See Rex4 Network Upgrade for full details.
Last updated