Struct ethers_middleware::gas_oracle::BlockNative
source · pub struct BlockNative { /* private fields */ }Expand description
A client over HTTP for the BlockNative gas tracker API
that implements the GasOracle trait
Implementations
sourceimpl BlockNative
impl BlockNative
sourcepub fn new(api_key: String) -> Self
pub fn new(api_key: String) -> Self
Creates a new BlockNative gas oracle.
sourcepub fn with_client(client: Client, api_key: String) -> Self
pub fn with_client(client: Client, api_key: String) -> Self
sourcepub fn category(self, gas_category: GasCategory) -> Self
pub fn category(self, gas_category: GasCategory) -> Self
Sets the gas price category to be used when fetching the gas price.
sourcepub async fn request(&self) -> Result<BlockNativeGasResponse, GasOracleError>
pub async fn request(&self) -> Result<BlockNativeGasResponse, GasOracleError>
Perform request to Blocknative, decode response
Trait Implementations
sourceimpl Clone for BlockNative
impl Clone for BlockNative
sourcefn clone(&self) -> BlockNative
fn clone(&self) -> BlockNative
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BlockNative
impl Debug for BlockNative
sourceimpl GasOracle for BlockNative
impl GasOracle for BlockNative
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 BlockNative
impl Send for BlockNative
impl Sync for BlockNative
impl Unpin for BlockNative
impl !UnwindSafe for BlockNative
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