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

marsbitОпубликовано 2026-03-28Обновлено 2026-03-28

Введение

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.

Трендовые криптовалюты

Связанные с этим вопросы

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.

Похожее

Майкл Сэйлор: «Мы никогда не говорили, что никогда не будем продавать биткоины»

Председатель стратегической комиссии Майкл Сэйлор прокомментировал сообщения о новом разрешении компании Strategy на продажу биткоинов. Он заявил, что данное разрешение не является новым — оно было объявлено ещё 29 июня в рамках системы управления капиталом компании. Соглашение позволяет продавать BTC на сумму до 5 миллиардов долларов для определённых целей, но не обязывает компанию к продаже. Сэйлор подчеркнул, что Strategy никогда официально не брала на себя обязательство никогда не продавать свои биткоины, хотя и рассчитывает оставаться чистым покупателем BTC в долгосрочной перспективе. Он назвал текущие новости «старыми», переподанными как новые, и подтвердил, что программа монетизации биткоинов компании не предполагает обязательной продажи её активов.

cryptonews.ru1 ч. назад

Майкл Сэйлор: «Мы никогда не говорили, что никогда не будем продавать биткоины»

cryptonews.ru1 ч. назад

«Летняя пила» продолжается: пробой $67 000 станет началом роста биткоина

Цена биткоина продолжает консолидироваться в диапазоне $58 000–$67 000 с начала июня. 1 августа актив снизился до $62 217. Аналитики расходятся в краткосрочных прогнозах: некоторые, как Crypto Candy, ожидают тестирования уровня $60 000 или ниже, пока цена находится под $66 000. Другие, как Jelle, видят в боковом движении «летнюю пилу» и придерживаются стратегии усреднения. Ключевым для определения дальнейшего направления считается уровень $67 000. По мнению Daan Crypto Trades, его пробой необходим для выхода из затянувшейся паузы. Roman полагает, что уверенный пробой с объемом может быстро запустить рост к $70 000–$80 000 и выше. С долгосрочной точки зрения, макроаналитик Герт ван Лаген рассматривает текущую фазу как накопление в рамках масштабной формации «чаша с ручкой». Он отмечает, что долгосрочные держатели не спешат продавать актив, о чем говорит показатель NUPL. Таким образом, рынок находится в решающей фазе, где пробой либо поддержки $60 000, либо сопротивления $67 000 задаст тренд на ближайшее будущее.

cryptonews.ru1 ч. назад

«Летняя пила» продолжается: пробой $67 000 станет началом роста биткоина

cryptonews.ru1 ч. назад

На неделе с 3 по 9 августа стоит обратить внимание: Закон CLARITY, возможно, будет поставлен на голосование в Сенате; SpaceX и Circle опубликуют финансовые отчеты

**Важные события на следующей неделе (3–9 августа 2026 г.)** **Ключевые даты:** * **3 августа:** Публикация отчетов American Bitcoin за Q2. Полное закрытие сервисов DeFi-трекера Zapper и кошелька Ctrl Wallet. LayerZero прекратит поддержку ретрансляторов v1. Upbit прекратит торговлю токенами AQT и AERGO. * **4 августа:** Публикация финансовых отчетов SpaceX и Hut 8 за второй квартал 2026 года. * **5 августа:** Circle опубликует отчет за Q2. Начинается предварительное ценовое консультирование для IPO компании Unitree Tech (Ушу Цзишу) в Китае. * **6 августа:** Первая крупная разблокировка акций SpaceX — до 12% от общего капитала. * **7 августа:** Выход важных данных по рынку труда США (отчет о занятости за июль). Предельный срок для Сената США — получить 60 голосов в поддержку **Закона CLARITY** (билль о регулировании криптовалют и этике). Ожидается выпуск Grok 4.6 от xAI. * **8 августа:** Начало принудительной подачи сигналов в сети Bitcoin согласно предложению BIP-110. * **На неделе (дата уточняется):** Ожидается голосование полного состава Сената США по **Закону CLARITY**. Выход нового релиза XRP Ledger (v3.3.0) с новыми функциями, такими как конфиденциальные данные и пакетные транзакции. **Основные темы недели:** корпоративная отчетность (SpaceX, Circle), регулирование (CLARITY Act), рыночные события (разблокировка акций SpaceX, отчет по занятости в США) и обновления в технологиях блокчейна.

marsbit2 ч. назад

На неделе с 3 по 9 августа стоит обратить внимание: Закон CLARITY, возможно, будет поставлен на голосование в Сенате; SpaceX и Circle опубликуют финансовые отчеты

marsbit2 ч. назад

Акции упали сильнее, чем криптовалюты. Куда делись деньги?

