Home » What Is Sui? Overview of the Layer 1 Blockchain

What Is Sui? Overview of the Layer 1 Blockchain

What Is Sui (SUI)? The Complete Guide to the Next-Generation Layer 1 Blockchain 1

Manage your Bitcoin and other cryptocurrencies securely with the self-custody Bitcoin.com Wallet app.

Sui is one of the most technically ambitious blockchains ever built. Developed by Mysten Labs – founded by former Meta engineers behind the Diem project – Sui launched its mainnet in May 2023 with a fundamentally different approach to how blockchains store and process data. Instead of the account-based model used by Ethereum and most of its descendants, Sui uses an object-centric architecture that enables native parallel transaction processing, sub-second finality, and a full-stack developer platform that includes decentralized storage, access control, and social login – all built into the protocol itself.

Overview

Sui isn’t just another fast blockchain. Its object-centric architecture, Move programming language, and integrated developer stack represent a genuine rethinking of how Layer 1s are built – and what they can become.

Quick Facts

PropertyValueFounded byMysten LabsMainnet LaunchMay 2023Smart Contract LanguageMoveConsensusDPoS + MysticetiTransaction Finality~390msMax Token Supply10 billion SUICirculating Supply (2026)~3.9 billion SUIAll-Time High Price$5.35 (January 2025)Peak TVL$2.6B (October 2025)PropertyFounded byValueMysten LabsPropertyMainnet LaunchValueMay 2023PropertySmart Contract LanguageValueMovePropertyConsensusValueDPoS + MysticetiPropertyTransaction FinalityValue~390msPropertyMax Token SupplyValue10 billion SUIPropertyCirculating Supply (2026)Value~3.9 billion SUIPropertyAll-Time High PriceValue$5.35 (January 2025)PropertyPeak TVLValue$2.6B (October 2025)

What Is Sui?

Sui is a Layer 1 blockchain developed by Mysten Labs, a company founded by former Meta engineers who built core components of the Diem (formerly Libra) blockchain project. Launched on mainnet in May 2023, Sui has positioned itself as a next-generation smart contract platform – one that rethinks blockchain architecture at a fundamental level rather than iterating on Ethereum’s design.

The name comes from the Japanese word for “water,” reflected in its water-drop logo. Like water, the project is designed to flow efficiently: Sui is built to process transactions at high speed without the bottlenecks that affect older blockchains.

Sui’s native token is SUI, used to pay transaction fees (called “gas”), stake to earn rewards and participate in governance, and secure the network through its delegated proof-of-stake (DPoS) consensus model. The total supply is capped at 10 billion SUI, with approximately 3.9 billion in circulation as of 2026.

While most blockchains process transactions one at a time in sequence, Sui can process many transactions simultaneously and in parallel – dramatically improving speed and throughput without sacrificing security.

The Object-Centric Model: Sui’s Core Innovation

To understand what makes Sui genuinely different, you need to understand how blockchains store data – and why that matters for performance.

Ethereum and most other smart contract platforms use an account-based model: your wallet has a balance, contracts have state, and every transaction modifies shared global state. The problem is that this creates contention: before any transaction can be confirmed, the network must check the entire global state, forcing sequential processing – one transaction at a time.

Objects, Not Accounts

Sui represents everything on-chain – tokens, NFTs, smart contract data – as discrete “objects”, each with a unique ID, a defined owner, and a type. Because Sui knows exactly which objects a transaction touches, it can determine whether two transactions are independent. If they are, both can run simultaneously. This is true native parallel execution, not a workaround or approximation.

Ethereum’s model is like a single shared spreadsheet – every edit locks the whole document. Sui’s model is like Google Docs: each object is its own file, and many people can edit different files simultaneously without any conflict.

Simple Transfers Without Consensus

For transactions involving objects owned by a single user – the most common case, such as sending tokens – Sui can bypass the full consensus mechanism entirely. These “simple transfers” are confirmed directly between the sender and validators, making them extraordinarily fast and cheap. Full network consensus is only needed when transactions involve shared objects (like interacting with a DEX).

Mysticeti: Sub-Second Finality

