Buy BMIC →
Quantum Security Analysis · August 2026

BMIC vs NEAR Protocol 2026 —
Is NEAR Quantum Safe?

Published 27 August 2026 · Updated 27 August 2026 · 14 min read · DYOR: not investment advice.

NEAR Protocol uses ed25519 (Edwards-curve Digital Signature Algorithm on Curve25519) as the signing primitive for every user account, validator, chunk producer, cross-shard receipt, and Rainbow Bridge relayer on its network. ed25519 security depends on the hardness of the elliptic curve discrete logarithm problem — a problem Shor's algorithm solves in polynomial time on a cryptographically relevant quantum computer (CRQC). Every ed25519 public key on the NEAR blockchain is a pre-positioned CRQC attack surface, and NEAR's named-account model makes bulk public-key harvesting a single RPC snapshot operation.

BMIC implements all three NIST post-quantum cryptography standards finalised in August 2024 — ML-KEM (FIPS 203), ML-DSA (FIPS 204), and SLH-DSA (FIPS 205) — replacing the ed25519/secp256k1 dependency at the cryptographic root. This page provides a technical comparison of both approaches and what the quantum computing threat timeline means for NEAR holders, validators, DeFi participants, and bridge users.

Summary verdict: NEAR Protocol is not quantum safe. Its ed25519 stack spans every signing surface — accounts, validators, chunk producers, cross-shard receipts, and Rainbow Bridge relayers — with no NIST PQC migration roadmap published as of August 2026. A CRQC attack on NEAR chunk producer keys can forge cross-shard receipts across Nightshade shards, creating a unique systemic risk unavailable on single-shard chains. NEAR's named-account model further simplifies HNDL harvesting relative to UTXO chains. BMIC implements NIST FIPS 203/204/205 today. This is not investment advice. DYOR.

1. NEAR's ed25519 Stack — What Is Actually Exposed

NEAR Protocol was designed from the ground up around ed25519 as its canonical signing scheme. Unlike chains that inherited their signing curve from Bitcoin (secp256k1) or Ethereum (secp256k1 ECDSA), NEAR made a deliberate architectural choice to use ed25519 — considered more performant and less implementation-error-prone than secp256k1 in 2018–2020. That choice predated NIST's post-quantum standardisation work reaching maturity. In 2026, ed25519's security still rests entirely on the ECDLP assumption — which a CRQC renders invalid.

1.1 User Account Keys

Every NEAR account holds one or more Access Keys in its on-chain state. Each Access Key record contains a public_key field in the format ed25519:<base58-encoded-pubkey>. These keys are stored explicitly in the NEAR state trie and are queryable by anyone via the RPC endpoint query?request_type=view_access_key_list&account_id=alice.near. No interaction with the account is required to retrieve its complete set of active public keys — they are continuously broadcast as part of the NEAR state. This is a qualitatively different exposure model from Bitcoin UTXO or Ethereum EOA, where public keys are only revealed when a transaction is signed. On NEAR, the public key is always visible.

1.2 Validator and Staking Keys

NEAR validators maintain two distinct ed25519 key pairs:

Both key pairs are ed25519. Both are indexed on-chain. A CRQC deriving either key enables independent attacks: the account key enables staking pool drainage; the node key enables validator impersonation and consensus manipulation.

1.3 Chunk Producer Keys

NEAR's Nightshade sharding assigns chunk producers (a subset of validators) to each shard per epoch. Chunk producers sign chunk headers using ed25519 keys — these signatures attest to the validity of all transactions processed within a shard chunk and authorise the cross-shard receipts those transactions generate. Chunk producer public keys are published in the epoch validator roster and are permanently indexed on-chain.

Unique sharding risk: Cross-shard receipt forgery via a CRQC-derived chunk producer key creates a systemic attack surface unique to sharded architectures. A single forged receipt can mint value across shard boundaries with no corresponding debit — impossible on single-shard chains. NEAR currently operates 4 shards with dynamic resharding increasing this number over time.

1.4 Rainbow Bridge Relayer Keys

The NEAR ↔ Ethereum Rainbow Bridge uses relayer wallets to submit NEAR block headers to the Ethereum-side bridge contract and Ethereum block headers to the NEAR-side contract. NEAR-side relayers sign with ed25519; Ethereum-side relayers sign with secp256k1. Both are Shor-vulnerable on a CRQC. A forged NEAR block header submitted to the Ethereum-side contract enables fraudulent proof submission that can unlock ETH and ERC-20 tokens without a corresponding NEAR-side lock — a unidirectional quantum drain path across the bridge.

