bsv-wallet-toolbox 0.2.16

Pure Rust BSV wallet-toolbox implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Services layer for BSV wallet network communication.
//!
//! Provides the WalletServices trait, provider traits, result/config types,
//! and the generic ServiceCollection failover pattern.

pub mod chaintracker;
pub mod providers;
pub mod service_collection;
pub mod services;
pub mod traits;
pub mod types;

// Re-export key types for convenience
pub use service_collection::ServiceCollection;
pub use services::Services;
pub use traits::*;
pub use types::*;