Solana vs Sui: Two Different Theories of What Makes a Fast Blockchain

Solana and Sui are both fast L1s, but they achieve speed through fundamentally different architectural theories. Solana sequences everything through an optimized pipeline. Sui removes the sequencing bottleneck entirely for most transactions. The difference determines what each chain is actually good at.
Lewis Jackson
CEO and Founder

Solana and Sui are frequently grouped together as "fast L1s" — a category defined mostly by what they're not (they're not Ethereum's ~15 TPS base layer). But speed is a consequence of architecture, not a design goal in itself, and the two chains arrive at throughput through fundamentally different theories.

Solana's theory: sequence everything through a single timeline, optimize that pipeline relentlessly, and distribute the workload across a global validator network. Sui's theory: remove the sequencing bottleneck entirely for the majority of transactions by treating blockchain state as discrete objects rather than a shared ledger.

Both approaches work. They create different tradeoffs, different programming models, and different categories of constraint. Understanding which matters depends on what you're building or evaluating.

How Solana Works

Solana's core innovation is Proof of History (PoH) — a cryptographic clock that creates a verifiable record of time before consensus. Rather than validators spending time arguing about transaction order, PoH produces a sequence of SHA256 hashes where each hash is an input to the next, creating a tamper-evident timeline. Transactions are timestamped against this sequence before they enter the consensus process.

This matters because ordering is typically the expensive part of distributed consensus. If validators already agree on a verified sequence, Byzantine Fault Tolerant (BFT) consensus — Solana uses a variant called Tower BFT — becomes faster. The leader producing each block communicates far less metadata than a system where order must be negotiated in every round.

The rest of Solana's architecture compounds this advantage:

  • Turbine: breaks blocks into small data packets and propagates them across validators in a tree structure, reducing bandwidth requirements per node
  • Gulf Stream: forwards transactions to the expected next validator before the current block finalizes, eliminating mempool queuing
  • Sealevel: parallel transaction execution — Solana can run non-overlapping transactions simultaneously by analyzing which accounts each transaction reads/writes in advance
  • Pipeline: a multi-stage transaction processor that handles verification, scheduling, and execution concurrently

The result is ~400ms block times and theoretical throughput in the tens of thousands of TPS, with practical network throughput ranging from a few thousand TPS under normal load to higher sustained bursts.

The constraint: everything flows through a single leader per slot. That leader is the coordination bottleneck. Network outages in 2021 and 2022 were largely caused by transaction floods overwhelming leader capacity. Validator hardware requirements are high compared to most networks (64-core CPU, 512GB RAM, 2TB NVMe recommended). Decentralization trades off against throughput at current design parameters.

How Sui Works

Sui's architecture starts from a different premise: most transactions don't need global ordering because most transactions touch assets owned by a single user.

Sui uses an object-centric data model instead of an account model. State is represented as discrete objects — each with a unique ID, a type, and an owner. There are three ownership categories: objects owned by a specific address, shared objects accessible by anyone, and immutable objects.

This distinction is architecturally significant:

  • Owned-object transactions (e.g., a user sending tokens they own) only require the sender's signature plus a quorum certificate from validators. They bypass consensus ordering entirely, achieving finality in ~0.4 seconds without contention.
  • Shared-object transactions (e.g., interacting with a DEX's liquidity pool that multiple users access) require full consensus via Sui's DAG-based protocol.

Sui's current consensus protocol is Mysticeti, introduced in late 2024, which replaced the earlier Narwhal/Bullshark DAG consensus. Mysticeti processes consensus certificates with lower latency by committing blocks immediately rather than waiting for DAG causal history to complete.

The programming language is Move — originally developed by Meta's Diem team and adapted by Mysten Labs (Sui's core development team). Move treats assets as resources with linear types: they cannot be copied or silently dropped, only transferred or destroyed explicitly. This eliminates an entire class of smart contract bugs where value disappears or duplicates unexpectedly. Move's object ownership model maps directly to Sui's execution model, making parallelism a natural consequence of correct programs rather than a manual optimization.

The constraint: shared-object transactions — which includes most DeFi interactions like AMMs and lending protocols — still require consensus and face ordering bottlenecks under contention. The throughput advantage is most pronounced for simple transfers and applications built around owned-object patterns. Complex DeFi protocols return to similar constraints as other chains.

Where Constraints Live

Solana's binding constraints:

  • Validator hardware requirements limit who can run full nodes, creating centralization pressure at scale
  • Single-leader architecture means flood attacks or spam can disrupt the leader pipeline (the core cause of past outages)
  • Firedancer, the second validator client developed by Jump Crypto, entered mainnet testing in 2024-2025 — a second independent implementation increases resilience and is the primary active mitigation for network stability concerns

Sui's binding constraints:

  • Shared-object contention is the real throughput ceiling for DeFi; claimed TPS figures largely reflect owned-object performance
  • Ecosystem maturity: Sui launched mainnet in May 2023, Solana in March 2020 — Solana has a three-year head start in developer tooling, liquidity, and integrations
  • Move is a smaller programming community than Rust; developer acquisition is harder despite the language's safety advantages

What's Changing

