TCC Chain White Paper
beta 1.0 · Post-quantum L1 · Updated 2026-05-15

TCC Chain — The Post-Quantum
Blockchain for the Next Decade

A Rust-built Layer-1 secured by Dilithium3 quantum-resistant signatures, stake-centric Proof-of-Stake consensus, optimistic BlockSTM parallel execution, and a WASM smart contract VM with Cross-Program Invocation.

Dilithium3
PQC Signature
~2×
BlockSTM speedup
10s
Block time
10B
Max TCC supply
Chapter 01

Executive Summary

TCC Chain is a next-generation Layer-1 blockchain engineered to survive the quantum-computing era. Every account, every transaction, and every block is secured by CRYSTALS-Dilithium3 — one of the algorithms standardized by NIST for post-quantum cryptography.

The project targets three core objectives: (1) long-term security through post-quantum cryptography, (2) high throughput via optimistic parallel execution (BlockSTM) and batched SMT commits, and (3) economic scalability through a stake-centric model with delegation, Cosmos-F1 rewards, and a complete suite of ERC-standard token primitives.

🛡️

Quantum Security

1,952-byte public keys, 4,001-byte signatures — resistant to Shor and Grover attacks.

Parallel Execution

Aptos-style BlockSTM with batched SMT commits — 6–8× faster than the baseline path.

🔗

WASM Smart Contracts

Wasmer + Cranelift, 4-level CPI, SPL-style token program, and ERC-1155 multi-token.

Chapter 02

Background & Problem Statement

2.1 The Quantum Threat

Most production blockchains rely on ECDSA (secp256k1) or Ed25519. Both can be broken by Shor's algorithm once a sufficiently large quantum computer becomes available. Once a private key is derived from its public key, every asset tied to that address is permanently lost — including assets transferred years before.

"Harvest now, decrypt later" is a real concern: on-chain data is permanently public, and adversaries can store transactions today to decrypt them in the future. TCC Chain chooses prevention from block #0 rather than a painful migration after the fact.

2.2 The Sequential-Execution Bottleneck

Many L1s still execute transactions sequentially, wasting the CPU parallelism of modern hardware. As smart contracts become the dominant workload, sequential throughput simply cannot keep up. TCC Chain integrates BlockSTM at the core, scaling near-linearly with CPU cores.

2.3 Fair Staking Rewards

Naive "snapshot-per-block" reward distribution is easily gamed by time-of-snapshot delegation. TCC Chain adopts Cosmos F1 reward index — rewards accrue continuously and are time-weighted, irrespective of when delegators choose to claim.

Chapter 03

Design Philosophy

The TCC Chain codebase was rewritten from scratch under six invariant principles:

  1. Compile-first. No non-compiling code is committed. Every module ships with tests.
  2. Strong types. Avoid ad-hoc Vec<u8> — use fixed [u8; N] arrays or newtype structs.
  3. No unwrap on the main path. Errors flow through Result<T, Error> with thiserror.
  4. Domain separation. One module per concern: crypto / tx / state / mempool / network / rpc.
  5. Future-proof transaction format. Every tx carries version, chain_id, and expires_at from day one.
  6. Single source of truth. One canonical signing_message definition shared between server and WASM client.

The consequence: any engineer reading any file in the repository sees consistent conventions, with no parallel "legacy version" and no dead code. The domain tag "tcc/v1/tx" prefixes every signed hash to prevent cross-protocol replay.

Chapter 04

Post-Quantum Cryptography

4.1 Why Dilithium3?

CRYSTALS-Dilithium is a digital signature family based on the Module-LWE / Module-SIS lattice problems and has been officially standardized by NIST as a primary post-quantum signature scheme. Of its three security levels, TCC adopts Dilithium3 — a balance of signature size and verification speed, with classical security comparable to AES-192.

Component Size Notes
Public key 1,952 bytes Recoverable from address cache after the first tx
Secret key 4,000 bytes Stored client-side only
Signature 4,001 bytes 1 byte sig_type + 4,000 bytes raw Dilithium3
Signing-message hash 32 bytes Blake3 with domain tag "tcc/v1/tx"
Address 32 bytes Blake3(public_key)

4.2 WASM SDK for Browser Clients

All Dilithium3 operations run directly in the browser via a precompiled WebAssembly module (web3-app/public/pkg/). The web wallet generates keys and signs transactions entirely offline — no seed material ever leaves the client.

