Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bdk_electrum_streaming/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bdk_electrum_streaming"
version = "0.6.0"
description = "Experimental but sane BDK electrum client by @evanlinjin."
version = "0.7.0"
description = "An async/blocking Electrum client for BDK, built as an explicit streaming state machine."
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.70"
Expand Down
9 changes: 7 additions & 2 deletions bdk_electrum_streaming/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Experimental BDK Electrum
# bdk_electrum_streaming

Redo `bdk_electrum` using `e_electrum_client`.
An async/blocking Electrum client for [BDK](https://bitcoindevkit.org), built as an explicit
state machine on top of [`electrum_streaming_client`](https://docs.rs/electrum_streaming_client).

Tracks a set of descriptors, subscribes to their script hashes, and streams `FullScanResponse`
updates as history, transactions and anchors resolve, instead of blocking until an entire scan
completes. Handles reorgs by refetching whichever anchors they affect.