anychain-bitcoin 0.1.15

A Rust library for Bitcoin-focused cryptocurrency wallets, enabling seamless transactions on the Bitcoin blockchain
Documentation
#![cfg_attr(not(feature = "std"), no_std)]
#![warn(unused_extern_crates)]
// #![forbid(unsafe_code)]

#[macro_use]
extern crate thiserror;

pub mod address;
pub use self::address::*;

pub mod format;
pub use self::format::*;

pub mod network;
pub use self::network::*;

pub mod public_key;
pub use self::public_key::*;

pub mod witness_program;
pub use self::witness_program::*;

pub mod transaction;
pub use self::transaction::*;

pub mod amount;
pub use self::amount::*;