// re-export the node api types pub use reth_node_api::{FullNodeTypes, NodeTypes}; use std::{marker::PhantomData, sync::Arc}; use reth_chainspec::ChainSpec; use reth_node_api::FullNodeComponents; use reth_node_core::{ dirs::{ChainPath, DataDirPath}, node_config::NodeConfig, rpc::api::EngineApiClient, }; use reth_payload_builder::PayloadBuilderHandle; use reth_provider::ChainSpecProvider; use reth_rpc_builder::{auth::AuthServerHandle, RpcServerHandle}; use reth_tasks::TaskExecutor; use crate::{ components::NodeComponentsBuilder, rpc::{RethRpcServerHandles, RpcRegistry}, NodeAdapter, NodeAddOns, }; /// A [`crate::Node`] is a [`NodeTypes`] that comes with preconfigured components. /// /// This can be used to configure the builder with a preset of components. pub trait Node: NodeTypes + Clone { /// The type that builds the node's components. type ComponentsBuilder: NodeComponentsBuilder; /// Exposes the customizable node add-on types. type AddOns: NodeAddOns< NodeAdapter>::Components>, >; /// Returns a [`NodeComponentsBuilder`] for the node. fn components_builder(&self) -> Self::ComponentsBuilder; } /// A [`Node`] type builder #[derive(Clone, Default, Debug)] pub struct AnyNode(PhantomData<(N, AO)>, C); impl AnyNode { /// Configures the types of the node. pub fn types(self) -> AnyNode { AnyNode::(PhantomData::<(T, ())>, self.1) } /// Sets the node components builder. pub const fn components_builder(&self, value: T) -> AnyNode { AnyNode::(PhantomData::<(N, ())>, value) } } impl NodeTypes for AnyNode where N: FullNodeTypes, C: Send + Sync + Unpin + 'static, AO: Send + Sync + Unpin + Clone + 'static, { type Primitives = N::Primitives; type Engine = N::Engine; } impl Node for AnyNode where N: FullNodeTypes + Clone, C: NodeComponentsBuilder + Clone + Sync + Unpin + 'static, AO: NodeAddOns>, { type ComponentsBuilder = C; type AddOns = AO; fn components_builder(&self) -> Self::ComponentsBuilder { self.1.clone() } } /// The launched node with all components including RPC handlers. /// /// This can be used to interact with the launched node. #[derive(Debug, Clone)] pub struct FullNode> { /// The evm configuration. pub evm_config: Node::Evm, /// The executor of the node. pub block_executor: Node::Executor, /// The node's transaction pool. pub pool: Node::Pool, /// Handle to the node's network. pub network: Node::Network, /// Provider to interact with the node's database pub provider: Node::Provider, /// Handle to the node's payload builder service. pub payload_builder: PayloadBuilderHandle, /// Task executor for the node. pub task_executor: TaskExecutor, /// Handles to the node's rpc servers pub rpc_server_handles: RethRpcServerHandles, /// The configured rpc namespaces pub rpc_registry: RpcRegistry, /// The initial node config. pub config: NodeConfig, /// The data dir of the node. pub data_dir: ChainPath, } impl FullNode where Node: FullNodeComponents, AddOns: NodeAddOns, { /// Returns the [`ChainSpec`] of the node. pub fn chain_spec(&self) -> Arc { self.provider.chain_spec() } /// Returns the [`RpcServerHandle`] to the started rpc server. pub const fn rpc_server_handle(&self) -> &RpcServerHandle { &self.rpc_server_handles.rpc } /// Returns the [`AuthServerHandle`] to the started authenticated engine API server. pub const fn auth_server_handle(&self) -> &AuthServerHandle { &self.rpc_server_handles.auth } /// Returns the [`EngineApiClient`] interface for the authenticated engine API. /// /// This will send authenticated http requests to the node's auth server. pub fn engine_http_client(&self) -> impl EngineApiClient { self.auth_server_handle().http_client() } /// Returns the [`EngineApiClient`] interface for the authenticated engine API. /// /// This will send authenticated ws requests to the node's auth server. pub async fn engine_ws_client(&self) -> impl EngineApiClient { self.auth_server_handle().ws_client().await } /// Returns the [`EngineApiClient`] interface for the authenticated engine API. /// /// This will send not authenticated IPC requests to the node's auth server. #[cfg(unix)] pub async fn engine_ipc_client(&self) -> Option> { self.auth_server_handle().ipc_client().await } }