This library provide a simple wrapper to use Blockstream API or self hosted Esplora - Electrs API.
bash
sudo apt install libssl-dev
toml
// Cargo.toml
[dependencies]
esplora-api = { path ="./../Elecrts-wrapper" }
tokio = { version = "0.2", features = ["macros"] }
```rust // Main.rs use esplora_api;
async fn main() -> Result<(), Box
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);
}