rust-esplora-client icon indicating copy to clipboard operation
rust-esplora-client copied to clipboard

Bitcoin Esplora API client library. Supports plaintext, TLS and Onion servers. Blocking or async.

Results 13 rust-esplora-client issues
Sort by recently updated
recently updated
newest added

Change `convert_fee_rate` to return `Option` instead of Result. PR #65 made this function effectively infallible by removing the parse int error while falling back to a bogus 1.0 feerate if...

## The Problem Right now `rust-esplora-client` is designed to only work with HTTP client crates that are baked in (i.e. `minreq` for blocking, `reqwest` for async). However, these HTTP client...

enhancement

fixes #97 ### Description It refactors the library, introducing and adding new structures/enums for Esplora API: `TransactionApi`, `AddressesApi`, `BlocksApi`, and `FeeEstimateApi`. Introduce and exposes new `trait Client` with minimal HTTP...

enhancement