Next-generation post-quantum blockchain infrastructure.
Built in Rust with ML-DSA-65, Plonky3 STARKs,
Poseidon2 and MIK anti-Sybil consensus.
Every layer designed to resist quantum attacks from day one.

Every transaction is signed with ML-DSA-65 — the NIST-standardized post-quantum signature scheme. While Bitcoin and Ethereum rely on ECDSA that quantum computers will break, TSN is immune from day one.

Plonky3 STARKs prove transactions are valid without revealing who sent what to whom. No trusted setup. No elliptic curves. Post-quantum by construction.

MIK weaves three forces into one: accessible Proof-of-Work with Poseidon2, pseudonymous identity scoring, and a reputation layer that acts as the network's immune system.

Amounts, senders, and recipients are hidden behind zero-knowledge proofs. Only commitments and nullifiers touch the chain. Your financial privacy is not optional — it's the architecture.

TSN is not a fork. No Substrate, no Cosmos SDK, no framework. Consensus engine, P2P protocol, zkVM, smart contracts, wallet, block format — all written from zero in Rust. We use battle-tested crypto primitives (ML-DSA-65, Poseidon2, Plonky3) but everything above the primitive layer is original TSN code. 298 source files. 432 tests.

TSN is not a fork. No Substrate, no Cosmos SDK, no framework. Consensus engine, P2P network protocol, zkVM, smart contracts, wallet, stablecoin module, block format — all designed and written from zero. We use battle-tested crypto primitives but everything above the primitive layer is original TSN code.

