Sui mainnet launched in May 2023, built by Mysten Labs, a team founded by former lead engineers of Meta's shuttered Diem blockchain project (originally Libra). After Meta abandoned Diem in early 2022 under regulatory pressure, the technical team split into two camps. Some founded Aptos, taking the Diem codebase nearly verbatim. Mysten Labs went a different direction: they kept the Move programming language but redesigned the entire data model around something they called objects.
That redesign turned out to be more than a cosmetic change. Sui handles transactions completely differently from every chain before it, and its design has been one of the most influential ideas to emerge from the post-Diem era.
The Object Model
Most blockchains store state as accounts with balances. To send 10 USDC from Alice to Bob, you debit Alice's account and credit Bob's. Both accounts must be locked during the transaction so nothing else can change them.
On Sui, the unit of state is not an account but an object. A USDC balance is an object you own. An NFT is an object. A liquidity pool position is an object. Every object has:
- A unique ID.
- An owner (an address, a shared object, or another object).
- A type and a set of fields defined by Move smart contracts.
When you send 10 USDC to Bob, Sui doesn't mutate balances — it creates a new USDC object owned by Bob and updates the original's metadata. This is closer to how Bitcoin handles UTXOs than how Ethereum handles accounts.
Why This Enables Parallelism
The big payoff of the object model: most transactions touch different objects and therefore have no conflicts. If Alice is sending Bob a token while Carol is minting an NFT, those two transactions can run in parallel. Sui's validators do exactly that — they execute thousands of independent transactions simultaneously across multiple cores.
For transactions involving shared objects (like a liquidity pool that everyone interacts with), Sui falls back to a sequential consensus path called Narwhal-Bullshark. But the simple-transfer fast path completes in around 400 milliseconds with no consensus required at all — just a quorum of validator signatures.
Move: A Smart Contract Language for Assets
Sui's smart contracts are written in Move, a language originally developed for Diem and now in production on both Sui and Aptos (with subtle differences between the two flavours). Move was designed specifically for handling digital assets safely:
- Resources — Tokens and assets are first-class types with copy/discard restrictions baked into the language. You cannot accidentally duplicate or destroy an asset.
- Capabilities — Permissions are objects you hold. Calling a privileged function requires presenting the right capability.
- Static analysis — Many bugs that have plagued Solidity (reentrancy, integer overflow) are caught at compile time.
Move is harder to learn than Solidity, but the safety guarantees mean fewer catastrophic exploits — which is why it has been adopted by both Sui and Aptos.
Performance and Storage
Sui has demonstrated over 100,000 TPS in benchmarks and routinely handles multi-thousand TPS in real-world conditions. Transaction fees are typically a fraction of a cent. Block times average around 2 seconds.
One unique feature: Sui has a storage fund. Users pay a small upfront fee for storing data on-chain, which is held in escrow. If they later delete the object, they get a refund. This aligns long-term incentives between validators (who must store state forever) and users (who pay for the space they consume).
The Sui Ecosystem
Despite its young age, Sui's ecosystem grew rapidly:
- Cetus, Turbos Finance, Kriya — Native DEXs.
- NAVI Protocol, Scallop, Suilend — Lending markets.
- DeepBook — A native central limit order book that other protocols can plug into.
- SuiPlay 0X1 — A Mysten-built handheld gaming device that integrates Sui-based gaming directly.
- BlueMove, TradePort — NFT marketplaces.
Sui has been particularly strong in gaming and consumer apps where the object model maps cleanly to in-game items and assets users actually own.
Tokenomics
SUI has a maximum supply of 10 billion tokens. The distribution at launch:
- 50% — Community reserve, staking subsidies, future programs.
- 20% — Early contributors.
- 14% — Investors.
- 10% — Mysten Labs treasury.
- 6% — Community access program (early users).
SUI is used for staking (around 6-7% APY), gas fees, storage fund deposits, and on-chain governance. Vesting unlocks for investors and team continue through 2027, which is the most common bear case for SUI's price.
Risks and Criticisms
- Validator centralization — Sui has around 110 validators, but the largest few control a substantial portion of stake. Decentralization improves over time but is still in progress.
- Vesting cliff — Significant SUI unlocks are still ahead, creating sustained sell pressure.
- Move learning curve — Most existing Web3 developers know Solidity, not Move.
- Object model complexity — While powerful, the object model takes time to internalize, and some patterns from EVM development do not translate cleanly.
Why Sui Matters
Sui represents the most aggressive attempt yet to design a smart contract platform from first principles, free of EVM compatibility constraints. Its object model maps cleanly onto how users actually think about owning digital things — items, NFTs, balances. If consumer crypto applications take off in the way many believe they will, Sui's design is unusually well-suited for them. For traders, SUI is one of the more liquid "newer L1" tokens with consistent volume across major exchanges.