4.3 Hashing & Domain Separation

Blake3 is the single hash function across the system: address derivation, signing messages, Merkle trees, and SMT. Each domain has its own prefix (tcc/v1/tx, tcc/v1/block, tcc/v1/leaf) to eliminate cross-layer collision risk.

Chapter 05

Transaction Layout

TCC transactions are serialized with Protocol Buffers — cross-language and schema-versioned, the industry standard. The V1 layout is fixed with every field needed for future extensibility:

message Transaction {
  uint32  version    = 1;   // 1 = current, soft-fork format
  uint64  chain_id   = 2;   // 1 mainnet, 2 testnet, 3 devnet
  bytes   from       = 3;   // 32-byte Address
  bytes   to         = 4;   // 32-byte Address
  uint64  nonce      = 5;   // counter mode
  bytes   amount     = 6;   // u128 little-endian, 16 bytes
  uint64  gas_price  = 7;   // wei / gas
  uint64  gas_limit  = 8;
  int64   timestamp  = 9;
  int64   expires_at = 10;  // mempool drops tx past this
  Payload payload    = 11;
  bytes   signature  = 12;  // 4001 bytes (sig_type + raw)
  bytes   public_key = 13;  // 0 or 1952 bytes (empty = lookup)
}

Two fields are critical for attack resistance:

  • chain_id — prevents replay between testnet/mainnet (EIP-155 style).
  • expires_at — the mempool drops stale tx; the user controls timing.

After the first transaction, a public key is cached on-chain; subsequent transactions only need the address, saving ~35% of bytes per tx (4.1 KB versus 6.3 KB originally).

Chapter 06

Consensus: Stake-Centric Proof-of-Stake

6.1 Stake-Centric (Not Validator-Centric)

Unlike the traditional "1 validator key = 1 stake" model, TCC Chain separates the owner key (which receives rewards) from the staking_address (the vault that holds bonded tokens). A single owner may operate N independent stake accounts, each with its own weight in leader election.

6.2 Stake Lifecycle

  • StakeRegister — create a stake account, locking self_stake.
  • StakeDelegate — a delegator sends tokens to a stake and receives shares.
  • StakeUndelegate — withdraw with unbonding period, auto-claims F1 rewards.
  • StakeDeactivate + StakeWithdraw — a validator exits the producer set.
  • StakeSubmitEvidence — submit equivocation evidence for slashing.

6.3 Cosmos F1 Reward Distribution

Every validator maintains a global reward index that increases over time proportional to total rewards and total stake. When a delegator claims:

reward = stake_share × (index_now − index_at_delegation)

This is time-weighted and fair — long-term delegators receive exactly their share, never diluted by delegators who entered right before a snapshot. Auto-claim runs on Undelegate so rewards are never lost.

6.4 Liveness & Slashing

A combination of grace period, liveness percentage, and auto-rejoin cleanly distinguishes downtime (operational fault) from equivocation (malicious fault). Downtime only temporarily removes a validator from the producer set, with automatic rejoin. Equivocation directly debits the vault, and falling sub-MIN permanently revokes producer eligibility.

6.5 Auto-Reorg with Copy-on-Write SMT

State lives in a Sparse Merkle Tree with copy-on-write journaling 10 blocks deep. When a node observes a heavier chain, it rolls back to the common ancestor, replays the new fork's transactions — no stop/restart required.

Chapter 07

BlockSTM — Optimistic Parallel Execution

TCC Chain integrates BlockSTM (inspired by Aptos) from Slice 44 — not as an add-on. The scheduler is built on rayon:

  1. Sort transactions in deterministic order.
  2. Spawn N worker threads to execute optimistically in parallel, each writing to a private RwSet.
  3. Validate in order: if tx i's read set conflicts with tx j's writes (j < i), re-execute tx i.
  4. Commit in order — no race conditions.

Hot Spot #1: Batched SMT Commits

Before Slice 48.A each SMT write was a separate RocksDB transaction. After consolidating into the SmtBatch typed cache with a single atomic write_batch flush:

Writes / block Before After Speedup
100 ~132 ms ~21 ms 6.2×
1,000 ~1.32 s ~194 ms 6.8×
10,000 13.23 s 1.70 s 7.8×

The state-commit path is no longer a bottleneck — Phase 3 contract storage now has comfortable headroom (~57k slot writes per 10-second block budget).

