Data Reveals: Is Solana's Slower Transfer Speed Actually Caused by Validators 'Playing Games'?

比推Опубликовано 2026-01-08Обновлено 2026-01-08

Введение

Jito Labs launched the IBRL Explorer tool to analyze Solana validator behavior in block construction, revealing widespread "timing games" that slow down the network. The tool evaluates validators based on slot time (35%), even distribution of non-vote transactions (40%), and early vote processing (25%). Many validators engage in "late packing," where non-vote transactions are delayed until the final ticks of a slot, prioritizing profit maximization through MEV extraction (e.g., backrunning or sandwich attacks) at the expense of network latency and user experience. This disrupts Solana’s intended streaming design, increases execution variance, and exacerbates negative market structure effects like wider bid-ask spreads. A debate exists between Jito and Temporal (developer of Harmonic client) over what constitutes optimal block construction. Temporal argues IBRL scores favor Jito’s approach and misclassify Harmonic’s auction-based method, which batches transactions but claims continuous execution. Harmonic outperforms in per-block revenue but faces scrutiny over potential user trade-offs. Protocol-level solutions like Multi-Concurrent Proposers (MCP) aim to eliminate single-leader monopolies by enabling parallel block building, but depend on Alpenglow’s mainnet launch (est. 2026). Meanwhile, Jito’s BAM client, now adopted by ~12% of stake, offers auditable ordering logic to mitigate MEV externalities. The competition highlights tensions between validator profitability and net...

Author: Carlos, Luke Leasure

Original Title: Solana’s block-building wars

Compiled and Edited by: BitpushNews


2026年1月5日, JITO launched a public tool called IBRL Explorer, designed to measure the block packaging behavior of validators on Solana and expose the previously invisible "timing games" in block construction.

First, we need to understand some background about Solana's market structure. Solana is designed as a streaming system: ideally, while a block is being built, the leader continuously disseminates data fragments (i.e., small data packets). This behavior aims to minimize transaction landing latency (the interval between a validator receiving a transaction and that transaction being processed). However, whether Solana's transaction pipeline is truly continuous actually depends on how validators assemble their blocks.

