L1

Sui SUI

An object-oriented Layer 1 blockchain using a parallelized execution model, built by former Meta Diem engineers using the Move language.

Price
loading...
24h Change
--
Market Cap
--
24h Volume
--

Live data via /api/coingecko/markets · Updated every page load

Founded
2023
Founder
Mysten Labs / Evan Cheng, Adeniyi Abiodun
Consensus
Narwhal-Bullshark (DAG-based PoS)
Max Supply
10,000,000,000

What SUI is

Sui is a Layer 1 blockchain that launched in May 2023, built by Mysten Labs, founded by former engineers from Meta's Diem project. Sui's defining design choice is its object-centric model: rather than account balances and contract storage, the world state is a collection of objects with explicit ownership. This enables aggressive parallelization: any transactions touching disjoint object sets can run concurrently without coordination.

How it works

Sui uses Narwhal for transaction dissemination and Bullshark (or Mysticeti) for consensus, a DAG-based design that sustains high throughput with low latency. Simple "owned object" transactions can finalize in sub-second time without going through full consensus, while shared-object transactions (involving objects multiple parties can use, like an AMM pool) go through the consensus path. Smart contracts are written in Sui Move, a variant of Move with object-aware features.

Use cases

Sui has attracted significant DeFi (DeepBook, Cetus, Navi), gaming, and consumer applications. The object model is well-suited to NFTs and game items, which are first-class citizens with explicit ownership rather than entries in a contract's storage. Stablecoins are present but less prevalent than on Ethereum or Solana.

Tradeoffs and criticism

Sui's object model is powerful but requires a different mental model than Ethereum-style state. Move (in any variant) has a smaller developer community than Solidity. The Sui and Aptos ecosystems share a language but have diverged on details, creating compatibility friction. The chain is young; its track record is shorter than longer-lived alternatives.

Where to track SUI

For comparison with similar architectures, see the validator and staking entries.

Related coins

Frequently asked questions

What is the object-centric model?
In Sui, the world state is a collection of objects rather than account balances. Each object has an explicit owner. Tokens are objects, NFTs are objects, even shared resources like AMM pools are objects (with shared-ownership flags). This enables parallel execution of transactions that touch disjoint objects.
How fast is Sui?
Sui claims throughput in the tens of thousands of TPS for owned-object transactions and high thousands for shared-object transactions. Latency for simple transfers is sub-second.
Is Sui Move the same as Aptos Move?
Both are descendants of the Move language from Meta's Diem project, but Sui Move has been adapted to Sui's object-centric architecture and differs from Aptos Move in important ways. Smart contracts cannot be ported between the two without modification.