Skip to main content

hashiverse_lib/protocol/posting/
mod.rs

1//! # Post and feedback wire-format types
2//!
3//! The canonical on-the-wire shapes for individual posts, aggregate post bundles,
4//! individual feedback entries, and aggregate feedback bundles — all
5//! self-verifying via signatures and proof-of-work. The PoW-amplification rules
6//! that gate how much work a post must cost live alongside them.
7
8pub mod amplification;
9pub mod encoded_post;
10pub mod encoded_post_feedback;
11pub mod encoded_post_bundle;
12pub mod encoded_post_bundle_feedback;
13