reth_node_api

Trait NodeTypes

Source
pub trait NodeTypes:
    Send
    + Sync
    + Unpin
    + 'static {
    type Primitives: NodePrimitives;
    type ChainSpec: EthChainSpec;
    type StateCommitment: StateCommitment;
}
Expand description

The type that configures the essential types of an Ethereum-like node.

This includes the primitive types of a node and chain specification.

This trait is intended to be stateless and only define the types of the node.

Required Associated Types§

Source

type Primitives: NodePrimitives

The node’s primitive types, defining basic operations and structures.

Source

type ChainSpec: EthChainSpec

The type used for configuration of the EVM.

Source

type StateCommitment: StateCommitment

The type used to perform state commitment operations.

Implementors§

Source§

impl<P, C, S> NodeTypes for AnyNodeTypes<P, C, S>
where P: NodePrimitives + Send + Sync + Unpin + 'static, C: EthChainSpec + 'static, S: StateCommitment,

Source§

impl<P, E, C, S> NodeTypes for AnyNodeTypesWithEngine<P, E, C, S>
where P: NodePrimitives + Send + Sync + Unpin + 'static, E: EngineTypes + Send + Sync + Unpin, C: EthChainSpec + 'static, S: StateCommitment,

Source§

impl<Types, DB> NodeTypes for NodeTypesWithDBAdapter<Types, DB>
where Types: NodeTypes, DB: Send + Sync + Unpin + 'static,