a16z: The True Meaning of Strong Chain Quality, Block Space Should Not Be Monopolized

marsbitPubblicato 2026-03-28Pubblicato ultima volta 2026-03-28

Introduzione

The article introduces the concept of Strong Chain Quality (SCQ), an enhanced property for modern high-throughput blockchains. While Chain Quality (CQ) ensures that a stakeholder controlling X% of stake can propose X% of blocks over time, SCQ guarantees that the same stakeholder controls X% of the block space *within each individual block*. This creates "virtual lanes" that ensure users can include transactions even when block space is contested. SCQ strengthens censorship resistance by providing stakeholders with guaranteed inclusion capacity rather than relying on probabilistic fairness. It also encourages competition for stake, as controlling virtual lanes becomes a productive asset generating fee and MEV revenue. The article outlines how SCQ can be implemented via a two-round protocol modification to existing BFT consensus mechanisms, requiring participants to attest to inputs and enforce inclusion via commitment lists. While SCQ specifies space allocation, it doesn't enforce transaction ordering—leaving room for further design in fair and efficient transaction sequencing.

Chain Quality (CQ) is a core attribute of blockchain. In simple terms, it means:

If you hold 3% of the staked stake, then on average over time, you can control 3% of the block space.

For early blockchains with low throughput, chain quality was sufficient. But modern blockchains have much greater bandwidth, with a single block capable of containing a large number of transactions.

This leads to a stronger and more refined concept. It not only focuses on the proportion of block space averaged over time but also looks at the division of block space within each individual block. We call this Strong Chain Quality (SCQ):

If you hold 3% of the staked stake, then in every block, you control 3% of the block space.

Essentially, this property allows stakeholders a "virtual lane" within a high-throughput blockchain, ensuring their transactions can be included.

Chain Quality in Blockchain

One of Bitcoin's key innovations—now present in almost every blockchain—is the built-in reward mechanism for block proposers within the protocol: the party that successfully appends a block to the state machine can receive newly minted tokens as well as transaction fees. These rewards are stipulated by the state transition function and are ultimately reflected in the system state.

In traditional distributed computing models, participants are divided into honest and malicious parties. There is no need to reward honest behavior, as it is the default assumption in the model.

In cryptoeconomic models, participants are viewed as rational actors with potentially unknown utility functions. The goal is to design incentives so that these participants, in pursuing their own profit maximization, naturally align with the successful operation of the protocol. Combining the internal reward mechanism of the protocol, we can derive the following idealized definition of chain quality:

Chain Quality (CQ): A coalition holding X% of the total staked stake has an X% probability of being the proposer of each block that enters the chain after the Global Stabilization Time (GST).

If a chain deviates from chain quality requirements, it may allow certain coalitions to obtain a share of rewards beyond their normal proportion, thereby weakening the incentive for honest behavior and threatening the security of the protocol.

Many blockchains satisfy or strive to satisfy this property through mechanisms like "random leader rotation based on staking weight."

Typical current challenges include: Bitcoin's "selfish mining" problem; Monad's tail forking resistance issue; and problems in Ethereum's LMD GHOST protocol.

The Origin of "Strong Chain Quality"

When block space is sufficiently abundant, we don't have to hand over the entire content of a single block to a single proposer's monopoly. Instead, the block space of the same block can be divided among multiple participants. The cryptoeconomic definition of Strong Chain Quality expresses precisely this idea:

Strong Chain Quality (SCQ): A coalition holding X% of the total staked stake can control X% of the block space in every block after the Global Stabilization Time (GST).

This idealized property implicitly introduces the abstraction of a "virtual lane." That is, the coalition effectively controls a certain proportion of dedicated block space in every block.

From an economic perspective, owning a virtual lane is equivalent to holding a productive asset that can generate returns, which may come from transaction fees or MEV (Maximal Extractable Value). External entities will compete for staking rights to acquire and maintain these lanes, creating sustained demand for the underlying L1 token. The greater the economic value a lane can generate, the stronger the motivation for parties to compete for staking rights, and the higher the value that the L1 staking rights controlling access to this block space can accumulate. Through this abstraction, we can translate stronger censorship resistance into the SCQ validity property within the protocol.

Strong Chain Quality and Censorship Resistance

Recent research has shown that censorship-resistant protocols are very important. Such protocols must not only ensure that honest inputs are eventually included but also that they are included immediately. Strong Chain Quality (SCQ) can be seen as an extension of this property under conditions of limited block capacity.

