# Overview
LDK is a flexible Lightning implementation with supporting batteries (or modules).
# Introduction
Lightning Development Kit (LDK) allows you to build a Lightning node without needing to worry about getting all of the Lightning state machine, routing, and on-chain punishment code (and other chain interactions) exactly correct. LDK tends to be suitable for use cases where a degree of customization is desired, e.g. your own chain sync, your own key management and/or your own storage/backup logic.
We are currently working on a demo node which fetches blockchain data and on-chain funds via Bitcoin Core RPC/REST. The individual pieces of that demo are/will be composable, so you can pick the off-the-shelf parts you want and replace the rest.
# LDK Batteries
While LDK provides all the core Lightning state machine logic, other batteries/modules are needed to run a node. LDK interacts with these modules through generic interfaces, meaning the user can choose the implementation that best suits their needs. LDK provides sample implementations for many of these batteries, which are enumerated below.
- On-disk storage
- You can store the channel state any way you want - whether Google Drive/iCloud, a local disk, any key-value store/database/a remote server, or any combination of them - we provide a clean API that provides objects which can be serialized into simple binary blobs, and stored in any way you wish.
- Sample module in Rust (opens new window)
- Blockchain data
- We provide a simple
block_connected
/block_disconnected
API which you provide block headers and transaction information to. We also provide an API for getting information about transactions we wish to be informed of, which is compatible with Electrum server requests/neutrino filtering/etc. - Sample module in Rust (opens new window)
- We provide a simple
- On-chain funds wallet/UTXO management
- LDK owns on-chain funds as long as they are claimable as a part of a Lightning output which can be contested - once a channel is closed and all on-chain outputs are spendable only by the user, we provide users notifications that a UTXO is "theirs" again and it is up to them to spend it as they wish. Additionally, channel funding is accomplished with a generic API which notifies users of the output which needs to appear on-chain, which they can then create a transaction for. Once a transaction is created, we handle the rest. This is a large part of our API's goals - making it easier to integrate Lightning into existing on-chain wallets which have their own on-chain logic - without needing to move funds in and out of a separate Lightning wallet with on-chain transactions and a separate private key system.
- LDK does not currently provide a sample wallet module, but its sample node implementation uses Bitcoin Core's wallet for UTXO management e.g. here (opens new window)
- Networking
- To enable a user to run a full Lightning node on an embedded machine, we don't specify exactly how to connect to another node at all! We provide a default implementation which uses TCP sockets, but, e.g., if you wanted to run your full Lightning node on a hardware wallet, you could, by piping the Lightning network messages over USB/serial and then sending them in a TCP socket from another machine.
- Sample module in Rust (opens new window)
- Sample module in Java (opens new window)
- Private keys
- LDK has "default implementations", but users can choose to provide private keys to RL/LDK in any way they wish following a simple API. We even support a generic API for signing transactions, allowing users to run RL/LDK without any private keys in memory and/or putting private keys only on hardware wallets.
- LDK's
KeysManager
docs (opens new window). While LDK's default implementation is currently within Rust-Lightning, it is still considered a sample module.
- Transaction filtering
- Clients running a light client may wish to filter for transactions on a separate server, in which case LDK will tell them about transactions to filter for. More information is available in the Blockchain Data guide.
- Fee estimation
- LDK's sample node implementation uses Bitcoin Core's fee estimation API here (opens new window).
- Transaction broadcasting
- LDK's sample node implementation uses Bitcoin Core's transaction broadcasting API here (opens new window).
- Random number generation
- Because LDK aims to make no system calls, it is restricted from generating its own randomness.
- LDK's sample node implementation uses Rust's
rand
crate here (opens new window) and elsewhere.
# LDK Architecture
LDK's core components are shown in the center box labeled lightning
. Boxes
with dotted borders are LDK's batteries — these must be configured with either
off-the-shelf or custom implementations that you provide.
EventHandler in the diagram is not so much a necessary LDK battery, but instead
refers to the fact that LDK generates events that the user should handle (e.g.
the PaymentReceived
event).
# References
# Rust Documentation (opens new window)
These provide the most searchable and comprehensive documentation on LDK. If you're using Java and want more information on any method/struct/etc., searching the Rust docs for the Rust version of that struct/method is your best bet.
# Rust Sample Node (opens new window)
The sample serves as a complete reference for constructing a Lightning node with the LDK. This is a good starting point if you want a self-guided tour!
# Swift LDK Documentation (opens new window)
These docs are mainly geared towards how Swift could call LDK C bindings directly, but still may provide a useful overview of Rust Lightning in the context of language bindings.
# LDK Architecture (opens new window)
Gives a high-level organization of LDK and how the pieces fit together. Variations of this diagram are used throughout the site. This is the primary source and is still a work in progress.