lexe_common/ln.rs
1//! Bitcoin / Lightning Lexe newtypes which have to be in `lexe-common` for some
2//! reason, likely because they are referenced in an API definition.
3
4/// `LxSocketAddress`
5pub mod addr;
6/// `Amount`.
7pub mod amount;
8/// `AmountOrAll`.
9pub mod amount_or_all;
10/// `Balance`.
11pub mod balance;
12/// Channel outpoint, details, counterparty
13pub mod channel;
14/// Bitcoin hash types, such as `Txid`.
15pub mod hashes;
16/// `Network`, a newtype for [`bitcoin::Network`].
17pub mod network;
18/// `LxNodeAlias`.
19pub mod node_alias;
20/// Confirmation priorities.
21pub mod priority;
22/// `LxRoute`.
23pub mod route;