nero_eth Profile Banner
Toni Wahrstätter ⟠ Profile
Toni Wahrstätter ⟠

@nero_eth

Followers
8K
Following
5K
Media
289
Statuses
2K

serving ethereum at @ethereumfndn

Joined December 2021
Don't wanna be here? Send us removal request.
@nero_eth
Toni Wahrstätter ⟠
6 months
Ethereum's execution layer scaling roadmap is on track: - Continuous Gas Limit Increases (EIP-7935) - History Expiry (EIP-4444) - Delayed Execution (EIP-7886) - Block Access Lists (EIP-7928) - Block-Level Warming (EIP-7863) Here's a short thread with additional context👇
127
146
803
@joshdavislight
joshdavis.eth 🐙
2 days
1/🧵 Applications for the EF 2026 Internship Program are now open. A paid, full-time, 12-week opportunity to work directly with the teams advancing the Ethereum protocol and ecosystem.
18
76
387
@nero_eth
Toni Wahrstätter ⟠
14 days
The case for Payload Chunking, in one picture:
@nero_eth
Toni Wahrstätter ⟠
16 days
Blockchains must scale. Other chains bet on sharding, speculative parallelism, or micro-blocks. Ethereum can cherry-pick what works: streaming execution via semantic block chunking. Full post: https://t.co/dWic2isXQ5 TL;DR 👇
2
3
16
@nero_eth
Toni Wahrstätter ⟠
16 days
6/ Similar to Base’s Flashblocks (low-latency streaming), and with CALs, Ethereum can go for parallel, dependency-free validation while keeping one global state (e.g. no complex cross-shard communication needed). See also @protolambda’s post:
Tweet card summary image
github.com
Description This design-doc presents the combination of Flashblocks and Block-Access-Lists (BAL, EIP-7928). Looking for review and feedback, comments welcome.
0
0
4
@nero_eth
Toni Wahrstätter ⟠
16 days
5/ Key benefits: • Streamed block building and validation • Bounded gas & resources (≤16.7M per chunk) • Parallel validation with CALs • Per-chunk ZK/optimistic proofs • Lower latency & smoother propagation All txs are parallelizable — independent of state dependencies.
1
0
2
@nero_eth
Toni Wahrstätter ⟠
16 days
4/ Validation splits into 2 phases: • Per-chunk: check transactions, gas and execution outputs • Full block: ensure continuity + final state root This keeps blocks atomic, but execution is streamed.
1
0
2
@nero_eth
Toni Wahrstätter ⟠
16 days
3/ To make this work efficiently, chunks are paired with Chunk Access Lists (CALs): compact state diffs that propagate separately (c.f. EIP-7928). CALs allow validators to reconstruct pre-state quickly and even validate chunks in parallel.
1
0
2
@nero_eth
Toni Wahrstätter ⟠
16 days
2/ As gas limits grow, monolithic blocks become bottlenecks (compress → propagate → decompress → execute). Semantic chunking redefines a block as a sequence of self-contained chunks, each independently verifiable and executable on arrival.
1
0
2
@nero_eth
Toni Wahrstätter ⟠
16 days
Blockchains must scale. Other chains bet on sharding, speculative parallelism, or micro-blocks. Ethereum can cherry-pick what works: streaming execution via semantic block chunking. Full post: https://t.co/dWic2isXQ5 TL;DR 👇
Tweet card summary image
ethresear.ch
Toward Semantic Block Chunking As block gas limits increase, the size of Ethereum blocks will inevitably grow. We cannot rely on monolithic blocks that are compressed, propagated, and only then...
40
17
80
@poojaranjan19
Pooja Ranjan | ranjan.eth
21 days
Glamsterdam BALs (@nero_eth) - Breakout on Wednesday covered several points. - Discussed handling of precompile. - Nothing major to report; still on track for the first devnet by October. ePBS (@terencechain) - Breakout scheduled for tomorrow. - Spec released yesterday:
1
2
13
@preston_vanloon
prestonvanloon.eth
1 month
EIP-7928 lets Ethereum process non-conflicting transactions in parallel instead of sequentially. Single threaded -> multi threaded tx processor.
@protolambda
proto.eth
1 month
Block Access Lists (EIP-7928) is going to be more important for ethereum than a 10 blobs / block target capacity.
9
20
143
@jih2nn
Jihoon Song
1 month
Fast finality is not just a meme. It's actually coming. Slot time reduction is graduating from the research phase. @MorphNetrunner and I have been working on prototypes and now ours successfully transition from 12s to 6s and remain stable over several epochs. Check out the code
@barnabemonnot
barnabe.eth
1 month
Let's bring fast finality asap to @ethereum ! We published an update on our related work and projects last Friday, and on this topic, these are the relevant points: - Shorten slot times to increase the heartbeat of the network and decrease every delay: Time to inclusion / fast
1
5
49
@elbuenmayini
MarioVega.eth 🦇🔊
1 month
Block-level access lists are going to open the door to parallel transaction execution optimizations in the EVM. The first set of tests are out now thanks to @fselmo2:
Tweet card summary image
github.com
EEST feature release for EIP-7928: Block-Level Access Lists tests v1.0.0. ⚠️ Important: This release revealed updates needed on both the specifications and the testing side. Look for an updated ba...
1
4
37
@ralexstokes
stokes
1 month
@ethereumfndn is seeking a Protocol Tester focusing on the Consensus Layer. You'll work alongside engineers and researchers advancing the Ethereum protocol refining the `consensus-layer` specifications and its test suite. Link with more info to apply in next tweet!
13
24
80
@nero_eth
Toni Wahrstätter ⟠
1 month
8/ Compatible with ePBS (EIP-7732) & Delayed Execution (EIP-7886). Chunking reduces latency, smooths bandwidth, and scales with higher gas limits. Full post: 🔗
Tweet card summary image
ethresear.ch
Payload Chunking tl;dr: Split an EL block (=payload) into multiple mini‑blocks (“chunks”) of fixed gas budget (e.g. 2**24 = 16.77M) that propagate independently as side cars. Each chunk carries the...
0
0
5
@nero_eth
Toni Wahrstätter ⟠
1 month
7/ Benefits: - Streaming validation (lower latency) - Parallel execution & proving - Stateless friendliness - Future extensibility (zk-proofs, sharded exec)
1
0
3
@nero_eth
Toni Wahrst��tter ⟠
1 month
6/ Networking: - Lightweight beacon block gossiped normally - Heavy execution chunks streamed across parallel subnets (beacon_chunk_sidecar_{i}) - Enables immediate parallelization; partial custody possible later
1
0
3
@nero_eth
Toni Wahrstätter ⟠
1 month
5/ Consensus Layer: - Beacon blocks include chunk_roots - Sidecars prove inclusion via Merkle proofs (similar to blobs) - Fork choice waits for all chunks to be available + validated
1
0
3
@nero_eth
Toni Wahrstätter ⟠
1 month
4/ Execution Layer: - New header field: <chunk_count> - Chunks contain ≤2²⁴ gas of txs max (+ optional pre-state for stateless exec) - Only roots are committed on-chain; sidecars carry the heavy data (txs, withdrawals, etc.)
1
0
2
@nero_eth
Toni Wahrstätter ⟠
1 month
3/ With Payload Chunking: - Chunks can be executed while other chunks are still downloading -Validation starts immediately -Multiple cores can execute chunks independently & in parallel - Bandwidth load spreads across slot
1
0
3