Author: Zhixiong Pan Background: Gas Limit upgrades do not require hard forks Prior to the Fusaka upgrade, most of the core parameters of the Ethereum protocol layer (such as block rewards and difficulty adjustment algorithms) were "hard-coded" in the client software. This meant that even if you just wanted to modify a single value, you had to go through a lengthy EIP proposal process, testnet drills, and coordinate a large-scale hard fork across the entire network, which typically took six months or even longer. Prior to this, the only exception in the Ethereum protocol was the Block Gas Limit. The Gas Limit is not determined by hard forks, but rather allows validators to make minor adjustments using an algorithm when packaging blocks (for example, increasing it from 30M to 60M this year). This mechanism gives the network a degree of flexibility. EIP-7892, or Blob Parameter Only, was developed to extend this flexibility to the data domain. It makes the key parameters of a blob configuration-driven, and implements this through a lightweight hard fork of Blobs that allows for parameter changes without code modifications. From a client-side development perspective, it's almost like performing a hot parameter update. It freed Ethereum from the cycle of "having to wait for the next major hard fork every time you want to adjust the Blob count" in terms of scaling issues, allowing for more frequent parameter adjustments through smaller BPO forks. Why is the number of blobs important? The core target of this adjustment is the Blob. Since the Cancun upgrade, most Rollups no longer write most of their transaction data to the expensive calldata, but instead migrate to the Blob, a dedicated "temporary data mount point". The economic logic of blobs is very simple: blobs are a scarce resource, and the number of blobs that can be attached to each block is limited. Its price is determined by supply and demand; when the demand for Layer 2 blobs exceeds the supply, the unit price of blobs will increase, leading to higher L2 transaction fees. Therefore, under the premise of ensuring security, increasing the upper limit of the number of blobs as much as possible is the most direct way to reduce the cost for L2 users. Core parameters: The mechanism of Target and Max In the BPO adjustment plan, two pairs of numbers (e.g., 10/15) can be observed. These are two key thresholds set based on the EIP-4844 mechanism: Target (or target value): The "regulator" of costs. This is the ideal load factor set by Ethereum. The system dynamically adjusts the Blob's base fee based on this value. If actual usage > Target, the fee increases to curb demand; if actual usage < Target, the fee decreases. It determines the network's throughput and rate benchmark under normal conditions. Max (maximum value): A safe "fuse". This is a physical hard limit set to prevent network paralysis. No matter how high the demand, the protocol mandates that the number of blobs contained in a single block cannot exceed this value to prevent nodes from crashing or going offline due to processing too much data. It represents the ultimate limit of network carrying capacity. In addition, since Pectra, the blob parameters of the mainnet have basically followed the pattern of "Max = 1.5 × Target": 6/9, 10/15, 14/21, all of which are this ratio. Upgrade Roadmap: Why did Fusaka choose a "step-by-step" approach? This capacity expansion was not completed all at once on December 3rd, but rather adopted a rigorous three-stage strategy of "deploying technology first, then releasing capacity": Phase 1: Fusaka upgrade launch (December 3rd) Parameter status: Target: 6 / Max: 9 (consistent with previous Pectra versions, no changes). The Fusaka upgrade activated PeerDAS (Data Availability Sampling), a core technology. While technically capable of handling more data, for security reasons, the developers chose not to increase network load on the first day of the upgrade. This was a "security observation period" to verify the stability of the PeerDAS mechanism under existing traffic conditions. Phase Two: BPO 1 (Expected December 9th) Parameter adjustment: Target: 10 / Max: 15 After PeerDAS had been running stably for about a week, the first hot update was performed via the BPO mechanism. The target value was increased from 6 to 10. This was the first substantial expansion within the Fusaka cycle. Phase 3: BPO 2 (expected January 7, 2026) Parameter adjustments: Target: 14 / Max: 21 After a month of thorough stress testing, a second hot update was performed. Compared to when Fusaka went live, the capacity increased by 2.3 times (6 → 14). This marks the complete implementation of this expansion plan. Summarize The introduction of BPO was a milestone. It broke the old paradigm of "every time a Blob is expanded, a large-scale hard fork is required", and broke up the expansion into a series of mini hard forks that only changed parameters. This means that Ethereum in the future will be like having a continuously variable transmission (CVT). Expanding Blob will no longer be strongly tied to major versions. Instead, it can plan BPO3 and BPO4 every now and then based on L2 demand and client performance, using more frequent small hard forks to optimize throughput, rather than changing it only once every few years.Author: Zhixiong Pan Background: Gas Limit upgrades do not require hard forks Prior to the Fusaka upgrade, most of the core parameters of the Ethereum protocol layer (such as block rewards and difficulty adjustment algorithms) were "hard-coded" in the client software. This meant that even if you just wanted to modify a single value, you had to go through a lengthy EIP proposal process, testnet drills, and coordinate a large-scale hard fork across the entire network, which typically took six months or even longer. Prior to this, the only exception in the Ethereum protocol was the Block Gas Limit. The Gas Limit is not determined by hard forks, but rather allows validators to make minor adjustments using an algorithm when packaging blocks (for example, increasing it from 30M to 60M this year). This mechanism gives the network a degree of flexibility. EIP-7892, or Blob Parameter Only, was developed to extend this flexibility to the data domain. It makes the key parameters of a blob configuration-driven, and implements this through a lightweight hard fork of Blobs that allows for parameter changes without code modifications. From a client-side development perspective, it's almost like performing a hot parameter update. It freed Ethereum from the cycle of "having to wait for the next major hard fork every time you want to adjust the Blob count" in terms of scaling issues, allowing for more frequent parameter adjustments through smaller BPO forks. Why is the number of blobs important? The core target of this adjustment is the Blob. Since the Cancun upgrade, most Rollups no longer write most of their transaction data to the expensive calldata, but instead migrate to the Blob, a dedicated "temporary data mount point". The economic logic of blobs is very simple: blobs are a scarce resource, and the number of blobs that can be attached to each block is limited. Its price is determined by supply and demand; when the demand for Layer 2 blobs exceeds the supply, the unit price of blobs will increase, leading to higher L2 transaction fees. Therefore, under the premise of ensuring security, increasing the upper limit of the number of blobs as much as possible is the most direct way to reduce the cost for L2 users. Core parameters: The mechanism of Target and Max In the BPO adjustment plan, two pairs of numbers (e.g., 10/15) can be observed. These are two key thresholds set based on the EIP-4844 mechanism: Target (or target value): The "regulator" of costs. This is the ideal load factor set by Ethereum. The system dynamically adjusts the Blob's base fee based on this value. If actual usage > Target, the fee increases to curb demand; if actual usage < Target, the fee decreases. It determines the network's throughput and rate benchmark under normal conditions. Max (maximum value): A safe "fuse". This is a physical hard limit set to prevent network paralysis. No matter how high the demand, the protocol mandates that the number of blobs contained in a single block cannot exceed this value to prevent nodes from crashing or going offline due to processing too much data. It represents the ultimate limit of network carrying capacity. In addition, since Pectra, the blob parameters of the mainnet have basically followed the pattern of "Max = 1.5 × Target": 6/9, 10/15, 14/21, all of which are this ratio. Upgrade Roadmap: Why did Fusaka choose a "step-by-step" approach? This capacity expansion was not completed all at once on December 3rd, but rather adopted a rigorous three-stage strategy of "deploying technology first, then releasing capacity": Phase 1: Fusaka upgrade launch (December 3rd) Parameter status: Target: 6 / Max: 9 (consistent with previous Pectra versions, no changes). The Fusaka upgrade activated PeerDAS (Data Availability Sampling), a core technology. While technically capable of handling more data, for security reasons, the developers chose not to increase network load on the first day of the upgrade. This was a "security observation period" to verify the stability of the PeerDAS mechanism under existing traffic conditions. Phase Two: BPO 1 (Expected December 9th) Parameter adjustment: Target: 10 / Max: 15 After PeerDAS had been running stably for about a week, the first hot update was performed via the BPO mechanism. The target value was increased from 6 to 10. This was the first substantial expansion within the Fusaka cycle. Phase 3: BPO 2 (expected January 7, 2026) Parameter adjustments: Target: 14 / Max: 21 After a month of thorough stress testing, a second hot update was performed. Compared to when Fusaka went live, the capacity increased by 2.3 times (6 → 14). This marks the complete implementation of this expansion plan. Summarize The introduction of BPO was a milestone. It broke the old paradigm of "every time a Blob is expanded, a large-scale hard fork is required", and broke up the expansion into a series of mini hard forks that only changed parameters. This means that Ethereum in the future will be like having a continuously variable transmission (CVT). Expanding Blob will no longer be strongly tied to major versions. Instead, it can plan BPO3 and BPO4 every now and then based on L2 demand and client performance, using more frequent small hard forks to optimize throughput, rather than changing it only once every few years.

