bsv-sdk 0.2.7

Pure Rust implementation of the BSV Blockchain SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Identity service module for resolving and managing identities.
//!
//! Provides IdentityClient for identity resolution via the overlay network
//! and ContactsManager for cached contact management with wallet-backed
//! encrypted storage.

pub mod contacts_manager;
pub mod identity_client;
pub mod types;

pub use contacts_manager::ContactsManager;
pub use identity_client::IdentityClient;
pub use types::{
    contact_protocol, default_identity, Contact, DisplayableIdentity, IdentityClientOptions,
    KnownIdentityTypes,
};