Explorer, wallet, Whispr social network, ZST gold-backed stablecoin, and a full documentation suite. Everything post-quantum. Everything open source.
TSN nodes specialize by role via the --role CLI flag.
--role miner
Full node with Poseidon2 proof-of-work mining. Validates transactions, produces blocks and secures the chain. Must register a MIK (Miner Identity Key) on-chain.
--role relay
Full node that stores the complete chain and relays blocks and transactions via gossip protocol. Serves fast-sync snapshots so new nodes can catch up in minutes.
--role light
Minimal node that syncs headers only and verifies transactions via ZK proofs. Designed for mobile and constrained devices. No full chain storage required.
| Type | Full Chain | Mines | Relays | Reward |
|---|---|---|---|---|
| Miner | ✅ | ✅ | ✅ | 85% block reward |
| Relay | ✅ | — | ✅ | 10% relay pool |
| Light Client | — | — | — | — |
Shielded note with value, recipient key, and randomness. Nothing revealed.
Plonky3 STARK proves validity without revealing any private data.
Poseidon2 commitment to tree. Nullifier prevents double-spending.
ML-DSA-65 quantum-safe signature. Broadcasted to P2P network.
TSN implements a multi-layered defense system that goes beyond what most L1 blockchains offer.
New nodes download a compressed state snapshot from any peer, verify it cryptographically (Ed25519 signature, multi-seed confirmation, SHA256, state root), then sync only missing blocks. Snapshots are published to GitHub as a public mirror.
Fork choice based on cumulative proof-of-work, not simply the longest chain. Same proven approach as Bitcoin Core.
| MAX_REORG_DEPTH = 100 | No reorganization deeper than 100 blocks, regardless of cumulative work |
| Checkpoint Finality | Every 100 blocks — deterministic finality, no reorg beyond checkpoint |
| Anti-Fork Sync Gate | Miners must be within 2 blocks of network tip to submit new blocks |
| Genesis Verification | All nodes verify genesis block hash at startup — prevents silent forks |
| Fork ID Verification | Peers verify fork identity on handshake — prevents silent chain splits and eclipse attacks |
| Anchor Block Filter | Rejects blocks that do not reference a recent valid ancestor — prevents orphan spam |
Most L1 blockchains rely on simple longest-chain rules. TSN combines 7 layers of protection for enterprise-grade chain stability.
No premine, no private sale. Every TSN is mined by the community.
Poseidon ZK-friendly Proof-of-Work consensus. Each mined block generates 50 TSN reward. Native ZK-proof verification of mining.
85% of each block goes to the miner. 10% goes to the relay pool. 5% funds the development treasury. Zero premine. Treasury only grows with mining.
A multidisciplinary team of developers, each an expert in their field.
We are you. We are no one. We are everyone. The code speaks for itself.
Each node is identified by a cryptographic Node ID — the Poseidon2 hash of its ML-DSA public key. No IP address is exposed.
Each node generates an ML-DSA key pair at startup. Its network identifier is the Poseidon2 hash of its public key — unique, deterministic and non-reversible.
The Kademlia DHT protocol routes messages via Node IDs (XOR distance, k=20). Network addresses are encrypted in the transport layer.
7 nodes are provisioned for the testnet (2 miners + 5 seed nodes). Private testnet active since March 2026 — mainnet planned Q3 2026.
A preview of the TSN CLI — wallet generation, mining and network interactions.
A clear path: build, test privately, test publicly, then launch.
96k+ lines of Rust. Blocks, transactions, UTXO, Poseidon2, ML-DSA-65, Plonky3 STARKs, P2P networking, consensus, wallet, RPC API, explorer.
CompletedMulti-role nodes with --role CLI flag (Miner, Relay, Light Client). Viewing key export/import. Full Plonky3 STARKs migration. Zero-knowledge virtual machine foundations.
Completed7 nodes running v2.1.5. Working transactions, dual mining, interactive wallet, P2P auto-update, verified snapshot system. Currently active.
⚠️ TSN tokens currently have no monetary value. This is a development testnet. Tokens can be mined for free by running a node. Economic value will only be introduced at the incentivized testnet phase.
Live NowOpen to everyone. Bug bounty program, node operator rewards, smart contract testing, security audit. 2–3 months.
UpcomingGenesis block. Fair launch, no premine. Full privacy by default. zkVM smart contracts live. Open-source release.
PlannedP2P private social network with E2E encrypted DMs, circles, blog, polls, AI assistant. No email, no phone — just a seed phrase. Launch App →
v0.3.0 — LiveCross-chain anonymous DEX with AMM swap, liquidity pools, P2P escrow, yield farming, DAO governance, and prediction markets. Powered by TSN relayers.
In Development1 ZST = 1 gram of gold. Independent Layer 2 with decentralized oracle price feeds, 150% over-collateralization in TSN, and shielded zero-knowledge conversions.
Post-Mainnet| Feature | Bitcoin | Ethereum | Monero | TSN |
|---|---|---|---|---|
| Signatures | ECDSA | ECDSA | Ed25519 | ML-DSA-65 |
| ZK Proofs | None | SNARKs | Bulletproofs | Plonky3 |
| Hash | SHA-256 | Keccak | Keccak | Poseidon2 |
| Privacy | Transparent | Transparent | Ring Sigs | ZK Shielded |
| Quantum Safe | No | No | No | Full Stack ✓ |
Answers to essential questions about Trust Stack Network.
TSN (Trust Stack Network) is a privacy-first, post-quantum blockchain. It's a shared ledger between computers (nodes) that agree on who owns what, without intermediaries — and with protection against future quantum computers.
Current blockchains (Bitcoin, Ethereum) use signatures that will be breakable by quantum computers. TSN uses ML-DSA-65 (standardized by NIST in 2024, FIPS 204) for signatures, Plonky3 STARKs for zero-knowledge proofs (AIR-based, post-quantum). When quantum computers arrive, TSN will already be protected.
Transaction amounts are hidden using Zero-Knowledge (ZK) proofs. When you send TSN, you generate a mathematical proof saying "I have sufficient funds" without revealing how much you own or how much you're sending. Only the recipient (with their viewing key) can see the amount received.
TSN is the native currency of the network. 1 TSN = 1 billion base units. You can get it in 3 ways:
There is no premine: nobody owns TSN in advance. Every coin is mined.
On each mined block, 85% goes to the miner, 10% to the relay pool and 5% funds the development treasury. It's transparent and visible on-chain. This funds ongoing project development. There is no premine or private sale — the treasury only grows with mining, like everyone else.
TSN is developed by a dedicated engineering team with specialists in core development, cryptography, networking, devops and security. The project is 100% open source and the code is available on GitHub. Development runs 24/7 with continuous code review, automated tests and continuous integration.
The deployment plan is progressive:
The roadmap is adaptive and evolves with progress. Follow us for announcements.
Join the network, mine blocks, or explore the technology.