alloy_provider::fillers

Trait RecommendedFillers

Source
pub trait RecommendedFillers: Network {
    type RecommendedFillers: TxFiller<Self>;

    // Required method
    fn recommended_fillers() -> Self::RecommendedFillers;
}
Expand description

A trait which may be used to configure default fillers for Network implementations.

Required Associated Types§

Source

type RecommendedFillers: TxFiller<Self>

Recommended fillers for this network.

Required Methods§

Source

fn recommended_fillers() -> Self::RecommendedFillers

Returns the recommended filler for this provider.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RecommendedFillers for AnyNetwork

Source§

impl RecommendedFillers for Ethereum

Implementors§