truthlinked-governance 0.1.2

Governance primitives and protocol parameter rules for the TruthLinked post-quantum blockchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Governance primitives and protocol parameter exports for TruthLinked.
//!
//! This crate owns governance-controlled domain types and exposes the parameter
//! registry used by downstream protocol crates. Encoding must remain explicit so
//! protocol upgrades can be reviewed, reproduced, and audited.

pub mod params;
pub mod types;

pub use types::{
    CellVisibility, NameRegistration, PendingNameRegistration, SchemaEntry, SchemaProposal,
    TokenAuthorityProposal, UrlProposal, UrlResponseFormat,
};