pub trait Web3ApiServer: Sized + Send + Sync + 'static {
    // Required methods
    fn client_version(&self) -> RpcResult<String>;
    fn sha3(&self, input: Bytes) -> RpcResult<H256>;

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

Server trait implementation for the Web3Api RPC API.

Required Methods§

source

fn client_version(&self) -> RpcResult<String>

Returns current client version.

source

fn sha3(&self, input: Bytes) -> RpcResult<H256>

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.

Implementors§