bitcoins 0.7.0

Bitcoin transaction construction in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub use crate::{
    builder::*,
    enc::*,
    hashes::{BlockHash, TXID, WTXID},
    types::*,
};

pub use coins_core::prelude::*;

#[cfg(any(feature = "mainnet", feature = "testnet", feature = "signet"))]
pub use crate::defaults::*;

#[cfg(any(feature = "mainnet", feature = "testnet", feature = "signet"))]
pub use crate::defaults::network::*;