Skip to Content
ProtocolDesign Positioning

Design Positioning

Post-quantum blockchain designs differ in what they protect and when they protect it. Some retrofit post-quantum signatures onto an existing classical chain. Some use stateful hash-based signatures. Some only swap the transaction signature algorithm. Tidecoin’s position is different: it is a Bitcoin-architecture chain that started with post-quantum transaction signatures and extends the PQ design into wallet derivation, script hashing, transport encryption, and the long-term mining plan.

This page explains those design tradeoffs. It is not a claims page and not a ranking of other projects. For exact protocol rules, use Consensus Rules and the child protocol pages.

Approach comparison

ApproachWhat it does wellMain tradeoff
Classical-chain retrofitPreserves an existing network and asset history.Requires social coordination, migration transactions, block space, and decisions about unmigrated funds.
Signature-only PQ swapReplaces the most obvious Shor-vulnerable primitive.Leaves wallet derivation, transport, script-hash margin, and migration UX as separate problems.
Stateful hash-based signaturesUses conservative hash-based assumptions.Requires signer state management; key reuse and backup/restore mistakes can become severe.
Full-stack PQ from genesisAvoids classical-signature migration debt and can design wallets/protocols around PQ constraints.Starts with a smaller network and must earn liquidity, tooling, and mining adoption.

Tidecoin is in the full-stack PQ-from-genesis category.

Tidecoin’s design choices

LayerTidecoin choiceReason
Transaction signaturesFalcon-512 from genesis; Falcon-1024 and ML-DSA built for agilityAvoid ECDSA/Schnorr exposure and allow future scheme diversity.
Wallet derivationPQHD hardened-only derivationAvoid BIP32/xpub assumptions that depend on elliptic-curve public derivation.
Script hashingWitness v1 P2WSH-512 after AuxPoWProvide a higher-margin SHA-512 script-hash path.
P2P transportML-KEM-512 v2 transportAvoid quantum-vulnerable ECDH in encrypted relay transport.
Proof-of-work lifecycleYespowerTIDE launch phase, scrypt AuxPoW pathCombine accessible initial distribution with a long-term merged-mining security path.
Codebase baseBitcoin Core-derived UTXO architectureKeep the proven UTXO, validation, networking, mempool, wallet, and test architecture where possible.

Why not only retrofit

A retrofit can be the right path for a chain that already has large economic weight, but it inherits migration problems:

  1. Existing funds may be held by lost keys or inactive users.
  2. Old public keys already exposed on chain remain exposed forever.
  3. Migration consumes block space and may take years.
  4. Wallets, exchanges, custody systems, and hardware devices must all coordinate support.
  5. Governance must decide what to do about coins that never migrate.

Tidecoin avoids that specific migration problem by using post-quantum signatures from genesis. It does not avoid the harder ecosystem problem: users, miners, exchanges, and developers still need high-quality tooling and documentation.

Why not stateful signatures

Stateful hash-based signatures such as XMSS or LMS have conservative security assumptions, but they require careful signer state. Reusing a one-time signing state can weaken or destroy security. That is a poor fit for many cryptocurrency workflows:

WorkflowStateful-signature concern
Wallet backup and restoreRestoring an old backup can roll back signer state.
Multidevice walletsDevices must coordinate signing state exactly.
Hot wallets and exchangesOperational mistakes can reuse state at scale.
Offline signingState transfer between online and offline systems becomes part of the safety model.

Tidecoin chose stateless lattice signatures so normal wallet usage does not depend on a per-key signature counter or one-time signature budget.

Why full-stack PQ matters

Replacing ECDSA is necessary, but it is not the whole PQ design problem. A useful cryptocurrency stack also has:

AreaPQ-relevant question
WalletsCan keys be derived without unsafe public derivation?
ScriptsIs there a high-margin script-hash path?
TransportCan peer encryption survive future quantum key recovery?
MiningDoes long-term PoW security depend on a small standalone hash market?
IntegrationsCan exchanges, explorers, wallets, and pools reason about activation and byte formats without guessing?

Tidecoin’s docs and protocol pages should make those boundaries explicit instead of presenting “post-quantum” as a single feature.

Current positioning

Tidecoin is best described as:

A Bitcoin Core-derived, UTXO-based, proof-of-work cryptocurrency that uses post-quantum signatures from genesis and extends PQ design into wallet derivation, script hashing, encrypted peer transport, and AuxPoW-ready merged mining.

That description is more precise than saying only “quantum resistant.” It tells developers and integrators what actually changed and what stayed Bitcoin-like.

Non-goals

Tidecoin does not claim that:

Non-goalReason
Quantum computers can never affect the networkFuture cryptanalysis and engineering progress are unknown.
Every address format has the same PQ marginLegacy compatibility formats and witness v1 have different hash properties.
Transport encryption hides the blockchainBlocks and confirmed transactions remain public.
AuxPoW security exists without miner adoptionMerged mining needs real pool/miner participation.
Being Bitcoin-derived removes all consensus riskConsensus changes still require review, tests, and cautious activation.

Source of truth

TopicSource
Full-stack design statement../tidecoin/doc/whitepaper.md
PQHD details../tidecoin/doc/design/pqhd.md, PQHD
Signature scheme detailsFalcon, ML-DSA
Script and witness extensionsScripts, Witness V1 SHA-512
PoW and AuxPoWProof-of-Work, AuxPoW
Security boundariesSecurity Analysis

See also: What Is Tidecoin, Post-Quantum Primer, Comparison With Bitcoin, QRL, and Others, Consensus Rules.

Last updated on