The "Continuously Variable Gearbox" in the Ethereum Fusaka Upgrade: Establishing a Fast Response Mechanism for L2 Scaling

2025/12/03 08:00
5 min read
For feedback or concerns regarding this content, please contact us at [email protected]

Author: Zhixiong Pan

Background: Gas Limit upgrades do not require hard forks

Prior to the Fusaka upgrade, most of the core parameters of the Ethereum protocol layer (such as block rewards and difficulty adjustment algorithms) were "hard-coded" in the client software. This meant that even if you just wanted to modify a single value, you had to go through a lengthy EIP proposal process, testnet drills, and coordinate a large-scale hard fork across the entire network, which typically took six months or even longer.

Prior to this, the only exception in the Ethereum protocol was the Block Gas Limit. The Gas Limit is not determined by hard forks, but rather allows validators to make minor adjustments using an algorithm when packaging blocks (for example, increasing it from 30M to 60M this year). This mechanism gives the network a degree of flexibility.

EIP-7892, or Blob Parameter Only, was developed to extend this flexibility to the data domain. It makes the key parameters of a blob configuration-driven, and implements this through a lightweight hard fork of Blobs that allows for parameter changes without code modifications. From a client-side development perspective, it's almost like performing a hot parameter update.

It freed Ethereum from the cycle of "having to wait for the next major hard fork every time you want to adjust the Blob count" in terms of scaling issues, allowing for more frequent parameter adjustments through smaller BPO forks.