Chapter 08

Smart Contract Engine (Wasmer + CPI)

8.1 WebAssembly Virtual Machine

Contracts compile to WASM from the Rust toolchain (cdylib with opt-level=z + LTO). The runtime is Wasmer 4.4 with the Cranelift compiler and a metering middleware for precise per-instruction gas accounting.

8.2 Cross-Program Invocation (CPI)

Contracts invoke other contracts via the tcc_invoke host import. Specification:

  • Depth limit: up to 4 levels (Solana standard).
  • Gas budget: the caller declares a budget; any unused gas is refunded.
  • Args passing: via tcc_get_args, with truncation signaling when the buffer is too small.
  • Return data: via tcc_set_return; uniform ABI [status:4 LE][payload].

8.3 SPL-Style Token Program (shipped)

Unlike Ethereum (one contract per token), TCC adopts the SPL multi-mint pattern: a single program serves N tokens. Storage keys are namespaced by prefix:

  • mint:<id> → JSON MintInfo (decimals, supply, authority, cap).
  • bal:<mint>:<owner> → u128 LE balance.
  • allow:<mint>:<owner>:<spender> → u128 LE allowance.

Full 9-instruction surface: initialize_mint, mint_to, transfer, burn, approve, transfer_from, balance_of, allowance, total_supply. A strict ERC-20 superset.

8.4 ERC-1155 Multi-Token (shipped)

A multi-token program with operator approval (set_approval_for_all), built-in NFT mode (decimals=0 + max_supply=1), and (next) batch operations with MAX_BATCH_COUNT=64.

8.5 Token-Standard Roadmap

  • ERC-20 — covered by the SPL-style Token program. ✅
  • ERC-1155 — multi-token (fungible + NFT, batch ops). 🟢 In progress.
  • ERC-721 — dedicated NFT program (slice 48.D). 📋
  • ERC-6551 — Token Bound Accounts. 📋
Chapter 09

Node Architecture

Each node is a single Rust process (tcc-node) composed of multiple workers running concurrently on the Tokio runtime. Domains are cleanly separated and workers communicate through channels:

tcc-node — single binary Rust · Tokio runtime RPC API Axum · JSON-RPC :30100 WS · CORS · batch Mempool DashMap + cleanup worker RBF · expires_at GC Network (libp2p) TCP · Noise · Yamux Gossipsub · mDNS Block Producer PoS slot leader Builds & broadcasts blocks BlockSTM Executor rayon · optimistic parallel Re-execute on RW conflict State Layer RocksDB column families Sparse Merkle Tree (CoW) SmtBatch atomic flush · journal 10 Smart Contract VM Wasmer + Cranelift JIT Per-instruction gas metering CPI depth 4 · host imports host I/O

9.1 RocksDB Column Family Layout

Column family Key Value
balances Address (32B) u128 LE (16B)
nonces Address (32B) u64 LE counter
public_keys Address (32B) [u8; 1952] Dilithium3 PK
stakes staking_address (32B) StakeAccount proto
delegations (stake, delegator) 64B Delegation proto + F1 index
blocks height (u64 LE) Block proto
smt_nodes node_hash (32B) SMT node + ref_count
contracts address (32B) WASM bytecode
contract_storage (addr, key) arbitrary bytes

9.2 Deployment Stack

TCC Chain ships with a production-ready Docker stack: a multi-stage image built with the mold linker, a Caddy reverse proxy with automatic Let's Encrypt certificates, and a tfdomain container routing public traffic to the backend. A 3-node devnet is available via docker-compose.devnet.yml for local fork/recovery testing.

9.3 Web3 Frontend

The web app (5 single-page HTML files) auto-detects its endpoint: localhost → :30100; production domain → /rpc same-origin via Caddy. The Dilithium3 SDK is precompiled to WASM with no browser-extension requirement. The pages are wallet.html (multi-account wallet), nodes.html + node.html (validator dashboards), and delegations.html (delegation management).

Chapter 10

Comparison with Existing Layer-1s

TCC Chain does not aim to replace Ethereum, Solana, or Aptos. Its purpose is to be the post-quantum bedrock for long-term use cases — assets held for 10+ years, identity, on-chain legal contracts.

