reth-primitives-traits 0.3.1

Common types in reth.
Documentation
use crate::{FullBlock, FullBlockBody, FullBlockHeader, FullReceipt, FullSignedTx};
use core::fmt;

/// Configures all the primitive types of the node.
///
/// This trait defines the core types used throughout the node for representing
/// blockchain data. It serves as the foundation for type consistency across
/// different node implementations.
pub trait NodePrimitives:
    Send + Sync + Unpin + Clone + Default + fmt::Debug + PartialEq + Eq + 'static
{
    /// Block primitive.
    type Block: FullBlock<Header = Self::BlockHeader, Body = Self::BlockBody>;
    /// Block header primitive.
    type BlockHeader: FullBlockHeader;
    /// Block body primitive.
    type BlockBody: FullBlockBody<Transaction = Self::SignedTx, OmmerHeader = Self::BlockHeader>;
    /// Signed version of the transaction type.
    ///
    /// This represents the transaction as it exists in the blockchain - the consensus
    /// format that includes the signature and can be included in a block.
    type SignedTx: FullSignedTx;
    /// A receipt.
    type Receipt: FullReceipt;
}

/// Helper adapter type for accessing [`NodePrimitives`] block header types.
pub type HeaderTy<N> = <N as NodePrimitives>::BlockHeader;

/// Helper adapter type for accessing [`NodePrimitives`] block body types.
pub type BodyTy<N> = <N as NodePrimitives>::BlockBody;

/// Helper adapter type for accessing [`NodePrimitives`] block types.
pub type BlockTy<N> = <N as NodePrimitives>::Block;

/// Helper adapter type for accessing [`NodePrimitives`] receipt types.
pub type ReceiptTy<N> = <N as NodePrimitives>::Receipt;

/// Helper adapter type for accessing [`NodePrimitives`] signed transaction types.
pub type TxTy<N> = <N as NodePrimitives>::SignedTx;