A Threefold Performance Leap! NEAR Achieves 200ms Physical Block Time Limit with SPICE

Foresight News2026-06-23 tarihinde yayınlandı2026-06-23 tarihinde güncellendi

Özet

NEAR's core development team, Near One, has announced its next major protocol evolution: SPICE (Separation of Consensus and Execution). Currently in development, SPICE represents the most significant upgrade before the full implementation of Nightshade 3.0. Its core innovation is decoupling the consensus layer, responsible for ordering transactions, from the execution layer, which processes them. This allows the consensus layer to run at full speed without waiting for transaction execution to complete. Once deployed, SPICE is projected to triple NEAR's block production speed, achieving a 200ms block time, which is considered the physical limit due to the speed of light and network latency. This leap will dramatically reduce transaction latency and finality, with transactions confirming in roughly 0.4 seconds—faster than a typical card payment. The upgrade also enables more complex, long-running transactions and significantly improves user experience for applications like NEAR Intents and near.com. Beyond raw speed, SPICE enhances network scalability and security. It enables deeper parallelism, efficiently distributing workload across shards and improving resource utilization. The simpler block structure and lighter contracts also facilitate formal verification and security auditing. Furthermore, SPICE lays the critical groundwork for future Nightshade 3.0 features, most notably atomic cross-shard transactions, which would simplify complex contract logic and eliminate develo...


Authors: Anton Astafiev, Chief Technology Officer, Near One;

Mally Anderson, NEAR Columnist

Compiled by: Saoirse, Foresight News


The NEAR core development team Near One recently announced two major upgrades to the NEAR protocol, both set to go live later this month: one is dynamic resharding, used to enhance network scalability; the other is the launch of the first quantum signature scheme, providing post-quantum security for all NEAR accounts. This article details the next core plan in NEAR's technical roadmap—SPICE, which stands for "Separation of Protocol Into Consensus and Execution." SPICE is currently still in the research and development phase and is the most important upgrade before the implementation of Nightshade 3.0, the next iteration of NEAR's sharding technology.

(To understand the sharding technology evolution from 2019 to the present, you can read the previously published dynamic resharding feature article; for a complete understanding of NEAR protocol's overall evolution, please refer to Bowen Wang's keynote speech on Nightshade 3.0 at the 2026 NEARCON conference.)


After SPICE officially launches, NEAR's block production speed will increase to three times its original rate, achieving a 200-millisecond block time. As of May 2025, NEAR's current performance is 600ms block time and 1.2-second transaction finality. The core logic behind this performance leap is decoupling the consensus process from transaction execution: the consensus layer can run at full speed without waiting for transaction execution to complete before producing a block. It's worth mentioning that constrained by the speed of light and the basic time required for consensus nodes to send and receive messages, 200 milliseconds is the theoretical fastest block time achievable at the physical layer.


The layered operation of consensus and execution will bring three core improvements: faster block times, lower transaction latency, and support for longer-running, more complex logic transactions.


How SPICE Achieves Protocol Speedup


The separation of consensus and execution is a fundamental and far-reaching upgrade to the NEAR protocol. It is also the most extensive technical transformation since the introduction of the stateless validation mechanism in 2024, representing a massive engineering effort for the Near One team. The concept of SPICE was first proposed at the NEAR industry summit in late 2024; now that prerequisite upgrades like Gas Keys (already live in version 2.12), sharded smart contracts, and dynamic resharding have all been implemented, SPICE's development process has also accelerated.


Although implementing this layered architecture is extremely difficult, its underlying logic is clear and easy to understand: the core value of a blockchain is to provide an immutable, irrevocable guarantee of transaction ordering. Traditional schemes rely on Byzantine Fault Tolerant (BFT) consensus mechanisms, where each block synchronously packs ordered transactions and updates account balances, which directly slows down block production efficiency. SPICE, however, splits transaction ordering and state execution into two independent processes: all validator nodes only need to reach consensus on the transaction list and block hash, ensuring the transaction order cannot be tampered with. This process requires no complex computation while preserving blockchain determinism. Nodes can produce blocks by only verifying transaction signatures. Account state calculations can proceed asynchronously while block consensus is confirmed. The execution flow is no longer tied to block ordering and does not need to synchronously update the state root in every consensus block round.


Diagram of the SPICE layered architecture


