bsv/compat/mod.rs
1//! Compatibility layer for legacy Bitcoin protocols.
2//!
3//! Implements BIP32 (HD wallets), BIP39 (mnemonics), BSM (signed messages),
4//! and ECIES (encryption). These are backward-compatibility features;
5//! the preferred modern equivalents are BRC-42/43/77/78.
6
7pub mod bip32;
8pub mod bip39;
9pub mod bip39_wordlists;
10pub mod bsm;
11pub mod ecies;
12pub mod error;
13
14pub use error::CompatError;