mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
12 lines
253 B
Rust
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;
|