use super::base::{decode_fn, AbiError}; use ethers_core::{ abi::{Detokenize, Function, InvalidOutputType}, types::{Address, BlockNumber, Bytes, TransactionRequest, U256}, }; use ethers_providers::{Middleware, PendingTransaction}; use std::{fmt::Debug, marker::PhantomData, sync::Arc}; use thiserror::Error as ThisError; #[derive(ThisError, Debug)] /// An Error which is thrown when interacting with a smart contract pub enum ContractError { /// Thrown when the ABI decoding fails #[error(transparent)] DecodingError(#[from] ethers_core::abi::Error), /// Thrown when the internal BaseContract errors #[error(transparent)] AbiError(#[from] AbiError), /// Thrown when detokenizing an argument #[error(transparent)] DetokenizationError(#[from] InvalidOutputType), /// Thrown when a provider call fails #[error("{0}")] MiddlewareError(M::Error), /// Thrown during deployment if a constructor argument was passed in the `deploy` /// call but a constructor was not present in the ABI #[error("constructor is not defined in the ABI")] ConstructorError, /// Thrown if a contract address is not found in the deployment transaction's /// receipt #[error("Contract was not deployed")] ContractNotDeployed, } #[derive(Debug, Clone)] #[must_use = "contract calls do nothing unless you `send` or `call` them"] /// Helper for managing a transaction before submitting it to a node pub struct ContractCall { /// 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, pub(crate) client: Arc, pub(crate) datatype: PhantomData, } impl ContractCall { /// Sets the `from` field in the transaction to the provided value pub fn from>(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>(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>(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>(mut self, value: T) -> Self { self.tx.value = Some(value.into()); self } /// Sets the `block` field for sending the tx to the chain pub fn block>(mut self, block: T) -> Self { self.block = Some(block.into()); self } } impl ContractCall where M: Middleware, D: Detokenize, { /// Returns the underlying transaction's ABI encoded data pub fn calldata(&self) -> Option { self.tx.data.clone() } /// Returns the estimated gas cost for the underlying transaction to be executed pub async fn estimate_gas(&self) -> Result> { self.client .estimate_gas(&self.tx) .await .map_err(ContractError::MiddlewareError) } /// 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> { let bytes = self .client .call(&self.tx, self.block) .await .map_err(ContractError::MiddlewareError)?; // decode output let data = decode_fn(&self.function, &bytes, false)?; Ok(data) } /// Signs and broadcasts the provided transaction pub async fn send(&self) -> Result, ContractError> { self.client .send_transaction(self.tx.clone(), self.block) .await .map_err(ContractError::MiddlewareError) } }