Jito defines the optimal block packaging behavior from the validator's perspective: fast construction, continuous streaming transmission, and early state propagation. Jito's IBRL score is a weighted mix of these three variables:

  • Slot Time (35%): Validators score higher if their block is built within the following thresholds: a handover slot taken over from another validator is less than 550 milliseconds, or as a continuous slot (i.e., any remaining slot in the leader's rotation) is less than 380 milliseconds.

  • Non-Vote Transaction Packaging (40%): Validators are rewarded with points when transactions are evenly distributed across the 64 ticks of a slot (rather than cramming most non-vote transactions into the last few ticks of the slot, i.e., "delayed packaging"). This is the most controversial variable in the IBRL score, which will be explained in detail later.

  • Early Voting (25%): Validators get a full score when at least 90% of the vote transactions are processed within the first 32 ticks. The score decreases if votes are pushed to later parts of the block.

IBRL Explorer shows that many validators exhibit delayed packaging of non-vote transactions, and in some cases, even extend the slot time. Delayed packaging postpones state propagation, increases the variance of execution results, undermines Solana's streaming design, and thus reduces network latency. What you get is not a continuous data stream, but a bursty data eruption.

In an optimal block, as in the example below from a Helius validator, most vote transactions are processed in the first half of the block ("early state propagation"), while non-vote transactions are relatively evenly distributed across the 64 ticks of the slot ("continuous streaming transmission").

In contrast, intentional delayed packaging is evident in the example block from Galaxy below, where most non-vote transactions are crammed into the last few ticks of the slot. By doing this, validators prioritize extractive value over network health by delaying state transitions until the last moment.

According to Lucas Bruder, co-founder and CEO of Jito Labs, validators are incentivized to wait until the last moment of the slot to observe more incoming transactions, selecting those with the highest fees to maximize rewards.

But why should users care? While maximizing profit is rational behavior for an individual validator, this behavior introduces hidden censorship, delays state propagation, and forces the next leader to "catch up," thereby slowing down the entire network.

More importantly, delayed packaging is also directly related to Solana's emerging "Payment for Order Flow" (PFOF) dynamics, as outlined by Benedict Brady in this article. Because wallets and applications often generate pre-routed signed transactions (i.e., market orders with slippage limits), valuable "back-running" options are embedded in the orders. The user-beneficial practice is to sell this back-running right to trading firms, while the extractive practice is to conduct "sandwich attacks." Either way, there is an incentive to increase the value of back-running by slowing down transaction landing speed, which is exactly what delayed packaging achieves.

This incentive pushes Solana towards a more adversarial market structure for applications and users. It also weakens the key guarantees that market makers rely on, particularly regarding in-block cancellations and deterministic execution, leading to wider bid-ask spreads. Without streaming, no matter how excellent the application logic, a truly real-time market remains out of reach for Solana.

Temporal vs. Jito Debate

Before delving into how Solana addresses this issue, it must be acknowledged that there is an active debate even about what constitutes "good" block construction. Temporal, a core contributor to Harmonic, has raised objections to Jito's framework and IBRL scoring method. Their criticism is that the score embeds a specific set of design preferences that favor Jito's block construction method and by default make Harmonic appear worse, reflected in the consistently lower scores of validators running Harmonic.

According to the Harmonic co-founder, Harmonic's blocks are executed continuously without delay, but data fragments are only released after an auction process lasting about 300 milliseconds is completed. This method gives block builders enough time to compete and gives the rest of the network enough time to replay Harmonic's block. The visualization below shows the same slot (391,822,619) from Temporal Emerald, a validator running Harmonic.

From the context of how the block is propagated (above figure), Harmonic's execution appears to be evenly spaced. In other words, the block builder continuously constructs the block through parallel block construction, and the reason transactions are only concentrated in the final ticks (below figure) is because that is the moment the auction resolves.

Over the past 30 days, Harmonic has outperformed both Jito and Firedancer in terms of average and median total revenue per block (priority fees + tips), thereby delivering higher rewards to validators and stakers. The open question is whether this superior performance is achieved at the expense of users through the timing games described above.

Source: https://reports.firedancer.io/

Multiple Concurrent Proposers (MCP) & BAM

After presenting both sides, one point still holds true: continuous streaming is crucial.

Harmonic's claim is not that streaming is unimportant, but that IBRL fails to capture how Harmonic achieves it and may misclassify its auction mechanism as "timing games." At this stage, I do not yet have sufficient technical background or data to form a definitive opinion, but Solana is already developing a protocol-level solution aimed at addressing the underlying incentive problem.

This solution is Multiple Concurrent Proposers (MCP), an architecture developed by Anatoly Yakovenko and Max Resnick. The motivation is simple: under the current single-leader model, one proposer controls ordering and can effectively act later than others, enabling delayed packaging and reinforcing the PFOF-like dynamics described above. MCP eliminates the single leader's monopoly by having multiple proposers build candidate blocks in parallel and independently. This architecture prevents a single leader from unilaterally suppressing transactions or delaying execution to extract profits.

That said, a prerequisite for MCP is the launch of Alpenglow on the mainnet. Alpenglow is expected to launch in 2026, but the timeline remains uncertain. In the meantime, Jito's BAM might drive change by making ordering logic auditable. BAM aims to expand Solana's micro-structural design space, enabling applications that require finer control over ordering (e.g., prioritizing cancellation orders for perpetual contract trading venues), while also helping to mitigate negative MEV externalities like front-running. The figure below outlines BAM's transaction pipeline.

BAM (Agave-BAM) is currently the third-largest client on Solana by stake share (approx. 12%), behind Agave-Jito and Frankendancer-Jito. Approximately 205 validators are already running BAM, highlighting its rapid adoption among the Solana validator set. In contrast, Harmonic remains relatively small, holding just over 3% of the stake share and about 20 validators.

It will be worth watching how the competitive dynamics of block construction evolve in the coming months and what this means for Solana's market structure.

Original article link: https://www.bitpush.news/articles/7601133

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

QWhat is the purpose of Jito's IBRL Explorer tool, and what problem does it aim to address on the Solana network?

AJito's IBRL Explorer is a public tool designed to measure validator block packing behavior on Solana and expose the previously invisible 'timing games' in block construction. It aims to address issues where validators delay packing non-vote transactions to the end of a slot, which postpones state propagation, increases variance in execution results, and undermines Solana's streaming design, ultimately degrading network latency.

QAccording to the Jito framework, what are the three key variables that make up the IBRL score, and what is the weight of each?

AThe three key variables in the IBRL score are: 1. Slot Time (35% weight): Validators score higher if their block is built within a threshold time. 2. Non-Vote Transaction Packing (40% weight): Validators are rewarded when transactions are evenly distributed across the slot's 64 ticks, rather than being packed late. 3. Early Voting (25% weight): Validators get a full score if at least 90% of vote transactions are processed within the first 32 ticks.

QWhat is 'delayed packing' by validators, and why are they incentivized to do it according to Lucas Bruder?

A'Delayed packing' is when validators intentionally hold non-vote transactions and pack most of them into the final few ticks of a slot. According to Lucas Bruder, co-founder and CEO of Jito Labs, validators are incentivized to wait until the last moment of a slot to observe more incoming transactions and select those paying the highest fees, thereby maximizing their rewards and extractable value.

QWhat is the core criticism from Harmonic (Temporal) regarding Jito's IBRL scoring method?

AHarmonic's core criticism is that Jito's IBRL score embeds a specific set of design preferences that favor Jito's own block-building method. They argue that the score incorrectly classifies Harmonic's auction mechanism as a 'timing game,' making validators running Harmonic appear worse, even though Harmonic claims its blocks are executed continuously and data shards are only released after an auction resolves.

QWhat are the two proposed solutions mentioned in the article to address the underlying incentive problems in Solana's block building?

AThe two proposed solutions are: 1. Multi-Concurrent Proposers (MCP): A protocol-level solution that allows multiple proposers to build candidate blocks in parallel, eliminating the single leader's monopoly and its ability to delay packing. 2. Jito's BAM (Block-Engine & Auction Manager): A solution that aims to make ordering logic auditable, extend Solana's micro-structure design space, and help mitigate negative MEV externalities like front-running.

Похожее

Yang Ge Gary: Agent Economy and AI Sub-Microeconomics

"Agent Economy and AI Submicroeconomics" by Gary Yang discusses the evolution of AI Agent economies, written from Singapore in June 2026. The author observes a significant "civilizational generational gap" in AI development, particularly highlighted by events in Silicon Valley. The article identifies a current bottleneck in the transition from Human-to-Agent (H2A) economies to true Agent-to-Agent (A2A) ecosystems. While AI Payment protocols are rapidly emerging, many implementations remain non-AI-native, focusing on traditional human decision-making models rather than leveraging autonomous Agent decision-making. A core thesis is the inevitable formation of an **Agent Economy**, defined as a system where autonomous AI Agents create, exchange, and capitalize value independently. This requires new infrastructure: **AI Protocols**, which are the foundational rules and standards for Agent interaction. The piece explores the relationship and current gap between AI Protocols and Crypto Protocols, suggesting political and regulatory factors from traditional finance are temporarily constraining development. However, a future fusion into a mature Digital Protocol system is deemed inevitable based on first principles. The author introduces **AI Agent Submicroeconomics**, contrasting it with human economics. Key differences include higher transaction frequency, lower value per transaction, efficiency-driven (not emotion-driven) decisions, task-oriented (not consumption-oriented) behavior, and near-zero organizational and communication costs. A biological analogy is drawn, comparing an Agent to a cell, its LLM to a nucleus, and its protocol stack to a cell membrane. The rise of **AIFi** (AI Finance) is presented as a natural consequence, where value originates from AI-native activities and is subsequently tokenized and financialized. This contrasts with DeFi/TradFi, where finance is the source of value. The concept of a **Financial Chip (FinChip)**—an autonomous AI Agent integrated with a crypto smart contract—is highlighted as key infrastructure for this new economy. The conclusion emphasizes that **AI-Native** thinking represents a paradigm shift distinct from "Internet+" upgrades. It requires reasoning from first principles, focusing on energy-value shortest paths and maximum efficiency, which presents a steep learning curve and significant challenge for all participants in this rapidly evolving field.

marsbit36 мин. назад

Yang Ge Gary: Agent Economy and AI Sub-Microeconomics

marsbit36 мин. назад

ViaBTC CEO Haipo Yang: Looking Back at the Decade, Re-understanding the Value of Crypto

In "A Decade in Retrospect: Re-evaluating the Value of Crypto," ViaBTC & CoinEx CEO Haipo Yang reflects on the cryptocurrency industry's evolution since founding ViaBTC in 2016. Initially a niche interest, Crypto has fundamentally transformed key financial infrastructures like market making, trading, settlement, and issuance through open protocols, as seen with Uniswap and GMX, and enabled efficient cross-border transfers via stablecoins. While acknowledging speculation's role in fueling innovation and liquidity, Yang warns it often overshadows real demand. He distinguishes between blockchain (a trust-minimizing technology), Web3 (an application model requiring genuine utility), and Crypto assets. The latter's value derives from block space as a commodity (e.g., gas fees) and "sovereign liquidity premium" (e.g., Bitcoin's censorship resistance), with most tokens lacking such dual support. Looking ahead, Yang argues the next decade's focus should shift from "open participation" to "sustainable participation," emphasizing reliable infrastructure. He predicts consolidation towards networks with strong security and liquidity (like Bitcoin and Ethereum), and sees DeFi becoming a specialized tool rather than a mass replacement for traditional finance. Crypto will integrate into traditional finance (e.g., via Bitcoin ETFs) but may sacrifice some decentralization for mainstream adoption. Real future demand may come from AI agents and machine economies needing permissionless settlement. Ultimately, Yang believes Crypto's enduring value lies not in hype or replacing everything, but in verifiably reducing trust costs, increasing efficiency, and providing stable, transparent services across market cycles.

marsbit36 мин. назад

ViaBTC CEO Haipo Yang: Looking Back at the Decade, Re-understanding the Value of Crypto

marsbit36 мин. назад

Торговля

Спот
Фьючерсы

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

Как купить S

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

1.4k просмотров всегоОпубликовано 2025.01.15Обновлено 2026.06.02

Как купить S

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

Он решает проблемы масштабируемости, совместимости между блокчейнами и стимулов для разработчиков с помощью технологических инноваций.

2.3k просмотров всегоОпубликовано 2025.04.09Обновлено 2025.04.09

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

HTX Learn — ваш проводник в мир перспективных проектов, и мы запускаем специальное мероприятие "Учитесь и Зарабатывайте", посвящённое этим проектам. Наше новое направление .

1.8k просмотров всегоОпубликовано 2025.04.10Обновлено 2025.04.10

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

Обсуждения

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

活动图片