brk_computer 0.11.0

A Bitcoin dataset computer built on top of brk_indexer
Documentation
use brk_traversable::Traversable;
use brk_types::{PartsPerMillion32, PartsPerMillion64, StoredF32};
use vecdb::{Database, Rw, StorageMode};

use crate::internal::{LazyPerBlock, LazyRatioPerBlock, PerBlock, PercentPerBlock, RatioPerBlock};

#[derive(Clone, Traversable)]
pub struct DormancyVecs {
    pub supply_adj: LazyPerBlock<StoredF32>,
    pub flow: LazyPerBlock<StoredF32>,
}

#[derive(Traversable)]
pub struct Vecs<M: StorageMode = Rw> {
    #[traversable(skip)]
    pub(crate) db: Database,
    pub puell_multiple: RatioPerBlock<PartsPerMillion64, M>,
    pub nvt: LazyRatioPerBlock<PartsPerMillion64>,
    pub gini: PercentPerBlock<PartsPerMillion32, M>,
    pub rhodl_ratio: RatioPerBlock<PartsPerMillion64, M>,
    pub thermo_cap_multiple: LazyRatioPerBlock<PartsPerMillion64>,
    pub coindays_destroyed_supply_adj: LazyPerBlock<StoredF32>,
    pub coinyears_destroyed_supply_adj: LazyPerBlock<StoredF32>,
    pub dormancy: DormancyVecs,
    pub stock_to_flow: LazyPerBlock<StoredF32>,
    pub seller_exhaustion: PerBlock<StoredF32, M>,
}