@@ -54,18 +54,16 @@ LDK/`rust-lightning` is a generic library that allows you to build a Lightning
54
54
node without needing to worry about getting all of the Lightning state machine,
55
55
routing, and on-chain punishment code (and other chain interactions) exactly
56
56
correct. Note that LDK isn't, in itself, a node. For an out-of-the-box Lightning
57
- node based on LDK, see [ Sensei ] ( https://l2.technology/sensei ) . However, if you
57
+ node based on LDK, see [ LDK-sample ] ( https://github.com/lightningdevkit/ldk-sample ) . However, if you
58
58
want to integrate Lightning with custom features such as your own chain sync,
59
59
key management, data storage/backup logic, etc., LDK is likely your best option.
60
60
Some ` rust-lightning ` utilities such as those in
61
61
[ ` chan_utils ` ] ( ./lightning/src/ln/chan_utils.rs ) are also suitable for use in
62
62
non-LN Bitcoin applications such as Discreet Log Contracts (DLCs) and bulletin boards.
63
63
64
- A sample node which fetches blockchain data and manages on-chain funds via the
65
- Bitcoin Core RPC/REST interface is available
66
- [ here] ( https://github.com/lightningdevkit/ldk-sample/ ) . The individual pieces of
67
- that demo are composable, so you can pick the off-the-shelf parts you want
68
- and replace the rest.
64
+ Also check out [ LDK-node] ( https://github.com/lightningdevkit/ldk-node ) library
65
+ if you want to easily integrate lightning in your application without taking care of
66
+ all the boiler plate code.
69
67
70
68
In general, ` rust-lightning ` does not provide (but LDK has implementations of):
71
69
* on-disk storage - you can store the channel state any way you want - whether
0 commit comments