ethers-rs/ethers-contract/src/call.rs

117 lines
3.8 KiB
Rust
Raw Normal View History

2020-05-31 16:01:34 +00:00
use ethers_core::{
abi::{Detokenize, Error as AbiError, Function, InvalidOutputType},
types::{Address, BlockNumber, TransactionRequest, U256},
};
use ethers_providers::{JsonRpcClient, PendingTransaction, ProviderError};
2020-06-01 23:15:33 +00:00
use ethers_signers::{Client, ClientError, Signer};
use std::{fmt::Debug, marker::PhantomData};
use thiserror::Error as ThisError;
2020-06-01 23:15:33 +00:00
#[derive(ThisError, Debug)]
2020-06-10 18:20:47 +00:00
/// An Error which is thrown when interacting with a smart contract
2020-06-01 23:15:33 +00:00
pub enum ContractError {
2020-06-10 18:20:47 +00:00
/// Thrown when the ABI decoding fails
2020-06-01 23:15:33 +00:00
#[error(transparent)]
DecodingError(#[from] AbiError),
2020-06-10 18:20:47 +00:00
/// Thrown when detokenizing an argument
2020-06-01 23:15:33 +00:00
#[error(transparent)]
DetokenizationError(#[from] InvalidOutputType),
2020-06-10 18:20:47 +00:00
/// Thrown when a client call fails
2020-06-01 23:15:33 +00:00
#[error(transparent)]
ClientError(#[from] ClientError),
2020-06-10 18:20:47 +00:00
/// Thrown when a provider call fails
2020-06-01 23:15:33 +00:00
#[error(transparent)]
ProviderError(#[from] ProviderError),
2020-06-10 18:20:47 +00:00
/// Thrown during deployment if a constructor argument was passed in the `deploy`
/// call but a constructor was not present in the ABI
2020-06-01 23:15:33 +00:00
#[error("constructor is not defined in the ABI")]
ConstructorError,
2020-06-10 18:20:47 +00:00
/// Thrown if a contract address is not found in the deployment transaction's
/// receipt
2020-06-01 23:15:33 +00:00
#[error("Contract was not deployed")]
ContractNotDeployed,
}
#[derive(Debug, Clone)]
2020-06-10 18:20:47 +00:00
/// Helper for managing a transaction before submitting it to a node
2020-06-01 23:15:33 +00:00
pub struct ContractCall<'a, P, S, D> {
2020-06-10 18:20:47 +00:00
/// The raw transaction object
pub tx: TransactionRequest,
/// The ABI of the function being called
pub function: Function,
/// Optional block number to be used when calculating the transaction's gas and nonce
pub block: Option<BlockNumber>,
2020-06-01 23:15:33 +00:00
pub(crate) client: &'a Client<P, S>,
pub(crate) datatype: PhantomData<D>,
}
2020-06-01 23:15:33 +00:00
impl<'a, P, S, D: Detokenize> ContractCall<'a, P, S, D> {
/// Sets the `from` field in the transaction to the provided value
pub fn from<T: Into<Address>>(mut self, from: T) -> Self {
self.tx.from = Some(from.into());
self
}
/// Sets the `gas` field in the transaction to the provided value
pub fn gas<T: Into<U256>>(mut self, gas: T) -> Self {
self.tx.gas = Some(gas.into());
self
}
/// Sets the `gas_price` field in the transaction to the provided value
pub fn gas_price<T: Into<U256>>(mut self, gas_price: T) -> Self {
self.tx.gas_price = Some(gas_price.into());
self
}
/// Sets the `value` field in the transaction to the provided value
pub fn value<T: Into<U256>>(mut self, value: T) -> Self {
self.tx.value = Some(value.into());
self
}
2020-06-01 23:15:33 +00:00
/// Sets the `block` field for sending the tx to the chain
pub fn block<T: Into<BlockNumber>>(mut self, block: T) -> Self {
self.block = Some(block.into());
self
}
}
2020-06-01 23:15:33 +00:00
impl<'a, P, S, D> ContractCall<'a, P, S, D>
where
2020-05-27 15:43:43 +00:00
S: Signer,
P: JsonRpcClient,
D: Detokenize,
{
/// Queries the blockchain via an `eth_call` for the provided transaction.
///
/// If executed on a non-state mutating smart contract function (i.e. `view`, `pure`)
/// then it will return the raw data from the chain.
///
/// If executed on a mutating smart contract function, it will do a "dry run" of the call
/// and return the return type of the transaction without mutating the state
///
/// Note: this function _does not_ send a transaction from your account
pub async fn call(&self) -> Result<D, ContractError> {
let bytes = self.client.call(&self.tx, self.block).await?;
let tokens = self.function.decode_output(&bytes.0)?;
let data = D::from_tokens(tokens)?;
Ok(data)
}
/// Signs and broadcasts the provided transaction
pub async fn send(self) -> Result<PendingTransaction<'a, P>, ContractError> {
2020-06-01 23:15:33 +00:00
Ok(self.client.send_transaction(self.tx, self.block).await?)
}
}