esplora-api

Crates.ioesplora-api
lib.rsesplora-api
version0.1.0
sourcesrc
created_at2020-10-30 12:49:36.055385
updated_at2020-10-30 12:49:36.055385
descriptionSimple wrapper to use Blockstream API or self hosted Esplora API
homepage
repositoryhttps://github.com/vivienbcr/Blockstream-api-wrapper
max_upload_size
id306964
size107,300
Vivien (vivienbcr)

documentation

README

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

sudo apt install libssl-dev

Dependencies

Use

Async implementation

// Cargo.toml
[dependencies]
esplora-api = { path ="./../Elecrts-wrapper" }
tokio = { version = "0.2", features = ["macros"] }
// Main.rs
use esplora_api;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>>{
    let client = esplora_api::async_impl::ApiClient::new("https://blockstream.info/testnet/api/", None).unwrap();
    let res = client.get_address("n1vgV8XmoggmRXzW3hGD8ZNTAgvhcwT4Gk").await?;
    println!("{:?}",res);
    Ok(())
}

Blocking implementation

// Cargo.toml
[dependencies]
esplora-api = { path ="./../Elecrts-wrapper", features=["blocking"]  }
// 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);
}
Commit count: 44

cargo fmt