Back to blog
EcosystemMarch 12, 2026·8 min read

Why Sui Is Getting Attention — A Next-Generation Blockchain Design

Built by ex-Meta engineers, Sui reimagines how blockchains work from the ground up. Here's what makes the Move language and object model different — and why it matters.

#Sui#Move#Blockchain#Object Model#Meta#Next-gen

The DNA of Meta's Abandoned Blockchain

In 2019, Meta announced Diem (formerly Libra) — an ambitious global payments blockchain intended to bring cryptocurrency to billions of Facebook users.

Governments and regulators pushed back hard. By 2022, Diem was dead. But the programming language created for it — Move — and the core engineering team survived.

When the Diem engineers left Meta, they founded two new blockchain projects: Sui and Aptos.

The Move Language: Assets as Real Objects

Ethereum smart contracts are written in Solidity. In Solidity, a token is fundamentally a number in a table.

// Ethereum approach: balance table
mapping(address => uint256) balances;
balances[Alice] = 100;
balances[Bob] = 50;

Alice's 100 tokens are just a number associated with Alice's address. If that number gets manipulated incorrectly — through a bug or exploit — tokens can be duplicated or destroyed. Many of the most damaging smart contract hacks in history trace back to exactly this structural weakness.

Move treats assets as resources.

// Move approach: assets are actual objects
struct Coin has key {
    value: u64,
}

In Move, a token is a real object with physical-world properties. It cannot be copied. It cannot exist in two places simultaneously. It must be explicitly moved from one owner to another — like physical cash.

This design eliminates entire categories of bugs — double spends, token duplication — at the language level, before any code is even deployed.

Sui's Object Model: Objects, Not Accounts

Ethereum uses an account-based model. All assets exist as state associated with accounts managed by smart contracts.

Sui uses an object model. The entire blockchain state is a collection of independent objects.

Consider an NFT. On Ethereum: "token ID 42 in contract X has owner address Alice." On Sui: the NFT is an independent object that Alice directly owns.

This distinction has profound performance implications. Transactions touching different objects can be processed completely in parallel. Alice transferring her NFT and Bob transferring his have zero overlap — they run simultaneously.

Why Sui Is Fast: Transactions Without Consensus

On Ethereum, every transaction — even a simple token transfer — requires full network consensus.

Sui exploits the ownership structure to skip consensus for simple transactions.

  • Owned objects: Alice sending her own asset to Bob. No conflict possible with anyone else. No consensus needed. Extremely fast.
  • Shared objects: A DeFi liquidity pool that multiple users access simultaneously. Conflicts possible. Consensus required.

The majority of everyday transactions — wallet transfers, NFT sales — fall into the owned-object category. Theoretically, this enables hundreds of thousands of TPS.

The Role of SUI

SUI is the network's native currency.

  • Fees: Every transaction consumes SUI as gas
  • Staking: Delegate SUI to validators and earn staking rewards
  • Sponsored transactions: Uniquely, Sui allows apps to pay transaction fees on behalf of users — a user can interact with a dApp without holding any SUI at all. This dramatically improves the onboarding experience.

Sui's Major Ecosystem

Gaming / NFTs Sui's speed and object model are a natural fit for gaming. Each in-game item can be a real blockchain object with true ownership. Players can trade items without developer permission.

DeFi

  • Cetus: Sui's primary DEX
  • Scallop: Lending protocol
  • Navi: Money market

zkLogin One of Sui's most distinctive features. Sign in with Google or Apple, and a wallet is automatically created for you. No seed phrase required. This is a meaningful step toward blockchain usability for non-technical users.

Sui's Weaknesses Compared to Ethereum

Immature ecosystem: Ethereum has a decade of history and thousands of audited protocols. Sui launched mainnet in 2023 and is still in its early stages.

Move learning curve: There are far more Solidity developers than Move developers. The talent pool is smaller.

Unproven at scale: Sui's technical claims are compelling, but they haven't been stress-tested at Ethereum's level of adoption or value at risk.

How to Think About Sui

Sui aims to be a "better-designed blockchain from scratch." Where Ethereum was built within the constraints of 2015 technology, Sui incorporates a decade of blockchain lessons into its foundational design.

The potential is genuine. But technical superiority doesn't automatically translate into ecosystem dominance. That requires developers and users to actually choose Sui over established alternatives.

From an investment perspective, SUI is a bet on a next-generation blockchain platform succeeding. Higher risk, higher potential reward compared to Ethereum.


To compare consensus mechanisms hands-on, try the Consensus module. For smart contract architecture fundamentals, the Smart Contract module covers the core concepts interactively.

Want to experience it yourself?

Try ChainLearn's interactive modules to simulate the concepts directly.

Start Learning