Shared-object transactions use Mysticeti, Sui’s DAG-based (Directed Acyclic Graph) consensus protocol deployed in mid-2025. Mysticeti achieves finality in approximately 390 milliseconds – faster than Solana’s average of ~800ms, and orders of magnitude faster than Ethereum’s ~12-second slots.

Validator scaling is handled by the Pilotfish upgrade, which allows validators to add more standard servers to handle increased traffic horizontally – a stark contrast to Solana’s approach, which requires increasingly expensive specialized hardware.

Move: The Programming Language Built for Digital Assets

Smart contracts on Sui are written in Move, a programming language created by Meta engineers for the Diem project. It is now widely regarded as one of the most secure smart contract languages in existence.

Move’s breakthrough idea is treating digital assets as “Resources”: objects that obey conservation laws. In Move, a token cannot be created from nothing, duplicated, or accidentally deleted – the language itself enforces these properties at compile time. This eliminates entire categories of vulnerabilities that have cost billions in Solidity exploits.

Move raises the floor for smart contract security – not by patching known exploits, but by making entire classes of bugs structurally impossible.

Formal Verification with Sui Prover

In May 2025, Asymptotic introduced the Sui Prover, a formal verification tool that allows developers to mathematically prove that their smart contracts behave correctly under all inputs and conditions – the gold standard in software safety, now brought to blockchain development.

Move’s safety guarantees apply to what the language structurally prevents – not to flawed application-level logic. The $223M Cetus hack in May 2025 was caused by a math overflow bug in custom application code, not a flaw in Move itself. Security always requires rigorous auditing, testing, and formal verification regardless of the underlying language.

The Sui Stack: Beyond a Blockchain

In 2025, Sui made a major strategic pivot – redefining itself not just as a fast Layer 1, but as a complete full-stack developer platform. The “Sui Stack” packages several integrated technologies that solve common problems Web3 builders face when launching real applications.

ComponentWhat It DoesWalrusDecentralized blob storage built into the Sui ecosystem — like a purpose-built IPFS. Enables apps to store large files on-chain affordably and reliably.SealOn-chain access control. Defines who can read or write specific data, without relying on centralized auth servers.NautilusTrusted off-chain computation. Lets smart contracts securely use data or computations that happen outside the blockchain.zkLoginSign blockchain transactions using a Google or Twitch account. Removes the seed phrase barrier for mainstream onboarding.SuiNSOn-chain name service (like ENS). Maps human-readable names — e.g., alice.sui — to wallet addresses.DeepBookA native, on-chain central limit order book providing shared liquidity infrastructure for any DEX or trading app built on Sui.ComponentWalrusWhat It DoesDecentralized blob storage built into the Sui ecosystem — like a purpose-built IPFS. Enables apps to store large files on-chain affordably and reliably.ComponentSealWhat It DoesOn-chain access control. Defines who can read or write specific data, without relying on centralized auth servers.ComponentNautilusWhat It DoesTrusted off-chain computation. Lets smart contracts securely use data or computations that happen outside the blockchain.ComponentzkLoginWhat It DoesSign blockchain transactions using a Google or Twitch account. Removes the seed phrase barrier for mainstream onboarding.ComponentSuiNSWhat It DoesOn-chain name service (like ENS). Maps human-readable names — e.g., alice.sui — to wallet addresses.ComponentDeepBookWhat It DoesA native, on-chain central limit order book providing shared liquidity infrastructure for any DEX or trading app built on Sui.

The philosophy: developers shouldn’t need to assemble a dozen external services to build a serious application. By making these primitives native to the protocol, Sui reduces integration complexity, improves security, and lets builders focus on product – not plumbing.

Sui vs. Ethereum vs. Solana

How does Sui stack up against the two dominant smart contract platforms?

