Key Takeaways
- Both Aptos and Sui emerged from Meta’s abandoned Diem blockchain project, and both use the Move programming language for smart contract development, though Sui uses a modified version with an object-centric data model
- Aptos Labs has raised a total of $350 million in funding from investors, including Andreessen Horowitz, FTX Ventures, and Jump Crypto, while Mysten Labs, behind Sui, has raised $336 million with backing from Lightspeed Venture Partners and a16z.
[1] - Sui has demonstrated the capability to process up to 297,000 transactions per second in controlled testing environments, while Aptos has reached over 160,000 TPS in benchmarking tests.
- In terms of DeFi activity, Sui generated $48 billion in DEX trading volume compared to Aptos’s $11.6 billion, while Sui’s TVL reached $2.2 billion by mid-2025 versus Aptos’s $1 billion plus.
[2] - Aptos uses Block-STM for parallel transaction execution derived from the HotStuff consensus protocol, while Sui uses Narwhal and Bullshark, a DAG-based mempool for parallelization at the execution layer
- The average transaction fee on Aptos is approximately $0.002, while Sui’s average transaction fee sits around $0.01, making both networks significantly cheaper than Ethereum.
[3]
The blockchain world is full of competition. New networks launch every month, each claiming to be the fastest, the most affordable, or the most developer-friendly. But not all of them deserve attention. Among the platforms that genuinely stand out in the Layer 1 space, two names continue to come up again and again: Aptos and Sui.
What makes the Aptos vs Sui conversation so interesting is that both blockchains share a deep common history. They were born from the same project, use the same foundational programming language, and were built by teams who once worked together at Meta (formerly Facebook). And yet, they have taken very different paths in how they handle transactions, how they structure data, and how they are growing their ecosystems.
If you are a developer trying to pick a chain, an investor looking at where the next wave of growth might come from, or just someone curious about the future of decentralized technology, this comparison will give you a clear picture. We will walk through everything from how these blockchains work under the hood to how their communities, funding, and real-world use cases compare. No fluff, no hype. Just the facts you need to make your own decision about Aptos vs Sui blockchain platforms.
The Shared Origins: From Meta’s Diem to Two Independent Blockchains
Before we get into the differences, it is important to understand why these two platforms are so often compared. The story starts at Meta (back then still known as Facebook), where a team of engineers was building a blockchain project called Diem (originally Libra). Diem was designed to be a global payment system, but it ran into heavy regulatory pushback and was eventually shut down.
The technology behind Diem, however, was too good to disappear. The engineers who built it split into two groups. One group, led by Mo Shaikh and Avery Ching, went on to create Aptos through Aptos Labs. The other group, led by Evan Cheng, Sam Blackshear, Adeniyi Abiodun, and George Danezis, founded Mysten Labs and built Sui.
Both teams carried over the Move programming language, which was originally designed at Meta for building smart contracts. Move is based on Rust, and its core strength lies in how it handles digital assets. It treats them as “resources” that cannot be copied or accidentally destroyed, making it much harder for bugs or exploits to compromise user funds. This shared foundation is why the Aptos vs Sui debate is so fascinating. Same roots, but two very different trees.
How the Architecture Differs Between Aptos and Sui
Even though both blockchains use the Move programming language, the way they structure their systems underneath is quite different. This is where the real technical separation begins, and it affects everything from speed to developer experience.
1. Data Model: Accounts vs Objects
The Aptos blockchain follows a more traditional design. It uses an account-based model, similar to what you would find in Ethereum. When you interact with Aptos, your assets and transactions are tied to your account address. This design closely follows what was outlined in the original Diem whitepaper.
The Sui blockchain takes a completely different approach. It uses an object-centric data model, where every asset, every transaction, and even addresses are treated as independent “objects.” Each object has its own unique identifier, and the blockchain tracks ownership and state changes at the object level. This means that Sui can process transactions involving different objects at the same time, without them needing to wait in line behind each other.
Sui’s version of Move also makes it very clear when an object is owned, shared, mutable, or immutable. Aptos does not draw these distinctions as explicitly, which gives Sui a slight edge in terms of how transparent the data structure is for developers.
2. Ledger Structure: Blockchain vs DAG
The Aptos network uses a standard blockchain structure to record its ledger. Transactions are grouped into blocks, and those blocks are ordered sequentially. This is the traditional approach that most people associate with blockchain technology.
The Sui network, on the other hand, stores its distributed ledger as a directed acyclic graph (DAG). This means that instead of transactions being forced into a single ordered chain, they can branch out and be processed in parallel paths. For simple transactions that involve only one owner, Sui can skip the consensus process entirely, resulting in much lower latency.
3. Consensus Mechanisms
Both blockchains use Proof of Stake as their foundation, but the specific algorithms are different. The Aptos Layer 1 platform uses AptosBFT, which is a Byzantine Fault Tolerant consensus mechanism derived from the HotStuff protocol. This means the network can keep functioning even if up to one-third of its validators act dishonestly.
The Sui Layer 1 platform uses a combination of Narwhal (a high-throughput mempool) and Bullshark (an efficient BFT consensus protocol). For transactions that only involve a single owner’s objects, Sui can bypass the full consensus process altogether, which is why it achieves such low latency for simple transfers.
Recommended Reading:
Speed, Throughput, and Transaction Fees
Performance is one of the biggest selling points for both Aptos and Sui. They were both designed to be much faster and much cheaper than older blockchains like Ethereum. But how do they actually compare against each other?
1. Transactions Per Second (TPS)
In controlled testing environments, Sui has shown the ability to process up to 297,000 transactions per second. This is a remarkable number, though real-world mainnet performance tends to be lower. According to data from Suiscan, Sui’s peak TPS on the live network over a 12 month period reached around 822 TPS.
Aptos has reached over 160,000 TPS in its own benchmarking tests. On the mainnet, Aptos has generally shown more consistent and higher actual transaction speeds compared to Sui’s live performance. The gap between lab performance and real-world usage exists for both chains, but Aptos tends to deliver steadier results in practice.
2. Transaction Fees
Both chains offer extremely low fees compared to Ethereum. The average transaction fee on the Aptos blockchain sits at approximately $0.002, while Sui’s average fee is around $0.01. During the first half of 2025, Aptos’s average transaction fees actually fell 61% quarter over quarter, dropping to around $0.00052. This makes Aptos up to 100 times cheaper than some other top Layer 1 blockchains.
3. Finality and Latency
Transaction finality refers to how quickly a transaction becomes permanent and cannot be reversed. Both chains target sub-second finality. Aptos introduced its Baby Raptr upgrade, which reduced validator finality latency by 20%. Sui rolled out Mysticeti v2, which cut consensus latency further following a prior 80% reduction. For users, this means that transactions on both networks feel almost instant.
Parallel Transaction Processing: Block-STM vs Narwhal
One of the reasons both Aptos and Sui can achieve such high speeds is their ability to process multiple transactions at the same time, rather than handling them one by one. But they go about this in very different ways.
The Aptos network uses a system called Block-STM (Software Transactional Memory). This approach uses “optimistic parallelization,” which means it assumes that transactions will not conflict with each other and processes them simultaneously. If a conflict is detected, the system automatically re-executes the affected transactions. The benefit for developers is that they do not need to declare transaction dependencies upfront. The system handles everything in the background.
The Sui network takes a different route. Because of its object-centric model, Sui can identify which transactions are independent of each other based on the objects they touch. If two transactions involve completely different objects, Sui processes them in parallel without needing consensus at all. This is what enables Sui’s extremely low latency for simple, single-owner transactions. For more complex transactions that involve shared objects, Sui falls back on its Narwhal and Bullshark consensus protocols.
In simple terms, Aptos makes parallelization easier for developers by handling conflicts automatically, while Sui achieves deeper parallelization by structuring data in a way that makes conflicts less likely to begin with.
Aptos vs Sui: Technical Comparison at a Glance
| Feature | Aptos | Sui |
|---|---|---|
| Programming Language | Move (Original) | Sui Move (Modified) |
| Data Model | Account-based | Object-centric |
| Consensus Algorithm | AptosBFT (HotStuff-derived) | Narwhal + Bullshark (DAG-based) |
| Parallel Execution | Block-STM (optimistic) | Object-level parallel processing |
| Test TPS | 160,000+ | 297,000 |
| Avg Transaction Fee | ~$0.002 | ~$0.01 |
| Ledger Structure | Traditional blockchain | Directed Acyclic Graph (DAG) |
| Mainnet Launch | October 2022 | May 2023 |
Funding and Investor Backing
When evaluating Aptos or Sui, which is better as a long-term bet, funding is an important factor to consider. Both projects have attracted serious capital from top-tier venture firms, which shows strong institutional confidence in their potential.
1. Aptos Labs Funding
Aptos Labs has raised a total of $350 million across four funding rounds. The largest of these was a $200 million Series A round in March 2022, led by Andreessen Horowitz. Other major backers include FTX Ventures, Jump Crypto, Tiger Global, Multicoin Capital, and Franklin Templeton Investments. In total, Aptos has 29 investors, and its valuation was reported at $4 billion as of September 2022.
2. Mysten Labs (Sui) Funding
Mysten Labs, the company behind the Sui blockchain, has raised $336 million in total. This includes a $36 million Series A and a massive $300 million Series B round held in September 2022. Major investors include Lightspeed Venture Partners, Andreessen Horowitz, Redpoint, Coinbase Ventures, and Binance Labs. At the time of the Series B, Sui’s valuation crossed the $2 billion mark.
Both projects are well funded, and neither appears to be at risk of running out of resources anytime soon. The Aptos Foundation has been particularly active in deploying capital, committing over $200 million in the first half of 2025 to fund DeFi grants, liquidity programs, and ecosystem growth.
Recommended Reading:
DeFi Ecosystem and Total Value Locked
The DeFi (Decentralized Finance) ecosystem is one of the strongest indicators of a blockchain’s real-world adoption. It shows whether people are actually using the network to trade, lend, borrow, and stake assets. In the Aptos vs Sui blockchain comparison, this is where the numbers start to tell a very clear story.

