satellite_bitcoin/lib.rs
1// Re-export core crates so downstream users can access everything from `satellite-bitcoin`
2
3pub use satellite_collections::*;
4pub use satellite_math::*;
5
6// Re-export the transactions crate using the alias defined in Cargo.toml
7pub use satellite_bitcoin_transactions::*;
8
9pub mod script;
10pub use script::ScriptPubkey;