On May 31, 2026 at 00:57:31 UTC, AERE Network activated the Pectra EVM ruleset at block 2,075,363. The chain produced its post-fork block on schedule with no downtime, no rollback, and no halt. Three of three validators participated cleanly through a rolling restart performed an hour beforehand.
Pectra is the EVM ruleset adopted by Ethereum mainnet on May 7, 2025. AERE has now reached functional parity with the current Ethereum mainnet EVM specification. Any Solidity or Vyper contract written for Ethereum post-Pectra runs identically on AERE chain 2800.
| EIP | What it enables |
|---|---|
| EIP-7702 | EOA delegation to smart-contract code. A normal wallet (MetaMask, Trust, Rabby) can temporarily act like a smart wallet, batched transactions, sponsored gas, daily spending limits, session keys, without changing its address. |
| EIP-2537 | BLS12-381 curve precompiles at addresses 0x0b, 0x11. On-chain BLS signature verification becomes ~70× cheaper. Powers trustless cross-chain proofs, light clients, validator aggregate signatures. |
| EIP-2935 | Historical block hashes (up to 8,192 blocks back) accessible via a system contract. Enables trustless cross-chain state proofs without external oracle. |
| EIP-1153 | TSTORE / TLOAD transient storage opcodes. Gas-efficient reentrancy guards, callbacks, and atomic-execution patterns. |
| EIP-5656 | MCOPY opcode for efficient memory copying. Reduces gas costs for many libraries. |
| EIP-6780 | SELFDESTRUCT only deletes contracts created in the same transaction. Major security improvement against state-bloat and upgrade-rug attacks. |
| EIP-7516 | BLOBBASEFEE opcode (returns 0 on AERE since the chain has no consensus-layer blob market). |
The upgrade was executed as a timestamp-activated hardfork. The procedure:
v26.4.0 running on all 3 validators (Pectra-capable).genesis.json with cancunTime and pragueTime set to unix timestamp 1780189051 (45 minutes in the future).genesis.pre-pectra.bak on every validator.00:57:31 UTC.blobGasUsed, excessBlobGas, parentBeaconBlockRoot (Cancun) and requestsHash (Prague). Hyperledger Besu only emits these fields when the corresponding hardforks are active.AERE is a permissioned-validator QBFT chain, it does not have a separate proof-of-stake consensus layer like Ethereum mainnet. Two Pectra EIPs are affected by this:
0x00…00 because AERE has no beacon chain. Applications that depend on a real beacon root should not target AERE for that data; everything else is unaffected.blobGasUsed, excessBlobGas) but AERE does not produce or accept blob-bearing transactions. BLOBBASEFEE always returns 0.All other Pectra EIPs are fully functional, including the marquee additions: EIP-7702 (account abstraction), EIP-2537 (BLS precompiles), and EIP-2935 (historical block hashes).
The Pectra ruleset is the foundation for several upcoming AERE features:
Solidity compilers from 0.8.24 onwards support Cancun opcodes. 0.8.25+ recommended. Hardhat, Foundry, and Remix all support targeting Pectra-equivalent chains by setting the EVM version to cancun or prague in their configuration. Examples:
hardhat.config.ts, set solidity.settings.evmVersion = "prague".foundry.toml, set evm_version = "prague".0x04 (EIP-7702 SetCode) is supported in [email protected]+.The AERE SDK has been bumped to v0.4.0 with the Pectra ruleset documented in addresses.ts. The documentation page now includes a full EVM-ruleset section.
The next ruleset upgrade on the roadmap is Fusaka, Ethereum's December 2025 hardfork, which adds the secp256r1 precompile (RIP-7951). That precompile makes native Face ID, Touch ID, and Windows Hello signature verification economically viable on-chain (~3.5k gas instead of ~250k via Solidity). It is the cryptographic foundation for passkey-based wallet flows. Activation date will be announced separately.
Beyond that, the AERE engineering plan includes the Pyth Network pull-oracle deployment, Hyperlane cross-chain messaging, the Across SpokePool for intent-based bridging, drand-backed verifiable randomness, a batch-auction settlement contract for MEV-resistant swaps on AereSwap, a staked-AERE gas-quota paymaster, and a developer-fee-share programme. Each of these will land as an independent upgrade, no single chain-halting moment is required for any of them.
The Pectra activation makes those features possible at modern EVM gas costs. The work continues.
← Back to all posts