# Waiting for Dencun Upgrade, Let's Review EIP-4844 > A brief summary on EIP-4844 and its impact on L2 **Published by:** [Declan Kim](https://paragraph.com/@declankim/) **Published on:** 2024-02-22 **Categories:** ethereum, eip-4844, l2 **URL:** https://paragraph.com/@declankim/eip4844_review ## Content TLDR; it's all you need to know.1. What is Dencun Upgrade?Its full name is the Cancun-Deneb Upgrade, but it is commonly referred to as the Dencun Upgrade.Scheduled for mainnet implementation on March 13, 2024Completed application on the Goerli testnet on January 17, 2024Completed application on the Sepolia testnet on January 30, 2024Completed application on the Holysky testnet on February 7, 2024It is the largest-scale hard fork upgrade to be applied after the Shanghai Upgrade.The upgrade applies simultaneously to the execution layer (Cancun) and the consensus layer (Deneb).Key Features:Scalability Improvement: Introduces proto-danksharding (EIP-4844) to fragment into blobs for enhanced scalability.Security and Consensus Mechanism Enhancement: EIP-6780Gas Optimization: Implements EIP-1559 (fee market change), EIP-2929 (state access gas cost increase), and EIP-2537 (BLS curve operations) to reduce gas fees and improve the user experience.Laying the Foundation for Future Developmentssource: Datawallet2. EIP-4844Among the major EIPs included in the Dencun Upgrade, EIP-4844 is the core of core.The essence of EIP-4844 lies in the implementation of blobs to secure space on the Ethereum mainnet, enabling rollup solutions to process more transactions at lower costs and thus improving scalability.So, what is a blob?A new type of data stored only on the beacon chain (consensus layer).The goal is to create storage space solely for data availability, separate from the block space of the execution layer.The introduction of blobs leads to cost reduction for rollup sequencers submitting calldata to Ethereum → Rollup sequencers become the primary consumers of blob space.By specifying the size and number of blobs that can be included per block, it prevents a surge in computation and thus avoids node centralization.Why are blobs cheaper than calldata? Blobs are inaccessible to the execution layer = No access to EVM.Because there is a separate space solely for blob storage, it can be stored much more cheaply than regular calldata.Data within blobs is stored on the consensus layer (or beacon) for up to 18 days only.The permanent storage of blob data can be managed by delegating roles to protocols that facilitate relatively easy data storage.Although rollups have emerged as a scalability solution, there remains a problem that Ethereum mainnet blocks (calldata) must be submitted to verify the validity of transactions.This process imposes significant costs on rollup solutions.Therefore, the introduction of blobs aims to allow rollups to use blobs for storing transaction data, thus securing space on the Ethereum mainnet and enabling the processing of more transactions at lower costs. Specifically, it allows rollup sequencers to broadcast "blob-carrying transactions."source: Ethereworld Previously, since rollups transmitted calldata, the EVM could access this calldata to prove the validity of rollup transactions.However, as mentioned earlier, the EVM cannot access blobs. So, how is validity verification conducted with the introduction of blobs?This is made possible thanks to one of the new fields included in blobs, known as blob_versioned_hashes.When a sequencer forwards a rollup transaction to the L1 mempool, the Ethereum proposer distributes it to the execution client and the consensus client as follows:Execution Payload (Signedblobtransaction) → execution clientSidecar (blob_kzg & blob) → consensus clientThe Signedblobtransaction includes the blob_versioned_hashes, which essentially serve as a summary of the blob data.Therefore, Ethereum nodes can validate the transaction's validity by cross-verifying that the blob_versioned_hashes accessible from the EVM execution layer match the blob_KZG commit values on the consensus layer.Additionally, EIP-4844 plans to introduce a separate fee market for blobs, based on supply and demand for blob gas fee (data gas), independent from the existing block space fee market (gas fee market).By creating a seperate market for data submission (blob submission), it is possible to significantly reduce the cost of submitting to the Ethereum mainnet, which constitutes a major portion of existing L2 costs.This mechanism is very similar to EIP-1559, but it introduces a new element, max_fee_per_data_gas, set by the submitter.Basic explanation of the mechanism:Each blob can store approximately 125kb of data → each block can store up to 6 blobs (target is 3 blobs).If a block contains more than 3 blobs, the price of blobs increases; if less, it decreases → designed to maintain a fair price around the 3-blob benchmark.If rollups use too many blobs → the price of blobs increases → stabilizing the price of blobs and vice versa.From the perspective of rollup users, the primary desires are low costfast processing.However, the introduction of blobs presents a dilemma in balancing these two conditions:Prioritizing low cost → requires sending fully packed blobs (to reduce submission costs) → results in slower processing speeds.Prioritizing fast processing → entails sending blobs that are not fully packed → leads to increased costs.Therefore, when blob prices are low, the focus can shift towards fast processing, and when blob prices are high, the focus can shift towards minimizing costs, thereby finding a balance between the two.The research below unfolds a methodology to find a price that achieves this balance:It attempts to find the optimal frequency of blob usage by assigning a nominal dollar cost to the time it takes to process transactions and minimizing the sum of blob costs and waiting time costs.source: Ed FeltenThe sum of the submission cost (blue line), which decreases inversely with the size of the blob, and the waiting cost (red line), which increases proportionally with the size of the blob, records its lowest point at approximately 15,000 bytes/blob.The study also finds that rollups with active transaction processing can fill a full blob in less time, thus recording good performance in terms of cost.Conversely, it is mentioned that small rollups, which process fewer transactions, might prefer the existing cost structure, where they only pay for the calldata they use, rather than always paying the price for a full blob.According to the GitHub, the current gas price for blobs is 1 gas per byte.According to Arbitrum docs, the cost of L1 data submission is 16 gas per byte.Therefore, the application of blobs can reduce the cost of data submission by 1/16, resulting in a reduction of approximately 93.75%.Referenceshttps://xangle.io야 (EIP)4844, 너지?본 리포트는 2부로 구성되어 있다. 전반부에서는 이더리움 샤딩의 발자취를 따라가면서 샤딩의 역사가 어떻게 변화했고 이더리움의 장기적인 비전인 댕크샤딩(Danksharding)이 무엇인지 살펴본다. 후반부에서는 프로토-댕크샤딩의 구조와 의의를 들여다보고 EIP4844 적용 이후 롤업의 경제 구조가 어떤 식으로 바뀌게 될지 그려본다.https://medium.comEIP 4844: What does it mean for L2 users?As of this writing, EIP-4844 and the rest of Dencun upgrade are currently scheduled to go live on Ethereum mainnet on March 13. Dencun, the next Ethereum hard fork, is on testnet and will be coming...https://consensys.ioEthereum Evolved: Dencun Upgrade Part 5, EIP-4844 | ConsensysEIP-4844, also known as "proto-danksharding" will drastically reduce the cost of posting L2 rollup data to Ethereum mainnet via "blobs".If you enjoyed my article, please subscribe and follow me on Warpcast and X. You can check out more awesome articles from DeSpread Research.https://research.despread.ioDeSpread ResearchDeSpread Research · Meet our people's insight, our capabilities, our research, and the ever-changing face of our firm. ## Publication Information - [Declan Kim](https://paragraph.com/@declankim/): Publication homepage - [All Posts](https://paragraph.com/@declankim/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@declankim): Subscribe to updates - [Twitter](https://twitter.com/Touslesjours_70): Follow on Twitter ## Optional - [Collect as NFT](https://paragraph.com/@declankim/eip4844_review): Support the author by collecting this post - [View Collectors](https://paragraph.com/@declankim/eip4844_review/collectors): See who has collected this post