Rust wrapper for Blockstream Esplora API

codecov Actions Status

Description

This library provide a simple wrapper to use Blockstream API or self hosted Esplora - Electrs API.

Requirements

bash sudo apt install libssl-dev

Dependencies

Use

Async implementation

toml // Cargo.toml [dependencies] esplora-api = { path ="./../Elecrts-wrapper" } tokio = { version = "0.2", features = ["macros"] }

```rust // Main.rs use esplora_api;

[tokio::main]

async fn main() -> Result<(), Box>{ let client = esploraapi::asyncimpl::ApiClient::new("https://blockstream.info/testnet/api/", None).unwrap(); let res = client.get_address("n1vgV8XmoggmRXzW3hGD8ZNTAgvhcwT4Gk").await?; println!("{:?}",res); Ok(()) } ```

Blocking implementation

toml // Cargo.toml [dependencies] esplora-api = { path ="./../Elecrts-wrapper", features=["blocking"] }

rust // Main.rs pub use esplora_api; fn main(){ let client = esplora_api::blocking::client::ApiClient::new("https://blockstream.info/testnet/api/", None).unwrap(); let res = client.get_address("n1vgV8XmoggmRXzW3hGD8ZNTAgvhcwT4Gk").unwrap(); println!("{:?}",res); }