You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
We already depend on reqwest, meaning doing this would cut down our dependency tree and compile times. Additionally, this one is using async and thus provides a better integration with our codebase. the electrum-client is using its own background thread IIRC.
Open problems:
We are using the same client for monitoring and the implementation of EsploraBlockchain is completely hidden behind a trait. Thus we cannot access the necessary functionality that we need for monitoring.
The text was updated successfully, but these errors were encountered:
At the moment, we are using the https://github.com/bitcoindevkit/rust-electrum-client as the backend for BDK.
BDK also has a
reqwest
-based esplora backend: https://github.com/bitcoindevkit/bdk/blob/master/src/blockchain/esplora/reqwest.rsWe already depend on
reqwest
, meaning doing this would cut down our dependency tree and compile times. Additionally, this one is usingasync
and thus provides a better integration with our codebase. theelectrum-client
is using its own background thread IIRC.Open problems:
EsploraBlockchain
is completely hidden behind a trait. Thus we cannot access the necessary functionality that we need for monitoring.The text was updated successfully, but these errors were encountered: