use jsonrpsee::{core::RpcResult, proc_macros::rpc}; use reth_primitives::U64; /// Net rpc interface. #[cfg_attr(not(feature = "client"), rpc(server, namespace = "net"))] #[cfg_attr(feature = "client", rpc(server, client, namespace = "net"))] pub trait NetApi { /// Returns the network ID. #[method(name = "version")] fn version(&self) -> RpcResult; /// Returns number of peers connected to node. #[method(name = "peerCount")] fn peer_count(&self) -> RpcResult; /// Returns true if client is actively listening for network connections. /// Otherwise false. #[method(name = "listening")] fn is_listening(&self) -> RpcResult; }