1. Total Value Locked (TVL)
By mid-2025, the Sui blockchain had accumulated a TVL of approximately $2.2 billion, making it roughly double the TVL of Aptos, which sat above $1 billion. Sui’s DeFi TVL grew from around $25 million at launch to over $2 billion by May 2025, positioning it as the third largest non-EVM chain by TVL.
On the Aptos side, DeFi TVL has been steady above $1 billion, driven primarily by lending protocols like Aries Markets, Echelon, and Meso Finance, which together account for around $550 million in TVL. Aptos’s stablecoin market cap also grew 85.9% in the first half of 2025 to reach $1.2 billion.
2. DEX Trading Volume
This is where Sui pulls ahead significantly. Sui generated $48 billion in DEX trading volume, compared to Aptos’s $11.6 billion. One Sui-based perpetual swap exchange alone handled $5.5 billion in January 2025, even surpassing major Solana-based competitors. Sui’s trading-focused architecture has clearly attracted more active DeFi participation.
On Aptos, DEX volume surged 310.3% quarter over quarter in Q2 2025, reaching $9 billion. Aptos-native protocols like Hyperion (which grew 29 times in a single quarter to $5.4 billion) and ThalaSwap V2 (which quadrupled to $2.9 billion) have been driving much of this growth.
3. Fee Revenue
Sui captured six times the fee revenue of Aptos over a one-year period, collecting $10.4 million versus Aptos’s $1.7 million. While Aptos has lower per-transaction fees, Sui’s higher trading volume means it generates significantly more total revenue from network activity.
4. Stablecoins
Interestingly, despite Sui’s lead in most DeFi metrics, Aptos actually has more stablecoins on its chain than Sui. As of early 2025, Aptos held $750 million in stablecoins compared to Sui’s $476 million. Aptos became home to three of the four largest stablecoins by market cap, including native deployments of USDT and USDC alongside the launch of USDe.
Developer Experience and Ecosystem Growth
For any blockchain to succeed in the long run, it needs developers building on it. The best Layer 1 blockchain is ultimately the one that makes it easiest for developers to create useful applications while maintaining strong performance and security.
1. Move Language Differences
While both chains use Move, the developer experience differs. Aptos Move is considered more developer-friendly and higher-level. Its Block-STM system simplifies things for developers because they do not need to manually declare transaction dependencies. The system detects and resolves conflicts automatically.
Sui Move offers a different kind of power. Its object-centric model gives developers cleaner ownership APIs and a more transparent view of how data flows through the blockchain. However, it requires developers to think about data structures differently, which can have a steeper learning curve.
2. Ecosystem Size
The Aptos network expanded from around 250 projects to over 330 active projects by mid-2025. The Aptos Foundation has been investing heavily in developer grants and tooling, and the deployment of Aave V3 on Aptos (its first deployment outside an EVM chain) was a major milestone for the ecosystem.
The Sui blockchain has surpassed 500 projects, with a strong focus on DeFi, gaming, and NFT applications. Sui also launched the SuiPlay0X1, a handheld gaming device designed to bring blockchain gaming to mainstream users. Its zkLogin technology, which allows users to sign in using familiar methods like Google accounts, has helped lower the barrier for new users.
3. Developer Tooling
Both chains offer comprehensive SDKs, documentation, tutorials, and development frameworks. Sui’s developer kit is particularly praised for its cross-platform support, while Aptos has focused on creating advanced Move tooling and structured grant programs to attract builders. Aptos averaged 74 weekly active developers in Q2 2025, while Sui’s developer community has been growing rapidly, supported by its partnership with gaming and consumer-facing applications.
Real World Adoption and Institutional Interest
Beyond the technical specs, the real test for any Layer 1 blockchain is whether institutions and real-world businesses are actually using it. Both Aptos and Sui have made progress here, but in different ways.
1. Aptos: Institutional and Enterprise Focus
Aptos has been particularly successful in attracting institutional adoption. BlackRock’s BUIDL fund added $500 million in tokenized assets to the Aptos network, making it the second-largest BUIDL chain. This pushed Aptos’s total real-world asset (RWA) tokenization past $1.2 billion, making it the third-largest network for RWAs alongside Ethereum and ZKsync Era.
Aptos was also selected to power the official digital wallet for Expo 2025 in Osaka, Japan, where it processed over 558,000 transactions and onboarded more than 133,000 users. The network also introduced “passwordless” authentication and launched a $99 smartphone in Africa with a built-in Aptos wallet, showing a push toward mainstream adoption in emerging markets.
2. Sui: Consumer and Trading Focus
Sui has focused more on consumer-facing applications and trading infrastructure. Its DeepBook system, a global centralized limit order book (CLOB) built directly into the blockchain, provides deep liquidity across the network. This levels the playing field for DEXes and reduces the costs that traders face.
Sui’s Programmable Transaction Blocks (PTBs) are another unique advantage. They allow users to bundle multiple actions into a single transaction, which reduces costs for activities like market making. Institutional adoption has also grown, with Grayscale launching a Sui Trust product and 21Shares filing for an SUI ETF. However, the market response has been lopsided: institutional investors appear to favor Sui’s momentum based on investment product inflows.
Recommended Reading:
What Is Immutability in Blockchain? Meaning, How It Works, Benefits and Real Use Cases
Tokenomics: APT vs SUI
Understanding how the native tokens of each network work is important for anyone considering the Aptos vs Sui question from an investment perspective.
1. APT Token (Aptos)
The APT token is used for paying transaction fees, staking, and participating in governance. Aptos uses a staking reward model that starts at 7% annually and decreases over time. As of mid-2025, Aptos had 152 active validators and 877.9 million APT staked, ranking ninth by staked market cap. Transaction fees on Aptos are currently burned, which acts as a deflationary force against the inflationary staking rewards.
2. SUI Token (Sui)
The SUI token has a fixed supply capped at 10 billion tokens. It is used for transaction fees, staking, and governance. One unique aspect of Sui’s tokenomics is its storage fund, which compensates future validators for the cost of storing on-chain data. When more data is stored on Sui, more tokens flow into the storage fund, reducing the circulating supply. Sui also distributes transaction fees to stakers, which adds an extra layer of reward on top of base staking returns.
Aptos vs Sui: Ecosystem and Market Comparison
| Metric | Aptos | Sui |
|---|---|---|
| Total Funding Raised | $350 Million | $336 Million |
| DeFi TVL (Mid-2025) | $1 Billion+ | $2.2 Billion |
| DEX Trading Volume | $11.6 Billion | $48 Billion |
| Fee Revenue (1 Year) | $1.7 Million | $10.4 Million |
| Stablecoins on Chain | $750 Million | $476 Million |
| Monthly Active Addresses | 11.5 Million | 8.6 Million |
| Ecosystem Projects | 330+ | 500+ |
| RWA Tokenization | $1.2 Billion+ | Growing (early stage) |
Target Audience and Use Cases
When asking Aptos or Sui which is better, the answer often depends on what you are trying to build or invest in. Both blockchains have strengths in different areas.
1. Aptos: Broad Enterprise and DeFi Applications
The Aptos blockchain positions itself as a general-purpose platform that can support a wide range of decentralized applications. Its focus areas include DeFi protocols, NFT marketplaces, enterprise solutions, and real-world asset tokenization. The fact that major institutions like BlackRock and Franklin Templeton have chosen to deploy products on Aptos speaks to its strength in the enterprise segment.
Aptos is also making moves toward mainstream consumer adoption, particularly in regions like Africa and Asia, through affordable hardware wallets and simplified authentication methods.
2. Sui: Gaming, Real-Time Apps, and Trading
The Sui blockchain has carved out a strong position in applications that require extremely fast transaction processing. Gaming is a core focus, with Sui’s low latency and parallel processing making it well-suited for real-time game mechanics. The SuiPlay0X1 gaming console is a concrete example of this strategy.
Sui’s architecture also makes it particularly attractive for trading applications. Its DeepBook CLOB, programmable transaction blocks, and low-latency design create a strong foundation for DEXes, perpetual exchanges, and other financial applications that depend on speed.
Security and Network Upgrades
Both Aptos and Sui take security seriously, though neither has undergone a widely publicized formal audit of their complete protocol. The Move programming language itself provides a strong security baseline, as its resource-oriented design prevents many of the common vulnerabilities found in other smart contract languages like Solidity (such as reentrancy attacks).
1. Aptos Security and Upgrades
Aptos’s modular architecture allows it to perform frequent protocol upgrades with minimal disruption. In its October 2025 infrastructure roadmap, Aptos introduced several new technologies, including Archon (for faster inclusion proofs), Block-STM v2 (an enhanced parallel execution engine), and encrypted mempools to prevent frontrunning. The network also plans to introduce event-driven transactions and namespaces for independent execution environments.
2. Sui Security and Upgrades
Sui has been iterating on its consensus mechanism with the Mysticeti v2 upgrade, which significantly reduced latency. The network is also developing the Sui Stack (S2) for its roadmap ahead, which will bundle consensus, storage (Walrus), encryption (Seal), off-chain compute (Nautilus), and identity (SuiNS) into a unified platform for developers. This positions Sui as not just a blockchain, but a complete infrastructure platform.
Community and Governance
Community plays a big role in any blockchain’s long-term success. Both Aptos and Sui have built active communities, though the nature and focus of these communities differ.
The Aptos community has been growing steadily, with the Aptos Foundation actively running hackathons, partnership programs, and developer incentives. The network’s monthly active users stayed above 10 million throughout the first half of 2025, which is a strong signal of real usage rather than speculative activity.
Sui has built strong engagement around its gaming and consumer applications. Its approach to onboarding through zkLogin and user-friendly wallet experiences has helped attract non-crypto-native users. Sui’s validator network has also shown strong participation, with over $29 billion in SUI tokens staked (representing about 75% of the circulating market cap), which indicates deep community confidence.
In terms of governance, both networks allow token holders to participate in decisions about protocol upgrades and ecosystem direction. However, both are still relatively centralized compared to more mature networks like Ethereum, which is common for blockchains at this stage of development.
Layer 1 Blockchain Implementations in the Real World
The following projects reflect how Layer 1 blockchain architecture is already being applied across gaming, payments, and high-throughput networks. Each implementation showcases the same distributed infrastructure principles discussed throughout this article, from consensus mechanisms and parallel execution to community-driven governance and token-based economies.
🎮
RoninChain: Layer-1 Blockchain for Web3 Gaming
Built a specialized Layer 1 blockchain optimized for Web3 gaming that supports millions of transactions, affordable fees, and high-performance NFTs. The network uses EVM-compatible smart contracts and Tendermint-inspired consensus elements, creating a powerful ecosystem for developers, gamers, and communities.
🔗
Everscale Network: High-Performance Blockchain Ecosystem
Developed a highly performant blockchain network capable of handling over 100,000 transactions per second through sharding and dynamic multithreading. The ecosystem includes a blockchain explorer, decentralized governance through a DAO, and comprehensive developer tools for building third-party applications and services.
Build Your Own Layer 1 Blockchain Solution Today
Our blockchain specialists handle everything from consensus mechanism design and smart contract development to custom token creation and cross-chain integration, delivering networks built for performance, security, and long-term growth.
Conclusion
The Aptos vs Sui comparison is not about picking a clear winner. These are two thoughtfully designed Layer 1 blockchains that share the same DNA but serve different strengths and priorities. Both use the Move programming language, both process transactions in parallel, and both have strong financial backing from top-tier investors.
Where they differ matters. Aptos has built a strong case for enterprise adoption and institutional use cases. Its success in real-world asset tokenization (with over $1.2 billion in RWAs), its selection for Expo 2025, and its partnerships with BlackRock and Franklin Templeton show a blockchain that is positioning itself as a bridge between traditional finance and Web3. Its modular architecture makes upgrades simple, and its Block-STM engine offers a developer-friendly path to high-performance applications.
Sui, on the other hand, has built a stronger foundation for trading, gaming, and consumer applications. Its object-centric model allows for deeper parallelization, its DeepBook CLOB creates unified liquidity across the network, and its DeFi metrics (including $48 billion in DEX volume and $2.2 billion in TVL) show that traders and DeFi users have embraced the platform. Sui’s focus on user experience through tools like zkLogin and its SuiPlay gaming console also shows a clear push toward mainstream adoption.
For developers, the choice between Aptos and Sui comes down to the type of application you want to build. If you are building broad enterprise or institutional DeFi tools, Aptos offers a more traditional and proven path. If you are building trading infrastructure, gaming applications, or consumer-facing products that need extremely low latency, Sui may be the better fit. For investors, both chains represent strong bets on the future of Move-based blockchains, but with different risk profiles and growth trajectories. The best Layer 1 blockchain for you depends entirely on what you value most: institutional momentum and enterprise partnerships, or trading activity and consumer innovation.
Frequently Asked Questions
Aptos uses an account-based data model with Block-STM for parallel execution, while Sui uses an object-centric data model that allows transactions involving different objects to skip consensus entirely. Both are Layer 1 blockchains built on the Move programming language from Meta’s Diem project.
In lab testing, Sui has shown higher peak throughput at 297,000 TPS versus Aptos’s 160,000 TPS. However, on the live mainnet, Aptos tends to deliver more consistent and higher actual transaction speeds. Both chains offer sub-second finality.
Sui currently leads in DeFi activity with $2.2 billion in TVL and $48 billion in DEX trading volume compared to Aptos’s $1 billion TVL and $11.6 billion DEX volume. However, Aptos holds more stablecoins on its chain at $750 million versus Sui’s $476 million.
Not exactly. Both teams came from Meta’s Diem project, but they split into separate companies. Aptos Labs is led by Mo Shaikh and Avery Ching, while Mysten Labs (behind Sui) was founded by Evan Cheng, Sam Blackshear, Adeniyi Abiodun, and George Danezis.
It depends on your use case. Aptos Move is considered more developer-friendly for general applications, while Sui Move gives developers more control over data structures through its object model. Both offer strong SDKs, documentation, and active developer communities.
Yes. Both blockchains target different strengths. Aptos is building toward enterprise and institutional use cases with a focus on RWA tokenization and mainstream onboarding. Sui is focused on trading infrastructure, gaming, and consumer applications. The blockchain space is large enough for both to thrive in their respective niches.
Reviewed & Edited By

Aman Vaths
Founder of Nadcab Labs
Aman Vaths is the Founder & CTO of Nadcab Labs, a global digital engineering company delivering enterprise-grade solutions across AI, Web3, Blockchain, Big Data, Cloud, Cybersecurity, and Modern Application Development. With deep technical leadership and product innovation experience, Aman has positioned Nadcab Labs as one of the most advanced engineering companies driving the next era of intelligent, secure, and scalable software systems. Under his leadership, Nadcab Labs has built 2,000+ global projects across sectors including fintech, banking, healthcare, real estate, logistics, gaming, manufacturing, and next-generation DePIN networks. Aman’s strength lies in architecting high-performance systems, end-to-end platform engineering, and designing enterprise solutions that operate at global scale.







