QUANTUMWING · ALPHA TESTNET · APR 2026

QUANTUMWING // POST-QUANTUM L1

The first L1 secured by NIST FIPS 204 Dilithium-3 signatures. EVM-compatible JSON-RPC, EIP-1559 fee market, real Merkle Patricia Trie state, LMD-GHOST fork choice. Native token QWING. 10-validator alpha live.

Open Explorer → Read Docs
Chain head
Loading…
querying explorer
Validators online
Loading…
10-node alpha set
QWING burned
Loading…
EIP-1559 base fee
Network ID
8217
chain · alpha-1

Why post-quantum

ECDSA breaks the day a 4096-qubit machine boots. We are not waiting.

Every Ethereum transaction, every Bitcoin output, every TLS session you've ever opened is signed with elliptic-curve cryptography. Shor's algorithm reduces ECDSA private-key recovery from infeasible to polynomial-time on a sufficiently large quantum computer. The hardware is not theoretical — IBM, Google, and PsiQuantum are shipping roadmaps measured in years, not decades.

QuantumWing migrates the consensus layer first. Validators sign blocks with NIST FIPS 204 Dilithium-3 — 192-bit security against Shor-equipped adversaries. EVM-compatible execution stays for developer ergonomics, but the chain itself cannot be forged once classical signatures fall.

What's in the box

Twelve primitives. Shipped this past week.

From Dilithium-3 consensus to a CDP stablecoin — every layer of the stack landed in master between 026fd149f and 47e61ae5. 35 features green, 4 in flight.

Dilithium Mode 3

NIST FIPS 204. 1952-byte pubkey, 3293-byte signature, 192-bit quantum security on every block.

crypto/dilithium →

PoR consensus

Proof of Randomness — VRF-driven proposer selection plus RANDAO commit-reveal entropy.

consensus/ →

LMD-GHOST fork choice

Latest-message-driven greedy heaviest tree. Attestation-weighted, 320-block reorg horizon.

fork-choice →

Real MPT state

Authentic Merkle Patricia Trie. eth_getProof emits real RLP — Ethereum reference vector verified.

eth_getProof →

EIP-1559 fee market

Per-block base fee + Type-2 burn. Validator earns priority tip; base fee removes QWING from supply.

eip-1559 →

Bridge to Ethereum

PQC committee + ZK-STARK proofs + on-chain dispute resolution. Sepolia adapter live.

bridge →

QWVM smart contracts

WebAssembly via wasmer-go. Deterministic gas instrumentation, Rust+AssemblyScript SDK.

qwvm →

QRC-20 / QRC-721

Reference fungible & NFT standards. Full transfer / approve / mint / event surface.

contracts/ →

QUSD stablecoin

MakerDAO-style CDP. 150% liquidation ratio, 13% penalty, oracle-pinned price feed.

qusd-rust →

QWSwap V2 DEX

Constant-product AMM, 0.3% fee. LP tokens are the pair contract's own QRC-20.

qwswap-rust →

Multi-sig (QWSafe)

M-of-N threshold, up-to-8 owners, propose / confirm / execute. Native + contract-call modes.

qwsafe-rust →

Light client

Header-only sync. Dilithium signature verification + Merkle inclusion proofs over REST.

light/ →

For developers

Talk to QuantumWing the way you talk to Ethereum.

JSON-RPC on port 8545. eth_*, net_*, web3_* work today. Quantum-native methods live under qw_*.

JSON-RPC sample

# Balance via standard eth_getBalance
curl -s https://rpc.quantumwing.io \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,
       "method":"eth_getBalance",
       "params":["0x78DDf7…9ACf","latest"]}'
// Dilithium receipt with quantum-signed logs
const r = await fetch("/rpc", {
  method:"POST", body: JSON.stringify({
    jsonrpc:"2.0", id:1,
    method:"qw_getTransactionReceipt",
    params:[txHash]
  })
});
# Real MPT proof — RLP-encoded, Ethereum-compatible
curl -s https://rpc.quantumwing.io \
  -d '{"method":"eth_getProof",
      "params":["0x78DDf7…","[]","latest"],
      "id":1,"jsonrpc":"2.0"}'

Add to MetaMask · one click

await window.ethereum.request({
  method: "wallet_addEthereumChain",
  params: [{
    chainId: "0x2009",         // 8201
    chainName: "QuantumWing Alpha",
    rpcUrls: ["https://rpc.quantumwing.io"],
    nativeCurrency: {
      name: "QuantumWing",
      symbol: "QWING",
      decimals: 18
    },
    blockExplorerUrls: ["https://explorer.quantumwing.io"]
  }]
});

Drop this snippet anywhere — your dApp instantly speaks QuantumWing. Consensus stays Dilithium; user-facing tx signing falls back to ECDSA via the chain's authorization system. Best of both stacks.

Spec drift? explorer.quantumwing.io/developers mirrors the live RPC schema.

Architecture

Three layers. Ethereum-2-style separation.

Validators never trust the execution layer. Execution never trusts the network. Everything you sign is bound to a slot, an epoch, and a Dilithium key.

Roadmap

35 shipped · 4 in flight · 10 open. Engineering ~78% complete.

Pulled from docs/PRELAUNCH_PLAN.md. Open items are predominantly non-engineering — audit firm engagement, legal entity, treasury, marketing.

35 Shipped

  • A-2Native QWING token
  • A-3QRC-20 standard
  • A-4WQGEN wrapped native
  • A-8DR runbook · 11 P0/P1
  • B-1Faucet · persistent wallet
  • B-225× eth_* RPC methods
  • B-3Event logs & receipts
  • B-4EIP-1559 fee market
  • B-7WalletConnect v2
  • B-8QWSafe multi-sig
  • B-9Header-only light client
  • B-10EIP-712 typed signing
  • C-1QWOracle aggregator
  • C-2QWSwap V2 DEX
  • C-3QUSD stablecoin (CDP)
  • C-4QRC-721 NFT standard
  • C-5Subgraph-style indexer
  • C-6Explorer · verify+ABI
  • C-8Real eth_estimateGas
  • C-9QWGov DAO contract
  • C-10ERC-4337 account abs.
  • D-1Public RPC bundle
  • D-2Archive nodes + pruner
  • D-314 metrics + alerts
  • D-4Systemd supervisor
  • D-5Encrypted backups
  • D-6Slashing dashboard
  • D-7EIP-1459 DNS discovery
  • D-10Network-upgrade process
  • E-1LMD-GHOST fork choice
  • E-2Real MPT state
  • E-3RFC 9381 ECVRF
  • E-4WASM gas instrumentation
  • E-5Bridge dispute resolution
  • 10-validator alpha live

4 In progress

  • A-73-month testnet soak (alpha live, beta-1 promotion criteria pending)
  • B-6Mobile wallet — RN skeleton clean, polish + EAS submission left
  • C-7Multi-chain bridges — ETH/Sepolia ✓, BSC + Polygon stubs ready
  • F-1/2Marketing site & dev docs alignment with QWING brand

10 Open

  • A-1Tokenomics whitepaper · economist hire
  • A-5External audit · Trail of Bits / Halborn
  • A-6Bug bounty pool · Immunefi
  • A-9Insurance + treasury reserve
  • A-10Foundation legal entity
  • B-5Ledger hardware wallet app
  • D-8DNS / CDN · Cloudflare
  • D-9DDoS protection · WAF
  • F-3Discord / Telegram / X
  • F-4/5Grants program · Whitepaper v2