Sui is planning a staged migration to post-quantum accounts, but the technology roadmap now faces a more immediate test: whether the network can introduce complex cryptographic features without repeating the upgrade failures that caused three mainnet halts in 48 hours.
Sui’s proposed response to the long-term threat from quantum computing is unusually specific for a blockchain project. The network is targeting hash-based signature vaults for mainnet deployment this year, ML-DSA-65 native accounts for testnet by the end of 2026, and native-account support on mainnet in the first quarter of 2027.
Those milestones give developers, validators and users a clearer path than a general promise to become “quantum resistant.” They also raise a practical question that is more important than the cryptography alone: can Sui make the migration feel like a software upgrade rather than an account replacement?
The answer will depend on how the network handles account recovery, transaction size, wallet compatibility and validator coordination. It will also depend on execution discipline. In late May, Sui experienced three mainnet halts within 48 hours. CoinDesk reported that developers traced the incidents to an upgrade-related gas and consensus edge case. The failures were not caused by the proposed post-quantum system, but they provide an uncomfortable backdrop for a plan that would touch transaction validation, account formats and smart-contract behavior.
Sui is therefore facing two timelines. The first is measured in years and concerns the possibility that quantum computers could eventually break widely used public-key cryptography. The second is immediate and operational. It concerns whether the chain can safely add new security infrastructure while restoring confidence in its upgrade process.
From quantum risk to account migration
Most blockchain accounts today rely on public-key cryptography that is considered secure against conventional computers. A private key produces a digital signature, and validators use the corresponding public key to verify that a transaction was authorized by the account holder.
Large-scale quantum computers could change that balance. A sufficiently capable machine running Shor’s algorithm could attack the mathematical structures behind many current signature systems, including elliptic-curve schemes used across the cryptocurrency industry. The risk is not necessarily that quantum computers will suddenly appear and empty every wallet. The more immediate concern is that blockchains will need a migration plan before such machines become powerful enough to threaten exposed public keys.
Post-quantum cryptography seeks to replace vulnerable mathematical assumptions with problems believed to resist both classical and quantum attacks. Sui’s plan includes two different approaches.
The first is a hash-based signature vault. In practical terms, a vault can hold assets under a post-quantum signature system without requiring the blockchain to immediately change every account type. A user could transfer assets into the vault, use a quantum-resistant authorization method, and preserve a path to move funds later.
This model is important because it could provide protection before native account support is ready. It also allows developers to test how post-quantum signatures behave in real applications, including decentralized finance protocols, custody systems and institutional wallets.
The second approach is native ML-DSA-65 accounts. ML-DSA is a post-quantum signature standard derived from the lattice-based CRYSTALS-Dilithium design and standardized by the National Institute of Standards and Technology. The “65” designation identifies a security parameter set. Native support would mean that the blockchain treats the signature scheme as a first-class account type rather than relying on a smart-contract wrapper.
That distinction matters. A smart-contract vault can be deployed relatively quickly, but it may introduce additional transaction logic, asset movement steps and application-specific risks. A native account can provide a cleaner user experience and potentially more efficient verification, but it requires deeper changes across the protocol, node software, wallet infrastructure and developer tools.
The recovery phrase question
For ordinary users, the most important promise is not the name of the signature algorithm. It is continuity.
A user who has stored a recovery phrase generally expects that phrase to remain the foundation of account access. If a blockchain adopts a new cryptographic scheme but forces users to create entirely new accounts, the technical upgrade becomes a disruptive migration. Assets must be moved, applications must recognize the new address, and users must be taught a new recovery process.
Sui’s cryptographic agility could offer a different route. If an account can support multiple signature schemes, a wallet might retain the same recovery phrase while generating or managing a new post-quantum authorization method. The account could then move from a conventional signature to a quantum-resistant one without requiring a complete reset of the user’s identity on the network.
That outcome is possible, but it should not be treated as automatic. A recovery phrase is not itself a universal cryptographic key. Wallet software derives keys from it according to a defined standard, and different signature schemes can require different key-generation processes, key lengths and derivation paths. For continuity to work, Sui wallets would need to define how an existing phrase creates an ML-DSA key, how the key is stored, and how users recover it on another device.
The system would also need to handle a difficult security tradeoff. A phrase that has already been exposed or copied cannot become safe merely because the account changes its signature scheme. Migration tools must distinguish between a legitimate upgrade and a compromised account. They should also make clear whether an old key remains valid, whether it can be revoked, and whether a user can recover funds if a new post-quantum key is lost.
The ideal experience would resemble a controlled key rotation. The user approves a transition, the account records the new authorization method, and the wallet preserves the same account identity and recovery process. But this requires precise protocol rules and consistent support across wallets. A chain can provide cryptographic agility at the protocol level while still leaving users with a confusing or fragmented experience if application developers do not adopt it.
Why vaults come first
The decision to target hash-based signature vaults for mainnet before native ML-DSA accounts reflects the relative difficulty of the two deployments.
A vault can isolate new cryptography in a contract or account structure. Developers can define how deposits, withdrawals and signature checks work, while the underlying chain continues to process its established account transactions. This gives Sui an opportunity to gather operational data without immediately changing the default behavior of every account.
Vaults could also be useful for organizations that have a stronger reason to adopt post-quantum protection early. Custodians, exchanges, payment companies and token issuers may want to protect long-lived holdings even if the broader user base does not yet see a need to migrate. A vault could let them place selected assets under a new security policy while maintaining conventional accounts for other activity.
However, smart-contract adoption is never guaranteed. Developers will ask whether a vault is supported by major wallets, whether it works with existing decentralized applications, and whether the additional contract layer changes transaction costs or failure modes. Institutions will ask about audits, governance, emergency recovery and legal responsibility. Users will ask a simpler question: why should they move funds into a more complicated account before there is a visible quantum threat?
The answer may be that migration takes time. If a quantum attack becomes practical, a blockchain cannot expect every user to change keys overnight. Assets that sit in inactive accounts, exchange cold storage or long-term treasury wallets could be especially difficult to move. A vault system creates an early migration channel and gives the ecosystem experience with the operational details.
Still, the vault must be more than a technical demonstration. Adoption will depend on predictable fees, clear wallet prompts, reliable recovery and a strong audit record. The first users will likely be developers and sophisticated asset holders. Their experience will shape whether the feature becomes a standard security option or remains a niche product.
The cost of bigger signatures
Post-quantum security brings a practical burden: signatures and public keys are often larger than those used in conventional blockchain accounts.
That difference affects several parts of a network. A transaction carrying a larger signature consumes more storage and bandwidth. Validators must transmit and verify more data. Wallets must construct larger payloads. Applications that place signatures inside smart-contract calls may face higher gas costs or new transaction limits.
ML-DSA-65 is designed to offer a strong post-quantum security level, but its signatures and keys are not as compact as many existing elliptic-curve signatures. The precise impact on Sui will depend on implementation details, including how signatures are encoded, whether public keys are stored on-chain, and how the network prices verification and data availability.
Sui’s object-centric architecture may offer flexibility in managing account and asset state, but it does not remove the basic physics of larger messages. If a post-quantum transaction is several times larger than a conventional one, the network must decide how to charge for it and how to prevent larger payloads from creating denial-of-service risks.
Gas pricing will be especially important. Underpricing signature verification could encourage attackers to flood validators with expensive post-quantum checks. Overpricing it could make the security feature unusable for ordinary users. The fee model should reflect both computation and data transmission, while remaining understandable enough for wallets to estimate costs accurately.
The proposed vault phase can help answer these questions before native accounts become widespread. Sui can measure actual signature sizes, verification times, storage requirements and failure rates in production. Those results should inform the testnet design for native ML-DSA accounts and give application developers concrete numbers for integration planning.
Validator coordination is the real rollout test
A new signature scheme is not only a wallet feature. Every validator, full node and indexing service that needs to process the account must understand its format and verification rules.
That makes the rollout dependent on coordinated software upgrades. Validators must install compatible versions, test them under realistic traffic and agree on activation conditions. Wallets and explorers must recognize the new account type. Exchanges and bridges must decide whether to support deposits and withdrawals. Smart-contract developers must determine how their applications interact with assets controlled by the new accounts.
The recent mainnet halts make this coordination more consequential. CoinDesk reported that Sui’s three halts in late May were linked to an upgrade bug involving gas and consensus behavior. An upgrade-related edge case can be particularly damaging on a high-throughput network because a small disagreement about transaction processing can prevent validators from advancing the chain.
Sui’s post-quantum roadmap should therefore be judged partly by its release process. A credible rollout would include extended testnet periods, adversarial testing, explicit rollback plans and staged activation rather than a single network-wide switch. It would also make failure conditions visible. Users and developers need to know whether a malformed post-quantum transaction is rejected locally, consumes gas before failing, or can affect consensus progress.
The network may also need new monitoring. Conventional transaction dashboards can show confirmation times and failure rates, but a post-quantum deployment should track signature verification latency, payload distribution, validator resource consumption and the percentage of traffic using each account type. These metrics can reveal whether the feature is creating an unexpected burden before it becomes a network-wide problem.
Sui has a strong incentive to treat the rollout as an engineering program rather than a marketing announcement. Quantum readiness is a long-term proposition, and credibility will come from repeated evidence that the system can evolve safely.
What success would look like
The first measure of success is not the number of post-quantum accounts created. It is whether users can adopt the new protection without losing control of their assets or rebuilding their digital identities.
That means recovery phrases must remain usable where promised, and wallets must explain exactly what changes during migration. Users should be able to verify which signature scheme protects an account, recover it through a compatible process and revoke older keys when necessary. The system should also support gradual adoption, allowing users to keep conventional accounts until they are ready to move.
The second measure is application support. A quantum-safe account that cannot interact with decentralized exchanges, lending markets, games, payments applications or custody systems will have limited value. Sui will need developer libraries, documentation and testing tools that make the new account type straightforward to integrate.
The third is reliability. Native ML-DSA support should not be launched merely because the calendar says testnet by the end of 2026 and mainnet in the first quarter of 2027. Those milestones are useful targets, but production readiness should depend on measurable performance and a record of stable upgrades.
The wider blockchain industry is likely to watch Sui closely because the problem is shared across networks. Bitcoin, Ethereum and other chains will eventually face questions about signature migration, dormant funds and wallet continuity. A successful Sui deployment could become a practical reference for how a high-throughput network introduces post-quantum accounts while preserving user control.
A failed deployment would carry a different lesson. It could reinforce the view that quantum-safe cryptography is too costly, too complicated or too disruptive for mainstream blockchain use. That conclusion would be premature, but technical failures often shape adoption more strongly than theoretical benefits.
Sui’s plan has the right structure: an earlier vault option, a testnet phase for native accounts and a later mainnet target. The challenge is to prove that each stage improves security without creating new operational fragility. The network must show that larger signatures can be priced fairly, that validators can coordinate upgrades, that developers will adopt the vaults and that users can preserve account continuity.
Quantum computing may remain a distant threat. Mainnet reliability is not. Sui now has to demonstrate that its preparation for the future does not compromise the network people are using today.
This article was written with the assistance of an AI system and published automatically.