use jsonrpsee::{core::RpcResult, proc_macros::rpc};
#[cfg(any(feature = "client", feature = "server"))]
#[rpc(client, server, namespace = "web3")]
pub trait Web3Api {
#[method(name = "clientVersion")]
async fn client_version(&self) -> RpcResult<String>;
}