5 releases

0.2.1 Jan 26, 2024
0.2.0 Dec 13, 2023
0.1.0 Jun 22, 2023
0.1.0-alpha.1 Jun 6, 2023
0.1.0-alpha Apr 27, 2023

#1933 in Magic Beans

Download history 11/week @ 2024-01-22 78/week @ 2024-02-19 53/week @ 2024-02-26 45/week @ 2024-03-11 27/week @ 2024-03-18 33/week @ 2024-04-01

105 downloads per month

MIT/Apache

425KB
10K SLoC

Rust 6K SLoC // 0.0% comments Swift 2.5K SLoC // 0.1% comments Kotlin 529 SLoC // 0.1% comments Python 239 SLoC // 0.0% comments Shell 165 SLoC // 0.1% comments Batch 142 SLoC Forge Config 11 SLoC

Contains (JAR file, 62KB) gradle-wrapper.jar, (JAR file, 62KB) gradle-wrapper.jar

LDK Node

Crate Documentation Maven Central Android Maven Central JVM

A ready-to-go Lightning node library built using LDK and BDK.

LDK Node is a self-custodial Lightning node in library form. Its central goal is to provide a small, simple, and straightforward interface that enables users to easily set up and run a Lightning node with an integrated on-chain wallet. While minimalism is at its core, LDK Node aims to be sufficiently modular and configurable to be useful for a variety of use cases.

Getting Started

The primary abstraction of the library is the Node, which can be retrieved by setting up and configuring a Builder to your liking and calling one of the build methods. Node can then be controlled via commands such as start, stop, connect_open_channel, send_payment, etc.

use ldk_node::{Builder, Network};
use ldk_node::lightning_invoice::Bolt11Invoice;
use ldk_node::lightning::ln::msgs::SocketAddress;
use ldk_node::bitcoin::secp256k1::PublicKey;
use std::str::FromStr;

fn main() {
	let mut builder = Builder::new();
	builder.set_network(Network::Testnet);
	builder.set_esplora_server("https://blockstream.info/testnet/api".to_string());
	builder.set_gossip_source_rgs("https://rapidsync.lightningdevkit.org/testnet/snapshot".to_string());

	let node = builder.build().unwrap();

	node.start().unwrap();

	let funding_address = node.new_onchain_address();

	// .. fund address ..

	let node_id = PublicKey::from_str("NODE_ID").unwrap();
	let node_addr = SocketAddress::from_str("IP_ADDR:PORT").unwrap();
	node.connect_open_channel(node_id, node_addr, 10000, None, None, false).unwrap();

	let event = node.wait_next_event();
	println!("EVENT: {:?}", event);
	node.event_handled();

	let invoice = Bolt11Invoice::from_str("INVOICE_STR").unwrap();
	node.send_payment(&invoice).unwrap();

	node.stop().unwrap();
}

Modularity

LDK Node currently comes with a decidedly opinionated set of design choices:

  • On-chain data is handled by the integrated BDK wallet.
  • Chain data may currently be sourced from an Esplora server, while support for Electrum and bitcoind RPC will follow soon.
  • Wallet and channel state may be persisted to an SQLite database, to file system, or to a custom back-end to be implemented by the user.
  • Gossip data may be sourced via Lightning's peer-to-peer network or the Rapid Gossip Sync protocol.
  • Entropy for the Lightning and on-chain wallets may be sourced from raw bytes or a BIP39 mnemonic. In addition, LDK Node offers the means to generate and persist the entropy bytes to disk.

Language Support

LDK Node itself is written in Rust and may therefore be natively added as a library dependency to any std Rust program. However, beyond its Rust API it also offers language bindings for Swift, Kotlin, and Python based on the UniFFI. Moreover, Flutter bindings are also available.

MSRV

The Minimum Supported Rust Version (MSRV) is currently 1.63.0.

Dependencies

~47–63MB
~1M SLoC