SPICE does not just compress block time from 600ms to 200ms, tripling the speed; it can also handle more interaction operations within the same timeframe, significantly accelerating complex transaction processing, and even support long-process transactions executed in steps across multiple blocks. NEAR itself already uses an optimistic block mechanism, and SPICE will greatly reduce the maximum wait time for users. Under the current mechanism, if a transaction requires supplementary external data, users must wait for a full block to be produced before initiating the next operation; with SPICE, users can complete three consecutive interaction operations within the waiting period of what was previously one block.


SPICE will also significantly optimize the user experience for near.com and NEAR Intents. Alex Shevchenko, CEO of Defuse Labs, commented on this: "The increased block speed on NEAR means faster transaction finality, making the user experience incredibly smooth, truly achieving 'instantaneous completion.' Whether it's ultra-fast sub-second transactions, transfers, or private payments, all can be realized. The transaction confirmation standard for traditional payment giant Visa is 3 seconds, while NEAR only needs 0.4 seconds, faster than you can input a payment password or tap your phone against a payment terminal."


This extreme speed is also a necessity for the agent economy: the interaction rate of automated agents far exceeds that of human users and traditional financial systems. Relying on this block production mechanism approaching the physical limit, NEAR can unleash the full operational potential of agents, enabling seamless flow between fiat and crypto assets; while also supporting multiple agents initiating complex, longer-duration transactions in parallel.


The Technical Path to Nightshade 3.0


The separation of consensus and execution is the first crucial step towards implementing Nightshade 3.0. Among all sharded public blockchains, NEAR is the first project to implement this architecture; while Monad has also achieved consensus-execution separation, it is based on a non-sharded EVM public chain. Besides speed improvement, SPICE further enhances network scalability through deep parallelization. Currently, NEAR executes transactions by shard according to account ID. Once a shard experiences a surge in load, all user transactions within that shard will experience delays. SPICE lays the groundwork for subsequent cross-shard synchronous transactions. Simultaneously, it utilizes "bubble filling" mechanisms to make full use of bandwidth resources: the execution queue doesn't need to wait for network communication, and block generation doesn't need to wait for transaction execution to complete. The two processes run in parallel without gaps, greatly improving network resource utilization.


Faster blocks paired with the already-launched sharded smart contracts can also simultaneously enhance network security. NEAR's sharded smart contracts are essentially lightweight independent accounts, partitioned individually by user and business scenario; combined with shorter, more concise blocks, the entire network's business load can be evenly distributed across various shards, enabling dynamic adaptive scaling for the network. This not only optimizes scaling performance but also yields significant security benefits. With AI tools significantly lowering the barrier for hacker attacks and vulnerability exploitation, structurally simple blocks and lightweight contracts are easier to secure; as NEAR gradually implements formal verification of contracts and zero-knowledge proofs, short blocks can significantly reduce verification computational power consumption and cost.


Cross-shard atomic transaction execution flow


SPICE also paves the way for subsequent major upgrades in Nightshade 3.0. In the future, building on SPICE with another iteration of updates will enable cross-shard atomic transactions—indivisible, irreversible complete execution across shards. This has long been a core goal in the field of sharding technology and a key demand for developers (especially NEAR Intents ecosystem developers). Atomic execution can simplify complex transaction logic, avoiding development difficulties brought by existing asynchronous cross-shard mechanisms. This type of asynchronous logic has long been a primary cause of smart contract vulnerabilities and functional delays, and the SPICE architecture can mitigate this issue from the ground up. The core implementation idea is: by leveraging the decoupling of consensus and execution, migrate transaction calculations to dedicated execution nodes that can read the state of all shards involved in the transaction. Combined with NEAR's mature stateless validation system, only a single execution node needs to generate an execution proof for all other nodes in the network to complete verification. This design does not raise the hardware requirements for ordinary validator nodes while continuously unleashing the performance ceiling of the execution layer.


The Near One team is fully advancing SPICE development, planning to implement and launch it within the coming months. (Everyone can continue to follow nearone.org for detailed technical updates, or check the latest protocol developments on the NEAR X official account.)

Trend Kriptolar

İlgili Sorular

QWhat is the SPICE upgrade in the NEAR Protocol and what does it aim to achieve?

ASPICE, short for 'Separating Consensus from Execution,' is a major underlying upgrade to the NEAR Protocol. Its primary goal is to decouple the consensus process from transaction execution, allowing the consensus layer to run at full speed without waiting for transaction execution to complete before producing a block. This separation aims to achieve a threefold performance improvement, reducing block production time from 600ms to a near-physical limit of 200ms, lowering transaction latency, and supporting more complex, longer-running transactions.

