bsv-sdk 0.2.81

Pure Rust implementation of the BSV Blockchain SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! High-level client abstractions for authenticated communication.
//!
//! Provides AuthFetch, a simplified HTTP client that manages per-base-URL
//! peers and performs BRC-31 mutual authentication automatically.

pub mod auth_fetch;

pub use auth_fetch::{
    AuthFetch, AuthFetchResponse, FetchOptions, PaymentErrorLogEntry, PaymentRetryContext,
    PAYMENT_VERSION,
};