lnp-core 0.3.1

LNP Core Library: rust implementation of modular lightning channels architecture
Documentation
// LNP/BP Core Library implementing LNPBP specifications & standards
// Written in 2020 by
//     Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to
// the public domain worldwide. This software is distributed without
// any warranty.
//
// You should have received a copy of the MIT License
// along with this software.
// If not, see <https://opensource.org/licenses/MIT>.

// LN feature-flag based extensions
pub mod anchor_out;
pub mod shutdown_script;

// Payment protocols
pub mod htlc;
pub mod ptlc;

// Genetic protocols on top of LN payment channel with their own tx graphs added
// to the channel tx graph
pub mod dlc;
pub mod lightspeed;

pub use htlc::Htlc;