惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 聂微东
GbyAI
GbyAI
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 叶小钗
A
About on SuperTechFans
M
MIT News - Artificial intelligence
宝玉的分享
宝玉的分享
雷峰网
雷峰网
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Martin Fowler
Martin Fowler
Google DeepMind News
Google DeepMind News
博客园 - Franky
B
Blog RSS Feed
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
EIP-7928 parallelization, native privacy roadmap, EIP-814...
Alexandra · 2026-05-28 · via DEV Community

Welcome to our weekly digest, where we unpack the latest in account and chain abstraction and the broader infrastructure shaping Ethereum.

This week: EIP-7928 and how Block-level Access Lists bring parallel execution to Glamsterdam; Vitalik maps Ethereum’s near-term native privacy roadmap around AA, FOCIL, and keyed nonces; Alex Forshtat delivers a deep dive on EIP-8141 frame transactions at ETHPrague; and Vitalik publishes his perspective on a leaner, more focused Ethereum Foundation.

Please fasten your belts!

EIP-7928: Block-level Access Lists Bring Parallel Execution to Glamsterdam

EF researcher Toni Wahrstätter published a detailed thread breaking down EIP-7928, the execution-layer headliner for Glamsterdam alongside ePBS. The proposal adds a Block Access List (BAL) to every Ethereum block — a list of every account and storage slot the block touches, plus post-transaction state diffs showing exactly what changed after each transaction.

With state diffs available upfront, client software no longer has to discover storage locations while executing. Everything needed can be prefetched into cache in parallel before execution begins, resolving transaction dependencies in advance and enabling true parallel execution across Geth, Nethermind, Besu, Erigon, Reth, and others.

The gains are already measurable. On 6-core machines, EL clients validate blocks up to 5x faster with BALs in place. Combined with ePBS decoupling the block from the payload, giving validators 2–4x more execution time, Glamsterdam will ship with a 200M gas limit, with 300M described as a realistic near-term follow-up. Snap sync also improves: BALs let nodes skip the healing phase entirely when catching up to the chain tip.

For AA builders, higher throughput and cheaper state access directly reduce the cost of batched UserOps, gasless flows, and cross-chain intents at scale. EIP-7928 is one of the clearest signs yet that Ethereum’s base-layer scaling is moving from theory into production.

EIP-7928: Block-level Access Lists Bring Parallel Execution to Glamsterdam

Mapping Ethereum’s Near-Term Native Privacy Roadmap

Vitalik Buterin outlined three near-term steps to make privacy a native property of Ethereum. The post extends the cypherpunk reset he outlined in January and the privacy framing he introduced at the Web3 Festival in Hong Kong earlier this spring.

The first initiative combines account abstraction with FOCIL. Right now, private transactions pass through the public mempool where block builders can see and exclude them. FOCIL changes this by allowing a committee of validators to propose transaction inclusion lists that builders are required to honour — or risk having their block rejected. Combined with AA, private transactions gain first-class inclusion guarantees at the protocol level.

The second step is keyed nonces, proposed in EIP-8250. Ethereum’s current sequential nonce model creates a bottleneck when multiple private transactions need to execute in parallel from the same account. Keyed nonces let each spend use its own nonce domain, including one derived from a privacy nullifier, making transactions on different keys replay-independent.

The third is access-layer work, centred on the Kohaku privacy toolkit and private reads. This targets the metadata layer: hiding users’ wallet queries from centralised node providers so that RPC calls don’t leak which addresses a user is watching. Buterin framed all three as essential for giving ETH true “moneyness” and argued that L1 privacy could drive more activity back to Ethereum mainnet. None of the three are live yet.

EIP-8141 Frame Transactions: Deep Dive from ETHPrague

At ETHPrague 2026, ERC-4337 core developer Alex Forshtat delivered a technical deep dive on EIP-8141, shared this week by the @erc4337 account. The talk is the clearest walkthrough yet of why frame transactions represent an endgame account abstraction design rather than another incremental layer.

The core change: instead of a single top-level execution frame, a frame transaction contains multiple frames each with an explicit role modifier. The VERIFY frame, which must end with an APPROVE opcode, handles validation and signals to the protocol that if this frame reverts, the transaction cannot be included in a valid block at all. This separates validation from execution at the protocol level, replacing the fixed ECDSA + nonce + balance check with fully programmable logic.

For builders, the practical implications are significant. Frame transactions natively support gas abstraction via a canonical paymaster, atomic batching across multiple execution frames, passkey signatures, and full backward compatibility with existing EOAs — which receive a canonical default validation code automatically. EIP-8141 also provides a clean path to post-quantum signatures: the VERIFY frame decouples transaction authorization from ECDSA entirely, so accounts can adopt quantum-safe schemes without changing their address.

EIP-8141 currently holds Considered for Inclusion status for the Hegotá fork (H2 2026). Forshtat addressed the mempool DoS risk directly: a mempool validation strategy restricts storage reads during validation to the sender’s own storage and caps verification gas at ~100,000 units, with the canonical paymaster required for public mempool propagation. The full talk is worth watching for any team thinking seriously about the native AA transition.

Vitalik Outlines a Leaner, More Focused Ethereum Foundation

On May 24, Vitalik Buterin published a lengthy post on X addressing months of turbulence at the Ethereum Foundation, defending its restructuring and laying out his personal view of the EF’s long-term direction. The post came after eight senior EF contributors left or announced departures in 2026, five of them in May, including all three Protocol Cluster leads.

Buterin framed the EF’s mandate around what he called the CROPS dimension: censorship resistance, capture resistance, openness, privacy, and security. He argued that maximising throughput and speed at the expense of these properties leads to mediocrity, and that Ethereum should be “deeply impressive” on CROPS rather than competing on execution speed alone. He also noted that the EF holds only 0.16% of all ETH, far below the 10–50% typical for other blockchain foundations, and committed to reducing ETH sales to prioritise longevity.

On governance, Buterin confirmed that interim co-executive director Bastian Aue is leading the transition, that the board is expanding, and that his own influence within the EF will continue to decrease — which he described as the outcome he wants. He also pointed to AI-assisted formal verification as a near-term path to making Ethereum provably bug-free.

For the AA ecosystem, the CROPS framing matters directly. Privacy and censorship resistance, two of the five pillars, map precisely onto the work covered elsewhere in this issue: the native privacy roadmap, FOCIL, and EIP-8141’s design goals around uncensorable transaction inclusion and signature agility. The EF’s stated focus, whatever the organisational turbulence, remains aligned with the infrastructure AA builders depend on.


Start exploring Account Abstraction with Etherspot!

  • Learn more about account abstraction here.
  • Head to our docs and read all about Etherspot Modular SDK.
  • Skandha — developer-friendly Typescript ERC4337 Bundler.
  • Arka — an open-source Paymaster Service for gasless & sponsored transactions.
  • Explore our TransactionKit, a React library for fast & simple Web3 development.
  • Follow us on X (Twitter) and join our Discord.

❓Is your dApp ready for Account Abstraction? Check it out here: https://eip1271.io/

Follow us

Etherspot Website | X | Discord | Telegram | Github | Developer Portal