#block-header #chain #data-block #lightning #sync #source #fetch

lightning-block-sync

Utilities to fetch the chain data from a block source and feed them into Rust Lightning

40 releases

0.0.125 Oct 14, 2024
0.0.124-rc1 Aug 29, 2024
0.0.123 May 9, 2024
0.0.121 Jan 23, 2024
0.0.13 Mar 9, 2021

#7 in #block-header

Download history 328/week @ 2024-07-21 876/week @ 2024-07-28 1178/week @ 2024-08-04 703/week @ 2024-08-11 914/week @ 2024-08-18 990/week @ 2024-08-25 687/week @ 2024-09-01 644/week @ 2024-09-08 598/week @ 2024-09-15 651/week @ 2024-09-22 720/week @ 2024-09-29 764/week @ 2024-10-06 2166/week @ 2024-10-13 1902/week @ 2024-10-20 997/week @ 2024-10-27 1743/week @ 2024-11-03

6,846 downloads per month
Used in 2 crates

MIT/Apache

7MB
117K SLoC

A lightweight client for keeping in sync with chain activity.

Defines an SpvClient utility for polling one or more block sources for the best chain tip. It is used to notify listeners of blocks connected or disconnected since the last poll. Useful for keeping a Lightning node in sync with the chain.

Defines a BlockSource trait, which is an asynchronous interface for retrieving block headers and data.

Enabling feature rest-client or rpc-client allows configuring the client to fetch blocks using Bitcoin Core's REST or RPC interface, respectively.

Both features support either blocking I/O using std::net::TcpStream or, with feature tokio, non-blocking I/O using tokio::net::TcpStream from inside a Tokio runtime.

Dependencies

~7–15MB
~157K SLoC