TPS is Just the Entry Ticket, Ordering Decides Success or Failure: On-Chain Transactions Enter a New Era of 'Application-Awareness'

marsbitPublished on 2025-12-29Last updated on 2025-12-29

Abstract

The competition between blockchains has shifted from TPS (transactions per second) to transaction ordering, which critically impacts market maker behavior, liquidity depth, and pricing. Transaction ordering refers to how transactions in the mempool are sequenced and included in blocks. This process affects transaction cost, MEV (Maximal Extractable Value), success rate, and fairness. For market makers, the ability to cancel orders quickly during volatility is essential—failure leads to risks like sniping, where high-Gas transactions exploit pending orders, forcing wider spreads and reduced liquidity. Innovations are moving from generic, Gas-based ordering to "application-aware sequencing," where transaction intent and fairness rules take priority. Examples include: - Hyperliquid, which prioritizes cancellations and post-only orders at the consensus layer. - Solana’s Application Controlled Execution (ACE) and BAM nodes, allowing DEXs to set custom ordering rules (e.g., market-maker priority). - Chainlink’s SVR, which uses MEV auctions to redistribute value from liquidations triggered by oracle updates. These developments suggest that tailored transaction sequencing is becoming essential—not just an improvement—for on-chain trading, potentially enabling DEXs to surpass CEXs in efficiency and fairness.

Competition between chains has escalated to the level of "transaction ordering," which directly impacts market makers' bid-ask spreads and depth🧐🧐

The demand for "general-purpose chains" has been disproven. Current chain-to-chain competition focuses on two levels:

1) Building "application chains" on the foundation of existing mature businesses, allowing blockchain to supplement existing operations in areas like settlement;

2) Competition at the level of "transaction ordering."

This article focuses on the second level.

Ordering directly influences the behavior of market makers. This is the core issue.

What is Transaction Ordering?

On-chain, user transactions are not immediately written to a block; they first enter a "waiting area" (Mempool). There may be thousands of transactions simultaneously, and it must be decided by a sequencer, validator, or miner:

1) Which transactions are included in the next block?

2) In what order are these transactions arranged?

The process of "deciding the order" is transaction ordering, which directly affects the transaction costs for on-chain users, MEV conditions, transaction success rate, and fairness.

For example, during network congestion, ordering determines whether a transaction can be quickly added to the chain or waits indefinitely in the mempool.

For high-frequency traders like market makers, whether a cancellation order takes effect is more critical than a placement order succeeding. The priority given to processing cancellation orders directly impacts whether market makers dare to offer deep liquidity.

In the last cycle, everyone pursued TPS, believing that speed alone could improve on-chain transaction settlement. But it has been proven that, besides speed, the risk pricing of market makers is equally important.

On centralized exchanges, trade matching strictly follows the "price-time priority" principle. In this highly deterministic environment, market makers can provide deep order book liquidity with extremely narrow spreads.

On-chain, after transactions enter the Mempool waiting area, nodes select transactions based on Gas fees, which creates room for sniping existing orders by offering higher Gas.

Suppose TRUMP is priced at $4.5, and a market maker places a buy order at $4.4 and a sell order at $4.6 to provide depth. But the exchange price of TRUMP suddenly crashes to $4.

At this point, the on-chain market maker wants to cancel the $4.4 buy order but gets sniped by a high-frequency trader offering higher Gas—buying at $4 and selling to the market maker at $4.4.

Therefore, market makers can only widen their spreads to reduce risk.

The purpose of the new generation of ordering innovations is to transition from "general ordering" to "Application-Aware Sequencing."

The ordering layer can understand transaction intent and order based on preset fairness rules, not just based on Gas fees.

1) Define the ordering method at the consensus layer

A typical case is Hyperliquid. It stipulates at the consensus layer that cancellation and Post-Only transactions take priority, breaking the Gas priority rule.

For market makers, being able to exit is paramount. During sharp price fluctuations, cancellation requests are always executed before others' takers.

Market makers fear being sniped the most. Hyperliquid precisely guarantees that cancellations are always prioritized—when the price drops, market makers cancel their orders, and the system forcibly prioritizes processing the cancellations, allowing market makers to successfully hedge risks.