2. Three Quantum Attack Paths on NEAR

Attack Path A — Account Drain via CRQC-Derived Access Key

The most direct attack on any NEAR holder:

  1. Adversary snapshots the NEAR state trie (publicly available; full node or archival RPC dump) and extracts all ed25519:<pubkey> access key records for all active accounts.
  2. CRQC runs Shor's algorithm on the target account's ed25519 public key, deriving the corresponding private key in polynomial time.
  3. Adversary signs a Transfer action from the target account, moving all NEAR to an adversary-controlled wallet.
  4. Adversary also signs DeleteKey actions to remove recovery keys, locking the legitimate owner out permanently.

Unlike Ethereum EOA attacks (which require waiting for the target to broadcast a transaction), NEAR account keys are always visible — the attack can be launched on any account at any time once a CRQC is available.

Attack Path B — Cross-Shard Receipt Forgery via Chunk Producer Key

A systemic attack unique to NEAR's Nightshade architecture:

  1. Adversary identifies chunk producer keys for the shard responsible for a high-value DeFi contract (e.g. Ref Finance liquidity pool, Burrow lending market, Meta Pool staked NEAR) from the epoch validator roster.
  2. CRQC derives the chunk producer's ed25519 private key from its on-chain public key.
  3. Adversary forges a cross-shard receipt attesting that a NEAR transfer (e.g. 1,000,000 NEAR) in Shard A was executed, signed with the derived chunk producer key.
  4. The forged receipt is valid on Shard B, which credits the adversary's account without any corresponding debit in Shard A — creating unbacked tokens from nothing.
  5. Adversary swaps forged credits through Ref Finance or bridges them out via Rainbow Bridge before the forgery is detected.

Attack Path C — Rainbow Bridge Drain via Forged Block Header

  1. Adversary CRQC-derives a NEAR-side bridge relayer's ed25519 private key.
  2. Adversary constructs a forged NEAR block header containing a fabricated receipt proving a large ETH deposit was locked on the NEAR side.
  3. Adversary signs the forged header with the derived relayer key and submits it to the Ethereum-side bridge contract.
  4. Ethereum bridge contract accepts the forged proof and releases ETH to the adversary's Ethereum wallet — net effect: ETH drained from the bridge without any corresponding NEAR locked.
DeFi exposure on NEAR: Protocols using NEAR wallets for admin/governance include Ref Finance (AMM, ~$180M TVL peak), Burrow (money market), Meta Pool (liquid staking), Proximity Labs portfolio projects, Aurora (EVM layer), and Octopus Network appchains. Admin and governance keys for these protocols are ed25519 NEAR accounts — all CRQC-reachable.

3. Harvest-Now-Decrypt-Later — NEAR's 5.5-Year Corpus

The HNDL threat model posits that adversaries harvest cryptographic material now and decrypt it when CRQC becomes available. For NEAR Protocol, the HNDL corpus began accumulating in October 2020 and continues to grow with every block. Crucially, NEAR's named-account model means the entire HNDL corpus is a single RPC snapshot — no chain analysis or UTXO scanning required.

Oct 2020NEAR mainnet launches. First ed25519 account keys and validator registrations go on-chain. HNDL corpus begins.
2021–2022DeFi summer on NEAR: Ref Finance, Burrow, Meta Pool launch. Hundreds of high-value ed25519 admin keys created and indexed on-chain.
2022Rainbow Bridge NEAR-ETH live. Relayer ed25519 keys begin accumulating in the on-chain state and block history.
2023NEAR BOS (Blockchain Operating System) launches. SocialDB and component gateway keys added to ed25519 corpus. Aurora EVM bridge keys added.
2024NIST finalises ML-KEM/ML-DSA/SLH-DSA in August. NEAR Foundation publishes no quantum migration roadmap. HNDL corpus grows past 4 years.
2025Nightshade Phase 3 dynamic resharding deploys. More chunk producer key slots, larger validator roster — wider HNDL attack surface.
Aug 2026Current date. 5.5-year corpus. No NEAR PQC roadmap published. NSM-10 Q3 2026 enforcement active. BMIC FIPS 203/204/205 live.
2028–2035NIST/NSA projected CRQC operational window. 5.5-year NEAR corpus already within decryption reach for pre-positioned adversaries.
Unique NEAR harvesting efficiency: A complete snapshot of all NEAR ed25519 public keys requires a single EXPERIMENTAL_changes_in_block / state dump RPC call to an archival node — not chain analysis across millions of transactions. The entire HNDL corpus is one structured dataset, not a forensic reconstruction. This makes NEAR a higher-priority pre-positioning target than UTXO chains for adversaries building HNDL libraries.

