brk_query 0.3.0-beta.9

An interface to find and format data from BRK
Documentation
use brk_error::Result;
use brk_types::{BlockFeesEntry, Cents, Dollars, Sats, TimePeriod};

use super::block_window::BlockWindow;
use crate::Query;

impl Query {
    /// Time-bucketed average block fees over `time_period`. One entry per
    /// bucket, ordered chronologically. Each entry carries the bucket's
    /// average height/timestamp, the round-half-up mean of block fees in
    /// sats, and the bucket-mean USD spot price (the spot price, not
    /// fees-in-USD: clients multiply).
    pub fn block_fees(&self, time_period: TimePeriod) -> Result<Vec<BlockFeesEntry>> {
        let bw = BlockWindow::new(self, time_period)?;
        let fees: Vec<Sats> = bw.read(&self.computer().mining.rewards.fees.block.sats)?;
        let prices: Vec<Cents> = bw.read(&self.computer().prices.spot.cents.height)?;

        Ok(bw
            .buckets
            .iter()
            .map(|b| BlockFeesEntry {
                avg_height: b.avg_height,
                timestamp: b.avg_timestamp,
                avg_fees: b.mean_rounded(&fees),
                usd: Dollars::from(b.mean_rounded(&prices)),
            })
            .collect())
    }
}