QAccording to the article, what is the theoretical physical limit for block production time that NEAR aims to achieve with SPICE, and why is this the limit?

AThe theoretical physical limit for block production time that NEAR aims to achieve with SPICE is 200 milliseconds. This limit is considered the fastest possible at a physical level due to constraints imposed by the speed of light and the fundamental time required for consensus nodes to send and receive messages.

QWhat are the three core improvements expected from implementing the consensus and execution separation architecture of SPICE?

AThe three core improvements expected from the SPICE architecture are: 1) Faster block production speed, 2) Lower transaction latency, and 3) The ability to support transactions with longer execution cycles and more complex logic.

QHow does the SPICE architecture lay the groundwork for future upgrades like Nightshade 3.0 and cross-shard atomic transactions?

ASPICE lays the groundwork for Nightshade 3.0 and cross-shard atomic transactions by establishing the foundational separation of consensus and execution. This decoupling allows for the future implementation of a dedicated execution node that can read the state of all shards involved in a transaction. Combined with NEAR's stateless validation system, this enables a single execution node to generate an execution proof that the rest of the network can verify, paving the way for atomic execution across shards without increasing hardware requirements for ordinary validators.

QWhat problem does the current NEAR sharding design have that SPICE helps to mitigate, according to the article?

AIn the current NEAR sharding design, transactions are executed in shards divided by account ID. If one shard experiences a sudden surge in load, transactions for all users within that shard can face delays. SPICE helps mitigate this by enabling deeper parallelization and preparing the network for synchronized transaction processing across shards in the future.

İlgili Okumalar

Second Half of U.S. Crypto Policy: The Clarity Act Aims for 60 Votes, CFTC's "One-Person Commission" Becomes Biggest Variable

In a pivotal year for US crypto policy, the "CLARITY Act" is advancing in the Senate but faces a high hurdle, needing 60 votes to pass. Key challenges include bridging partisan divides on ethics and swaying undecided Republican senators within a tight legislative calendar of only about 40 working days. The policy "second half" involves intense negotiations on a broader framework for Web3 and DeFi, including crypto tax reforms and the Blockchain Regulatory Certainty Act. A significant uncertainty is the understaffed CFTC, operating with four commissioner vacancies, which complicates regulatory clarity. Meanwhile, the departure of key "crypto champions"—SEC Commissioner Hester Peirce and Senator Cynthia Lummis—will impact ongoing policy efforts. Industry experts are cautiously optimistic but realistic. Sara K. Weed notes that while progress is being made, CLARITY is unlikely to pass this Congress, pushing agencies like the SEC and CFTC to provide more guidance. Sulolit Mukherjee suggests meaningful crypto tax legislation is more likely to be attached to larger must-pass bills. Rashan Colbert discusses the jurisdictional debate over prediction markets, emphasizing the need for a regulatory framework that fosters their development as financial tools rather than treating them broadly as gambling. The clock is ticking, but opportunities remain for substantive progress through continued bipartisan dialogue and pragmatic efforts.

marsbit11 dk önce

Second Half of U.S. Crypto Policy: The Clarity Act Aims for 60 Votes, CFTC's "One-Person Commission" Becomes Biggest Variable

marsbit11 dk önce

Dan Koe's New Essay: Escaping the Fate of the Wage Slave, How to Survive the AI Replacement Wave?

Dan Koe argues that the true threat in the AI era isn't technology itself, but a reliance on others for one's livelihood and happiness. The core problem is "wage slavery"—spending life on unfulfilling work. To survive and thrive, one must escape this by building their own enterprise. The key is developing five elements: Agency (initiative), Taste (discernment), Persuasion, Persistence, and Iteration. These boil down to problem-solving skills and experiential knowledge, which cannot be learned passively but only through doing your own projects. The solution is to become "unemployable" by shifting your identity. This requires: 1) Radically changing your environment to force growth, 2) Choosing a medium (like content creation) that provides real feedback through trial and error, and 3) Mastering either code or, preferably, media (content). Content creation is more valuable because its subjective nature and need for human perspective create a durable advantage over generic AI output. To start, define your life's work by answering foundational questions about your innate knowledge, unique abilities, and contrarian beliefs. Then, immediately act by publishing your first piece of content. The cycle of creating, receiving feedback, and iterating is the essential path to developing the skills needed for an independent, meaningful career and financial resilience.

marsbit47 dk önce

