Trait fc_rpc::Web3ApiServer

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

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

Server trait implementation for the Web3Api RPC API.

Required Methods§

fn client_version(&self) -> Result<String, Error>

Returns current client version.

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

Returns sha3 of the given data

Provided Methods§

fn into_rpc(self) -> RpcModule<Self>

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

Implementors§

source§

impl<B, C> Web3ApiServer for Web3<B, C>where B: BlockT, C: ProvideRuntimeApi<B> + HeaderBackend<B> + 'static, C::Api: EthereumRuntimeRPCApi<B>,