4. Technical Comparison: BMIC vs NEAR Protocol

Dimension NEAR Protocol BMIC
User account signing ed25519 (Curve25519 ECDLP) VULNERABLE ML-DSA / SLH-DSA (NIST FIPS 204/205) QUANTUM-SAFE
Validator node signing ed25519 VULNERABLE ML-DSA (NIST FIPS 204) QUANTUM-SAFE
Chunk producer / shard signing ed25519 VULNERABLE N/A — ERC-4337 Ethereum L1 N/A
Cross-shard receipt integrity ed25519 chunk attestation — Shor-forgeable VULNERABLE N/A — single-chain N/A
Key encapsulation (transport) None published VULNERABLE ML-KEM (NIST FIPS 203) QUANTUM-SAFE
Bridge relayer signing Rainbow Bridge — ed25519 NEAR side, secp256k1 ETH side VULNERABLE No bridge relayer dependency N/A
Account abstraction Named accounts (ed25519 bound) — no PQC upgrade path VULNERABLE ERC-4337 — PQC signature schemes deployable at wallet layer QUANTUM-SAFE
Public key exposure model Always-visible state trie — bulk harvest via single RPC snapshot HIGH RISK Reduced surface via ERC-4337 abstraction REDUCED
NIST FIPS 203 (ML-KEM) Not implemented ABSENT Implemented
NIST FIPS 204 (ML-DSA) Not implemented ABSENT Implemented
NIST FIPS 205 (SLH-DSA) Not implemented ABSENT Implemented
NSM-10 / NIST PQC roadmap None published (Aug 2026) GAP NIST-compliant architecture at launch COMPLIANT

5. Why NEAR's Named Account Model Is a Unique Quantum Risk Factor

Most blockchain accounts require a spending or signing transaction before their public key becomes visible to external observers. Bitcoin P2PKH addresses reveal the public key only when first spent. Ethereum EOA addresses reveal the public key when the first outbound transaction is signed. Both allow an owner to delay public key exposure by not spending from an address.

NEAR's named account model inverts this property. Access keys are stored as first-class objects in the account state trie. The moment an account is created and funded, its ed25519 public key is written to state and becomes queryable by anyone. There is no equivalent of "unspent but unexposed" — on NEAR, every funded account's public key is continuously broadcast in the global state.

5.1 RPC Harvesting — One Call, Millions of Keys

An adversary building a HNDL library for NEAR does not need to scan transaction history. A single call to a NEAR archival node's EXPERIMENTAL_changes_in_block endpoint — or a complete state dump via view_state across all accounts — retrieves the full set of active ed25519 public keys in one structured operation. Existing NEAR chain indexers (The Graph for NEAR, Pagoda, Pikespeak) already maintain this data in queryable databases — adversaries can harvest a complete NEAR public key corpus from public endpoints without running infrastructure.

5.2 Sub-Account and Contract Admin Keys

NEAR's hierarchical naming system allows sub-accounts (vault.alice.near, dao.protocol.near, admin.defi.near) that inherit the NEAR naming security model. Smart contract accounts also hold ed25519 access keys used by protocol developers and DAOs for contract upgrades, parameter changes, and emergency pauses. All these keys are explicitly stored in the state trie. A CRQC attack on a contract admin key enables malicious contract upgrades without any on-chain governance vote — a direct theft of the protocol upgrade authority.

DeFi protocol upgrade risk: If a Ref Finance, Burrow, or Meta Pool admin/upgrade key is CRQC-compromised, an attacker can deploy a malicious contract upgrade that redirects all liquidity to an adversary wallet — bypassing governance, timelocks, and multisigs if those controls are ed25519-signed themselves.

6. NSM-10 and Institutional Compliance for NEAR

NSM-10 (National Security Memorandum 10, May 2022) mandates that US federal agencies and critical infrastructure operators inventory all quantum-vulnerable cryptographic systems and begin post-quantum migration aligned with NIST standards by Q3 2026. The EU Cybersecurity Agency (ENISA) has issued parallel guidance. By August 2026, these directives are actively enforced.

