Struct ethers_middleware::gas_oracle::Median
source · pub struct Median { /* private fields */ }Implementations
sourceimpl Median
impl Median
Computes the median gas price from a selection of oracles.
Don’t forget to set a timeout on the source oracles. By default the reqwest based oracles will never time out.
pub fn new() -> Self
pub fn add<T: 'static + GasOracle>(&mut self, oracle: T)
pub fn add_weighted<T: 'static + GasOracle>(&mut self, weight: f32, oracle: T)
pub async fn query_all<'a, Fn, Fut, O>(
&'a self,
f: Fn
) -> Result<Vec<(f32, O)>, GasOracleError>where
Fn: FnMut(&'a dyn GasOracle) -> Fut,
Fut: Future<Output = Result<O, GasOracleError>>,
Trait Implementations
sourceimpl GasOracle for Median
impl GasOracle for Median
sourcefn fetch<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<U256, GasOracleError>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
fn fetch<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<U256, GasOracleError>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Makes an asynchronous HTTP query to the underlying
GasOracle Read morefn estimate_eip1559_fees<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(U256, U256), GasOracleError>> + Send + 'async_trait>>where
'life0: 'async_trait,
Self: 'async_trait,
Auto Trait Implementations
impl !RefUnwindSafe for Median
impl Send for Median
impl Sync for Median
impl Unpin for Median
impl !UnwindSafe for Median
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more