In practical scenarios, if the volume of transactions awaiting inclusion exceeds the available block space, no protocol can satisfy the notion of ideal censorship resistance. SCQ addresses this limitation with a more pragmatic approach: it does not insist that all honest transactions must always be included, but rather allocates a "budget" to each staking node, ensuring that its transactions can be included within this budget.

The MCP protocol was proposed as a component on top of existing Practical Byzantine Fault Tolerance (PBFT)-style consensus protocols to make them censorship-resistant. This protocol also satisfies the requirements of SCQ—it allocates block space to proposers according to their proportion of staked stake. Existing Directed Acyclic Graph (DAG)-based BFT protocols offer a way to implement a multi-writer mempool and also provide a degree of censorship resistance.

Standard implementations of these protocols often fail to strictly satisfy SCQ because they allow leaders to selectively delay certain subsets of transactions. However, with minor modifications to these protocols, it might be possible to re-establish SCQ. A related direction is "forced transaction inclusion," used to reduce censorship behavior.

MCP also demonstrates how to achieve a stronger hidden property. With this property, stakeholders can create virtual private lanes, the contents of which are only revealed when the entire block is made public. We will elaborate on this point in a subsequent article.

How to Achieve Strong Chain Quality

The key to achieving Strong Chain Quality after the Global Stabilization Time (GST) is to ensure that proposers cannot arbitrarily censor stakeholder inputs. This can be achieved through a two-round protocol. With just two small modifications to almost any view-based BFT protocol:

First Round: Each participant sends its certified input to all other participants.

Second Round: If a participant receives a certified input from participant i, it adds i to its inclusion list. Then, the participant sends its inclusion list to the leader. This operation is equivalent to a commitment: it will only accept blocks that include all the inputs in this list.

BFT Proposal: After receiving these messages, the leader includes the union of all received inclusion lists in the block.

BFT Vote: A participant will only vote in favor of a block if that block includes all the inputs from its own inclusion list.

It is not difficult to see that a complete protocol can be constructed from this protocol sketch. This protocol can satisfy Strong Chain Quality after GST, provide censorship resistance, and maintain liveness when the leader is honest. To achieve SCQ before GST, it would also be necessary to wait for a sufficient number (a quorum) of values or lists in each round. We will detail this protocol and its extensions in a subsequent article.

Recent research indicates that achieving Strong Chain Quality and censorship resistance requires adding two additional rounds (as shown in the protocol sketch above) on top of the regular voting rounds of a BFT protocol. We will also detail this result in a subsequent article.

While Strong Chain Quality (SCQ) specifies the proportion of block space a coalition can control, it does not fully dictate the ordering of transactions within the block. SCQ can be understood as: reserving space for each staking node, but making no guarantees about the order of transactions within that space.

This opens up a rich space for research into transaction ordering mechanisms. A good ordering mechanism has the potential to further enhance fairness and efficiency within the blockchain ecosystem. One noteworthy direction is ordering transactions based on priority fees.

Crypto di tendenza

Domande pertinenti

QWhat is the core difference between Chain Quality (CQ) and Strong Chain Quality (SCQ) in blockchain systems?

AChain Quality (CQ) ensures that a coalition holding X% of staked assets controls X% of block space on average over time, while Strong Chain Quality (SCQ) guarantees that the coalition controls X% of the block space in every individual block, providing more granular and immediate allocation.

QHow does Strong Chain Quality (SCQ) enhance censorship resistance in high-throughput blockchains?

ASCQ enhances censorship resistance by allocating a 'virtual lane' of block space to each staker proportional to their stake in every block, ensuring their transactions are included immediately without relying on the goodwill of block proposers, thus preventing selective delays or exclusions.

QWhat cryptographic economic problem does Strong Chain Quality (SCQ) address that traditional distributed computing models do not?

ASCQ addresses the problem of rational, self-interested actors in cryptographic economic models, where participants are motivated by rewards. It ensures that stakers are proportionally rewarded with block space access, aligning individual profit motives with protocol security, unlike traditional models that assume honest behavior by default.

QWhat minimal protocol modifications are suggested to achieve Strong Chain Quality (SCQ) in BFT-based blockchains?

ATwo key modifications are proposed: 1) In the first round, each participant sends certified inputs to all others; 2) In the second round, participants include senders of certified inputs in their inclusion lists and send these to the leader, who must include the union of all received lists in the block. Participants only vote for blocks containing their inclusion lists.

QHow does Strong Chain Quality (SCQ) create economic value for the underlying L1 token?

ASCQ creates economic value by turning 'virtual lanes' of block space into productive assets that generate rewards from transaction fees or MEV. External entities compete to acquire and maintain these lanes by staking L1 tokens, driving sustained demand for the token and increasing the value of the staked assets controlling block space access.

