hashiverse_lib/protocol/mod.rs
1//! # Wire-level protocol types
2//!
3//! What two peers agree on in order to talk to each other: packet layouts, payload
4//! variants, signed record shapes, and PoW-gated envelopes. Peer records and their
5//! credentials, the RPC packets that carry them, every request/response payload the
6//! network understands, and the post-and-feedback data model all live here.
7
8pub mod posting;
9pub mod payload;
10pub mod peer;
11pub mod rpc;
12