FeatureSuiSolanaEthereumData ModelObject-centricAccount-basedAccount-basedSmart Contract LanguageMoveRust / CSolidityTransaction Finality~390ms~800ms~12 secondsParallel ExecutionNative, automaticSealevel (dev-declared)None (sequential)Scaling ApproachHorizontal (add servers)Vertical (faster hardware)Layer 2 rollupsUser OnboardingzkLogin (social login)Wallet requiredWallet requiredNative StorageWalrus (integrated)External (Arweave)External (IPFS)Ecosystem MaturityGrowing rapidlyLarge, establishedLargest, most matureOutage History2 major (2024–2026)Several (2021–2022)None (PoS era)FeatureData ModelSuiObject-centricSolanaAccount-basedEthereumAccount-basedFeatureSmart Contract LanguageSuiMoveSolanaRust / CEthereumSolidityFeatureTransaction FinalitySui~390msSolana~800msEthereum~12 secondsFeatureParallel ExecutionSuiNative, automaticSolanaSealevel (dev-declared)EthereumNone (sequential)FeatureScaling ApproachSuiHorizontal (add servers)SolanaVertical (faster hardware)EthereumLayer 2 rollupsFeatureUser OnboardingSuizkLogin (social login)SolanaWallet requiredEthereumWallet requiredFeatureNative StorageSuiWalrus (integrated)SolanaExternal (Arweave)EthereumExternal (IPFS)FeatureEcosystem MaturitySuiGrowing rapidlySolanaLarge, establishedEthereumLargest, most matureFeatureOutage HistorySui2 major (2024–2026)SolanaSeveral (2021–2022)EthereumNone (PoS era)

Sui is architecturally the most advanced of the three for raw throughput and user experience. Ethereum leads on ecosystem depth, security track record, and institutional trust. Solana sits in between – battle-tested, fast, and widely adopted, but requiring increasingly expensive hardware to scale.

Sui’s Ecosystem in 2025–2026

Over 2025, Sui evolved from a technically impressive but relatively young network into a competitive Layer 1 with active DeFi, gaming, institutional rails, and Bitcoin finance.

DeFi

Sui’s DeFi ecosystem peaked at a Total Value Locked (TVL) of $2.6 billion in October 2025, powered by Suilend (lending), Cetus (the primary DEX), Bluefin (perpetuals), and Navi Protocol. Following security incidents and broader market weakness, TVL stood at approximately $561M as of February 2026 – a steep correction from peak, but representing genuine on-chain financial activity.

Bitcoin Finance on Sui

One of 2025’s breakout narratives was Bitcoin-backed assets. Multiple BTC representations became active:

  • Lombard’s LBTC – liquid-staked Bitcoin for lending and trading workflows
  • OKX’s xBTC – moving BTC from centralized exchanges into on-chain DeFi
  • Stacks’s sBTC – deeper programmability and Bitcoin network integration

This lets BTC holders lend, trade, and earn yield – converting Bitcoin from a passive store of value into productive capital.

Gaming

Gaming is one of Sui’s most natural use cases. In December 2025, XOCIETY – a third-person shooter built in partnership with Sui – launched Early Access on the Epic Games Store. The SuiPlay0x1 handheld gaming device is also in development, targeting mainstream audiences rather than crypto-native users.

Institutional Adoption

Institutional interest deepened significantly in late 2025:

  • Grayscale filed an S-1 for a Sui trust product
  • Bitwise, 21Shares, and Canary Capital filed for spot SUI ETFs with the SEC (December 2025)
  • ETF decisions remain pending into 2026

In 2025, developers executed over 1.16 billion programmable transaction blocks, and Sui hosted events in 17 cities reaching over 13,000 community members.

Security Incidents & Network Reliability

Any honest guide to Sui must address the significant incidents of 2025–2026.

Cetus Protocol Exploit – May 22, 2025 | $223M Lost

Sui’s largest DEX was exploited via a math overflow bug in its fixed-point arithmetic library. The attacker minted near-zero-value tokens to corrupt price calculations and drain real assets from liquidity pools. About $60M was bridged to Ethereum before validators coordinated to freeze the remaining ~$162M on Sui. After a community governance vote, frozen funds were recovered, the Sui Foundation provided a bridge loan, and Cetus returned to operations after 17 days.

The incident revealed that validator coordination can freeze on-chain funds – effective in this case, but raising real questions about censorship resistance and decentralization.

Nemo Protocol Exploit – 2025 | $2.4M Lost

A yield protocol on Sui was exploited for $2.4M in USDC through a smart contract vulnerability.

Typus Finance Exploit – 2025 | $3M Lost

An unaudited contract at Typus Finance lost approximately $3M – a reminder that unaudited code carries serious risk regardless of the underlying chain’s security properties.

Network Outage – January 14, 2026 | ~6 Hours Down

