ethers-rs/crates/ethers-providers/src/provider.rs

333 lines
11 KiB
Rust
Raw Normal View History

2020-05-27 15:43:43 +00:00
use crate::{ens, http::Provider as HttpProvider, networks::Network, JsonRpcClient};
2020-05-27 11:32:44 +00:00
use ethers_abi::{Detokenize, ParamType};
2020-05-26 09:52:15 +00:00
use ethers_types::{
2020-05-27 20:43:02 +00:00
Address, Block, BlockId, BlockNumber, Bytes, Filter, Log, NameOrAddress, Selector, Transaction,
2020-05-27 11:32:44 +00:00
TransactionReceipt, TransactionRequest, TxHash, U256,
2020-05-24 15:40:16 +00:00
};
2020-05-26 09:52:15 +00:00
use ethers_utils as utils;
2020-05-24 15:40:16 +00:00
2020-05-26 10:24:19 +00:00
use serde::Deserialize;
use url::{ParseError, Url};
2020-05-27 15:43:43 +00:00
use std::{convert::TryFrom, fmt::Debug, marker::PhantomData};
2020-05-24 15:40:16 +00:00
/// An abstract provider for interacting with the [Ethereum JSON RPC
/// API](https://github.com/ethereum/wiki/wiki/JSON-RPC)
#[derive(Clone, Debug)]
2020-05-27 15:43:43 +00:00
pub struct Provider<P, N>(P, PhantomData<N>, Option<Address>);
2020-05-24 15:40:16 +00:00
// JSON RPC bindings
2020-05-27 15:43:43 +00:00
impl<P: JsonRpcClient, N: Network> Provider<P, N> {
2020-05-27 11:32:44 +00:00
////// Blockchain Status
//
// Functions for querying the state of the blockchain
2020-05-24 17:26:41 +00:00
/// Gets the latest block number via the `eth_BlockNumber` API
2020-05-24 15:40:16 +00:00
pub async fn get_block_number(&self) -> Result<U256, P::Error> {
self.0.request("eth_blockNumber", None::<()>).await
}
2020-05-27 11:32:44 +00:00
/// Gets the block at `block_hash_or_number` (transaction hashes only)
pub async fn get_block(
&self,
block_hash_or_number: impl Into<BlockId>,
) -> Result<Block<TxHash>, P::Error> {
self.get_block_gen(block_hash_or_number.into(), false).await
2020-05-24 20:11:47 +00:00
}
2020-05-27 11:32:44 +00:00
/// Gets the block at `block_hash_or_number` (full transactions included)
2020-05-24 20:11:47 +00:00
pub async fn get_block_with_txs(
&self,
2020-05-27 11:32:44 +00:00
block_hash_or_number: impl Into<BlockId>,
2020-05-24 20:11:47 +00:00
) -> Result<Block<Transaction>, P::Error> {
2020-05-27 11:32:44 +00:00
self.get_block_gen(block_hash_or_number.into(), true).await
2020-05-24 20:11:47 +00:00
}
async fn get_block_gen<Tx: for<'a> Deserialize<'a>>(
&self,
id: BlockId,
include_txs: bool,
) -> Result<Block<Tx>, P::Error> {
let include_txs = utils::serialize(&include_txs);
match id {
BlockId::Hash(hash) => {
let hash = utils::serialize(&hash);
let args = vec![hash, include_txs];
self.0.request("eth_getBlockByHash", Some(args)).await
}
BlockId::Number(num) => {
let num = utils::serialize(&num);
let args = vec![num, include_txs];
self.0.request("eth_getBlockByNumber", Some(args)).await
}
}
}
2020-05-27 11:32:44 +00:00
/// Gets the transaction with `transaction_hash`
pub async fn get_transaction<T: Send + Sync + Into<TxHash>>(
&self,
transaction_hash: T,
) -> Result<Transaction, P::Error> {
let hash = transaction_hash.into();
self.0.request("eth_getTransactionByHash", Some(hash)).await
}
/// Gets the transaction receipt with `transaction_hash`
2020-05-24 20:27:51 +00:00
pub async fn get_transaction_receipt<T: Send + Sync + Into<TxHash>>(
&self,
2020-05-27 11:32:44 +00:00
transaction_hash: T,
2020-05-24 20:27:51 +00:00
) -> Result<TransactionReceipt, P::Error> {
2020-05-27 11:32:44 +00:00
let hash = transaction_hash.into();
2020-05-24 20:27:51 +00:00
self.0
.request("eth_getTransactionReceipt", Some(hash))
.await
}
2020-05-27 11:32:44 +00:00
/// Gets the current gas price as estimated by the node
pub async fn get_gas_price(&self) -> Result<U256, P::Error> {
self.0.request("eth_gasPrice", None::<()>).await
}
/// Gets the accounts on the node
pub async fn get_accounts(&self) -> Result<Vec<Address>, P::Error> {
self.0.request("eth_accounts", None::<()>).await
}
/// Returns the nonce of the address
pub async fn get_transaction_count(
2020-05-24 15:40:16 +00:00
&self,
2020-05-27 11:32:44 +00:00
from: Address,
block: Option<BlockNumber>,
) -> Result<U256, P::Error> {
let from = utils::serialize(&from);
let block = utils::serialize(&block.unwrap_or(BlockNumber::Latest));
self.0
.request("eth_getTransactionCount", Some(&[from, block]))
.await
2020-05-24 15:40:16 +00:00
}
2020-05-27 11:32:44 +00:00
/// Returns the account's balance
pub async fn get_balance(
&self,
from: Address,
block: Option<BlockNumber>,
) -> Result<U256, P::Error> {
let from = utils::serialize(&from);
let block = utils::serialize(&block.unwrap_or(BlockNumber::Latest));
self.0.request("eth_getBalance", Some(&[from, block])).await
}
2020-05-24 18:34:56 +00:00
2020-05-27 11:32:44 +00:00
////// Contract Execution
//
// These are relatively low-level calls. The Contracts API should usually be used instead.
/// Send the read-only (constant) transaction to a single Ethereum node and return the result (as bytes) of executing it.
/// This is free, since it does not change any state on the blockchain.
pub async fn call(
2020-05-25 15:35:38 +00:00
&self,
tx: TransactionRequest,
block: Option<BlockNumber>,
) -> Result<Bytes, P::Error> {
let tx = utils::serialize(&tx);
let block = utils::serialize(&block.unwrap_or(BlockNumber::Latest));
self.0.request("eth_call", Some(vec![tx, block])).await
2020-05-25 15:35:38 +00:00
}
2020-05-27 11:32:44 +00:00
/// Send a transaction to a single Ethereum node and return the estimated amount of gas required (as a U256) to send it
/// This is free, but only an estimate. Providing too little gas will result in a transaction being rejected
/// (while still consuming all provided gas).
pub async fn estimate_gas(
&self,
tx: &TransactionRequest,
block: Option<BlockNumber>,
) -> Result<U256, P::Error> {
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
}
/// Send the transaction to the entire Ethereum network and returns the transaction's hash
/// This will consume gas from the account that signed the transaction.
2020-05-27 20:43:02 +00:00
pub async fn send_transaction(&self, mut tx: TransactionRequest) -> Result<TxHash, P::Error> {
if let Some(ref to) = tx.to {
if let NameOrAddress::Name(ens_name) = to {
let addr = self
.resolve_name(&ens_name)
.await?
.expect("TODO: Handle ENS name not found");
tx.to = Some(addr.into())
}
}
2020-05-24 15:40:16 +00:00
self.0.request("eth_sendTransaction", Some(tx)).await
}
2020-05-27 11:32:44 +00:00
/// Send the raw RLP encoded transaction to the entire Ethereum network and returns the transaction's hash
/// This will consume gas from the account that signed the transaction.
pub async fn send_raw_transaction(&self, tx: &Transaction) -> Result<TxHash, P::Error> {
let rlp = utils::serialize(&tx.rlp());
2020-05-24 15:40:16 +00:00
self.0.request("eth_sendRawTransaction", Some(rlp)).await
}
2020-05-27 11:32:44 +00:00
////// Contract state
2020-05-24 17:26:41 +00:00
2020-05-27 11:32:44 +00:00
/// Returns an array (possibly empty) of logs that match the filter
pub async fn get_logs(&self, filter: &Filter) -> Result<Vec<Log>, P::Error> {
self.0.request("eth_getLogs", Some(filter)).await
}
// TODO: get_code, get_storage_at
////// Ethereum Naming Service
// The Ethereum Naming Service (ENS) allows easy to remember and use names to
// be assigned to Ethereum addresses. Any provider operation which takes an address
// may also take an ENS name.
//
// ENS also provides the ability for a reverse lookup, which determines the name for an address if it has been configured.
/// Returns the address that the `ens_name` resolves to (or None if not configured).
///
/// # Panics
///
/// If the bytes returned from the ENS registrar/resolver cannot be interpreted as
/// an address. This should theoretically never happen.
pub async fn resolve_name(&self, ens_name: &str) -> Result<Option<Address>, P::Error> {
self.query_resolver(ParamType::Address, ens_name, ens::ADDR_SELECTOR)
2020-05-24 15:40:16 +00:00
.await
}
2020-05-24 17:26:41 +00:00
2020-05-27 11:32:44 +00:00
/// Returns the ENS name the `address` resolves to (or None if not configured).
pub async fn lookup_address(&self, address: Address) -> Result<Option<String>, P::Error> {
let ens_name = ens::reverse_address(address);
self.query_resolver(ParamType::String, &ens_name, ens::NAME_SELECTOR)
.await
}
async fn query_resolver<T: Detokenize>(
2020-05-24 17:26:41 +00:00
&self,
2020-05-27 11:32:44 +00:00
param: ParamType,
ens_name: &str,
selector: Selector,
) -> Result<Option<T>, P::Error> {
2020-05-27 15:43:43 +00:00
// Get the ENS address, prioritize the local override variable
let ens_addr = match self.2 {
Some(ens_addr) => ens_addr,
None => match N::ENS_ADDRESS {
Some(ens_addr) => ens_addr,
None => return Ok(None),
},
2020-05-27 11:32:44 +00:00
};
// first get the resolver responsible for this name
// the call will return a Bytes array which we convert to an address
let data = self
.call(ens::get_resolver(ens_addr, ens_name), None)
.await?;
let resolver_address: Address = decode_bytes(ParamType::Address, data);
if resolver_address == Address::zero() {
return Ok(None);
}
// resolve
let data = self
.call(ens::resolve(resolver_address, selector, ens_name), None)
.await?;
Ok(Some(decode_bytes(param, data)))
}
2020-05-27 15:43:43 +00:00
pub fn ens<T: Into<Address>>(mut self, ens: T) -> Self {
self.2 = Some(ens.into());
2020-05-27 11:32:44 +00:00
self
2020-05-24 17:26:41 +00:00
}
2020-05-24 15:40:16 +00:00
}
2020-05-26 10:24:19 +00:00
2020-05-27 11:32:44 +00:00
/// infallbile conversion of Bytes to Address/String
///
/// # Panics
///
/// If the provided bytes were not an interpretation of an address
fn decode_bytes<T: Detokenize>(param: ParamType, bytes: Bytes) -> T {
let tokens = ethers_abi::decode(&[param], &bytes.0)
.expect("could not abi-decode bytes to address tokens");
T::from_tokens(tokens).expect("could not parse tokens as address")
}
2020-05-27 15:43:43 +00:00
impl<N: Network> TryFrom<&str> for Provider<HttpProvider, N> {
2020-05-26 10:24:19 +00:00
type Error = ParseError;
fn try_from(src: &str) -> Result<Self, Self::Error> {
2020-05-27 15:43:43 +00:00
Ok(Provider(
HttpProvider::new(Url::parse(src)?),
PhantomData,
None,
))
2020-05-27 11:32:44 +00:00
}
}
#[cfg(test)]
mod ens_tests {
use super::*;
2020-05-27 15:43:43 +00:00
use crate::networks::Mainnet;
2020-05-27 11:32:44 +00:00
#[tokio::test]
// Test vector from: https://docs.ethers.io/ethers.js/v5-beta/api-providers.html#id2
async fn mainnet_resolve_name() {
2020-05-27 15:43:43 +00:00
let provider = Provider::<HttpProvider, Mainnet>::try_from(
2020-05-27 11:32:44 +00:00
"https://mainnet.infura.io/v3/9408f47dedf04716a03ef994182cf150",
)
2020-05-27 15:43:43 +00:00
.unwrap();
2020-05-27 11:32:44 +00:00
let addr = provider
.resolve_name("registrar.firefly.eth")
.await
.unwrap();
assert_eq!(
addr.unwrap(),
"6fC21092DA55B392b045eD78F4732bff3C580e2c".parse().unwrap()
);
// registrar not found
let addr = provider.resolve_name("asdfasdffads").await.unwrap();
assert!(addr.is_none());
// name not found
let addr = provider
.resolve_name("asdfasdf.registrar.firefly.eth")
.await
.unwrap();
assert!(addr.is_none());
}
#[tokio::test]
// Test vector from: https://docs.ethers.io/ethers.js/v5-beta/api-providers.html#id2
async fn mainnet_lookup_address() {
2020-05-27 15:43:43 +00:00
let provider = Provider::<HttpProvider, Mainnet>::try_from(
2020-05-27 11:32:44 +00:00
"https://mainnet.infura.io/v3/9408f47dedf04716a03ef994182cf150",
)
2020-05-27 15:43:43 +00:00
.unwrap();
2020-05-27 11:32:44 +00:00
let name = provider
.lookup_address("6fC21092DA55B392b045eD78F4732bff3C580e2c".parse().unwrap())
.await
.unwrap();
assert_eq!(name.unwrap(), "registrar.firefly.eth");
let name = provider
.lookup_address("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA".parse().unwrap())
.await
.unwrap();
assert!(name.is_none());
2020-05-26 10:24:19 +00:00
}
}