55 lines
1.7 KiB
Rust
55 lines
1.7 KiB
Rust
#![cfg_attr(docsrs, feature(doc_cfg))]
|
|
//! Type-safe abstractions for interacting with Ethereum smart contracts
|
|
//!
|
|
//! Interacting with a smart contract requires broadcasting carefully crafted
|
|
//! [transactions](ethers_core::types::TransactionRequest) where the `data` field contains
|
|
//! the [function's
|
|
//! selector](https://ethereum.stackexchange.com/questions/72363/what-is-a-function-selector)
|
|
//! along with the arguments of the called function. This module provides the
|
|
//! [`Contract`] and [`ContractFactory`] abstractions so that you do not have to worry about that.
|
|
//! It also provides typesafe bindings via the [`abigen`] macro and the [`Abigen` builder].
|
|
//!
|
|
//! [`ContractFactory`]: crate::ContractFactory
|
|
//! [`Contract`]: crate::Contract
|
|
//! [`abigen`]: ./macro.abigen.html
|
|
//! [`Abigen` builder]: crate::Abigen
|
|
mod contract;
|
|
pub use contract::Contract;
|
|
|
|
mod base;
|
|
pub use base::{decode_fn, BaseContract};
|
|
|
|
mod call;
|
|
pub use call::ContractError;
|
|
|
|
mod factory;
|
|
pub use factory::ContractFactory;
|
|
|
|
mod event;
|
|
|
|
mod stream;
|
|
pub use stream::EventStream;
|
|
|
|
mod multicall;
|
|
pub use multicall::Multicall;
|
|
|
|
/// This module exposes low lever builder structures which are only consumed by the
|
|
/// type-safe ABI bindings generators.
|
|
pub mod builders {
|
|
pub use super::call::ContractCall;
|
|
pub use super::event::Event;
|
|
pub use super::factory::Deployer;
|
|
}
|
|
|
|
#[cfg(feature = "abigen")]
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "abigen")))]
|
|
pub use ethers_contract_abigen::Abigen;
|
|
|
|
#[cfg(feature = "abigen")]
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "abigen")))]
|
|
pub use ethers_contract_derive::abigen;
|
|
|
|
// Hide the Lazy re-export, it's just for convenience
|
|
#[doc(hidden)]
|
|
pub use once_cell::sync::Lazy;
|