On the day of the 10.11 crash, Hyperliquid market makers stayed online continuously, with spreads of 0.01–0.05%. The reason is that market makers knew they could get out.

2) Add new ordering methods at the sequencing layer

For example, Solana's Application Controlled Execution (ACE). Jito Labs developed BAM (Block Assembly Marketplace), introducing specialized BAM nodes responsible for transaction collection, filtering, and ordering.

Nodes run in a Trusted Execution Environment (TEE), ensuring the privacy of transaction data and the fairness of ordering.

Through ACE, DEXs on Solana (like Jupiter, Drift, Phoenix) can register custom ordering rules with BAM nodes. For example, market maker priority (similar to Hyperliquid), conditional liquidity, etc.

Additionally, proprietary AMM market makers like HumidiFi represent innovation at the ordering level, using Nozomi to connect directly with major validators to reduce latency and complete transactions.

During specific transactions, HumidiFi's off-chain servers monitor prices across platforms. The oracle communicates with the on-chain contract to inform it of the situation. Nozomi acts like a VIP channel, allowing effective order cancellation before execution.

3) Utilizing MEV facilities and private channels

Chainlink SVR (Smart Value Recapture) focuses on the归属 (belonging) of the value generated by ordering (MEV).

By deeply integrating with oracle data, it redefines the ordering rights and value distribution of liquidation transactions. After generating a price update, Chainlink nodes send it through two channels:

1) Public channel: Sent to the standard on-chain aggregator (serving as a backup, but in SVR mode, there is a slight delay to leave an auction window).

2) Private channel (Flashbots MEV-Share): Sent to an auction market supporting MEV-Share.

This way, the auction proceeds from liquidations triggered by oracle price changes in lending protocols (i.e., the amount searchers are willing to pay) are no longer solely captured by miners; most are captured by the SVR protocol.

Summary

If TPS is the entry ticket, then having only TPS is completely insufficient now. Custom ordering logic might not just be an innovation but a necessary path for putting transactions on-chain.

It might also be the beginning of DEXs surpassing CEXs.

Related Questions

QWhat is the core argument of the article regarding the evolution of blockchain competition beyond TPS?

AThe article argues that competition between blockchains has moved beyond just transaction speed (TPS) and is now focused on the critical layer of 'transaction ordering' (sequencing). Effective and fair transaction ordering directly impacts market maker behavior, liquidity depth, and the overall user experience, making it a decisive factor for success.

QHow does transaction ordering on a blockchain negatively impact market makers, according to the article?

AIn a default 'gas-first' ordering system, market makers are vulnerable to being sniped. When an asset's price moves, a high-frequency trader can pay a higher gas fee to have their 'take order' (e.g., buying the asset at a low price) processed before the market maker's 'cancel order' (e.g., trying to withdraw their offer). This forces the market maker to buy the asset back at their own, now outdated, higher price, leading to losses and causing them to widen their spreads to mitigate risk.

QWhat is 'Application-Aware Sequencing' and can you name a project that implements it at the consensus layer?

A'Application-Aware Sequencing' is an innovative approach where the sequencing logic understands the intent of transactions (e.g., a cancelation vs. a trade) and orders them based on predefined fairness rules, not just gas fees. Hyperliquid is a prime example that implements this at the consensus layer by mandating that cancel and post-only orders are always prioritized over others, ensuring market makers can escape unfavorable positions.

QBesides consensus-layer changes, what other method does the article mention for improving transaction ordering on Solana?

AThe article mentions Solana's Application Controlled Execution (ACE) and the Block Assembly Marketplace (BAM) developed by Jito Labs. This allows decentralized exchanges (DEXs) like Jupiter and Drift to register custom ordering rules (e.g., market maker priority) with specialized BAM nodes, which operate in a Trusted Execution Environment (TEE) for privacy and fairness.

QHow does Chainlink's Smart Value Recapture (SVR) model change who benefits from MEV generated by oracle price updates?

AChainlink's SVR model changes MEV distribution by creating a two-path system for oracle price updates. After generating a new price, Chainlink nodes send it through a public channel (with a slight delay) and a private channel to a MEV auction market (like Flashbots MEV-Share). This allows the value from auctions for liquidation trades triggered by the price update to be captured mostly by the SVR protocol itself, rather than being kept entirely by miners/validators.