6.1 Institutional NEAR Exposure

Several categories of institutional market participants hold NEAR or operate on the NEAR network:

NEAR Foundation has not published a NIST FIPS 203/204/205 migration roadmap. Institutional participants who are NSM-10 compliant and also NEAR holders or operators face an unresolved compliance gap: their NEAR ed25519 key dependencies cannot be remediated without a protocol-level migration that does not currently exist on any published roadmap.

Compliance gap: NEAR Protocol ed25519 accounts cannot be migrated to NIST-approved post-quantum schemes without a core protocol upgrade. No such upgrade is on the published roadmap as of August 2026. This creates a structural compliance gap for NSM-10-subject institutional NEAR participants.

BMIC: NIST FIPS 203 / 204 / 205 Live Today

BMIC is the only crypto presale implementing all three NIST post-quantum standards simultaneously. ML-KEM, ML-DSA, SLH-DSA — not a roadmap. Live architecture. $600K+ raised. 186+ media features.

Buy BMIC at bmic.ai →

DYOR. Not financial advice. Token price changes per presale phase.

7. How BMIC's Post-Quantum Architecture Works

BMIC was designed from inception with quantum-resistant cryptography as a core requirement — not a post-hoc addition. The architecture implements three complementary NIST standards that together replace every ed25519 and secp256k1 surface that NEAR Protocol currently relies on.

7.1 ML-KEM (FIPS 203) — Key Encapsulation

ML-KEM (Module-Lattice Key Encapsulation Mechanism, standardised as CRYSTALS-Kyber) replaces Diffie-Hellman and ECDH for session key establishment. NEAR Protocol has no equivalent — its transaction layer uses ed25519 for signing but has no published quantum-safe key agreement mechanism for P2P network communications. BMIC's ML-KEM implementation ensures that encrypted communications between wallet and network remain secure even against a CRQC intercepting in-flight traffic.

7.2 ML-DSA (FIPS 204) — Digital Signatures

ML-DSA (Module-Lattice Digital Signature Algorithm, standardised as CRYSTALS-Dilithium) is BMIC's primary signing scheme, replacing ECDSA and ed25519 at the wallet layer. ML-DSA security relies on the Module Learning-With-Errors (MLWE) problem — not solvable by Shor's algorithm. Every BMIC transaction is signed with ML-DSA; no ed25519 or secp256k1 signing key is used in the BMIC wallet's primary signing path.

7.3 SLH-DSA (FIPS 205) — Stateless Hash-Based Signatures

SLH-DSA (Stateless Hash-based Digital Signature Algorithm, standardised as SPHINCS+) provides a second post-quantum signing layer based purely on hash function security — making it robust against both algebraic (Shor) and search (Grover) quantum attacks. BMIC uses SLH-DSA for long-term signing contexts where MLWE security assumptions may be less conservative.

7.4 ERC-4337 Account Abstraction

ERC-4337 allows BMIC wallets to use custom signature verification logic — including ML-DSA and SLH-DSA — without requiring a base-layer Ethereum protocol upgrade. This is a critical deployment advantage: NEAR's ed25519 dependency is embedded in the core protocol and cannot be changed without a network-wide upgrade. BMIC's ERC-4337 architecture allows quantum-safe signatures to be deployed and upgraded at the wallet layer, independently of the Ethereum L1 signing model, providing migration flexibility as post-quantum standards evolve.

8. Frequently Asked Questions