Letture associate

Must-Watch Events Next Week|CLARITY Act Could Face Senate Vote; SpaceX, Circle to Report Earnings (8.3-8.9)

**Summary: Key Events and Developments to Watch (August 3-9)** The upcoming week is marked by significant financial disclosures, key legislative deadlines, and notable product updates. **Major Financial Events:** Several companies are scheduled to release their Q2 2026 earnings. American Bitcoin (ABTC) will report on August 3, followed by SpaceX and Hut 8 Mining Corp. on August 4, and Circle on August 5. Notably, a significant portion of SpaceX shares (up to 12% of total shares) will be unlocked on August 6 following their earnings release. **Key Legislative Deadline:** The U.S. Senate faces an August 7 deadline to secure 60 votes for the CLARITY Act, a bipartisan bill aiming to establish a federal regulatory framework for cryptocurrencies. The Senate may hold a full vote on the bill during the week. **Economic Data:** The U.S. July Non-Farm Payrolls report will be released on August 7, providing crucial labor market data. **Technology & Product Updates:** * **Shutdowns:** DeFi portfolio tracker Zapper and wallet app Ctrl Wallet will cease operations on August 3. * **Upgrades:** LayerZero will deprecate its v1 relayers on August 3. XRP Ledger's new version 3.3.0, featuring five new functions, is expected next week. * **AI:** Elon Musk announced that the advanced Grok 4.6 AI model is set for release around August 7. * **Bitcoin:** The BIP-110 forced signaling for a potential Bitcoin network change is scheduled to begin around August 8. **Other Notable Events:** Chinese robotics firm Unitree Tech has set its preliminary price inquiry for its IPO for August 5. South Korean exchange Upbit will delist AQT and AERGO tokens on August 3.

marsbit31 min fa

Must-Watch Events Next Week|CLARITY Act Could Face Senate Vote; SpaceX, Circle to Report Earnings (8.3-8.9)

marsbit31 min fa

Stocks Are Plummeting More Sharply Than Cryptocurrencies. Where Has the Money Gone?

Stock Markets Plunge Deeper Than Cryptocurrencies: Where Did the Money Go? In late July, Seoul's Kospi index triggered circuit breakers for two consecutive days, plummeting over 40% from its June high. The collapse was led by heavyweight stocks like SK Hynix, whose record profits still disappointed investors, and devastating leveraged ETFs, with one major product losing over 83% of its value. This signaled a global, forced deleveraging targeting the most crowded trades. Interestingly, while stocks exhibited extreme volatility akin to crypto markets, Bitcoin rose nearly 15% in July after a prior steep drop. Analysis shows the money fleeing equities did not flow into Bitcoin. Instead, Bitcoin had already absorbed its sell-off in May-June, when U.S. spot Bitcoin ETFs saw historic outflows. The true safe-haven beneficiary was gold, whose price rose over 20% year-on-year, highlighting a decoupling between Bitcoin and gold as "digital gold." The sell-off was a targeted unwinding of leveraged positions in tech and semiconductors, accelerated by broker-dealer risk management and shifts in the AI narrative, including new competition from Chinese memory chipmakers. The retreat path was clear: from high-valuation tech stocks to cash and U.S. Treasuries, then to gold. For Bitcoin to attract sustained institutional inflows, conditions like eased global liquidity pressure, a "soft-landing" Fed rate cut, and U.S. regulatory clarity via legislation like the stalled CLARITY Act are needed. Currently, Bitcoin is not a safe haven but an already-cleared asset. Its low correlation with tech stocks, however, makes it a potential diversification play for institutional portfolios once the storm passes. The money isn't here yet, but the positioning is underway.

marsbit31 min fa

Stocks Are Plummeting More Sharply Than Cryptocurrencies. Where Has the Money Gone?

marsbit31 min fa

In Conversation with Ray Dalio: We Are Currently in an AI Bubble, with 1% of My Portfolio in Bitcoin

