hashiverse-lib 1.0.7

Core protocol library for Hashiverse — your open-source decentralized X/Twitter replacement.
1
2
3
4
5
6
7
8
9
10
11
//! # Seed peer address supply
//!
//! The `BootstrapProvider` trait hands a fresh node its first list of peer
//! addresses so it can break out of Kademlia's chicken-and-egg problem. A
//! DNSSEC-validated provider is used in production; a manual list-based provider
//! covers tests and private deployments.

pub mod bootstrap_provider;
#[cfg(not(target_arch = "wasm32"))]
pub mod dnssec_bootstrap_provider;
pub mod manual_bootstrap_provider;