Key Takeaways
- Aptos achieves sub-second finality (under 650ms) using AptosBFT consensus, delivering irrevocable transaction confirmation faster than most Layer-1 blockchains
- The network operates three distinct node types—validator nodes, validator fullnodes, and public fullnodes—each serving specific roles in transaction processing and data distribution
- Quorum Store decouples data dissemination from consensus ordering, removing bandwidth bottlenecks and enabling parallel transaction propagation across validators
- Encrypted mempool (proposed for October 2025) will hide transaction payloads until execution, protecting traders from frontrunning and MEV exploitation if approved by governance
- Block-STM parallel execution engine processes transactions simultaneously across multiple CPU cores, achieving peak throughput exceeding 160,000 transactions per second in benchmark tests
Aptos delivers sub-second transaction finality through a sophisticated architecture combining Byzantine Fault Tolerant consensus, parallel execution, and an optimized mempool protocol. The network’s three-tier node structure—validators, validator fullnodes, and public fullnodes—works together with Quorum Store’s data dissemination protocol to achieve industry-leading performance while maintaining decentralization and security.[1]
Understanding Aptos Node Architecture
The Aptos blockchain operates through three distinct node types that work together to process transactions and maintain network security. Each node type serves a specific purpose, creating a hierarchical structure that balances performance with decentralization.
Validator Nodes
Validator nodes form the backbone of the Aptos network by participating directly in consensus and determining which transactions get added to the blockchain. These nodes run the AptosBFT consensus protocol, executing transactions and storing results in the blockchain database. Validator nodes communicate exclusively through a private network, maintaining security while reaching agreement on transaction ordering and execution results.[2]
When a transaction arrives at a validator node’s mempool, the consensus component pulls transactions and proposes new blocks to other validators. Once more than two-thirds of validators agree on a block, the transactions become finalized and are permanently recorded on the blockchain. Validator nodes maintain a complete, up-to-date copy of the blockchain state locally, enabling rapid transaction processing.[3]
Validator Fullnodes (VFNs)
Validator fullnodes connect directly to validator nodes and serve as the primary gateway between validators and the broader network. While VFNs don’t participate in consensus themselves, they play a critical role in distributing blockchain data and providing scalability alongside DDoS protection for validator nodes.[4]
VFNs synchronize their state directly from validator nodes, maintaining an identical copy of the blockchain by re-executing all transactions or replaying transaction outputs. These nodes accept transaction submissions from clients and forward them to validator nodes, while simultaneously serving blockchain data to public fullnodes and applications. By handling public-facing traffic, VFNs allow validator nodes to focus exclusively on consensus operations.[5]
Public Fullnodes (PFNs)
Public fullnodes can be operated by anyone who wants to interact with the Aptos blockchain. PFNs synchronize their state from validator fullnodes or other public fullnodes rather than connecting directly to validators. These nodes verify blockchain history by either re-executing transactions or replaying outputs, ensuring data integrity without participating in consensus.[6]
Third-party services like blockchain explorers, wallets, exchanges, and decentralized applications typically run PFNs to leverage the REST interface for blockchain interactions, obtain consistent ledger views, avoid rate limitations on read traffic, and run custom analytics on historical data. PFNs democratize network access, allowing anyone to verify transactions and build applications without requiring validator status.[7]
Node Network Topology and Communication
| Network Type | Participants | Port | Access Level |
|---|---|---|---|
| Validator Network | Validator nodes only | 6180 | Public (for validator connections) |
| VFN Network | Validator + VFN pairs | 6181 | Private (between validator and its VFN) |
| Public Network | VFNs and PFNs | Various | Public (ecosystem access) |
Aptos employs separate networking stacks for different network topologies, creating clean separation between validator consensus operations and public data access. This architecture allows for distinct security preferences (such as bidirectional versus server authentication) and enables isolated discovery protocols. Validators use on-chain discovery for public endpoints, while private organizations can manually configure connections.[4]
AptosBFT Consensus: Achieving Sub-Second Finality
Aptos achieves irrevocable finality—meaning once a transaction is confirmed, it cannot be reverted—through its AptosBFT consensus mechanism. This differs fundamentally from the probabilistic finality of Bitcoin or the optimistic finality of Solana. With block times under 130ms and user finality at 650ms, Aptos ranks among the fastest Layer-1 blockchains in production.[1]
How AptosBFT Works
AptosBFT builds on the HotStuff consensus protocol, implementing a leader-centric communication system that dramatically reduces network message complexity. Instead of validators sending messages to every other validator, each validator communicates only with the current leader. The leader broadcasts proposed blocks to all validators, collects votes, and once a quorum certificate is achieved (votes from more than two-thirds of validators), the leader broadcasts the results for verification.[8]
A validator leader is selected through a deterministic formula based on validator reputation and stake, not through voting. The reputation system considers past performance, including whether validators voted in previous rounds, creating incentives for consistent participation. This leader rotation happens seamlessly through a component called PaceMaker, which integrates voting rounds without requiring separate confirmations for leader changes.[9]
Baby Raptr: The Latest Consensus Upgrade
In June 2025, Aptos deployed Baby Raptr, the first production component of its next-generation Raptr consensus protocol. This upgrade merged Quorum Store logic directly into the consensus mechanism, reducing consensus from six network hops to four. Baby Raptr improved validator finality latency by 20% (100-150ms), demonstrating that even small reductions in network communication paths translate to meaningful performance gains in high-frequency environments like DeFi trading and gaming.[10]
Aptos transaction fees are significantly lower than competing Layer-1 blockchains. In Q2 2025, average transaction fees fell 61.1% quarter-over-quarter to just $0.00052, making Aptos approximately 10-100x cheaper than other top Layer-1 blockchains like TRON, Solana, Ethereum, Avalanche, and BNB Smart Chain.[1]
Mempool Architecture and Transaction Flow
The mempool serves as the staging area where transactions wait before being ordered into blocks. Every validator and fullnode maintains an in-memory mempool buffer that holds submitted transactions that haven’t yet been agreed upon or executed. Understanding how Aptos optimizes this critical component reveals why the network can handle extreme transaction volumes while maintaining low latency.[2]
Transaction Submission and Validation
When a client submits a transaction to an Aptos fullnode’s REST service, the mempool performs immediate validation checks including signature verification, sequence number validation, gas fee sufficiency, and transaction expiration time. The mempool only accepts transactions if the sequence number is greater than or equal to the sender’s current account sequence number, preventing out-of-order execution and protecting against replay attacks.[3]
After initial validation, transactions are forwarded to validator fullnodes, which send them to validator node mempools. Each mempool along the propagation path performs the same validation checks, potentially discarding invalid transactions. Currently, the mempool implementation provides no feedback if a transaction is discarded during propagation, though ongoing improvements aim to increase visibility in this space.[3]
Quorum Store: Decoupling Data from Consensus
Traditional blockchain consensus protocols suffer from a fundamental bottleneck: the leader validator must broadcast entire blocks of raw transaction data to all other validators. This duplicates work done in the mempool phase and creates bandwidth limitations that constrain throughput. Quorum Store solves this by separating data dissemination from metadata ordering, allowing validators to distribute transaction data asynchronously in parallel.[12]
Under Quorum Store, all validators continuously pull transaction batches from their local mempools and broadcast these batches to other validators in parallel. As validators receive batches, they verify the transactions and create Proofs of Availability (PoAv)—cryptographic attestations signed by a quorum of validators confirming the data is widely available. When a validator becomes the consensus leader, it proposes a block containing only these small PoAv references (metadata) rather than full transaction data.[13]
This architecture delivers significant performance improvements. In testing across 100 validators in over 30 countries, Quorum Store demonstrated a 12x throughput increase in consensus-only tests and a 3x improvement in end-to-end processing. The system scales horizontally—adding more machines to run Quorum Store components directly increases data dissemination capacity without modifying the core consensus logic.[12]
Encrypted Mempool: Protecting Against MEV
In October 2025, Aptos Labs proposed an encrypted mempool feature that, if approved by on-chain governance, would make Aptos the first Layer-1 to offer native MEV (Maximal Extractable Value) protection. Under this system, users can submit transactions whose payloads remain confidential while the block is ordered, with details only revealing just before execution. This prevents validators and sophisticated actors from seeing pending transactions and reordering them for profit through frontrunning or orderflow manipulation.[14]
The encrypted mempool leverages a novel batched threshold encryption scheme developed by the Aptos Labs research team. Validators collectively decrypt entire batches of transactions in a single operation, dramatically reducing both communication and computation overhead. Crucially, decryption happens directly on validators without requiring additional trust assumptions, and the system integrates seamlessly into the existing consensus protocol while maintaining Aptos’ characteristic sub-second finality.[14]
Once approved by governance, encrypted mempool will enable institutional investors to move large positions privately on a public blockchain, help decentralized exchanges operate more securely with fairer pricing, and eliminate slippage caused by MEV attacks. All transaction information remains publicly auditable and recorded on-chain after execution—the encryption only protects transaction intent during the vulnerable period before finality.[15]
Block-STM: Parallel Execution at Scale
Most blockchains process transactions sequentially—like cars moving through a single-lane highway—which creates severe throughput bottlenecks. Bitcoin handles approximately 7 transactions per second through sequential processing. Ethereum manages around 15-30. Aptos built a multi-lane highway instead through its Block-STM parallel execution engine, processing thousands of transactions simultaneously across multiple CPU cores.[16]
How Parallel Execution Works
Block-STM employs Software Transactional Memory (STM) principles combined with optimistic concurrency control. The system speculatively executes all transactions in a block in parallel, then validates each transaction post-execution to detect conflicts. When transactions read or write the same resources (such as two users trying to spend from the same account), Block-STM automatically identifies the conflict, aborts the affected transactions, and re-executes them in the correct order.[17]
The genius of Block-STM lies in how it leverages the preset transaction order required by blockchain consensus. While general-purpose STM libraries treat determinism as a limitation, Block-STM uses the guaranteed sequential order as a performance advantage. The system knows that the final outcome must match a sequential execution in the preset order, eliminating synchronization overhead needed in non-deterministic parallel systems.[17]
Block-STM achieves over 160,000 transactions per second in Aptos benchmark tests—a 16x improvement over sequential baseline execution. While these numbers come from controlled benchmark environments, the architecture demonstrates significant real-world capabilities. On workloads with low transaction conflicts, the system scales nearly linearly with added CPU cores. Even on high-contention workloads where many transactions touch the same data, Block-STM maintains 80,000+ TPS by efficiently detecting dependencies and minimizing re-execution overhead.[18]
Real-World Performance: The Tapos Gaming Case Study
In May 2024, the Aptos network experienced an unprecedented stress test when the fully on-chain game Tapos launched, allowing users to “tickle” a digital cat with each tickle counting as one transaction. Over four days, Aptos processed approximately 325 million transactions, sustaining over 2,200 TPS for more than 24 hours and peaking at 5,000 TPS—all while maintaining an average gas cost of just 0.000008 APT (less than $0.0001).[19]
The second Tapos game in August 2024 pushed boundaries even further, generating 533 million transactions over three days and peaking at 326 million transactions on August 15, 2024. At peak activity, the network achieved 12,000 TPS. Despite this extreme load, the network experienced zero downtime, no congestion, and maintained ultra-low transaction fees—demonstrating that Aptos’ architecture can handle consumer-scale applications without degradation.[19]
Comparing Aptos to Other Layer-1 Blockchains
| Blockchain | Finality Type | Finality Time | Execution Model |
|---|---|---|---|
| Aptos | Irrevocable (BFT) | ~650ms (sub-second) | Parallel (Block-STM) |
| Solana | Optimistic | ~6-8 seconds | Parallel (Sealevel) |
| Ethereum | Probabilistic (PoS)* | ~12-15 minutes* | Sequential (EVM) |
| Sui | Irrevocable (BFT) | ~1-2 seconds | Parallel (Narwhal/Tusk) |
| Binance Smart Chain | Probabilistic | ~30 seconds | Sequential (EVM) |
*Ethereum’s 12-15 minute time refers to ‘finalized’ status with maximum economic security; practical finality for most transactions occurs sooner (~30-45 seconds).
Aptos distinguishes itself through irrevocable finality combined with sub-second confirmation times. While Solana achieves high throughput, its optimistic finality model means transactions could theoretically be reverted during network disruptions. Ethereum’s sequential execution and longer finality times make it less suitable for high-frequency applications. Among Move-language blockchains, Aptos and Sui both achieve sub-two-second finality, though Aptos currently holds the edge in production performance.[20]
Node Requirements and Validator Economics
Running an Aptos validator requires substantial technical resources to maintain the network’s high performance standards. Validators must provision hardware capable of sustaining at least 30,000 transactions per second. The Aptos Foundation recommends running validators and validator fullnodes on separate, well-provisioned machines to maintain resource isolation and prevent performance degradation under load.[5]
To participate in consensus, validators must stake a minimum amount of APT tokens, currently set through on-chain governance. As of Q2 2025, Aptos had 152 active validators with 877.9 million APT staked (valued at approximately $4.3 billion), ranking ninth among all blockchains by staked market capitalization. Validators earn staking rewards through inflationary token emissions, with ongoing governance discussions about optimal reward rates to balance validator incentives with broader ecosystem development.[1]
Future Upgrades: Zaptos and Shardines
Aptos Labs continues developing infrastructure upgrades to push performance boundaries further. Zaptos, introduced in early 2025, adopts a parallel, pipelined architecture that minimizes end-to-end transaction latency. In geo-distributed tests across 100 validators, Zaptos achieved sub-second latency at 20,000 TPS by decoupling execution, consensus, and storage operations and allowing them to overlap for efficiency.[21]
Shardines represents Aptos’ approach to sharded execution, designed to process transactions in parallel across multiple segments (shards) of the network. While still under development, Shardines will work alongside Raptr and Zaptos to create a comprehensive scaling solution supporting the network’s vision of handling one million transactions per second—positioning Aptos as infrastructure for truly global-scale blockchain applications.[21]
Conclusion
Aptos has built a high-performance blockchain architecture that addresses the fundamental bottlenecks plaguing earlier networks. Through its three-tier node structure, AptosBFT consensus, Quorum Store mempool protocol, and Block-STM parallel execution, Aptos achieves sub-second finality with benchmark throughput exceeding 160,000 TPS and demonstrated mainnet peaks of 12,000 TPS. Real-world stress tests processing hundreds of millions of daily transactions demonstrate that this performance translates from benchmarks to production environments. As encrypted mempool functionality and future upgrades like Zaptos roll out, Aptos continues pushing the technical boundaries of what blockchains can achieve while maintaining security and decentralization.
Aptos Finality Mempool FAQs
What is the difference between Aptos finality and other blockchains?
Aptos provides irrevocable finality through its AptosBFT consensus mechanism, meaning transactions cannot be reversed once confirmed in approximately 650 milliseconds. This differs from Bitcoin’s probabilistic finality (where transactions gain certainty over multiple blocks) and Solana’s optimistic finality (where transactions could theoretically revert during network issues).[8]
How does Aptos mempool work with Quorum Store?
Aptos mempool works with Quorum Store by separating data dissemination from consensus ordering. Validators continuously broadcast transaction batches from their mempools in parallel, creating Proofs of Availability before consensus even begins. This removes bandwidth bottlenecks and allows the consensus leader to propose blocks containing only small metadata references instead of full transaction data.[12]
What are the three Aptos node types and their purposes?
Aptos operates three node types: validator nodes that participate in consensus and process transactions, validator fullnodes (VFNs) that connect directly to validators to distribute data and provide DDoS protection, and public fullnodes (PFNs) that anyone can run to access blockchain data without requiring validator status. This hierarchical structure balances decentralization with performance.[7]
How fast is Aptos finality compared to Ethereum and Solana?
Aptos achieves finality in under 650 milliseconds with block times below 130ms, making it significantly faster than Ethereum’s 12-15 minute finalized status and Solana’s 6-8 second finality. Aptos provides irrevocable finality at speeds approaching traditional payment networks while maintaining blockchain decentralization and security.[1]
What is encrypted mempool on Aptos and how does it prevent MEV?
Encrypted mempool is a proposed Aptos feature (pending governance approval) that keeps transaction payloads hidden until execution by using batched threshold encryption. This prevents validators and sophisticated actors from seeing pending transactions and reordering them for profit through frontrunning. Validators collectively decrypt entire transaction batches just before execution, protecting user intent while maintaining transparency after finality.[14]
Aptos Finality Mempool Citations
- Messari. (2025, August 5). “Aptos H1 2025: The Global Trading Engine Accelerates.” https://messari.io/report/aptos-h1-2025-the-global-trading-engine-accelerates
- Aptos Documentation. (2025, November 6). “Validator Nodes Overview.” https://aptos.dev/network/blockchain/validator-nodes
- Aptos Documentation. (2025, October 28). “Aptos Blockchain Deep Dive.” https://aptos.dev/network/blockchain/blockchain-deep-dive
- Aptos Documentation. (2025, October 28). “Node Networking and State Synchronization.” https://aptos.dev/network/blockchain/node-networks-sync
- Aptos Documentation. (2025, November 13). “Node Requirements.” https://aptos.dev/network/nodes/validator-node/node-requirements
- Aptos Documentation. “Fullnodes Overview.” https://aptos.dev/concepts/fullnodes/
- Aptos Documentation. (2025). “Aptos Network Nodes.” https://aptos.dev/network/nodes
- Pontem Network. (2023, March 14). “AptosBFT: all you need to know about the BFT consensus in Aptos.” https://pontem.network/posts/aptosbft-all-you-need-to-know-about-the-bft-consensus-in-aptos
- Medium. (2024, February 7). “How the nodes working in Aptos network?” https://medium.com/@rafaeldebarrosguerra/how-the-nodes-working-in-aptos-network-afcfe4781634
- Aptos Foundation. “Baby Raptr Is Here: a New Era of Consensus Begins.” https://aptosfoundation.org/currents/baby-raptr-lands-on-mainnet
- Stakin. (2025, August 19). “Aptos Ecosystem Update 2025: From 250 to 330+ Projects and Beyond.” https://stakin.com/blog/aptos-ecosystem-update-2025-from-250-to-330-projects-and-beyond
- Aptos Labs Medium. (2023, November 9). “Quorum Store: How Consensus Horizontally Scales on the Aptos Blockchain.” https://medium.com/aptoslabs/quorum-store-how-consensus-horizontally-scales-on-the-aptos-blockchain-988866f6d5b0
- DEV Community. (2025, July 18). “How Aptos’ Quorum Store Unlocks True Scalability.” https://dev.to/danielkestrel/how-aptos-quorum-store-unlocks-true-scalability-28l9
- Aptos Labs Medium. (2025, October 30). “Introducing Encrypted Mempool: MEV protection native to Aptos.” https://aptoslabs.medium.com/aptos-encrypted-mempool-native-transaction-intent-confidentiality-on-aptos-e90da3cfb254
- Invezz. (2025, October 31). “Aptos Labs unveils first Encrypted Mempool to deliver native MEV protection.” https://invezz.com/news/2025/10/31/aptos-labs-unveils-first-encrypted-mempool-to-deliver-native-mev-protection/
- BSC News. (2025, September 12). “Aptos Deep Dive: Parallel Execution Powers Global Trading.” https://bsc.news/post/aptos-blockchain-deep-dive-analysis
- Aptos Labs Medium. (2022, June 18). “Block-STM: How We Execute Over 160k Transactions Per Second on the Aptos Blockchain.” https://medium.com/aptoslabs/block-stm-how-we-execute-over-160k-transactions-per-second-on-the-aptos-blockchain-3b003657e4ba
- arXiv. (2022, August 25). “Block-STM: Scaling Blockchain Execution by Turning Ordering Curse to a Performance Blessing.” https://arxiv.org/abs/2203.06871
- Aptos Foundation. (2025, October 10). “Ecosystem Spotlight: Tapos – The Next Evolution of On-Chain Gaming.” https://aptosnetwork.com/currents/ecosystem-spotlight-tapos-the-next-evolution-of-on-chain-gaming
- SoSoValue. “Aptos vs Sui in 2025: Detailed Comparison.” https://sosovalue.com/blog/aptos-vs-sui-comparison
- Aptos Foundation. (2025, October 10). “The Rise of the Global Trading Engine (Part 1).” https://aptosfoundation.org/currents/the-rise-of-the-global-trading-engine-part-1
