Trait reth_node_api::node::NodeAddOns

source ·
pub trait NodeAddOns<N: FullNodeComponents>:
    Send
    + Sync
    + Unpin
    + Clone
    + 'static {
    type EthApi: EthApiTypes + Send + Clone;
}
Expand description

Customizable node add-on types.

Required Associated Types§

source

type EthApi: EthApiTypes + Send + Clone

The core eth namespace API type to install on the RPC server (see reth_rpc_eth_api::EthApiServer).

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<N: FullNodeComponents> NodeAddOns<N> for ()

Implementors§