Sui and Aptos · Move L1 ecosystem

Confidence: Likely Updated 2026-05-25 Review by 2026-11-25 Sources 5 Machine-translated Original (JA)
#systems#l1#move#sui#aptos#diem
On this page

Wiki route

This entry sits under systems index. Read it against DAG-BFT vs chain-BFT for the consensus framing, BFT validator economics for token / staking dynamics, and threshold BFT for the implementation-language context.

Key facts

  • Sui and Aptos are post-Diem (formerly Libra) L1 chains, both spawned from the 2019-2022 Meta-led Diem / Novi project that introduced the Move programming language
  • Sui (Mysten Labs founders) launched mainnet May 2023; emphasizes object-centric model + Narwhal / Bullshark DAG-BFT consensus
  • Aptos (Aptos Labs founders) launched mainnet October 2022; emphasizes AptosBFT (HotStuff-derived) chain-BFT + BlockSTM parallel execution
  • Move language features: resource-oriented (assets are linear types — cannot be copied / dropped), formal-verification friendly, capability-based access
  • Financial use cases: Sui-native USDC (CCTP V2 supported), Aptos-native USDC, RWA experiments, agent-payment infrastructure

Move language origin and design

PropertyMoveEVM Solidity comparison
Asset modelResources — linear types; assets are first-class non-copyable valuesERC-20 / NFT balance tables
StoragePer-account / per-object; explicit ownershipContract-storage slots
Formal verificationMove Prover integratedNone (external tooling required)
ReentrancyLargely structurally prevented by resource modelMajor historical attack surface
Capability accessFirst-classModifiers / roles patterns

Move emerged from the Diem / Libra project; when Meta wound down the consortium (2022), the two main engineering groups split:

  • Mysten Labs → built Sui
  • Aptos Labs → built Aptos

Both inherited Move but evolved it differently: Sui Move has object-centric storage (objects with IDs as the primary model) while Aptos Move stayed closer to original Diem Move with account-centric resources.

Sui vs Aptos architectural divergence

DimensionSuiAptos
Storage modelObject-centric (each on-chain entity is an object with owner)Account / resource (account holds typed resources)
ConsensusNarwhal (mempool) + Bullshark (DAG-BFT)AptosBFT (HotStuff variant), chain-BFT
Parallel executionObject-graph based — txs touching disjoint objects parallelize triviallyBlockSTM — optimistic concurrency control + abort/retry
LatencySub-second for owned-object txs, ~3s for shared-object txs~1s block time, ~1s finality
Sponsored gasNative primitiveNative primitive
zkLogin / OAuth onboardingYes (zkLogin)Yes (Aptos Keyless)
TPS (peak)100k+ benchmark100k+ benchmark
Major DeFiCetus, NAVI, Scallop, BluefinThala, Aries, Liquidswap, Econia

Reading: DAG-BFT vs chain-BFT architecture gives the systems-level deeper dive.

Parallel execution — why Move L1s matter

Both Sui and Aptos pursue parallel transaction execution to escape EVM’s sequential bottleneck:

  • Sui’s object model makes parallelism declarative — the transaction declares which objects it touches, scheduler runs disjoint-object txs in parallel
  • Aptos’s BlockSTM is optimistic — execute all txs in parallel, detect conflicts, re-execute conflicting ones (similar to STM in databases)

Solana also targets parallel execution (Firedancer validator) but uses upfront-declared account accesses (Sealevel) — closer to Sui’s model than Aptos’s.

For AI-agent workloads — many concurrent micro-transactions across many wallets — parallel-execution L1s have a structural advantage over sequential L2 rollups for raw throughput (compare L2 agent economics).

Financial / agent-payment use cases

Use caseSuiAptos
Native USDCYes (Circle direct issuance, CCTP V2 supported)Yes (Circle direct issuance, CCTP V2 supported)
Agent micropaymentsObject-model + sponsored gas → fits wellBlockSTM throughput + Keyless onboarding
RWA / tokenizationBluefin / Cetus expanding institutional featuresVarious RWA pilots, including USDT-equivalent attempts
Gaming / SocialFiStrong (Suiplay devices, Mysten ecosystem)Strong (Aptos Connect, social-graph tools)
Cross-chainWormhole + native bridges; [[systems/cctp-v2-overviewCCTP V2]] for USDC
Stablecoin issuanceNative USDC, USDT (eventually)Native USDC, USDT

Both chains have integrated CCTP V2 for canonical USDC mobility, sit in the Wormhole / LayerZero mesh for general messaging, and offer sponsored-gas + Web2-friendly login that maps cleanly to AI-agent UX.

Sources

  • sui.io and docs.sui.io for Sui protocol and Move language documentation.
  • aptosfoundation.org and aptos.dev for Aptos protocol.
  • github.com/move-language/move for the Move language reference.
  • Mysten Labs and Aptos Labs research papers (Narwhal / Bullshark, BlockSTM).