A consensus stall halted all transaction processing for approximately six hours, freezing over $1 billion in on-chain assets. User funds were never at risk – this was a liveness failure, not a security breach – but dApps were completely unavailable. This was Sui’s second major outage (following November 2024), plus an additional degraded-performance event in December 2025.

Context: Outages and early-stage security incidents are not unique to Sui – Solana had multiple major outages in 2021–2022 before stabilizing. However, Sui’s incidents are real risks and should factor into any evaluation, especially for applications requiring high uptime or large liquidity commitments.

Key Milestones & What’s Ahead in 2026

DateMilestoneMay 2023Mainnet launch with Move smart contracts, object model, and DPoS consensus2024Mysticeti V1 deployed; RPC 2.0 (GraphQL) API launched; first network outage (November)May 2025Cetus hack ($223M); $162M recovered via validator coordination and community voteMid-2025Mysticeti V2 achieves ~390ms finality; Pilotfish enables horizontal validator scalingSep 2025Full Sui Stack announced (Walrus, Seal, Nautilus); Sui repositions as a full-stack platformOct 2025TVL peaks at $2.6B — Sui’s all-time high by total value lockedDec 2025Bitwise, 21Shares, Canary Capital file spot SUI ETFs with SEC; XOCIETY launches on Epic Games StoreJan 2026Six-hour consensus stall halts mainnet; second major outage in network history2026 RoadmapNative private transactions (ZKP at protocol level), Ethereum bridge, SuiNS launch, mainstream UX push

Strengths

  • Fastest transaction finality of any major L1 (~390ms)
  • Native parallel execution – no developer workarounds needed
  • Move language eliminates major categories of smart contract exploits
  • Integrated Sui Stack dramatically reduces builder complexity
  • zkLogin enables mainstream user onboarding without seed phrases
  • Strong institutional pipeline (ETF filings, Grayscale trust)
  • Horizontal scaling without expensive specialized hardware

Risks

  • Two major network outages in its history
  • $228M+ lost across three protocol exploits in 2025
  • Validator fund-freezing raises decentralization concerns
  • TVL down ~78% from October 2025 peak
  • Smaller ecosystem than Ethereum and Solana
  • Move is less widely known than Solidity
  • SUI token significantly below its January 2025 all-time high

Conclusion

Sui is one of the most technically innovative blockchains ever built. Its object-centric architecture solves real problems that account-based chains cannot, and the Sui Stack – combining native storage, access control, privacy, and identity – is a genuine leap forward for what a Layer 1 can offer developers.

But Sui is also a young network still proving itself. Two major outages, over $228M lost to exploits in a single year, and validator-level fund-freezing that challenges pure decentralization principles are real marks against it.

Sui has the architecture to win long-term. Whether its execution, ecosystem, and reliability will match its technical ambition remains the open question for 2026 and beyond.

Related Articles

Understanding TRON Energy and Bandwidth: Why TRX Gets Burned on USDT Transfers 1

Understanding TRON Energy and TRX Burn on Transfers

Manage your Bitcoin and other cryptocurrencies securely with the self-custody Bitcoin.com Wallet app. TRON transactions do not follow a traditional

What Is a 51% Attack? How It Works and Why It Matters 1

Understanding the 51% Attack in Cryptocurrency

A 51% attack is one of the most talked-about threats in cryptocurrency – but also one of the most misunderstood.

What Is Aptos? The Layer-1 Blockchain Built for Real-World Speed 1

Overview of Aptos: The Fast Layer-1 Blockchain

Manage your Bitcoin and other cryptocurrencies securely with the self-custody Bitcoin.com Wallet app. Aptos is a high-performance Layer-1 blockchain that

What are Bitcoin Layer-2 Solutions? 1

Understanding Bitcoin Layer-2 Solutions for Scalability

As Bitcoin continues to grow in popularity, its original design, which supports only seven transactions per second, often struggles with

How to buy Bitcoin Cash 1

How to Buy Bitcoin Cash: Simple Methods Explained

The four main ways to buy Bitcoin Cash are through cryptocurrency wallet apps like the Bitcoin.com Wallet app, through cryptocurrency

How to join a new chain 1

How to Join a New Chain: Best Practices

The decentralized crypto ecosystem is made up of more than a dozen active blockchains, the largest of which features hundreds