brk_mempool 0.3.0-beta.11

Bitcoin mempool monitor with fee estimation
Documentation
use std::{sync::Arc, time::Duration};

use brk_types::{AddrBytes, BlockHash, Height, MempoolInfo};

use crate::{
    Snapshot,
    cycle::{TxAdded, TxRemoved},
};

/// One pull cycle's worth of changes. Produced by
/// [`crate::Mempool::tick`] after fetch → prepare → apply → prevouts →
/// rebuild. The snapshot is always present (the rebuilder runs every
/// cycle). Compare `next_block_hash` across cycles if you need to
/// detect whether the projection actually changed.
pub struct Cycle {
    pub added: Vec<TxAdded>,
    pub removed: Vec<TxRemoved>,
    /// Addresses that went from 0 → 1+ live mempool txs this cycle.
    /// Same-cycle enter-then-leave is collapsed (no event in either list).
    pub addr_enters: Vec<AddrBytes>,
    /// Addresses that went from 1+ → 0 live mempool txs this cycle.
    pub addr_leaves: Vec<AddrBytes>,
    /// Latest confirmed block. Compare to the prior cycle's `tip_hash`
    /// to detect a new block.
    pub tip_hash: BlockHash,
    pub tip_height: Height,
    pub info: MempoolInfo,
    pub snapshot: Arc<Snapshot>,
    pub took: Duration,
}