Crates.io | lightning-liquidity |
lib.rs | lightning-liquidity |
version | |
source | src |
created_at | 2024-02-15 14:05:24.826031+00 |
updated_at | 2025-01-16 08:29:41.262147+00 |
description | Types and primitives to integrate a spec-compliant LSP with an LDK-based node. |
homepage | https://lightningdevkit.org/ |
repository | https://github.com/lightningdevkit/rust-lightning |
max_upload_size | |
id | 1141128 |
Cargo.toml error: | TOML parse error at line 21, column 1 | 21 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
The goal of this crate is to provide types and primitives to integrate a spec-compliant LSP with an LDK-based node. To this end, this crate provides client-side as well as service-side logic to implement the LSP specifications.
Note: Service-side support is currently considered "beta", i.e., not fully ready for production use.
Currently the following specifications are supported:
To get started, you'll want to setup a LiquidityManager
and configure it to be the CustomMessageHandler
of your LDK node. You can then call LiquidityManager::lsps1_client_handler
/ LiquidityManager::lsps2_client_handler
, or LiquidityManager::lsps2_service_handler
, to access the respective client-side or service-side handlers.
LiquidityManager
uses an eventing system to notify the user about important updates to the protocol flow. To this end, you will need to handle events emitted via one of the event handling methods provided by LiquidityManager
, e.g., LiquidityManager::next_event
.