The EF Finally Takes Quantum Seriously – But Is $2M Enough?
In January 2026, the Ethereum Foundation did something that should have happened years ago: they formed a dedicated post-quantum cryptography team, appointed Thomas Coratger to lead it, and committed $2 million in research prizes. They also elevated post-quantum security to one of the foundation’s top strategic priorities.
As someone who has been contributing to the Ethereum ecosystem for nine years and has watched how the EF allocates resources, I want to provide an honest assessment of what this means, what the challenges are, and where I think the current approach falls short.
What the EF’s PQ Team Is Actually Building
Based on the public announcements and my conversations with people close to the project, here is what we know:
leanVM: The Cornerstone of PQ Ethereum
The EF is developing leanVM, described as a minimalist zero-knowledge proof virtual machine optimized for quantum-resistant hash-based signatures. This is not a replacement for the EVM – it is a specialized execution environment for verifying post-quantum signatures efficiently.
The architecture appears to work like this:
- Users sign transactions with PQ signatures (likely ML-DSA or SLH-DSA)
- A ZK proof is generated that attests to the validity of the PQ signature
- The ZK proof is verified on-chain using hash-based verification (STARK-friendly)
- This keeps the on-chain verification cost manageable despite the larger PQ signatures
This is clever engineering because it addresses the biggest practical concern – on-chain verification cost – without requiring every node to implement native PQ signature verification. The ZK proof acts as a compression layer.
PQ Consensus Test Networks
Multiple independent teams are running post-quantum consensus test networks with weekly coordination calls. This is significant because it means the EF is not treating this as a single-team effort. Having multiple implementations being tested in parallel reduces the risk of a single point of failure in the migration.
The $1 Million Research Prize
The EF added a $1 million research prize specifically for improvements to hash-based cryptography and core protocol components. This is a smart use of incentives – the academic cryptography community has the expertise but often lacks blockchain-specific context. A prize can attract attention from researchers who might not otherwise engage with blockchain problems.
The Migration Challenge: Why This Is Harder Than the Merge
I keep hearing people compare the PQ transition to the Merge (Ethereum’s switch from Proof of Work to Proof of Stake). Having been involved in the Merge process, I can tell you the PQ migration is significantly harder for several reasons:
1. The Merge Did Not Change the Transaction Format
When Ethereum switched to PoS, the transaction format remained the same. Users did not need to do anything. Their wallets worked the same way, their contracts worked the same way, their addresses did not change.
The PQ migration requires changing the fundamental transaction signature scheme. Every wallet needs to support new key generation, new signing, and new address formats. Every user needs to actively migrate their funds to PQ-safe addresses. This is a coordination problem that the Merge explicitly avoided.
2. There Is No “Flag Day” for PQ Migration
The Merge had a clear flag day: the terminal total difficulty at which PoS activated. The PQ migration cannot work this way because:
- Not all users can migrate simultaneously (many keys are in cold storage, lost hardware, or controlled by contracts with timelocks)
- Both ECDSA and PQ signatures need to coexist for an extended period
- The migration needs to be gradual to avoid network disruption
This means maintaining two parallel signature verification paths for years, which doubles the attack surface and increases client complexity.
3. Smart Contracts Cannot Self-Migrate
The Merge did not require changes to deployed smart contracts. The PQ migration will. Any contract that verifies signatures – multisig wallets, governance contracts, meta-transaction relayers, permit functions – needs to be updated to support PQ signatures.
For upgradeable contracts (proxies), this is manageable but still requires governance votes and careful testing. For immutable contracts, the funds need to be migrated to new PQ-safe versions. Some of those immutable contracts hold billions of dollars and have complex withdrawal conditions that may take months or years to unwind.
4. Cross-Chain Dependencies
Ethereum does not exist in isolation. Bridges, L2 sequencers, oracle networks, and cross-chain messaging protocols all depend on Ethereum’s signature scheme. A PQ migration on Ethereum needs to be coordinated with every system that interacts with Ethereum signatures.
If Ethereum migrates to ML-DSA but a bridge contract on another chain only supports ECDSA, that bridge breaks. The coordination cost across the multi-chain ecosystem is enormous.
Is $2M Enough?
Let me put the EF’s investment in perspective:
| Entity | Annual Quantum Computing R&D |
|---|---|
| ~$1-2 billion | |
| IBM | ~$500 million-$1 billion |
| China (state programs) | ~$15 billion (estimated) |
| US (CHIPS Act quantum allocation) | ~$800 million |
| Ethereum Foundation | $2 million |
The EF’s $2M is roughly 0.01% of what China alone is investing in quantum computing. Now, the EF does not need to build a quantum computer – they need to defend against one. But even the defensive side requires significant investment in cryptographic research, implementation, testing, and deployment.
I think $2M is a reasonable starting allocation for a research team, but if this stays at $2M for another year, it will be woefully inadequate. The real costs come when the migration enters the implementation and deployment phase, which will require:
- Client team engineering time (4 major client teams, 2-3 FTEs each for 2-3 years)
- Security audits of new cryptographic implementations
- Testnet infrastructure
- Developer tooling and documentation
- User education and wallet migration support
A realistic total budget for the full PQ migration is probably $50-100M over 5 years. The EF has the resources – they hold billions in ETH and stablecoins. The question is whether they will allocate appropriately before it is too late.
What I Want to See Next
-
A concrete EIP for PQ-safe transaction types. Not an abstract research direction, but a specific proposal with a timeline for inclusion in a hard fork. Even if the EIP evolves significantly during development, having a concrete specification focuses engineering effort.
-
Dedicated PQ tracks in Glamsterdam and Hegota planning. If PQ migration is truly a top strategic priority, it needs dedicated hard fork consideration, not just a research team operating in parallel.
-
Cross-client PQ interoperability testing. The weekly coordination calls are a good start, but we need public testnets where anyone can test PQ transactions and provide feedback.
-
L2 coordination. The Ethereum Foundation should be proactively engaging with rollup teams about PQ migration planning. If L1 migrates but L2s do not, the security model breaks.
The Ethereum developer community has never failed to ship when there is sufficient urgency and coordination. But right now, I do not see the urgency level matching the threat level. That needs to change.
I would welcome input from other EF grantees and core contributors. If you are involved in PQ-related work, please share what you are seeing on the ground.