Post
Share your knowledge.
What’s the theoretical maximum TPS Sui can achieve, and what limits it today?
What’s the theoretical maximum TPS Sui can achieve, and what limits it today?
- SDKs and Developer Tools
Answers
6In theory, Sui’s design doesn’t set a fixed TPS ceiling because its object-centric model allows massive parallelism — the limit is really the available hardware and network bandwidth. In test environments, Sui Labs has shown the system can scale into hundreds of thousands of TPS. Today, the real cap is more practical: validator hardware, network latency, and how many transactions are actually independent (touching different objects) versus shared ones that need global ordering. So the bottleneck isn’t the code, it’s the infrastructure and workload mix.
Use Compatibility Policy: If you’re building public-facing protocols, prefer compatible upgrades to avoid breaking users.
Governance Wrappers: For DAOs or protocols, store the UpgradeCap inside a governance-controlled object (instead of a single wallet).
Versioning: Always maintain a clear versioning sch
1: Build the new version sui move build
Step 2: Propose an upgrade
sui client upgrade --upgrade-cap <UPGRADE_CAP_ID>
--gas-budget 100000000
--with-unpublished-dependencies
Step 3: Commit the upgrade
sui client commit-upgrade --upgrade-cap <
Theoretical max TPS: Hundreds of thousands to over a million transactions per second, thanks to parallel execution of independent objects.
Current limits: Network bandwidth and latency, hardware constraints, consensus communication overhead, transaction complexity, and ecosystem maturity.
As infrastructure and hardware improve, real-world TPS will approach the theoretical maximum.
Do you know the answer?
Please log in and share it.
Sui is a Layer 1 protocol blockchain designed as the first internet-scale programmable blockchain platform.
- How to Maximize Profit Holding SUI: Sui Staking vs Liquid Staking616
- Why does BCS require exact field order for deserialization when Move structs have named fields?65
- Multiple Source Verification Errors" in Sui Move Module Publications - Automated Error Resolution55
- Sui Move Error - Unable to process transaction No valid gas coins found for the transaction419
- Sui Transaction Failing: Objects Reserved for Another Transaction410