#![recursion_limit = "256"]
#![deny(dead_code, /* missing_docs, */ warnings)]
#[macro_use]
extern crate amplify;
#[cfg(feature = "serde")]
#[macro_use]
extern crate serde_crate as serde;
#[macro_use]
extern crate strict_encoding;
mod errors;
mod global;
mod input;
mod output;
pub mod commit;
#[cfg(feature = "construct")]
pub mod construct;
pub mod lex_order;
mod proprietary;
#[cfg(feature = "sign")]
pub mod sign;
pub use bitcoin::psbt::raw::ProprietaryKey;
pub use bitcoin::psbt::{raw, serialize, Error, PsbtParseError, PsbtSighashType};
pub use errors::{FeeError, InputMatchError, TxError, TxinError};
pub use global::Psbt;
pub use input::Input;
pub use output::Output;
pub(crate) mod v0 {
pub use bitcoin::psbt::{
Input as InputV0, Output as OutputV0, PartiallySignedTransaction as PsbtV0,
};
}
pub use commit::{
PSBT_GLOBAL_LNPBP4_PROTOCOL_INFO, PSBT_IN_P2C_TWEAK, PSBT_IN_TAPRET_TWEAK, PSBT_LNPBP4_PREFIX,
PSBT_OUT_LNPBP4_ENTROPY, PSBT_OUT_LNPBP4_MESSAGE, PSBT_OUT_LNPBP4_MIN_TREE_DEPTH,
PSBT_OUT_TAPRET_COMMITMENT, PSBT_OUT_TAPRET_HOST, PSBT_OUT_TAPRET_PROOF, PSBT_P2C_PREFIX,
PSBT_TAPRET_PREFIX,
};
pub use proprietary::{
ProprietaryKeyDescriptor, ProprietaryKeyError, ProprietaryKeyLocation, ProprietaryKeyType,
};
#[derive(Copy, Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
#[derive(StrictEncode, StrictDecode)]
#[strict_encoding(repr = u32)]
#[cfg_attr(
feature = "serde",
derive(Serialize, Deserialize),
serde(crate = "serde_crate")
)]
#[repr(u32)]
pub enum PsbtVersion {
V0 = 0x0,
V2 = 0x2,
}
impl Default for PsbtVersion {
fn default() -> Self { PsbtVersion::V2 }
}