Ethers uses a middleware-based architecture. You start the middleware stack with
a Provider
, and wrap it with additional
middleware functionalities that you need.
Signer
: Signs transactions locally,
with a private key or a hardware walletNonce Manager
: Manages
nonces locally, allowing the rapid broadcast of transactions without having to
wait for them to be submittedGas Escalator
: Bumps
transaction gas prices in the backgroundGas Oracle
: Allows getting
your gas price estimates from places other than eth_gasPrice
.Transformer
: Allows intercepting and
transforming a transaction to be broadcasted via a proxy wallet, e.g.
DSProxy
.```norun use ethersproviders::{Provider, Http}; use etherssigners::{LocalWallet, Signer}; use ethersmiddleware::{ gasescalator::{GasEscalatorMiddleware, GeometricGasPrice, Frequency}, gasoracle::{GasOracleMiddleware, EthGasStation, GasCategory}, signer::SignerMiddleware, noncemanager::NonceManagerMiddleware, }; use etherscore::rand; use std::convert::TryFrom;
// Start the stack
let provider = Provider::
// Escalate gas prices
let escalator = GeometricGasPrice::new(1.125, 60u64, None::
// Sign transactions with a private key let signer = LocalWallet::new(&mut rand::thread_rng()); let address = signer.address(); let provider = SignerMiddleware::new(provider, signer);
// Use EthGasStation as the gas oracle let gasoracle = EthGasStation::new(None); let provider = GasOracleMiddleware::new(provider, gasoracle);
// Manage nonces locally let provider = NonceManagerMiddleware::new(provider, address);
// ... do something with the provider ```