Trait reth_node_builder::NodeAddOns

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

Customizable node add-on types.

Required Associated Types§

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§

§

impl<N> NodeAddOns<N> for ()

§

type EthApi = ()

Implementors§