ethers-rs/ethers-providers/src/lib.rs

31 lines
842 B
Rust
Raw Normal View History

pub mod http;
pub use http::Provider as Http;
2020-05-26 10:24:19 +00:00
mod provider;
2020-05-26 09:52:15 +00:00
2020-05-28 16:34:06 +00:00
// ENS support
mod ens;
2020-05-27 11:32:44 +00:00
2020-05-26 09:52:15 +00:00
use async_trait::async_trait;
use serde::{Deserialize, Serialize};
use std::{error::Error, fmt::Debug};
2020-06-01 21:31:32 +00:00
pub use provider::{Provider, ProviderError};
2020-05-26 10:24:19 +00:00
2020-05-26 09:52:15 +00:00
/// An HTTP provider for interacting with an Ethereum-compatible blockchain
pub type HttpProvider = Provider<Http>;
2020-05-26 09:52:15 +00:00
#[async_trait]
2020-05-28 16:34:06 +00:00
/// Trait which must be implemented by data transports to be used with the Ethereum
/// JSON-RPC provider.
2020-05-26 09:52:15 +00:00
pub trait JsonRpcClient: Debug {
2020-05-28 16:34:06 +00:00
/// A JSON-RPC Error
2020-06-01 23:00:58 +00:00
type Error: Error + Into<ProviderError>;
2020-05-26 09:52:15 +00:00
2020-05-28 16:34:06 +00:00
/// Sends a request with the provided JSON-RPC and parameters serialized as JSON
2020-05-26 09:52:15 +00:00
async fn request<T: Serialize + Send + Sync, R: for<'a> Deserialize<'a>>(
&self,
method: &str,
params: Option<T>,
) -> Result<R, Self::Error>;
2020-05-26 09:37:31 +00:00
}