Antler by Autoflux

Overview

What Sui is, why its object-centric model matters, and where it differs from account-based chains.

Path: overview

Third-party documentation. This is independently authored analysis of the public Sui codebase — not the official docs, and not reviewed or endorsed by the Sui team.

Overview

Sui is a layer-1 blockchain built by Mysten Labs around two bets: that objects, not accounts, are the right mental model for blockchain state, and that most transactions don't actually need global consensus to be safe. The combination yields an L1 with very high throughput and, for the common case, instant finality.

The object-centric model

On an account-based chain (Ethereum, Solana), "state" is a set of balances and account storage. On Sui, every piece of state is an object — a typed data structure with a globally unique ID, an owner, and a version. A token is a Coin object; an NFT is an object; a counter is an object. Objects are created, mutated, and transferred by Move code, and they can hold other objects (including via dynamic fields, which let objects grow beyond a fixed layout).

The insight: owned vs. shared objects

The design's power comes from distinguishing two kinds of object ownership:

  • Owned objects — only one owner can mutate them. A transaction touching only owned objects (e.g. "send my coin to you") has no ordering conflicts with anyone else, so it can settle with a quorum certificate and no consensus: fast-path finality.
  • Shared objects — many parties read and write them (an AMM pool, a leaderboard). These need global ordering, so they go through consensus.

Because most payments, transfers, and NFT operations touch only owned objects, the majority of Sui traffic never waits on consensus.

Move

Sui uses Move, a language designed for asset safety. Move makes digital assets first-class: resources cannot be copied or silently dropped, and ownership is enforced by the type system rather than by convention. Sui's flavor of Move diverges from the original (Aptos/Diem) version in ways tuned for the object model — see the Execution module.

Where it fits

  • Not EVM. Sui is a genuinely different paradigm (objects + Move + DAG consensus), which is exactly why it matters for this showcase: it proves the documentation platform is not secretly Ethereum-only.
  • Ecosystem — a fast-growing DeFi/NFT/gaming ecosystem, native and third-party bridges, and first-class TypeScript and Rust SDKs.

Reading this documentation

The modules walk from architecture through the two ordering paths (consensus and fast-path), Move execution, storage, and settlement, then into the SDK and examples most builders need.