Criterion TCC Chain Ethereum Solana Aptos
Signature Dilithium3 (PQC) ECDSA secp256k1 Ed25519 Ed25519
Quantum-safe Yes No No No
Consensus Stake-centric PoS PoS (Gasper) PoH + PoS PoS (DiemBFT)
Parallel execution BlockSTM Sequential (EVM) Sealevel BlockSTM
Smart contracts WASM (Rust) EVM (Solidity) BPF/SBF (Rust) Move
Token model SPL-style + ERC superset ERC-20 (1 contract / token) SPL Token Coin module
State commitment Sparse Merkle (CoW) Patricia Merkle Trie Account-based Jellyfish Merkle
Reward distribution Cosmos F1 index Per-validator Per-epoch Per-epoch
Block time ~10s 12s ~400ms ~250ms
💡 Positioning

TCC deliberately picks a conservative ~10-second block time to prioritize definitive finality and to comfortably absorb the cost of verifying Dilithium3 signatures (~10× slower than ECDSA). For sub-second-latency workloads, traditional L1s remain more appropriate. TCC targets high-value, long-horizon assets — where security outweighs raw speed.

Chapter 11

Tokenomics

11.1 Total Supply & Emission

TCC is the native coin; the smallest unit is wei (1 TCC = 1018 wei). Emission is capped:

Item Amount Description
Validator Reward Pool 10,000,000,000 TCC Released through halving every 3.15M blocks
Base reward / block 100 TCC Halves roughly every year (3.15M blocks × 10s)
Max emission ≤ 630M TCC Asymptotic after ~6 halving cycles
Fee split 80 / 20 80% validator, 20% dev fund

11.2 Gas Model

Gas prices are denominated in wei/gas (u64, accommodating up to 1019). The per-block gas limit is generous enough for very large transaction batches. The faucet pool has its own dedicated wallet on devnet/testnet, with per-address throttling stored in the faucet column family (last_claim_at).

11.3 Staking Reward Distribution

Rewards accumulate in an epoch payout pot and are distributed at each epoch's start based on a locked delegation snapshot. Cosmos F1 indexing makes the result fair across time. Delegators can claim at any moment via tcc_claimRewards.

Chapter 12

Use Cases

The combination of quantum-safety + parallel execution + WASM smart contracts opens up application areas that current L1s struggle to serve well:

🏦

Long-Term Asset Storage

Pension funds, generational wealth, 20–50 year holdings. When commercially viable quantum computers arrive (~2030–2040), ECDSA-chain assets become risky; TCC remains safe.

📜

On-Chain Legal Contracts

WASM smart contracts with CPI enable multi-party escrow, long time-locks, and post-quantum multisig for high-value deals.

🆔

Identity & Credentials

Education credentials, professional certifications, tokenized KYC. Dilithium3 public keys keep signatures non-forgeable across decades.

🎨

NFT & RWA Tokenization

ERC-1155 multi-token plus ERC-6551 Token Bound Accounts. Real-world assets — real estate, art, IP rights — with metadata that stays trustworthy for decades.

⚙️

Supply Chain & Traceability

Each product = NFT; each step = transaction. An immutable audit trail with legal weight thanks to NIST-standardized PQC signatures.

🏛️

On-Chain Funds (DeFi)

The SPL-style token program supports multi-mint within a single program — vault tokenization is cheaper than ERC-20's many-contracts model. Atomic swaps via CPI.

Chapter 13

Development Roadmap

TCC Chain ships in slices — each slice is a compiling, tested, deployable piece of functionality. Current status:

Phase labels marked "In progress" or "Queue" reflect engineering targets at the date above; specifics may shift with community input and benchmarks.

Phase 1 — Chain core & tokenomics ✓ Closed

BlockSTM transfer 2× speedup, 10B-TCC Validator Reward Pool, 80/20 gas-fee split, faucet pool, production-ready Docker + Caddy + HTTPS deployment.

Phase 2 — Validators (PoS, BFT) ✓ Landed

Stake-centric pivot, slashing, delegation, epoch payout, Cosmos F1 reward index, liveness hardening (grace period + auto-rejoin), auto-reorg + CoW SMT journaling at depth 10.

Phase 2.smt — Batched SMT commits ✓ Landed

Slice 48.A: 6–8× speedup on commit_writeset. Hot spot #1 RESOLVED. Production-ready for smart contract workloads.

Phase 3 — WASM smart contracts ⚡ In progress

