subrpcer/
net.rs

1//! Net related methods.
2//!
3//! Frontier reference(s):
4//! - [Net API(s)](https://github.com/paritytech/frontier/blob/eef5723675850166da904b295b7dfa90894b1270/client/rpc-core/src/net.rs#L25-L40)
5
6impl_apis! {
7	net {
8		listening { params: [], opt_params: [] }
9		peer_count { params: [], opt_params: [] }
10		version { params: [], opt_params: [] }
11	}
12}