Trait reth::core::rpc::api::servers::Web3ApiServer

source ·
pub trait Web3ApiServer: Sized + Send + Sync + 'static {
    // Required methods
    fn client_version<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<String, ErrorObject<'static>>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
    fn sha3(&self, input: Bytes) -> Result<FixedBytes<32>, ErrorObject<'static>>;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self> { ... }
}
Expand description

Server trait implementation for the Web3Api RPC API.

Required Methods§

source

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

Returns current client version.

source

fn sha3(&self, input: Bytes) -> Result<FixedBytes<32>, ErrorObject<'static>>

Returns sha3 of the given data.

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>

Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<N> Web3ApiServer for Web3Api<N>
where N: NetworkInfo + 'static,

source§

fn client_version<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<String, ErrorObject<'static>>> + Send + 'async_trait>>
where 'life0: 'async_trait, Web3Api<N>: 'async_trait,

Handler for web3_clientVersion

source§

fn sha3(&self, input: Bytes) -> Result<FixedBytes<32>, ErrorObject<'static>>

Handler for web3_sha3

Implementors§