4-level CPI ✓ · Args passing ✓ · SPL-style Token program ✓ · ERC-1155 single-item surface ✓ · Coming: batch ops + typed SDK wrappers.

Phase 3.D — Dedicated ERC-721 & ERC-6551 Queue

A dedicated NFT program plus Token Bound Accounts for NFT-owns-asset patterns.

Phase 4 — Advanced mempool Queue

Priority queue, dynamic fee market, MEV protection (encrypted mempool / commit-reveal).

VM throughput optimization V2

Wasmer instance pooling + module caching (~2×) and Cranelift JIT (10–20×). Target: ~2–5 ms per contract call, ~200–500 contract tx/s.

Chapter 14

Technical Specifications

Component Value
Core language Rust (edition 2021)
Digital signature CRYSTALS-Dilithium3 (NIST PQC)
Hash function Blake3
State commitment Sparse Merkle Tree (CoW, journal depth 10)
Storage backend RocksDB (column families)
P2P network libp2p (TCP + Noise + Yamux + Gossipsub + mDNS)
RPC JSON-RPC 2.0 over Axum
Wire format Protocol Buffers (prost 0.13)
Smart contract VM Wasmer 4.4 + Cranelift + metering middleware
Parallel execution BlockSTM (rayon-based)
Block time ~10 seconds
CPI depth limit 4 (Solana standard)
Address space 32 bytes (Blake3 of the public key)

Core RPC Methods

  • tcc_sendRawTransaction — submit a signed transaction (base64).
  • tcc_getBalance — query a u128 balance.
  • tcc_getNextNonce — fetch the next nonce.
  • tcc_getTransaction — read a receipt by tx hash.
  • tcc_listValidators — list active stake accounts.
  • tcc_claimRewards — claim F1 rewards for a delegator.
  • tcc_callContract — call a smart contract (read-only / mutating).
Chapter 15

Governance, Security & Community

15.1 Security Model

  • Cryptographic. Lattice-based Dilithium3, resistant to Shor and Grover. Blake3 with domain separation prevents cross-protocol replay.
  • Economic. Slashing directly debits the vault; sub-MIN means permanent loss of producer status. Equivocation evidence can be submitted on-chain.
  • Operational. Seed-sensitive RPCs (enable_dev_wallet_rpc) are gated by a config flag, OFF by default in production.
  • Code. Zero cargo clippy warnings. Every public API ships with tests. CI blocks non-compiling merges.

15.2 Open Source

TCC Chain is released under the Apache-2.0 license. The full source, tests, and memory docs are public — see ARCHITECTURE.md and the memory/ folder for the design history of every slice.

15.3 Get Involved

To run a personal devnet, follow DEVNET_QUICKSTART.md. To operate a mainnet validator, read memory/deploy.md and memory/devnet-ops.md. Contributions go through standard review (CONTRIBUTING.md).

Chapter 16

Frequently Asked Questions

Is TCC Chain EVM-compatible?
No. TCC uses a WASM virtual machine (Wasmer + Cranelift) instead of the EVM. The reasons: WASM lets contracts be written in Rust with strong type safety, gas measurement is more precise, and it pairs better with a Solana-style account model. However, the token standards (ERC-20, ERC-721, ERC-1155, ERC-6551) are all supported at the API level — only the implementation differs.
Why Dilithium3 and not Falcon or SPHINCS+?
Dilithium was selected by NIST as the primary PQC signature standard. Compared to Falcon (also standardized but tricky with floating-point arithmetic), Dilithium uses integer math and is safer to implement — crucial for blockchains avoiding constant-time bugs. SPHINCS+ signatures are too large (8–50 KB) for on-chain use.
Won't 4 KB signatures bloat transactions?
Slightly. A typical Transfer tx is ~4.1 KB (versus ~150 B on Ethereum). But TCC applies public key caching: only the very first tx ships the 1,952-byte PK; subsequent txs send only the 32-byte address, and the server resolves the PK from state. Throughput remains healthy thanks to parallel BlockSTM execution and batched verification.
How much TCC is required to run a validator?
MIN_STAKE is set at genesis (mainnet is being prepared). A validator can self-bootstrap with self_stake via StakeRegister, then accept delegations from the community. If stake drops below MIN (due to slashing), the validator is permanently disqualified — the owner must Deactivate + Withdraw and build a new stake.
What risks do delegators bear?
Two main risks: (1) Slashing — if a validator equivocates (signs two blocks at the same height), delegator tokens are debited proportionally. Downtime alone does not slash — the validator is merely removed from the producer set. (2) Unbonding period — Undelegate locks tokens for a configured period before withdrawal. F1 rewards are auto-claimed before unbonding starts.
Can I run a node on a Raspberry Pi?
Not currently recommended. Dilithium3 verification is ~10× heavier than ECDSA and the Wasmer JIT needs meaningful RAM. Minimum recommended specs for a full validator: 4-core CPU, 8 GB RAM, 200 GB+ SSD, and 100 Mbps networking. Light clients for resource-constrained devices are on the roadmap (after Phase 4).
Are upgrades done via hard forks or soft forks?
The transaction layout has a version: u32 field from V1, enabling soft-fork format changes without hard forks. The schema is Protocol Buffers, so new fields can be added backward-compatibly. Hard forks are reserved for consensus-rule changes or major economic-parameter shifts, and must go through a governance vote (Phase 4+).
Is the code open source?
Yes. The entire source is under Apache-2.0. The repository also includes design memos (memory/) documenting the slice-by-slice evolution of the architecture — you can trace exactly how decisions were made. Contributions go through standard review (CONTRIBUTING.md).
Chapter 17

