diff --git a/README.md b/README.md index 8d528f62..5977ae59 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ This library would not have been possibly without the great work done in: - [`ethers.js`](https://github.com/ethers-io/ethers.js/) - [`rust-web3`](https://github.com/tomusdrw/rust-web3/) - [`ethcontract-rs`](https://github.com/gnosis/ethcontract-rs/) +- [`guac_rs`](https://github.com/althea-net/guac_rs/tree/master/web3/src/jsonrpc) A lot of the code was inspired and adapted from them, to a unified and opinionated interface, built with async/await and std futures from the ground up. diff --git a/ethers-providers/src/http.rs b/ethers-providers/src/http.rs index 357d2a84..fc2ad66a 100644 --- a/ethers-providers/src/http.rs +++ b/ethers-providers/src/http.rs @@ -1,3 +1,4 @@ +// Code adapted from: https://github.com/althea-net/guac_rs/tree/master/web3/src/jsonrpc use crate::{provider::ProviderError, JsonRpcClient}; use async_trait::async_trait;