Trait reth::rpc::api::clients::Web3ApiClient

source ·
pub trait Web3ApiClient: ClientT {
    // Provided methods
    fn client_version<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<String, Error>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: Sync + 'async_trait { ... }
    fn sha3<'life0, 'async_trait>(
        &'life0 self,
        input: Bytes,
    ) -> Pin<Box<dyn Future<Output = Result<FixedBytes<32>, Error>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: Sync + 'async_trait { ... }
}
Available on crate feature client only.
Expand description

Client implementation for the Web3Api RPC API.

Provided Methods§

source

fn client_version<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<String, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: Sync + 'async_trait,

Returns current client version.

source

fn sha3<'life0, 'async_trait>( &'life0 self, input: Bytes, ) -> Pin<Box<dyn Future<Output = Result<FixedBytes<32>, Error>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: Sync + 'async_trait,

Returns sha3 of the given data.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<TypeJsonRpseeInteral> Web3ApiClient for TypeJsonRpseeInteral
where TypeJsonRpseeInteral: ClientT,