Solana: Firedancer is the most consequential near-term development. A second independent validator client (written in C by Jump Crypto) means the network's stability no longer depends entirely on the Solana Labs client. Initial deployment in 2025 represents a maturity milestone. Additionally, SVM (Solana Virtual Machine) is becoming a modular execution layer — Eclipse, Nitro, and other rollups are deploying SVM-compatible execution outside of Solana L1, extending the ecosystem's footprint regardless of L1 competition dynamics.

Sui: Mysticeti consensus (2024) meaningfully improved latency for shared-object transactions. zkLogin — allowing users to authenticate with Google or Apple credentials to generate zero-knowledge proofs for on-chain accounts — is one of the more concrete UX advances in the space, lowering the wallet setup barrier for new users. Walrus, a decentralized storage network built by Mysten Labs using Sui's object model, adds a new infrastructure layer to the ecosystem. DeFi TVL on Sui grew substantially in 2024, testing whether the architecture holds under real shared-object load.

What Would Confirm the Respective Theses

For Solana: Firedancer reaching full production deployment without triggering new outage vectors. SVM adoption across multiple L2 environments creating a persistent liquidity and developer network effect. Validator decentralization metrics stabilizing or improving as hardware costs decline.

For Sui: Sustained DeFi TVL growth without consensus latency degradation under peak shared-object load. Move developer ecosystem reaching a critical mass where tooling and auditors are readily available. zkLogin driving measurable new-user growth rather than remaining a technical curiosity.

What Would Break These Theses

For Solana: A new category of outage caused by Firedancer consensus edge cases, rather than the spam-related issues of 2021-2022, would indicate structural fragility rather than solved problems. SVM fragmentation producing incompatible execution environments could dilute rather than expand ecosystem value.

For Sui: If shared-object contention proves to be the dominant transaction pattern in high-value DeFi applications, the throughput advantage largely collapses to a different performance profile at similar constraint levels. A critical Move language or zkLogin exploit would set back trust in the architecture's safety properties.

Timing Perspective

Now: Both chains are in production with real capital deployed. The Solana vs Sui question is active for teams choosing an L1 deployment target, where the choice between Rust/SVM familiarity and Move's ownership model has real engineering cost implications.

Next (12-24 months): Firedancer's production stability record will either validate Solana's resilience thesis or expose new architectural limits. Sui's DeFi ecosystem growth under shared-object load is the live experiment for whether the object model generalizes beyond simple transfers.

Later: SVM-as-a-modular-standard and Sui's potential expansion into non-financial applications (storage, identity) are longer-horizon questions. Whether either chain displaces Ethereum for institutional DeFi depends on factors — custody infrastructure, regulatory clarity, liquidity depth — that architecture alone cannot determine.

Boundary Statement

This post explains the architectural mechanisms behind Solana and Sui. It does not constitute a recommendation to build on either chain, allocate to either asset, or predict which network will achieve greater adoption. The comparison is structural — both chains have production deployments, real users, and real constraints.

The question of which is "better" depends on what you're building, not which theory of throughput is more elegant. The mechanisms work as described. What they mean for any specific decision requires factors outside this scope.

Related Posts

See All
Crypto Research
New XRP-Focused Research Defining the “Velocity Threshold” for Global Settlement and Liquidity
A lot of people looking at my recent research have asked the same question: “Surely Ripple already understands all of this. So what does that mean for XRP?” That question is completely valid — and it turns out it’s the right question to ask. This research breaks down why XRP is unlikely to be the internal settlement asset of CBDC shared ledgers or unified bank platforms, and why that doesn’t mean XRP is irrelevant. Instead, it explains where XRP realistically fits in the system banks are actually building: at the seams, where different rulebooks, platforms, and networks still need to connect. Using liquidity math, system design, and real-world settlement mechanics, this piece explains: why most value settles inside venues, not through bridges why XRP’s role is narrower but more precise than most narratives suggest how velocity (refresh interval) determines whether XRP creates scarcity or just throughput and why Ripple’s strategy makes more sense once you stop assuming XRP must be “the core of everything” This isn’t a bullish or bearish take — it’s a structural one. If you want to understand XRP beyond hype and price targets, this is the question you need to grapple with.
Read Now
Crypto Research
The Jackson Liquidity Framework - Announcement
Lewis Jackson Ventures announces the release of the Jackson Liquidity Framework — the first quantitative, regulator-aligned model for liquidity sizing in AMM-based settlement systems, CBDC corridors, and tokenised financial infrastructures. Developed using advanced stochastic simulations and grounded in Basel III and PFMI principles, the framework provides a missing methodology for determining how much liquidity prefunded AMM pools actually require under real-world flow conditions.
Read Now
Crypto Research
Banks, Stablecoins, and Tokenized Assets
In Episode 011 of The Macro, crypto analyst Lewis Jackson unpacks a pivotal week in global finance — one marked by record growth in tokenized assets, expanding stablecoin adoption across emerging markets, and major institutions deepening their blockchain commitments. This research brief summarises Jackson’s key findings, from tokenized deposits to institutional RWA chains and AI-driven compliance, and explains how these developments signal a maturing, multi-rail settlement architecture spanning Ethereum, XRPL, stablecoin networks, and new interoperability layers.Taken together, this episode marks a structural shift toward programmable finance, instant settlement, and tokenized real-world assets at global scale.
Read Now

Related Posts

See All
No items found.
Lewsletter

Weekly notes on what I’m seeing

A personal letter I send straight to your inbox —reflections on crypto, wealth, time and life.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.