Why is the number of blobs important?

The core target of this adjustment is the Blob. Since the Cancun upgrade, most Rollups no longer write most of their transaction data to the expensive calldata, but instead migrate to the Blob, a dedicated "temporary data mount point".

The economic logic of blobs is very simple: blobs are a scarce resource, and the number of blobs that can be attached to each block is limited. Its price is determined by supply and demand; when the demand for Layer 2 blobs exceeds the supply, the unit price of blobs will increase, leading to higher L2 transaction fees.

Therefore, under the premise of ensuring security, increasing the upper limit of the number of blobs as much as possible is the most direct way to reduce the cost for L2 users.

Core parameters: The mechanism of Target and Max

In the BPO adjustment plan, two pairs of numbers (e.g., 10/15) can be observed. These are two key thresholds set based on the EIP-4844 mechanism:

Target (or target value): The "regulator" of costs.

This is the ideal load factor set by Ethereum. The system dynamically adjusts the Blob's base fee based on this value. If actual usage > Target, the fee increases to curb demand; if actual usage < Target, the fee decreases.

It determines the network's throughput and rate benchmark under normal conditions.

Max (maximum value): A safe "fuse".

This is a physical hard limit set to prevent network paralysis. No matter how high the demand, the protocol mandates that the number of blobs contained in a single block cannot exceed this value to prevent nodes from crashing or going offline due to processing too much data.

It represents the ultimate limit of network carrying capacity.

In addition, since Pectra, the blob parameters of the mainnet have basically followed the pattern of "Max = 1.5 × Target": 6/9, 10/15, 14/21, all of which are this ratio.

Upgrade Roadmap: Why did Fusaka choose a "step-by-step" approach?

This capacity expansion was not completed all at once on December 3rd, but rather adopted a rigorous three-stage strategy of "deploying technology first, then releasing capacity":

Phase 1: Fusaka upgrade launch (December 3rd)

Parameter status: Target: 6 / Max: 9 (consistent with previous Pectra versions, no changes).

The Fusaka upgrade activated PeerDAS (Data Availability Sampling), a core technology. While technically capable of handling more data, for security reasons, the developers chose not to increase network load on the first day of the upgrade. This was a "security observation period" to verify the stability of the PeerDAS mechanism under existing traffic conditions.