Is NEAR Protocol quantum safe?
No. NEAR Protocol uses ed25519 for all account keys, validator keys, chunk producer keys, and Rainbow Bridge relayers. ed25519 is Shor-vulnerable on a CRQC. NEAR Foundation has not published a NIST FIPS 203/204/205 post-quantum migration roadmap as of August 2026. BMIC implements all three NIST PQC standards today.
What makes NEAR's quantum risk different from Ethereum's?
Two factors make NEAR's quantum risk distinct. First, NEAR's named-account model stores ed25519 public keys continuously in the state trie — enabling bulk HNDL harvesting via a single RPC snapshot, without chain analysis. Ethereum EOA public keys are only exposed on first outbound transaction. Second, NEAR's Nightshade sharding means a CRQC attack on chunk producer keys enables cross-shard receipt forgery — minting value across shard boundaries — a systemic attack unavailable on single-shard chains.
Can NEAR Protocol upgrade to post-quantum cryptography?
Technically yes — but it would require a core protocol upgrade that changes NEAR's canonical signing scheme from ed25519 to a NIST PQC standard, along with a migration mechanism for all existing accounts to rotate keys. This is a significant engineering undertaking. NEAR Foundation has not published a timeline or roadmap for such a migration as of August 2026. Until such an upgrade occurs and all accounts migrate, NEAR's ed25519 signing surface remains Shor-vulnerable.
How does NEAR's Rainbow Bridge quantum risk work?
The Rainbow Bridge uses relayer wallets on both the NEAR and Ethereum sides. NEAR-side relayers sign with ed25519; Ethereum-side relayers sign with secp256k1. Both are Shor-vulnerable. A CRQC attack on a NEAR-side relayer key allows an adversary to forge NEAR block headers submitted to the Ethereum bridge contract, enabling fraudulent proof submissions that release ETH without any corresponding NEAR lock. This creates a unidirectional quantum drain path from Ethereum to the adversary's wallet.
Is the Harvest-Now-Decrypt-Later threat real for NEAR?
Yes — and NEAR is a higher-priority HNDL target than most chains because the entire public key corpus is a single RPC snapshot. Adversaries do not need to run chain analysis or scan transactions; they can retrieve all active NEAR ed25519 public keys from public indexers today and store them for CRQC decryption when the hardware is available. NIST and NSA project CRQC capability in the 2028–2035 window. NEAR's 5.5-year corpus (October 2020 to present) is already within that threat window for long-dated institutional holdings.
What is NSM-10 and does it affect NEAR Protocol users?
NSM-10 (National Security Memorandum 10) mandates that US federal agencies and critical infrastructure operators inventory quantum-vulnerable cryptographic dependencies and begin NIST PQC migration by Q3 2026. Institutional participants holding NEAR or operating NEAR validators / Rainbow Bridge relayers face a compliance gap: NEAR's ed25519 keys cannot be migrated to NIST-approved post-quantum schemes without a protocol upgrade that does not exist on any published roadmap. BMIC implements NIST FIPS 203/204/205 at launch — no migration gap.
How does ERC-4337 help BMIC avoid NEAR's key migration problem?
ERC-4337 account abstraction allows BMIC wallets to use custom signature verification contracts — including ML-DSA and SLH-DSA — without requiring a base-layer Ethereum protocol change. If post-quantum standards evolve, BMIC can upgrade the signature verification logic at the smart contract wallet layer without a network fork. NEAR's ed25519 dependency is embedded in the core protocol signing model; changing it requires a network-wide upgrade agreed by all validators. ERC-4337 gives BMIC structural migration flexibility that NEAR's architecture does not currently offer.
What NIST standards does BMIC implement and why do they matter?
BMIC implements all three NIST post-quantum standards finalised in August 2024: ML-KEM (FIPS 203) for quantum-safe key encapsulation — replacing ECDH/DH in key agreement; ML-DSA (FIPS 204) for quantum-safe digital signatures — replacing ECDSA and ed25519; and SLH-DSA (FIPS 205) for stateless hash-based signatures — providing an algebraic-attack-independent signing layer. These three standards together address the full signing and key-exchange surface that ed25519 and secp256k1 currently cover in NEAR's stack. BMIC is the only crypto presale implementing all three NIST PQC standards simultaneously as of August 2026.

9. Further Quantum Security Reading

Explore our full quantum security comparison series covering other major chains and protocols:

DYOR Disclaimer: This page is for informational and educational purposes only. It does not constitute investment advice, financial advice, or a recommendation to buy, sell, or hold any cryptocurrency or digital asset. Cryptocurrency investments are highly speculative and involve significant risk, including the risk of total loss of principal. NEAR Protocol's quantum vulnerability status may change if the project publishes and implements a post-quantum migration plan. All technical assessments are based on publicly available information as of August 2026. Do your own research before making any investment decision. BMIC is a presale token; the TGE is scheduled for Q2 2026 and timelines may change. Always verify the current presale price and token contract at bmic.ai.

Secure the Quantum-Safe Standard Before TGE

BMIC is the world's only presale token built on NIST FIPS 203, 204 & 205. Over $600K raised. 186+ media features. ERC-4337 account abstraction. Presale price rises each phase.

Buy BMIC at bmic.ai →

Not financial advice. DYOR. Presale price subject to phase progression. TGE Q2 2026.