This is a convenience crate for handling http requests and errors.
```rust use ddfblockinghttpclient::Client; use ddfblockinghttpclient::HttpResult; use serde::Deserialize;
use dotenv::dotenv; use std::env;
// dotenv is being used for lack of an example not requiring private keys and public wallet addresses. // dotenv is not required for this crate to work. dotenv::dotenv().ok(); let apikey = env::var("APIKEY").unwrap(); let walletaddress = env::var("PUBLICWALLET_ADDRESS").unwrap();
struct Balance { result: String }
let client = Client::new();
let url = &[ "https://api.etherscan.io/api", "?module=account", "&action=balance", "&address=", &walletaddress, "&tag=latest", "&apikey=", &apikey ].concat();
// Here is the main feature, Balance is the data structure expected back, defined above.
// You define your own struct and use the serde crate and tag the struct with #[derive(Deserialize)]
// and put the name of your struct where our example is using "Balance".
// the 10 means we are going to try 10 times, if there is a toomanyrequests response, or
// an unknown error (perhaps our crate just doesn't handle it yet) then it will wait 1 second and try again.
// each time it will double the wait time. The return type is HttpResult
let balance = client.get::
dbg!(&balance);
// If you are unsure the shape of the data, you can at first use the "getastext" function. // Here is an example of that "getastext" function, so you can get a look at all the fields to base your struct off of:
let balance = client.getastext(&url);
dbg!(&balance); ```