Автор: Кэти,白话区块链 28-29 июля, Сеул. Индекс Kospi впервые в истории Южной Кореи два дня подряд срабатывал на приостановку торгов. Первый день: падение на 10.84%, второй день: -5.98%. SK Hynix, крупнейшая по весу акция, потеряла за два дня около 23%. Падение Nasdaq, глобальный обвал акций полупроводниковых компаний, массовые потери на кредитных ETF. За два дня откат Kospi от пика июня достиг 40%. Июль угрожает стать худшим месяцем в истории индекса. Все ранее перегретые сделки были перевернуты, как стол. Это не локальный негатив по одной акции, а глобальное принудительное снижение кредитного плеча. Самое парадоксальное: на этот раз больше всего на «криптовалютное» падение похожи именно акции. Спот: прибыль SK Hynix за второй квартал достигла рекордных 60.54 трлн вон, но из-за несоответствия прогнозу в 64.22 трлн акция подверглась жесткой распродаже. Хорошие новости не растут — это уже плохая новость. Производные инструменты пострадали еще сильнее. Кредитный ETF с плечом 2x на SK Hynix упал на 83% с пика, потеряв в стоимости более 1 трлн гонконгских долларов. Эмитент был вынужден изменить правила продукта. Неожиданно: Биткоин, известный высокой волатильностью, с 1 июля вырос почти на 15%, в то время как акции демонстрировали «криптовалютную» динамику. Это не паника всего рынка, а точечный сброс перегретых позиций. Триггеры: отчет SK Hynix и фактор Китая — крупнейшее IPO ChangXin Memory, направленное на расширение производства DRAM, создало конкуренцию для нарратива о дефиците памяти для ИИ. Дополнительное давление — нормализация политики Банка Японии и потенциальное сокращение кэрри-трейда в иенах. Эксперт Дэн Найлз считает, что это не крах логики ИИ, а «краткосрочное дно», вызванное принудительными ликвидациями мелких инвесторов и хедж-фондов. Промышленная логика не мертва — умерло кредитное плечо. Перетекли ли деньги из акций в Биткоин? Нет. «Устойчивость» Биткоина объясняется тем, что он уже прошел фазу распродаж раньше. В мае-июне американские спотовые BTC-ETF зафиксировали рекордный отток средств. К июлю продавать было уже нечего. Небольшой приток в июле — лишь частичное восстановление. Настоящие «защитные» деньги пошли в золото. Коэффициент корреляции между Биткоином и золотом упал до -0.88. Нарратив о «цифровом золоте» разбит: золото — для сохранения капитала, Биткоин — для роста. Деньги придут в криптоактивы при выполнении трех условий: смягчение глобального давления на ликвидность; снижение ставок ФРС без рецессии; принятие закона CLARITY, устраняющего регуляторные неопределенности. Пока Биткоин — не убежище, а актив, который раньше других прошел очистку. Но когда шторм утихнет и глобальный капитал снова начнет распределяться, Биткоин займет место в первых рядах очереди. Место уже зарезервировано.

marsbit2 ч. назад

Акции упали сильнее, чем криптовалюты. Куда делись деньги?

marsbit2 ч. назад

Диалог с Далио: Сейчас мы находимся в пузыре ИИ, 1% моего инвестиционного портфеля — это биткоин

Источник: интервью Рэя Далио, основателя Bridgewater Associates, для подкаста "The Diary Of A CEO". Далио, предсказавший кризис 2008 года, обсуждает "большой цикл" — концепцию, охватывающую долговые проблемы, растущее неравенство и геополитические сдвиги. Он указывает, что текущий ажиотаж вокруг ИИ демонстрирует классические признаки пузыря, который может лопнуть из-за высокой долговой нагрузки, роста процентных ставок и чрезмерной эмиссии акций, что способно привести к рецессии. Для защиты личного капитала в неопределенные времена Далио советует диверсификацию: вместо хранения наличных инвестировать в акции, золото, облигации. Сам он держит около 1% портфеля в биткоине, считая его "твердыми деньгами", но предпочитает физическое золото из-за его статуса резервного актива и независимости от технологических рисков. Говоря о влиянии ИИ, Далио отмечает, что технология заменяет не только физический труд, но и элементы мышления, что увеличит разрыв между капиталом и трудом. Ключевыми останутся человеческие качества — эмоции и интуиция, а успеха добьются те, кто научится работать в партнерстве с ИИ. На геополитической арене, по его мнению, мир движется к регионализации с центрами в виде США и Китая. Вовлечение США в конфликты, подобные иранскому, обнажает снижение их абсолютного влияния. Внутренние вызовы, такие как дебаты о налогах на богатство, риск капитального бегства и низкая производительность, также ставят под вопрос стабильность традиционных держав в текущей фазе цикла.

marsbit5 ч. назад

Диалог с Далио: Сейчас мы находимся в пузыре ИИ, 1% моего инвестиционного портфеля — это биткоин

marsbit5 ч. назад

Торговля

Спот

Популярные статьи

Как купить CORE

Добро пожаловать на HTX.com! Мы сделали приобретение CORE (CORE) простым и удобным. Следуйте нашему пошаговому руководству и отправляйтесь в свое крипто-путешествие.Шаг 1: Создайте аккаунт на HTXИспользуйте свой адрес электронной почты или номер телефона, чтобы зарегистрироваться и бесплатно создать аккаунт на HTX. Пройдите удобную регистрацию и откройте для себя весь функционал.Создать аккаунтШаг 2: Перейдите в Купить криптовалюту и выберите свой способ оплатыКредитная/Дебетовая Карта: Используйте свою карту Visa или Mastercard для мгновенной покупки CORE (CORE).Баланс: Используйте средства с баланса вашего аккаунта HTX для простой торговли.Третьи Лица: Мы добавили популярные способы оплаты, такие как Google Pay и Apple Pay, для повышения удобства.P2P: Торгуйте напрямую с другими пользователями на HTX.Внебиржевая Торговля (OTC): Мы предлагаем индивидуальные услуги и конкурентоспособные обменные курсы для трейдеров.Шаг 3: Хранение CORE (CORE)После приобретения вами CORE (CORE) храните их в своем аккаунте на HTX. В качестве альтернативы вы можете отправить их куда-либо с помощью перевода в блокчейне или использовать для торговли с другими криптовалютами.Шаг 4: Торговля CORE (CORE)С легкостью торгуйте CORE (CORE) на спотовом рынке HTX. Просто зайдите в свой аккаунт, выберите торговую пару, совершайте сделки и следите за ними в режиме реального времени. Мы предлагаем удобный интерфейс как для начинающих, так и для опытных трейдеров.

703 просмотров всегоОпубликовано 2024.03.29Обновлено 2026.06.02

Как купить CORE

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на CORE (CORE) представлены ниже.

活动图片