reth_rpc_eth_api/node.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
//! Helper trait for interfacing with [`FullNodeComponents`].
use reth_node_api::FullNodeComponents;
use reth_rpc_eth_types::EthStateCache;
/// Helper trait to relax trait bounds on [`FullNodeComponents`].
///
/// Helpful when defining types that would otherwise have a generic `N: FullNodeComponents`. Using
/// `N: RpcNodeCore` instead, allows access to all the associated types on [`FullNodeComponents`]
/// that are used in RPC, but with more flexibility since they have no trait bounds (asides auto
/// traits).
pub trait RpcNodeCore: Clone + Send + Sync {
/// The provider type used to interact with the node.
type Provider: Send + Sync + Clone + Unpin;
/// The transaction pool of the node.
type Pool: Send + Sync + Clone + Unpin;
/// The node's EVM configuration, defining settings for the Ethereum Virtual Machine.
type Evm: Send + Sync + Clone + Unpin;
/// Network API.
type Network: Send + Sync + Clone;
/// Builds new blocks.
type PayloadBuilder: Send + Sync + Clone;
/// Returns the transaction pool of the node.
fn pool(&self) -> &Self::Pool;
/// Returns the node's evm config.
fn evm_config(&self) -> &Self::Evm;
/// Returns the handle to the network
fn network(&self) -> &Self::Network;
/// Returns the handle to the payload builder service.
fn payload_builder(&self) -> &Self::PayloadBuilder;
/// Returns the provider of the node.
fn provider(&self) -> &Self::Provider;
}
impl<T> RpcNodeCore for T
where
T: FullNodeComponents,
{
type Provider = T::Provider;
type Pool = T::Pool;
type Evm = <T as FullNodeComponents>::Evm;
type Network = <T as FullNodeComponents>::Network;
type PayloadBuilder = <T as FullNodeComponents>::PayloadBuilder;
#[inline]
fn pool(&self) -> &Self::Pool {
FullNodeComponents::pool(self)
}
#[inline]
fn evm_config(&self) -> &Self::Evm {
FullNodeComponents::evm_config(self)
}
#[inline]
fn network(&self) -> &Self::Network {
FullNodeComponents::network(self)
}
#[inline]
fn payload_builder(&self) -> &Self::PayloadBuilder {
FullNodeComponents::payload_builder(self)
}
#[inline]
fn provider(&self) -> &Self::Provider {
FullNodeComponents::provider(self)
}
}
/// Additional components, asides the core node components, needed to run `eth_` namespace API
/// server.
pub trait RpcNodeCoreExt: RpcNodeCore {
/// Returns handle to RPC cache service.
fn cache(&self) -> &EthStateCache;
}