"description":"The private transport layer for the Logos stack. Anonymity by design, with a mixnet, capability discovery, and RLN spam protection built into the foundation.",
"body":"The networking layer is in active development toward testnet, with capability discovery and the libp2p mixnet as leading priorities. In the future, Service Discovery will replace the legacy discovery mechanism inside Logos Messaging.",
"description":"The networking layer treats all traffic alike, whether the modules above it are storing files, sending messages, or processing transactions. Messages route through multiple relay nodes that mix and delay traffic, so timing and volume reveal little to an outside observer. Nodes advertise and find one another through a capability discovery protocol with no central registry, and the peering layer maintains connections across the network.\n\nBecause privacy is implemented at the foundation, every module built on the networking layer inherits it without having to implement anonymity itself.",
"description":"How does a node find other nodes offering the services it needs without a central directory? Service Discovery answers this with a new protocol built on libp2p's Kad-DHT. Each node publishes a signed record describing its address and capabilities; others search for matching records through a general API, and light clients can look peers up without joining the full distributed hash table. This enables a heterogeneous peer-to-peer network where many kinds of node coordinate without intermediaries.",
"description":"The mixnet is a privacy-preserving transport mechanism drawn from the same family of designs behind anonymity networks such as Tor and Nym. Messages pass through several relay nodes that shuffle and delay them, so that no observer can pair senders with receivers even by watching timing and volume closely. It carries both fire-and-forget messages and request-response interactions, and it supports cover traffic to keep the set of plausible senders large enough to preserve privacy.",
"description":"An anonymous network needs a way to stop abuse without identifying its users. A Rate Limiting Nullifier (RLN) does exactly that, using zero-knowledge proofs: each member can send up to a set rate while staying anonymous, and exceeding that rate makes their identity recoverable so the network can remove them. The cryptography lives in Zerokit, a Rust library containing cryptographic modules designed for performance, security, and usability.",