Related Reads

Gary Yang: Agent Economy and AI Submicroeconomics

**Title:** Agent Economy and AI Sub-Microeconomics - Gary Yang **Summary:** Following the AI singularity, the pace of evolution has accelerated rapidly, creating new generational disparities in technological advancement globally. While many regions are still grappling with single-agent bottlenecks, Silicon Valley has moved ahead into the next dimension: the Agent Economy and A2A ecosystems. The article outlines six key areas of this emerging paradigm: 1. **AI Payment Competition & H2A Bottlenecks:** A fierce battle for AI Agent payment protocol standards is underway (e.g., MPP, x402). However, most current efforts remain Human-to-Agent (H2A), essentially grafting AI onto traditional human-centric commerce, which creates a non-AI-native bottleneck. The true potential lies in Agent-to-Agent (A2A) autonomous economies. 2. **Agent Economy & the Inevitable A2A Trend:** The Agent Economy is defined by autonomous AI Agents creating, exchanging, and capitalizing value as independent economic actors. The A2A ecosystem describes their interactions. This represents the next major investment frontier, akin to the early days of e-commerce or DeFi, but with faster iteration and an AI-native, efficiency-first perspective that often diverges from human needs. 3. **AI Protocol vs. Crypto Protocol:** AI Protocols are the foundational rules for Agent interaction in an open network (communication, discovery, collaboration), akin to the governance and economic laws of the AI world. Currently, they focus on communication and weak boundaries, unlike Crypto Protocols which emphasize asset rights and clear ownership. While they appear different due to political-economic factors and legacy system constraints, their eventual convergence into a unified Digital Protocol system is seen as inevitable, driven by first principles. 4. **AI Agent Sub-Microeconomics & Biological Analogy:** AI Agent economics differ fundamentally from human economics: higher frequency/lower value transactions, energy/value direct correlation, efficiency-driven (not emotional) decisions, task-oriented (not consumption-oriented) behavior, and near-zero organizational/communication costs. A powerful analogy frames the Agent economy as a biological system: the LLM is the nucleus, the Agent harness is the cytoplasm, the Agent itself is a cell, its communication protocol is the cell membrane, and external tools (Skills, Prompts) are the extracellular environment. 5. **The Inevitability of AIFi & FinChip:** AIFi (AI Finance) represents the financial system where AI-native value within the Agent economy is tokenized and exchanged. Unlike TradFi/DeFi where value resides *in* finance, in AIFi, value originates *in* AI, and finance becomes its form. This shift is enabled by Agents taking over value discovery. FinChip (Financial Chip) is introduced as a key infrastructure—a fusion of AI autonomy and crypto smart contracts—forming intelligent financial assets to power the future A2A economy. 6. **AI-Native as a Paradigm Shift:** Adopting AI is not akin to "Internet+". It requires AI-Native thinking—designing systems based on first principles, the shortest energy-value path, and maximum efficiency. This abstract, counter-intuitive logic poses a significant, ongoing challenge for all practitioners, as effective, generalized upgrade methodologies will be slow to emerge in this rapidly evolving landscape.

链捕手23m ago

Gary Yang: Agent Economy and AI Submicroeconomics

链捕手23m ago

From 'The Big Short' to San Francisco: The Revelry and Dizziness Within the AI Bubble

From "The Big Short" to San Francisco: The Frenzy and Dizziness in the AI Bubble The article captures the intense, frenetic atmosphere in San Francisco, the epicenter of the current AI boom. Drawing a parallel to the "smell of money" from *The Big Short*, the author observes a city gripped by a singular status game centered entirely on AI and technology. This manifests in a palpable, caffeine-fueled anxiety ("people are shaking"), rampant comparison using vanity metrics like funding rounds, and pervasive "Big Bubble Behavior." The piece explores the city's stark contrasts: its dystopian streets versus beautiful vistas, and the disconnect between the doomsday concerns of some AI researchers and the optimistic, growth-focused "GTM" teams. It critiques the obsession with "math genius" founders as the new ticket to outsized returns, akin to scouting sports prodigies. Referencing economic historian Carlota Perez's "frenzy phase" and Karl Polanyi's "double movement," the author frames the boom as a period where financial speculation detaches from fundamentals, with society potentially becoming subordinate to a new economic force driven by "geniuses in data centers." Ultimately, while acknowledging the unprecedented wealth creation and party-like energy, the article concludes with cautionary advice: when the music is playing, you should dance, but don't get drunk. The core reminder is to stay grounded, avoid distorted judgment, and maintain perspective amidst the euphoria.

