Skip to content
Hugo Perez edited this page Apr 8, 2026 · 5 revisions

The Sovereign Network

Zero-Knowledge Hypertext Transfer Protocol (ZHTP) — a self-contained, post-quantum, Byzantine fault-tolerant network stack written in Rust, from the cryptographic primitives all the way down to the wireless mesh that carries the packets.

A sovereign network that you can run end-to-end: identity, consensus, transport, and physical infrastructure — no trusted third parties, no centralized backbone.


Start Here

I want to… Go to
Read the canonical technical specification SOVN / ZHTP Canonical Spec v2
Understand what SOVN is and how the pieces fit together Architecture Overview
Read the project documentation Documentation
Understand BFT safety and quorum rules BFT Quorum Thresholds
Deploy the wireless mesh infrastructure Wireless Mesh Deployment Framework
See what the team is working on Weekly Updates

Architecture Overview

SOVN is built as a single Rust monorepo containing every layer of the stack:

  • Identity — Seed-anchored cryptographic identity. A single root seed deterministically derives all keys, enabling multi-device support without custodial recovery.
  • Post-Quantum CryptographyDilithium5 for signatures, Kyber1024 for key exchange. Quantum-resistant from day one.
  • Consensus — Tendermint-style Byzantine Fault Tolerant consensus with a 66.67% supermajority threshold. One function, one threshold, one source of truth. See BFT Quorum Thresholds.
  • Transport — QUIC-based mesh topology with DHT peer discovery.
  • Storage — Sled-backed persistent blockchain storage.
  • Physical Layer — Standards-based Wi-Fi mesh (WMABS) operating in license-exempt spectrum, with configurable regulatory profiles for multi-jurisdiction deployment. See Wireless Mesh Deployment Framework.
  • Application Layer — SOV / CBE token primitives, wallet, mobile apps (iOS + Android), and AI service access.

The monorepo contains 15+ specialized libraries coordinated through a central orchestrator binary and CLI tooling.


Documentation

All project documentation is indexed under Documentation.

Canonical specifications:

Sections:


Research Notes

  • BFT Quorum Thresholds — supermajority threshold, quorum table, and the reasoning behind the 6667 bps bound.

Weekly Updates

Team work plans and delivery logs:


Repository

This wiki is a living document. If a page is missing or out of date, open a PR against the wiki repo or file an issue.

Clone this wiki locally