An async library to access the public Helium blockchain REST API.
The Helium API is a REST API service as defined by the blockhain-http service. This library attempts to wrap this API in an async, easy to use library that supports the conventions as exposed by the API. This includes:
Contributions and helpful suggestions are always welcome
Create a client to the default api.helium.io
endpoint and ask for a given
account.
```rust,no-run use helium_api::*;
async fn main() -> Result<(), Box
See the examples folder and unit tests for more examples.