Major refactor of the Esplora client

Now we're back to using regular bdk types, which is a big advantage.
This commit is contained in:
Dave Hrycyszyn
2024-07-25 19:54:37 +01:00
parent e4e8298fcd
commit 4b63245bfe
11 changed files with 133 additions and 536 deletions

View File

@@ -8,10 +8,14 @@ edition = "2021"
[dependencies]
anyhow = "1.0.86"
async-trait = "0.1.52"
bdk = { version = "0.29.0", default-feature = false, features = ["all-keys"] }
bdk_esplora = "0.15.0"
bdk_sqlite = "0.2.0"
bdk_wallet = { version = "1.0.0-alpha.13", features = ["all-keys"] }
bdk = { version = "0.29.0", features = [
"compiler",
"use-esplora-async",
"electrum",
"std",
"keys-bip39",
"reqwest-default-tls",
], default-features = false }
bft-json-crdt = { path = "../crates/bft-json-crdt" }
bft-crdt-derive = { path = "../crates/bft-json-crdt/bft-crdt-derive" }
bitcoin = { version = "0.32.2", features = ["rand"] }
@@ -29,7 +33,7 @@ sha256 = "1.5.0"
tokio = { version = "1.37.0", features = ["full"] }
toml = "0.8.14"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["std", "env-filter"]}
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
[dev-dependencies]