Skip to content

What is Soqucoin?

Soqucoin (SOQ) is a post-quantum cryptocurrency — the first Layer 1 blockchain built entirely on NIST-standardized ML-DSA-44 (Dilithium) digital signatures. While every other major blockchain (Bitcoin, Ethereum, Solana, Dogecoin) relies on ECDSA signatures that a sufficiently powerful quantum computer could break in hours, Soqucoin is designed to be quantum-resistant from genesis block zero.

Key Facts

Property Value
Ticker SOQ
Algorithm Scrypt Proof-of-Work
Signature ML-DSA-44 (NIST FIPS 204)
Privacy Lattice-BP++ (post-quantum confidential transactions)
Block Time 60 seconds
Initial Block Reward 500,000 SOQ
Halvings 6 (then 10,000 SOQ/block forever)
Merge Mining Yes — with Litecoin and Dogecoin (AuxPoW)
Codebase Derived from Dogecoin Core
License MIT
Security Audit Halborn (2026)
Patents 6 filed (PAT, Lattice-BP++, PQ Wallet, CCE, CSP, LatticeFold)

How It Works

Soqucoin uses the same Scrypt Proof-of-Work consensus as Dogecoin and Litecoin. This means:

  • Existing hardware works — Antminer L7, L9, L11, and any Scrypt ASIC can mine SOQ
  • Merge mining — Mine SOQ simultaneously with LTC/DOGE via Auxiliary Proof-of-Work, inheriting billions of dollars in existing hashrate security
  • Fast blocks — 60-second block times for quick confirmations

The critical difference is the signature algorithm. Where Dogecoin uses ECDSA (secp256k1), Soqucoin uses ML-DSA-44 (Dilithium) — a lattice-based signature scheme standardized by NIST in 2024 as FIPS 204. This protects every transaction from quantum attacks.

The Quantum Threat

Harvest Now, Decrypt Later (HNDL)

Nation-state actors are already recording encrypted internet traffic and blockchain transactions today, intending to decrypt them when quantum computers become available. This is called the HNDL attack — and it's why migrating to post-quantum cryptography before quantum computers arrive is critical.

Every Bitcoin and Ethereum transaction ever made uses ECDSA signatures. A quantum computer running Shor's algorithm could:

  1. Derive private keys from exposed public keys
  2. Forge signatures to steal funds
  3. Compromise the security of the entire network

Soqucoin eliminates this attack vector entirely.

Post-Quantum Privacy

Soqucoin is building the first post-quantum confidential transaction system — replacing classical elliptic curve privacy (used by Monero, Zcash) with lattice-based cryptographic primitives that are resistant to both classical and quantum computers.

Component Classical (Monero/Zcash) Soqucoin (Lattice-BP++)
Amount Hiding EC Pedersen Commitments Ring-LWE Pedersen Commitments
Sender Privacy CLSAG Ring Signatures Lattice-LSAG Ring Signatures
Receiver Privacy EC Stealth Addresses Dilithium Stealth Addresses
Range Proofs Bulletproofs (EC) Lattice-BP++ (post-quantum)
Quantum Resistant ❌ No ✅ Yes

Privacy is implemented as an opt-in extension block — users choose between transparent and private transactions. A hierarchical key system provides view keys (auditor access), spend keys (owner access), and audit disclosure keys (regulatory compliance) for selective transparency.

Patent Protected

The Lattice-BP++ privacy system is protected under U.S. Provisional Patent No. 64/023,515 (Soqucoin Labs Inc.). The LatticeFold+ batch verification system is protected under U.S. Provisional Patent No. 64/026,715.

Architecture

graph TB
    A[Scrypt PoW Mining] --> B[Block Production]
    B --> C[ML-DSA-44 Signatures]
    C --> D[BLAKE2b-160 Addresses]
    D --> E[UTXO Model]
    E --> F[PAT Attestation]
    E --> G[Lattice-BP++ Privacy]

    H[LTC/DOGE Miners] -->|AuxPoW| A

    style C fill:#c0c0c0,color:#000
    style F fill:#d4af37,color:#000
    style G fill:#d4af37,color:#000

Next Steps