alloy-consensus 2.0.1

Ethereum consensus interface
Documentation
//! Helpers for conditional transactions.

/// Contains attributes of a block that are relevant for block conditional transactions.
///
/// These attributes are used to determine preconditions for inclusion in the block with the given
/// attributes (ERC-4337 transactions)
#[derive(Debug, Clone, Copy, Default, Eq, PartialEq)]
pub struct BlockConditionalAttributes {
    /// The number of the block.
    pub number: u64,
    /// The block's timestamp
    pub timestamp: u64,
}

impl BlockConditionalAttributes {
    /// Creates a new `BlockConditionalAttributes` with the given block number and timestamp.
    pub const fn new(number: u64, timestamp: u64) -> Self {
        Self { number, timestamp }
    }
}