marsbit24m ago

From 'The Big Short' to San Francisco: The Revelry and Dizziness Within the AI Bubble

marsbit24m ago

Is AI Creating a New Class of 'Information Poor'?

AI is generating a new kind of "information poverty." The core issue isn't that AI denies answers to the poor; it's that it provides abundant, cheap, and plausible-sounding answers to everyone. This availability shifts the true scarcity from obtaining answers to possessing the **judgment to evaluate them** and the access to turn them into real-world opportunities. New information poverty thus describes those who have AI tools and outputs, but lack the complementary skills, authorization, and contextual experience to critically assess and act on them. Research reveals a multi-layered divide: access to AI is stratified by income and platform design (e.g., premium vs. free, embedded tools). In workplaces, usage heavily favors higher-paid, more experienced, or formally trained employees, with AI often automating entry-level tasks that were traditional stepping stones. Crucially, the heaviest users are often mid-career professionals whose existing expertise allows them to effectively judge and leverage AI outputs, while novices risk over-relying on them without building judgment. While controlled experiments show AI can significantly boost low-skilled workers' performance, real-world adoption and benefit are constrained by unequal social and organizational structures. Historically, general-purpose technologies first reward those with existing complementary capital. AI, by affecting judgment-based work, may accelerate and deepen this initial inequality gap, even if it narrows over decades. The danger lies in the illusion of competence it creates, potentially stunting the very critical thinking needed in an era where judgment is paramount.

marsbit58m ago

Is AI Creating a New Class of 'Information Poor'?

marsbit58m ago

Jensen Huang 'Saves' South Korean Stock Market: Locks In SK Hynix Memory, Chip Shortage to Continue

On June 5th, South Korea's stock market experienced a sharp decline, with major chipmakers like Samsung and SK Hynix dropping nearly 10%. Amidst the turmoil, NVIDIA CEO Jensen Huang's visit to Seoul played a dramatic role in boosting market sentiment. Following a dinner meeting with SK Group Chairman Chey Tae-won and SK Hynix CEO Kwak Noh-Jung, Huang confirmed that NVIDIA's new Vera CPU will utilize SK Hynix DRAM. The companies announced a multi-year technical partnership to co-develop next-generation memory for NVIDIA's AI infrastructure, covering products from data centers to personal AI and robotics. This collaboration extends beyond memory supply. SK Hynix is integrating NVIDIA's AI and Omniverse platform into its own semiconductor design and manufacturing processes, including computational lithography and creating digital twins of its fabrication plants for autonomous operation. While strengthening ties with SK Hynix, NVIDIA is diversifying its supply chain for the upcoming HBM4 memory, with Samsung, SK Hynix, and Micron all certified as suppliers for its Vera Rubin platform. Despite this, Huang warned that the global chip shortage, driven by relentless demand from AI factory construction, is expected to persist for several years across the entire supply chain. His visit underscores NVIDIA's systematic effort to deepen integration with South Korea's broader tech industry.

marsbit1h ago

Jensen Huang 'Saves' South Korean Stock Market: Locks In SK Hynix Memory, Chip Shortage to Continue

marsbit1h ago

Nasdaq Plunges 4.2% in a Single Day: Does "Black Friday" Burst the U.S. Stock Market Bubble?