Dan Koe's New Essay: Escaping the Fate of the Wage Slave, How to Survive the AI Replacement Wave?

marsbit47 dk önce

Research Report Analysis: Morgan Stanley Details SanDisk SNDK, The Truth About Cloud Data Center Pricing Power and AI Inference Benefits

Morgan Stanley raised its price target for SanDisk (SNDK) from $1100 to $1750 on June 22, maintaining an Overweight rating. The upgrade is driven by AI inference demand reshaping the NAND market, particularly for KV Cache and context window storage in cloud data centers. These cloud clients exhibit price inelasticity and sign long-term contracts, granting SanDisk significant pricing power. SanDisk's New Business Model (NBM) agreements, covering over one-third of FY27 bit shipments with 3-5 year terms and fixed price/price collar structures, are crucial. They are projected to sustain gross margins around 80% even at floor prices, providing a buffer against cyclical downturns. Morgan Stanley forecasts gross margins to surge from 30.3% in FY25 to 86.7% in FY27e. With NAND supply expected to remain tight into 2026/2027 and cloud/data centers becoming the largest end-market, SanDisk holds supply-side pricing power. The company targets 15-19% bit growth via technology transitions, not capacity expansion. Revenue is projected to grow ~6.6x from FY25 to FY27, with EPS rising from $2.74 to $14.73, driven by high-margin cloud business. Key upside catalysts include faster enterprise SSD adoption and edge AI growth. Downside risks involve slower industry growth, competitor capex increases, market share loss, and competition from Chinese players like YMTC. The investment thesis rests on AI-driven structural demand, NBM's margin protection, and sustained supply tightness. The $1750 target implies ~28x FY27e P/E.

marsbit1 saat önce

Research Report Analysis: Morgan Stanley Details SanDisk SNDK, The Truth About Cloud Data Center Pricing Power and AI Inference Benefits

marsbit1 saat önce

İşlemler

Spot
Futures

Popüler Makaleler

ONE Nasıl Satın Alınır

HTX.com’a hoş geldiniz! Harmony (ONE) satın alma işlemlerini basit ve kullanışlı bir hâle getirdik. Adım adım açıkladığımız rehberimizi takip ederek kripto yolculuğunuza başlayın. 1. Adım: HTX Hesabınızı OluşturunHTX'te ücretsiz bir hesap açmak için e-posta adresinizi veya telefon numaranızı kullanın. Sorunsuzca kaydolun ve tüm özelliklerin kilidini açın. Hesabımı Aç2. Adım: Kripto Satın Al Bölümüne Gidin ve Ödeme Yönteminizi SeçinKredi/Banka Kartı: Visa veya Mastercard'ınızı kullanarak anında Harmony (ONE) satın alın.Bakiye: Sorunsuz bir şekilde işlem yapmak için HTX hesap bakiyenizdeki fonları kullanın.Üçüncü Taraflar: Kullanımı kolaylaştırmak için Google Pay ve Apple Pay gibi popüler ödeme yöntemlerini ekledik.P2P: HTX'teki diğer kullanıcılarla doğrudan işlem yapın.Borsa Dışı (OTC): Yatırımcılar için kişiye özel hizmetler ve rekabetçi döviz kurları sunuyoruz.3. Adım: Harmony (ONE) Varlıklarınızı SaklayınHarmony (ONE) satın aldıktan sonra HTX hesabınızda saklayın. Alternatif olarak, blok zinciri transferi yoluyla başka bir yere gönderebilir veya diğer kripto para birimlerini takas etmek için kullanabilirsiniz.4. Adım: Harmony (ONE) Varlıklarınızla İşlem YapınHTX'in spot piyasasında Harmony (ONE) ile kolayca işlemler yapın.Hesabınıza erişin, işlem çiftinizi seçin, işlemlerinizi gerçekleştirin ve gerçek zamanlı olarak izleyin. Hem yeni başlayanlar hem de deneyimli yatırımcılar için kullanıcı dostu bir deneyim sunuyoruz.

394 Toplam GörüntülenmeYayınlanma 2024.12.12Güncellenme 2026.06.02

ONE Nasıl Satın Alınır

Tartışmalar

HTX Topluluğuna hoş geldiniz. Burada, en son platform gelişmeleri hakkında bilgi sahibi olabilir ve profesyonel piyasa görüşlerine erişebilirsiniz. Kullanıcıların ONE (ONE) fiyatı hakkındaki görüşleri aşağıda sunulmaktadır.

活动图片