Sui

SUI Rank #43

A high-performance Layer 1 using the Move language and an object-centric data model.

Educational overview, not investment advice This page explains how Sui works and its history. Live prices and market data change constantly — always check a real-time source before making decisions.

Sui is a Layer 1 blockchain built around a novel object-centric data model and the Move programming language, designed to process transactions in parallel and reach finality in under a second. Where most blockchains treat the ledger as a list of account balances, Sui treats everything — tokens, NFTs, game items, contracts — as discrete, typed objects, unlocking a style of concurrency that most chains cannot match.

Background

Most blockchains process transactions sequentially, one after another, because they share a global state: every write could potentially conflict with every other write. This bottleneck is manageable when usage is light, but it becomes a hard ceiling when demand spikes. Ethereum, for example, relies on a queue called the mempool to order competing transactions, and fees rise sharply when blocks fill up.

Sui’s designers — former engineers from Meta’s Diem blockchain project — set out to break that ceiling. Their insight was that the majority of transactions in practice do not actually conflict: Alice sending a token to Bob does not touch the same state as Carol minting an NFT. If the system can identify this independence upfront, it can execute those transactions simultaneously across many processor cores.

The object model is the mechanism that makes this identification possible. Because every asset has a clear owner and a known set of dependencies, the runtime can sort transactions into non-conflicting groups and process them in parallel without coordination overhead. Transactions involving shared objects — ones that multiple parties can write to simultaneously — still require ordering, but they are handled separately and do not slow down the rest of the queue.

This architecture targets use cases that demand high throughput and low latency: games, real-time trading, social applications, and real-world asset tokenization.

History

Sui is the product of Mysten Labs, a company founded in 2021 by several engineers who had worked on Diem at Meta and on the Novi digital wallet. The team brought with them deep experience in distributed systems, programming language design, and cryptography — and a codebase built around Move, a language originally written for Diem.

After a period of public testnet activity, Sui’s mainnet launched in May 2023. The launch attracted significant attention because the team had already raised substantial funding from venture capital, and the SUI token was listed on major exchanges on the same day the network went live.

In its first year, the network established a developer ecosystem built around the Sui Move dialect, which diverges meaningfully from the original Move used by Aptos — a related chain that also emerged from the Diem lineage. Both chains share the Move language as a common ancestor but have taken different technical directions.

Sui has seen notable adoption in the gaming and digital collectibles space, partly because its object model maps naturally onto game inventories and uniquely owned digital items. The network has also been used for DeFi applications, including decentralized exchanges and lending protocols.

Technology

The Move Language

Move was designed with asset safety as its primary goal. In most smart contract languages, tokens are represented as numbers in a mapping — easy to manipulate but easy to duplicate or lose by accident. Move makes assets first-class values: they cannot be copied or silently discarded; they must be explicitly transferred, burned, or stored. This property is enforced by the language compiler, not just by convention.

Sui uses its own dialect of Move that is tightly integrated with the object model. Every object has a unique identifier, a type, and an owner — either a specific address, another object, or the network itself (for shared objects). Smart contracts on Sui are packages of Move modules that define new object types and the functions that operate on them.

Parallel Execution

When a transaction arrives on Sui, the runtime inspects which objects it reads and writes. If those objects are owned exclusively by the sender and are not involved in any other pending transaction, the system can skip the global consensus process entirely for a fast-path called Byzantine Fault Tolerant (BFT) direct execution. Validators confirm simple transactions with a small number of message rounds, producing sub-second finality.

Transactions involving shared objects — for example, placing an order on a shared order book — must go through the full consensus protocol. Sui uses a DAG-based consensus engine called Mysticeti for this purpose, designed to minimise latency while maintaining safety under Byzantine conditions.

Validators and Staking

Sui uses Delegated Proof of Stake. A set of validators runs the network; token holders who do not run their own validators can delegate their SUI to a validator of their choice and earn a share of staking rewards. Validator weight in consensus is proportional to their total delegated stake. Each epoch — a fixed time window — the validator set can be updated and rewards are distributed.

Understanding how nodes and validators operate gives useful context for how stake-weighted systems like Sui achieve both security and liveness.

Tokenomics

SUI has a fixed maximum supply of ten billion tokens. Not all of these are in circulation at launch — a significant portion is subject to vesting schedules held by investors, the founding team, and the Sui Foundation.

Allocation categoryPurpose
Community reserveEcosystem grants, developer incentives, future staking rewards
Early contributorsTeam and early backers, subject to vesting
InvestorsVenture funding rounds, subject to vesting
Public distributionToken sale and initial exchange listings

SUI serves several functions within the network. It is used to pay gas fees for transactions — Sui’s gas pricing is designed to be predictable, with fees quoted in stable terms rather than fluctuating wildly with momentary demand. It is also the staking asset: delegators lock SUI with validators to help secure the network and receive a share of newly issued tokens as a reward.

Staking rewards come from a reserve pool rather than from uncapped inflation, meaning the total supply approaches but does not exceed the ten-billion ceiling over time. As the reserve pool depletes, rewards diminish unless governance adjusts the parameters — a design that creates long-run deflationary pressure on issuance.

Storage fees on Sui work differently from most chains. When an object is created and stored on-chain, the sender pays a storage deposit proportional to the object’s size. When the object is later deleted, that deposit is partially refunded. This mechanism is meant to discourage blockchain bloat and align the cost of storage with actual resource consumption.

Understanding crypto supply mechanics and inflation and emissions more broadly helps put Sui’s tokenomics in context alongside other Layer 1 networks.

In summary

Sui is a technically ambitious Layer 1 that takes a fundamentally different approach to transaction processing than most networks. Its object model and parallel execution engine offer genuine architectural advantages for high-throughput applications, and the Move language provides stronger asset safety guarantees than older smart contract platforms. The tradeoff, as with any newer chain, is a smaller ecosystem and a shorter track record. Prospective users and developers should weigh the technological promises against the maturity of the tooling and the network effect that older chains have accumulated. As always, nothing here is financial advice — understand what you are using before you use it.

Last reviewed January 1, 2026.