Skip to main content

hashiverse_lib/client/meta_post/
mod.rs

1//! # Per-account profile and config as a "meta-post"
2//!
3//! One post per month per account, carrying the user's profile and client config
4//! instead of conversational content. The public section (nickname, avatar,
5//! follows) is readable by everyone; the private section (per-feedback thresholds,
6//! preferences) is symmetric-encrypted under a key derived from the account's own
7//! signing key, so only its owner — and their other devices — can read it.
8
9pub mod meta_post;
10pub mod meta_post_crypto;
11pub mod meta_post_manager;
12