brk_mempool 0.3.0-beta.8

Bitcoin mempool monitor with fee estimation
Documentation
1
2
3
4
5
6
7
8
9
10
use brk_rpc::{BlockTemplateTx, RawTx};
use brk_types::{FeeRate, MempoolEntryInfo, Txid};
use rustc_hash::FxHashMap;

pub struct Fetched {
    pub entries_info: Vec<MempoolEntryInfo>,
    pub new_raws: FxHashMap<Txid, RawTx>,
    pub gbt: Vec<BlockTemplateTx>,
    pub min_fee: FeeRate,
}