Phase Two: BPO 1 (Expected December 9th)

Parameter adjustment: Target: 10 / Max: 15

After PeerDAS had been running stably for about a week, the first hot update was performed via the BPO mechanism. The target value was increased from 6 to 10. This was the first substantial expansion within the Fusaka cycle.

Phase 3: BPO 2 (expected January 7, 2026)

Parameter adjustments: Target: 14 / Max: 21

After a month of thorough stress testing, a second hot update was performed. Compared to when Fusaka went live, the capacity increased by 2.3 times (6 → 14). This marks the complete implementation of this expansion plan.

Summarize

The introduction of BPO was a milestone. It broke the old paradigm of "every time a Blob is expanded, a large-scale hard fork is required", and broke up the expansion into a series of mini hard forks that only changed parameters.

This means that Ethereum in the future will be like having a continuously variable transmission (CVT). Expanding Blob will no longer be strongly tied to major versions. Instead, it can plan BPO3 and BPO4 every now and then based on L2 demand and client performance, using more frequent small hard forks to optimize throughput, rather than changing it only once every few years.

Market Opportunity
Notcoin Logo
Notcoin Price(NOT)
$0.0003887
$0.0003887$0.0003887
+1.80%
USD
Notcoin (NOT) Live Price Chart
Disclaimer: The articles reposted on this site are sourced from public platforms and are provided for informational purposes only. They do not necessarily reflect the views of MEXC. All rights remain with the original authors. If you believe any content infringes on third-party rights, please contact [email protected] for removal. MEXC makes no guarantees regarding the accuracy, completeness, or timeliness of the content and is not responsible for any actions taken based on the information provided. The content does not constitute financial, legal, or other professional advice, nor should it be considered a recommendation or endorsement by MEXC.

You May Also Like

Why Localization Services Matter for Software Companies

Why Localization Services Matter for Software Companies

Rarely does software designed for one market translate smoothly to another. The most obvious obstacle is language, but it’s not the only one. Before a product feels
Share
Techbullion2026/03/25 19:10
₹71L CoinDCX Fraud Case Turns, Court Finds No Link to Founders

₹71L CoinDCX Fraud Case Turns, Court Finds No Link to Founders

Court grants bail to CoinDCX founders after ₹71L scam traced to fake site; no link found, funds recovered, platform secure. The court granted bail to CoinDCX founders
Share
LiveBitcoinNews2026/03/25 19:43
UK crypto holders brace for FCA’s expanded regulatory reach

UK crypto holders brace for FCA’s expanded regulatory reach

The post UK crypto holders brace for FCA’s expanded regulatory reach appeared on BitcoinEthereumNews.com. British crypto holders may soon face a very different landscape as the Financial Conduct Authority (FCA) moves to expand its regulatory reach in the industry. A new consultation paper outlines how the watchdog intends to apply its rulebook to crypto firms, shaping everything from asset safeguarding to trading platform operation. According to the financial regulator, these proposals would translate into clearer protections for retail investors and stricter oversight of crypto firms. UK FCA plans Until now, UK crypto users mostly encountered the FCA through rules on promotions and anti-money laundering checks. The consultation paper goes much further. It proposes direct oversight of stablecoin issuers, custodians, and crypto-asset trading platforms (CATPs). For investors, that means the wallets, exchanges, and coins they rely on could soon be subject to the same governance and resilience standards as traditional financial institutions. The regulator has also clarified that firms need official authorization before serving customers. This condition should, in theory, reduce the risk of sudden platform failures or unclear accountability. David Geale, the FCA’s executive director of payments and digital finance, said the proposals are designed to strike a balance between innovation and protection. He explained: “We want to develop a sustainable and competitive crypto sector – balancing innovation, market integrity and trust.” Geale noted that while the rules will not eliminate investment risks, they will create consistent standards, helping consumers understand what to expect from registered firms. Why does this matter for crypto holders? The UK regulatory framework shift would provide safer custody of assets, better disclosure of risks, and clearer recourse if something goes wrong. However, the regulator was also frank in its submission, arguing that no rulebook can eliminate the volatility or inherent risks of holding digital assets. Instead, the focus is on ensuring that when consumers choose to invest, they do…
Share
BitcoinEthereumNews2025/09/17 23:52