An async library for Helium's blockchain-node using JSON-RPC calls.
It is part of the ETL Lite project for tracking and storing data from the Helium blockchain.
```rust,no-run use heliumjsonrpcrs::{ blocks };
async fn main() { let height = 873465; let client = heliumjsonrpcrs::Client::newwithbaseurl("http://localhost:4467".tostring()); let block = match blocks::get_block(&client, &height).await { Ok(b) => b, Err(e) => panic!("Couldn't get block: {}", e), };
println!("Found block {} with {} transactions.", height, block.transactions.len());
} ```
See the examples folder and unit tests for more examples.