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

推荐订阅源

V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
Y
Y Combinator Blog
月光博客
月光博客
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
F
Fortinet All Blogs
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
小众软件
小众软件
H
Help Net Security
Last Week in AI
Last Week in AI
B
Blog RSS Feed
宝玉的分享
宝玉的分享
N
Netflix TechBlog - Medium
博客园 - 叶小钗
The GitHub Blog
The GitHub Blog

Ethereum Foundation Blog

Checkpoint #9: Apr 2026 | Ethereum Foundation Blog How L1 and L2s can build the strongest possible Ethereum | Ethereum Foundation Blog The Promise of Ethereum: Introducing the EF Mandate | Ethereum Foundation Blog This Is Fine (Until the Grant Runs Out) | Ethereum Foundation Blog Treasury Staking Initiative | Ethereum Foundation Blog The Ethereum Foundation's Commitment to DeFi | Ethereum Foundation Blog Protocol Priorities Update for 2026 | Ethereum Foundation Blog Announcing the Platform Team at EF | Ethereum Foundation Blog Ethereum Protocol Studies 2026 | Ethereum Foundation Blog Executive Leadership Update | Ethereum Foundation Blog An update from Tomasz | Ethereum Foundation Blog Introducing the EF Academic Secretariat 2026 PhD Fellowship | Ethereum Foundation Blog Trillion Dollar Security Day at Devconnect | Ethereum Foundation Blog Allocation Update - Q4 2025 | Ethereum Foundation Blog Checkpoint #8: Jan 2026 | Ethereum Foundation Blog Devcon 8 is coming to Mumbai, India in November 2026 | Ethereum Foundation Blog Hegota Upgrade EIP Proposal Timelines | Ethereum Foundation Blog Shipping an L1 zkEVM #2: The Security Foundations | Ethereum Foundation Blog The Future of Ethereum’s State | Ethereum Foundation Blog Devconnect Argentina Recap | Ethereum Foundation Blog Allocation Update - Q3 2025 | Ethereum Foundation Blog Making Ethereum Feel Like One Chain Again | Ethereum Foundation Blog Checkpoint #7: Nov 2025 | Ethereum Foundation Blog Fusaka Mainnet Announcement | Ethereum Foundation Blog 2 weeks to Devconnect: Everything you need to know | Ethereum Foundation Blog Unveiling ESP's New Grants Program | Ethereum Foundation Blog Fusaka Update – Transaction Gas Limit Cap arrives with EIP-7825 | Ethereum Foundation Blog Announcing the 2026 EF Internship | Ethereum Foundation Blog Supporting privacy with new funding mechanisms | Ethereum Foundation Blog The Ethereum Foundation’s Commitment to Privacy | Ethereum Foundation Blog
Fusaka Update - Information for Blob users | Ethereum Fou...
2025-10-15 · via Ethereum Foundation Blog

tl;dr: Over the last couple of days, some L2s noticed that their deployments on Sepolia didn't work properly anymore. This is due to EIP-7594 which changes the format for proofs. In anticipation of Fusaka, we urge all blob originators to update their software to create Cell Proofs instead of blob proofs.

Background

One underdiscussed aspect of EIP-7594 (PeerDAS) is that it changes the format for proofs from blob proofs to cell proofs. This allows for downloading a specific part of the blob instead of the whole blob for data availability sampling.

This change might break user applications that send blob transactions. Already signed transactions are still valid though, they just need to recompute the cell proofs. Some clients (most notably go-ethereum) will do this via the RPC on eth_sendTransaction and eth_sendRawTransaction (1). This conversion from blob proofs to cell proofs takes about one second, so we encourage blob transaction originators to move to cell proofs in order to reduce overhead at the RPC level.

Transactions that are in the txpool at the time of the fork will be dropped by some implementations, while other implementations will convert them to cell proofs. So it would be prudent to resend your transactions with cell proofs shortly after the fork, if they are not being included by the chain. Some implementations allow for the distribution of blob proof transactions up to a few minutes after the hard fork on the networking layer for stability purposes.

Actionable changes

If you are a blob transaction originator (e.g. an L2), you should update your transaction sending code to create cell proofs.

All major client libraries expose functionality to create these proofs via ComputeCellsAndKZGProofs() which is available in all major languages (2). Usage examples can also be found in all major languages in the client libraries (3).

Outlook

We will try to communicate these changes that impact users more clearly via the Ethereum blog going forward and try to do more community outreach to prevent users of Ethereum from feeling blindsided by changes in the protocol.

We also encourage L2s and other entities that heavily depend on the Ethereum roadmap to follow the ACD process and to engage more directly with the community. We would also like to encourage teams to deploy their contracts and test infrastructure on the devnets shortly before we move to the first testnets. Another great tool for keeping your changes up to date is to use the Ethereum package provided by Kurtosis which can be used to create local networks with the latest specifications (4).

While it is unfortunate that blob originators learned this late in the hard fork process, it also shows that the testnet process works very well and these issues are caught long before they would ever appear on mainnet.

(1): go-ethereum will only do the conversion on eth_sendRawTransaction from current master and v1.16.5 onwards
(2): see https://github.com/ethereum/c-kzg-4844 (c)
https://github.com/crate-crypto/go-eth-kzg (go)
https://github.com/crate-crypto/rust-eth-kzg (rust)
(3) Example for go-ethereum: https://github.com/ethereum/go-ethereum/blob/7c107c2691fa66a1da60e2b95f5946c3a3921b00/crypto/kzg4844/kzg4844_test.go#L194
(4) Ethereum package for kurtosis: https://github.com/ethpandaops/ethereum-package