//! Ethereum compatible providers //! Currently supported: //! - Raw HTTP POST requests //! //! TODO: WebSockets, multiple backends, popular APIs etc. mod http; use crate::{ signers::{Client, Signer}, types::{Address, BlockNumber, Transaction, TransactionRequest, TxHash, U256}, utils, }; use async_trait::async_trait; use serde::{Deserialize, Serialize}; use std::{error::Error, fmt::Debug}; /// An HTTP provider for interacting with an Ethereum-compatible blockchain pub type HttpProvider = Provider; #[async_trait] /// Implement this trait in order to plug in different backends pub trait JsonRpcClient: Debug { type Error: Error; /// Sends a request with the provided method and the params serialized as JSON async fn request Deserialize<'a>>( &self, method: &str, params: Option, ) -> Result; } /// An abstract provider for interacting with the [Ethereum JSON RPC /// API](https://github.com/ethereum/wiki/wiki/JSON-RPC) #[derive(Clone, Debug)] pub struct Provider

(P); // JSON RPC bindings impl Provider

{ /// Connects to a signer and returns a client pub fn connect(&self, signer: S) -> Client { Client { signer, provider: self, } } // Cost related /// Gets the current gas price as estimated by the node pub async fn get_gas_price(&self) -> Result { self.0.request("eth_gasPrice", None::<()>).await } /// Tries to estimate the gas for the transaction pub async fn estimate_gas( &self, tx: &TransactionRequest, block: Option, ) -> Result { let tx = utils::serialize(tx); let args = match block { Some(block) => vec![tx, utils::serialize(&block)], None => vec![tx], }; self.0.request("eth_estimateGas", Some(args)).await } /// Gets the accounts on the node pub async fn get_accounts(&self) -> Result, P::Error> { self.0.request("eth_accounts", None::<()>).await } /// Gets the latest block number via the `eth_BlockNumber` API pub async fn get_block_number(&self) -> Result { self.0.request("eth_blockNumber", None::<()>).await } /// Gets the transaction which matches the provided hash via the `eth_getTransactionByHash` API pub async fn get_transaction>( &self, hash: T, ) -> Result { let hash = hash.into(); self.0.request("eth_getTransactionByHash", Some(hash)).await } // State mutations /// Broadcasts the transaction request via the `eth_sendTransaction` API pub async fn send_transaction(&self, tx: TransactionRequest) -> Result { self.0.request("eth_sendTransaction", Some(tx)).await } /// Broadcasts a raw RLP encoded transaction via the `eth_sendRawTransaction` API pub async fn send_raw_transaction(&self, tx: &Transaction) -> Result { let rlp = utils::serialize(&tx.rlp()); self.0.request("eth_sendRawTransaction", Some(rlp)).await } // Account state pub async fn get_transaction_count( &self, from: Address, block: Option, ) -> Result { let from = utils::serialize(&from); let block = utils::serialize(&block.unwrap_or(BlockNumber::Latest)); self.0 .request("eth_getTransactionCount", Some(&[from, block])) .await } pub async fn get_balance( &self, from: Address, block: Option, ) -> Result { let from = utils::serialize(&from); let block = utils::serialize(&block.unwrap_or(BlockNumber::Latest)); self.0.request("eth_getBalance", Some(&[from, block])).await } }