Skip to content

Commit

Permalink
Move bdk_electrum into the bdk repo 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
3 people committed Mar 2, 2023
1 parent 03deafb commit 949608a
Show file tree
Hide file tree
Showing 4 changed files with 612 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"crates/bdk",
"crates/bdk_chain",
"crates/bdk_file_store",
"crates/bdk_electrum",
"example-crates/esplora-wallet",
"example-crates/electrum-wallet",
]
Expand Down
16 changes: 16 additions & 0 deletions crates/electrum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "bdk_electrum"
version = "0.1.0"
edition = "2021"
homepage = "https://bitcoindevkit.org"
repository = "https://github.com/LLFourn/bdk_core_staging"
documentation = "https://docs.rs/bdk_electrum"
description = "BDK Electrum client library for updating the keychain tracker."
license = "MIT OR Apache-2.0"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bdk_chain = { path = "../bdk_chain", version = "0.3", features = ["serde", "miniscript"] }
electrum-client = { version = "0.12" }
3 changes: 3 additions & 0 deletions crates/electrum/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# BDK Electrum

BDK Electrum client library for updating the keychain tracker.
Loading

0 comments on commit 949608a

Please sign in to comment.