Files
serai/coins/bitcoin/src/lib.rs
2023-03-17 21:25:38 -04:00

12 lines
253 B
Rust

/// Cryptographic helpers.
pub mod crypto;
/// BIP-340 Schnorr signature algorithm.
pub mod algorithm;
/// Wallet functionality to create transactions.
pub mod wallet;
/// A minimal asynchronous Bitcoin RPC client.
pub mod rpc;
#[cfg(test)]
mod tests;