Macroeconomic Model & Long-Term Vision

Tokenomics tells you the numbers. This chapter explains how the numbers create a self-sustaining economy — who plays, what they exchange, why cooperation beats defection, and where the system is going.

17.1 Network Actors

Four roles share the TCC network — each with a distinct cost, a distinct earning channel, and a distinct risk profile:

🛠️

Validators

Operate physical nodes, produce blocks, secure the chain. Cost: hardware + ops. Earn: block reward + their share of fees. Risk: slashing on equivocation.

🤝

Delegators

Bond TCC to validators they trust, sharing rewards via Cosmos F1 indexing. Cost: unbonding period (opportunity). Earn: pro-rata reward share. Risk: validator slashing flows to vault.

💻

Developers

Deploy WASM smart contracts (tokens, NFT collections, DeFi vaults, identity rails). Cost: gas for deployment + storage. Earn: fees from end-users of their dapp.

👤

Users

Send tx, interact with dapps, hold TCC. Cost: per-tx gas. Earn: utility from network access, asset durability, quantum-safe holdings.

17.2 Value Flow (Operating Model)

Every block redistributes value through two streams. Inflation funds early security; fees take over as the chain matures.

Inflation Declining over time Transaction Fees From every transaction Block Reward Pool 10B TCC ceiling · 100/block halving every ~1 year 80 / 20 SPLIT 80% 20% VALIDATOR Block producer · secures the chain Block reward + 80% of fees Dev Fund Ecosystem grants + infrastructure Cosmos F1 Reward Index Time-weighted · fair across delegators Delegators Pro-rata · claim anytime · auto-claim on Undelegate

17.3 Collaboration Model

The system is engineered so that cooperation is more profitable than defection at every level:

  • Validators cannot run away with delegated stake. Tokens live in staking_address vaults that no private key controls. Withdrawal requires explicit Undelegate with an unbonding lock.
  • Delegators discipline validators. Poor uptime, high commission, aggressive behavior → delegators leave → validator's earning power drops. The market self-corrects without a central referee.
  • Developers grow the user base. Every dapp tx generates fees feeding validators and the dev fund, raising stake utility, attracting more delegation, and reducing TCC volatility — a positive flywheel.
  • Slashing aligns incentives in extremis. Equivocation triggers permanent disqualification + vault debit. The economic cost dominates any rational attack value short of state-actor adversarial capital.

17.4 Sustainability — Why This Doesn't Collapse

Three structural properties keep the economy alive long after launch hype fades:

  1. Capped emission. Base reward 100 TCC × halving every 3.15M blocks (~1 year) asymptotes to ~630M TCC ever issued. Holders are not diluted indefinitely.
  2. Fee floor handover. Once block-reward halving drops below transaction-fee revenue, the network transitions to a fee-dominated economy without governance intervention. Same shape as Bitcoin's curve, different cryptography underneath.
  3. Validator skin in the game. Producer status requires MIN_STAKE self-stake. Falling sub-MIN means permanent loss of producer rights. Long-term commitment is structural, not optional.

17.5 Long-Term Vision — Grand, But Honest