Ray Dalio, founder of Bridgewater Associates, warns in an interview that the current AI boom shows classic bubble characteristics, which could lead to significant economic downturns as seen in past cycles like 1929 or 2000. He explains that speculative enthusiasm, fueled by debt and overvaluation, often precedes a crash when rising rates or taxation force asset sales, causing widespread losses and recession. Dalio also outlines his "Big Cycle" theory, describing an approximate 80-year pattern where widening wealth gaps, massive government deficits, and shifting geopolitical power (like China's rise) create internal conflict and global instability. He emphasizes that we are in a late-cycle, transitional phase where traditional powers like the US and UK face decline. For personal wealth protection, Dalio advises diversification beyond cash into assets like stocks, bonds, real estate, and particularly gold, which he prefers over Bitcoin. While he holds about 1% of his portfolio in Bitcoin as a non-printable hard asset, he views gold as more secure from technological or governmental threats. Regarding AI's impact, Dalio believes it will disproportionately benefit capital owners, worsening inequality by replacing both physical and cognitive labor. He suggests that human intuition and emotional intelligence, combined with AI, will be key for future workers. On taxation, Dalio argues that wealth taxes are impractical and risk triggering asset sell-offs, reducing productive investment. He points to the UK as a cautionary example of debt, low productivity, and political strife. Geopolitically, Dalio foresees a more regionalized world, with the US showing weakness in prolonged conflicts like with Iran, akin to past imperial declines. The ideal outcome, he suggests, is coexisting powerful blocs (e.g., Americas, China-Asia Pacific) without major war.

marsbit4 h fa

In Conversation with Ray Dalio: We Are Currently in an AI Bubble, with 1% of My Portfolio in Bitcoin

marsbit4 h fa

Daily 7.2 Trillion KRW: Foreign Capital's Record Net Buying on Friday! Wall Street Says Headwinds for Korean Stock Fund Flows Have Subsided

South Korean stock market sees a dramatic shift in fund flows. On July 31, foreign investors made a record net purchase of approximately KRW 7.2 trillion in KOSPI stocks, marking a fundamental reversal from the persistent large-scale net outflows seen in previous months. This contributed to a significant narrowing of foreign net selling in July to KRW 9.8 trillion, down sharply from KRW 48.4 trillion in June and KRW 44.5 trillion in May. Simultaneously, domestic institutional pressure eased. South Korean pension funds and asset managers turned to a net buying position in July, purchasing KRW 1.0 trillion worth of KOSPI shares, contrasting with net sales in May and June. Market volatility is expected to be dampened by new financial regulations. Effective July 31, the Financial Services Commission tightened access for retail investors to single-stock leveraged ETFs by raising the minimum cash deposit requirement. Trading volumes for these products subsequently dropped to about 50% of their monthly average. Citigroup Research maintains its year-end KOSPI target of 10,000 points. The firm cites several supportive factors: the substantial easing of headwinds from capital outflows, a robust fundamental outlook for the semiconductor sector, historically low market valuations, strong economic fundamentals, and the potential for policy support from financial authorities if needed.

marsbit4 h fa

Daily 7.2 Trillion KRW: Foreign Capital's Record Net Buying on Friday! Wall Street Says Headwinds for Korean Stock Fund Flows Have Subsided

marsbit4 h fa

Trading

Spot

Articoli Popolari

Come comprare CORE

Benvenuto in HTX.com! Abbiamo reso l'acquisto di CORE (CORE) semplice e conveniente. Segui la nostra guida passo passo per intraprendere il tuo viaggio nel mondo delle criptovalute.Step 1: Crea il tuo Account HTXUsa la tua email o numero di telefono per registrarti il tuo account gratuito su HTX. Vivi un'esperienza facile e sblocca tutte le funzionalità,Crea il mio accountStep 2: Vai in Acquista crypto e seleziona il tuo metodo di pagamentoCarta di credito/debito: utilizza la tua Visa o Mastercard per acquistare immediatamente CORECORE.Bilancio: Usa i fondi dal bilancio del tuo account HTX per fare trading senza problemi.Terze parti: abbiamo aggiunto metodi di pagamento molto utilizzati come Google Pay e Apple Pay per maggiore comodità.P2P: Fai trading direttamente con altri utenti HTX.Over-the-Counter (OTC): Offriamo servizi su misura e tassi di cambio competitivi per i trader.Step 3: Conserva CORE (CORE)Dopo aver acquistato CORE (CORE), conserva nel tuo account HTX. In alternativa, puoi inviare tramite trasferimento blockchain o scambiare per altre criptovalute.Step 4: Scambia CORE (CORE)Scambia facilmente CORE (CORE) nel mercato spot di HTX. Accedi al tuo account, seleziona la tua coppia di trading, esegui le tue operazioni e monitora in tempo reale. Offriamo un'esperienza user-friendly sia per chi ha appena iniziato che per i trader più esperti.

263 Totale visualizzazioniPubblicato il 2024.12.13Aggiornato il 2026.06.02

Come comprare CORE

Discussioni

Benvenuto nella Community HTX. Qui puoi rimanere informato sugli ultimi sviluppi della piattaforma e accedere ad approfondimenti esperti sul mercato. Le opinioni degli utenti sul prezzo di CORE CORE sono presentate come di seguito.

活动图片