The Nasdaq plunged 4.18% on June 5, 2026, its worst single-day drop in over a year, as a much stronger-than-expected US jobs report triggered fears of economic overheating and delayed Federal Reserve interest rate cuts. The selloff, centered on high-valuation tech and AI stocks like Nvidia and Broadcom, spread across major indices. The article examines whether this signals a market top. The strong May non-farm payrolls data, nearly double expectations, pushed bond yields higher, directly hurting rate-sensitive tech stocks. This exposed vulnerabilities in the crowded AI trade, where valuations had soared on narratives of infinite growth, despite emerging signs of slowing order momentum and corporate AI monetization challenges. Prior to the drop, market indicators flashed warning signs: historically high valuations (e.g., Shiller CAPE ratio near 39.5), extreme bullish sentiment, and high levels of leverage. Technical charts showed key support levels being breached. Wall Street is divided on the outlook. Bears, citing risks of "stagflation" and AI bubble comparisons to the dot-com era, warn of a potential significant correction. Bulls view the drop as a healthy correction within a bull market, underpinned by a strong economy and expected corporate earnings growth of around 7% in 2026. The immediate future hinges on upcoming key events: the May CPI inflation data and the mid-June FOMC meeting. Their outcomes will critically shape market expectations for the Fed's rate path. The article concludes that conditions for a major market top are aligning, marking a fragile transition from narrative-driven gains to a phase demanding validation from macroeconomic data and corporate fundamentals. Caution is advised.

marsbit1h ago

Nasdaq Plunges 4.2% in a Single Day: Does "Black Friday" Burst the U.S. Stock Market Bubble?

marsbit1h ago

Trading

Spot
Futures

Hot Articles

How to Buy SFP

Welcome to HTX.com! We've made purchasing SafePal (SFP) simple and convenient. Follow our step-by-step guide to embark on your crypto journey.Step 1: Create Your HTX AccountUse your email or phone number to sign up for a free account on HTX. Experience a hassle-free registration journey and unlock all features.Get My AccountStep 2: Go to Buy Crypto and Choose Your Payment MethodCredit/Debit Card: Use your Visa or Mastercard to buy SafePal (SFP) instantly.Balance: Use funds from your HTX account balance to trade seamlessly.Third Parties: We've added popular payment methods such as Google Pay and Apple Pay to enhance convenience.P2P: Trade directly with other users on HTX.Over-the-Counter (OTC): We offer tailor-made services and competitive exchange rates for traders.Step 3: Store Your SafePal (SFP)After purchasing your SafePal (SFP), store it in your HTX account. Alternatively, you can send it elsewhere via blockchain transfer or use it to trade other cryptocurrencies.Step 4: Trade SafePal (SFP)Easily trade SafePal (SFP) on HTX's spot market. Simply access your account, select your trading pair, execute your trades, and monitor in real-time. We offer a user-friendly experience for both beginners and seasoned traders.

698 Total ViewsPublished 2026.05.22Updated 2026.06.02

How to Buy SFP

How to Buy CTR

Welcome to HTX.com! We've made purchasing Citrea (CTR) simple and convenient. Follow our step-by-step guide to embark on your crypto journey.Step 1: Create Your HTX AccountUse your email or phone number to sign up for a free account on HTX. Experience a hassle-free registration journey and unlock all features.Get My AccountStep 2: Go to Buy Crypto and Choose Your Payment MethodCredit/Debit Card: Use your Visa or Mastercard to buy Citrea (CTR) instantly.Balance: Use funds from your HTX account balance to trade seamlessly.Third Parties: We've added popular payment methods such as Google Pay and Apple Pay to enhance convenience.P2P: Trade directly with other users on HTX.Over-the-Counter (OTC): We offer tailor-made services and competitive exchange rates for traders.Step 3: Store Your Citrea (CTR)After purchasing your Citrea (CTR), store it in your HTX account. Alternatively, you can send it elsewhere via blockchain transfer or use it to trade other cryptocurrencies.Step 4: Trade Citrea (CTR)Easily trade Citrea (CTR) on HTX's spot market. Simply access your account, select your trading pair, execute your trades, and monitor in real-time. We offer a user-friendly experience for both beginners and seasoned traders.

578 Total ViewsPublished 2026.05.25Updated 2026.06.02

How to Buy CTR

What is USOIL

USOILUSDT Perpetual Contract is the trading symbol for West Texas Intermediate (WTI) Crude Oil priced in US dollars, representing 1 barrel of crude oil.

580 Total ViewsPublished 2026.05.25Updated 2026.05.25

What is USOIL

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of A (A) are presented below.

活动图片