We are not chasing the highest transactions-per-second number. We are building the rail for assets that must still be safe in 2050 — when an estimated 20–50 million qubits will have been built somewhere, and "harvest now, decrypt later" stops being theory.

2026 — Mainnet & Decentralization Now

Mainnet launch with broad validator set. Full ERC standards (20/721/1155/6551) live. Production wallet UX with HSM/biometric hooks.

2027 — Ecosystem Build-out Next 12mo

On-chain governance over economic parameters. Light client for mobile. Browser-extension wallet wrapping the Dilithium3 SDK. First wave of third-party dapps (DEX, lending, NFT marketplaces).

2028 — Interoperability Plan

Cross-chain bridges using hybrid PQC + classical signatures (Dilithium3-only on TCC side, EVM-compatible on the other). Layer-2 rollups inheriting TCC finality. Indexer / explorer infrastructure at SLA grade.

2029–2030 — Regulated Use Cases Plan

Partnerships for tokenized treasuries, on-chain identity rails, audit-grade supply chain. Compliance modules (KYC token, accredited-investor flags) as opt-in smart contracts.

2030+ — The Quantum Inflection Vision

As quantum-capable hardware matures, ECDSA-based chains face "what happens to old assets when the curve breaks" — a question TCC simply does not have to answer. Custody, settlement, and credential infrastructure migrate to PQC by regulatory or fiduciary mandate. TCC is the default rail.

⚖️ The Honest Trade-offs

We are not pretending TCC will replace high-frequency trading chains. ~10-second blocks and ~4 KB signatures mean we will lose every benchmark optimized for microtransactions or sub-second latency. We chose to be the safe, durable, audit-grade layer — the place where long-horizon value lives. Different question, different answer.

Chapter 18

Glossary

Dilithium3
A post-quantum digital signature scheme based on Module-LWE, standardized by NIST. Security comparable to AES-192.
Blake3
A modern, parallelizable hash function, several times faster than SHA-256. TCC uses it everywhere with explicit domain separation.
BlockSTM
Software Transactional Memory for blocks — an optimistic parallel-execution algorithm that re-executes transactions whose read sets conflict with earlier writes.
SMT
Sparse Merkle Tree — a state-commitment structure with O(log n) proofs. TCC uses a Copy-on-Write variant that journals the last 10 blocks for auto-reorg.
CPI
Cross-Program Invocation — contract A calling contract B via a host import. TCC caps depth at 4 (Solana convention) with gas budgeting and refund.
Cosmos F1
A time-weighted, fair staking-reward algorithm: each validator maintains a global reward index, and each delegator earns (index_now − index_at_delegation).
Stake account
The producer unit in TCC. Unlike the traditional "validator-centric" model, one owner may operate N independent stake accounts with separate weights.
Stake-centric
TCC's philosophy: cleanly separate the owner key (which receives rewards) from the staking_address (the vault). Enables multi-stake per owner with isolated economic state.
Equivocation
A validator signing two different blocks at the same height. Evidence can be submitted on-chain via StakeSubmitEvidence, triggering slashing and permanent disqualification.
Unbonding period
The lock duration after Undelegate before tokens can be withdrawn. Protects the chain against long-range attacks: validators slashed during unbonding still get debited.
Gossipsub
A libp2p pubsub protocol used for transaction and block propagation. TCC has two topics: tcc/tx/v1 and tcc/block/v1.
Wasmer / Cranelift
A Rust-based WebAssembly runtime with a fast and safe JIT compiler. TCC integrates a metering middleware for precise gas accounting.
Wei
TCC's smallest unit: 1 TCC = 1018 wei. Mirrors Ethereum's convention.
Faucet
The devnet/testnet test-token dispenser. TCC isolates the faucet pool in its own wallet with per-address throttling via last_claim_at.
Mempool
The queue of unconfirmed transactions. TCC's mempool uses two DashMaps — by_hash and by_sender_nonce — for O(1) replace-by-fee.
RBF
Replace-By-Fee — submitting a new tx with the same (from, nonce) at a higher gas_price to displace the older one in the mempool. Deduplication is handled at the mempool layer.

Disclaimer: This white paper describes the design and roadmap as of the beta 1.0 release. Specifications may change in response to community feedback and engineering requirements during development. TCC Chain is not a security and is not an investment commitment. Users participate at their own risk.