alloy_provider/builder.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
use crate::{
fillers::{
CachedNonceManager, ChainIdFiller, FillerControlFlow, GasFiller, JoinFill, NonceFiller,
NonceManager, RecommendedFillers, SimpleNonceManager, TxFiller, WalletFiller,
},
provider::SendableTx,
Provider, RootProvider,
};
use alloy_chains::NamedChain;
use alloy_network::{Ethereum, Network};
use alloy_primitives::ChainId;
use alloy_rpc_client::{ClientBuilder, RpcClient};
use alloy_transport::{TransportError, TransportResult};
use std::marker::PhantomData;
/// A layering abstraction in the vein of [`tower::Layer`]
///
/// [`tower::Layer`]: https://docs.rs/tower/latest/tower/trait.Layer.html
pub trait ProviderLayer<P: Provider<N>, N: Network = Ethereum> {
/// The provider constructed by this layer.
type Provider: Provider<N>;
/// Wrap the given provider in the layer's provider.
fn layer(&self, inner: P) -> Self::Provider;
}
/// An identity layer that does nothing.
#[derive(Clone, Copy, Debug)]
pub struct Identity;
impl<N> TxFiller<N> for Identity
where
N: Network,
{
type Fillable = ();
fn status(&self, _tx: &<N as Network>::TransactionRequest) -> FillerControlFlow {
FillerControlFlow::Finished
}
fn fill_sync(&self, _tx: &mut SendableTx<N>) {}
async fn prepare<P>(
&self,
_provider: &P,
_tx: &N::TransactionRequest,
) -> TransportResult<Self::Fillable> {
Ok(())
}
async fn fill(
&self,
_to_fill: Self::Fillable,
tx: SendableTx<N>,
) -> TransportResult<SendableTx<N>> {
Ok(tx)
}
}
impl<P, N> ProviderLayer<P, N> for Identity
where
N: Network,
P: Provider<N>,
{
type Provider = P;
fn layer(&self, inner: P) -> Self::Provider {
inner
}
}
/// A stack of two providers.
#[derive(Debug)]
pub struct Stack<Inner, Outer> {
inner: Inner,
outer: Outer,
}
impl<Inner, Outer> Stack<Inner, Outer> {
/// Create a new `Stack`.
pub const fn new(inner: Inner, outer: Outer) -> Self {
Self { inner, outer }
}
}
impl<P, N, Inner, Outer> ProviderLayer<P, N> for Stack<Inner, Outer>
where
N: Network,
P: Provider<N>,
Inner: ProviderLayer<P, N>,
Outer: ProviderLayer<Inner::Provider, N>,
{
type Provider = Outer::Provider;
fn layer(&self, provider: P) -> Self::Provider {
let inner = self.inner.layer(provider);
self.outer.layer(inner)
}
}
/// A builder for constructing a [`Provider`] from various layers.
///
/// This type is similar to [`tower::ServiceBuilder`], with extra complication
/// around maintaining the network and transport types.
///
/// The [`ProviderBuilder`] can be instantiated in two ways, using `ProviderBuilder::new()` or
/// `ProviderBuilder::default()`.
///
/// `ProviderBuilder::new()` will create a new [`ProviderBuilder`] with the [`RecommendedFillers`]
/// enabled, whereas `ProviderBuilder::default()` will instantiate it in its vanilla
/// [`ProviderBuilder`] form i.e with no fillers enabled.
///
/// [`tower::ServiceBuilder`]: https://docs.rs/tower/latest/tower/struct.ServiceBuilder.html
#[derive(Debug)]
pub struct ProviderBuilder<L, F, N = Ethereum> {
layer: L,
filler: F,
network: PhantomData<fn() -> N>,
}
impl
ProviderBuilder<
Identity,
JoinFill<Identity, <alloy_network::Ethereum as RecommendedFillers>::RecommendedFillers>,
Ethereum,
>
{
/// Create a new [`ProviderBuilder`] with the recommended filler enabled.
///
/// Recommended fillers are preconfigured set of fillers that handle gas estimation, nonce
/// management, and chain-id fetching.
///
/// Building a provider with this setting enabled will return a [`crate::fillers::FillProvider`]
/// with [`crate::utils::JoinedRecommendedFillers`].
///
/// You can opt-out of using these fillers by using the `.disable_recommended_fillers()` method.
pub fn new() -> Self {
ProviderBuilder::default().with_recommended_fillers()
}
/// Opt-out of the recommended fillers by reseting the fillers stack in the [`ProviderBuilder`].
///
/// This is equivalent to creating the builder using `ProviderBuilder::default()`.
pub fn disable_recommended_fillers(self) -> ProviderBuilder<Identity, Identity, Ethereum> {
ProviderBuilder { layer: self.layer, filler: Identity, network: self.network }
}
}
impl<N> Default for ProviderBuilder<Identity, Identity, N> {
fn default() -> Self {
Self { layer: Identity, filler: Identity, network: PhantomData }
}
}
impl<L, N: Network> ProviderBuilder<L, Identity, N> {
/// Add preconfigured set of layers handling gas estimation, nonce
/// management, and chain-id fetching.
pub fn with_recommended_fillers(
self,
) -> ProviderBuilder<L, JoinFill<Identity, N::RecommendedFillers>, N>
where
N: RecommendedFillers,
{
self.filler(N::recommended_fillers())
}
/// Add gas estimation to the stack being built.
///
/// See [`GasFiller`]
pub fn with_gas_estimation(self) -> ProviderBuilder<L, JoinFill<Identity, GasFiller>, N> {
self.filler(GasFiller)
}
/// Add nonce management to the stack being built.
///
/// See [`NonceFiller`]
pub fn with_nonce_management<M: NonceManager>(
self,
nonce_manager: M,
) -> ProviderBuilder<L, JoinFill<Identity, NonceFiller<M>>, N> {
self.filler(NonceFiller::new(nonce_manager))
}
/// Add simple nonce management to the stack being built.
///
/// See [`SimpleNonceManager`]
pub fn with_simple_nonce_management(
self,
) -> ProviderBuilder<L, JoinFill<Identity, NonceFiller>, N> {
self.with_nonce_management(SimpleNonceManager::default())
}
/// Add cached nonce management to the stack being built.
///
/// See [`CachedNonceManager`]
pub fn with_cached_nonce_management(
self,
) -> ProviderBuilder<L, JoinFill<Identity, NonceFiller<CachedNonceManager>>, N> {
self.with_nonce_management(CachedNonceManager::default())
}
/// Add a chain ID filler to the stack being built. The filler will attempt
/// to fetch the chain ID from the provider using
/// [`Provider::get_chain_id`]. the first time a transaction is prepared,
/// and will cache it for future transactions.
pub fn fetch_chain_id(self) -> ProviderBuilder<L, JoinFill<Identity, ChainIdFiller>, N> {
self.filler(ChainIdFiller::default())
}
/// Add a specific chain ID to the stack being built. The filler will
/// fill transactions with the provided chain ID, regardless of the chain ID
/// that the provider reports via [`Provider::get_chain_id`].
pub fn with_chain_id(
self,
chain_id: ChainId,
) -> ProviderBuilder<L, JoinFill<Identity, ChainIdFiller>, N> {
self.filler(ChainIdFiller::new(Some(chain_id)))
}
}
impl<L, F, N> ProviderBuilder<L, F, N> {
/// Add a layer to the stack being built. This is similar to
/// [`tower::ServiceBuilder::layer`].
///
/// ## Note:
///
/// Layers are added in outer-to-inner order, as in
/// [`tower::ServiceBuilder`]. The first layer added will be the first to
/// see the request.
///
/// [`tower::ServiceBuilder::layer`]: https://docs.rs/tower/latest/tower/struct.ServiceBuilder.html#method.layer
/// [`tower::ServiceBuilder`]: https://docs.rs/tower/latest/tower/struct.ServiceBuilder.html
pub fn layer<Inner>(self, layer: Inner) -> ProviderBuilder<Stack<Inner, L>, F, N> {
ProviderBuilder {
layer: Stack::new(layer, self.layer),
filler: self.filler,
network: PhantomData,
}
}
/// Add a transaction filler to the stack being built. Transaction fillers
/// are used to fill in missing fields on transactions before they are sent,
/// and are all joined to form the outermost layer of the stack.
pub fn filler<F2>(self, filler: F2) -> ProviderBuilder<L, JoinFill<F, F2>, N> {
ProviderBuilder {
layer: self.layer,
filler: JoinFill::new(self.filler, filler),
network: PhantomData,
}
}
/// Add a wallet layer to the stack being built.
///
/// See [`WalletFiller`].
pub fn wallet<W>(self, wallet: W) -> ProviderBuilder<L, JoinFill<F, WalletFiller<W>>, N> {
self.filler(WalletFiller::new(wallet))
}
/// Change the network.
///
/// By default, the network is `Ethereum`. This method must be called to configure a different
/// network.
///
/// ```ignore
/// builder.network::<Arbitrum>()
/// ```
pub fn network<Net: Network>(self) -> ProviderBuilder<L, F, Net> {
ProviderBuilder { layer: self.layer, filler: self.filler, network: PhantomData }
}
/// Add a chain layer to the stack being built. The layer will set
/// the client's poll interval based on the average block time for this chain.
///
/// Does nothing to the client with a local transport.
pub fn with_chain(
self,
chain: NamedChain,
) -> ProviderBuilder<Stack<crate::layers::ChainLayer, L>, F, N> {
let chain_layer = crate::layers::ChainLayer::from(chain);
self.layer(chain_layer)
}
/// Finish the layer stack by providing a root [`Provider`], outputting
/// the final [`Provider`] type with all stack components.
pub fn on_provider<P>(self, provider: P) -> F::Provider
where
L: ProviderLayer<P, N>,
F: TxFiller<N> + ProviderLayer<L::Provider, N>,
P: Provider<N>,
N: Network,
{
let Self { layer, filler, network: PhantomData } = self;
let stack = Stack::new(layer, filler);
stack.layer(provider)
}
/// Finish the layer stack by providing a root [`RpcClient`], outputting
/// the final [`Provider`] type with all stack components.
///
/// This is a convenience function for
/// `ProviderBuilder::provider<RpcClient>`.
pub fn on_client(self, client: RpcClient) -> F::Provider
where
L: ProviderLayer<RootProvider<N>, N>,
F: TxFiller<N> + ProviderLayer<L::Provider, N>,
N: Network,
{
self.on_provider(RootProvider::new(client))
}
/// Finish the layer stack by providing a connection string for a built-in
/// transport type, outputting the final [`Provider`] type with all stack
/// components.
pub async fn on_builtin(self, s: &str) -> Result<F::Provider, TransportError>
where
L: ProviderLayer<RootProvider<N>, N>,
F: TxFiller<N> + ProviderLayer<L::Provider, N>,
N: Network,
{
let client = ClientBuilder::default().connect(s).await?;
Ok(self.on_client(client))
}
/// Build this provider with a websocket connection.
#[cfg(feature = "ws")]
pub async fn on_ws(
self,
connect: alloy_transport_ws::WsConnect,
) -> Result<F::Provider, TransportError>
where
L: ProviderLayer<RootProvider<N>, N>,
F: TxFiller<N> + ProviderLayer<L::Provider, N>,
N: Network,
{
let client = ClientBuilder::default().ws(connect).await?;
Ok(self.on_client(client))
}
/// Build this provider with an IPC connection.
#[cfg(feature = "ipc")]
pub async fn on_ipc<T>(
self,
connect: alloy_transport_ipc::IpcConnect<T>,
) -> Result<F::Provider, TransportError>
where
alloy_transport_ipc::IpcConnect<T>: alloy_pubsub::PubSubConnect,
L: ProviderLayer<RootProvider<N>, N>,
F: TxFiller<N> + ProviderLayer<L::Provider, N>,
N: Network,
{
let client = ClientBuilder::default().ipc(connect).await?;
Ok(self.on_client(client))
}
/// Build this provider with an Reqwest HTTP transport.
#[cfg(any(test, feature = "reqwest"))]
pub fn on_http(self, url: reqwest::Url) -> F::Provider
where
L: ProviderLayer<crate::RootProvider<N>, N>,
F: TxFiller<N> + ProviderLayer<L::Provider, N>,
N: Network,
{
let client = ClientBuilder::default().http(url);
self.on_client(client)
}
/// Build this provider with an Hyper HTTP transport.
#[cfg(feature = "hyper")]
pub fn on_hyper_http(self, url: url::Url) -> F::Provider
where
L: ProviderLayer<crate::RootProvider<N>, N>,
F: TxFiller<N> + ProviderLayer<L::Provider, N>,
N: Network,
{
let client = ClientBuilder::default().hyper_http(url);
self.on_client(client)
}
}
#[cfg(any(test, feature = "anvil-node"))]
type JoinedEthereumWalletFiller<F> = JoinFill<F, WalletFiller<alloy_network::EthereumWallet>>;
#[cfg(any(test, feature = "anvil-node"))]
type AnvilProviderResult<T> = Result<T, alloy_node_bindings::NodeError>;
// Enabled when the `anvil` feature is enabled, or when both in test and the
// `reqwest` feature is enabled.
#[cfg(any(test, feature = "anvil-node"))]
impl<L, F> ProviderBuilder<L, F, Ethereum> {
/// Build this provider with anvil, using the BoxTransport.
pub fn on_anvil(self) -> F::Provider
where
F: TxFiller<Ethereum> + ProviderLayer<L::Provider, Ethereum>,
L: crate::builder::ProviderLayer<
crate::layers::AnvilProvider<crate::provider::RootProvider>,
>,
{
self.on_anvil_with_config(std::convert::identity)
}
/// Build this provider with anvil, using the BoxTransport. This
/// function configures a wallet backed by anvil keys, and is intended for
/// use in tests.
pub fn on_anvil_with_wallet(
self,
) -> <JoinedEthereumWalletFiller<F> as ProviderLayer<L::Provider>>::Provider
where
F: TxFiller<Ethereum> + ProviderLayer<L::Provider, Ethereum>,
L: crate::builder::ProviderLayer<
crate::layers::AnvilProvider<crate::provider::RootProvider>,
>,
{
self.on_anvil_with_wallet_and_config(std::convert::identity)
.expect("failed to build provider")
}
/// Build this provider with anvil, using the BoxTransport. The
/// given function is used to configure the anvil instance.
pub fn on_anvil_with_config(
self,
f: impl FnOnce(alloy_node_bindings::Anvil) -> alloy_node_bindings::Anvil,
) -> F::Provider
where
F: TxFiller<Ethereum> + ProviderLayer<L::Provider, Ethereum>,
L: crate::builder::ProviderLayer<
crate::layers::AnvilProvider<crate::provider::RootProvider>,
>,
{
let anvil_layer = crate::layers::AnvilLayer::from(f(Default::default()));
let url = anvil_layer.endpoint_url();
let rpc_client = ClientBuilder::default().http(url);
self.layer(anvil_layer).on_client(rpc_client)
}
/// Build this provider with anvil, using the BoxTransport.
/// This calls `try_on_anvil_with_wallet_and_config` and panics on error.
pub fn on_anvil_with_wallet_and_config(
self,
f: impl FnOnce(alloy_node_bindings::Anvil) -> alloy_node_bindings::Anvil,
) -> AnvilProviderResult<<JoinedEthereumWalletFiller<F> as ProviderLayer<L::Provider>>::Provider>
where
F: TxFiller<Ethereum> + ProviderLayer<L::Provider, Ethereum>,
L: crate::builder::ProviderLayer<
crate::layers::AnvilProvider<crate::provider::RootProvider>,
>,
{
let anvil_layer = crate::layers::AnvilLayer::from(f(Default::default()));
let url = anvil_layer.endpoint_url();
let wallet = anvil_layer
.instance()
.wallet()
.ok_or(alloy_node_bindings::NodeError::NoKeysAvailable)?;
let rpc_client = ClientBuilder::default().http(url);
Ok(self.wallet(wallet).layer(anvil_layer).on_client(rpc_client))
}
}
// Copyright (c) 2019 Tower Contributors
// Permission is hereby granted, free of charge, to any
// person obtaining a copy of this software and associated
// documentation files (the "Software"), to deal in the
// Software without restriction, including without
// limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software
// is furnished to do so, subject to the following
// conditions:
// The above copyright notice and this permission notice
// shall be included in all copies or substantial portions
// of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
// ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
// PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
// SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
// IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.