bitcoin-heuristics 0.1.0

Pattern detection heuristics for Bitcoin on-chain analytics — consolidations, distributions, CoinJoin, fee spikes, dormant supply reactivation and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod btc_price_encoder;
pub mod change_detector;
pub mod fee_percentile;
pub mod lightning_detector;
pub mod topology_analyzer;
pub mod utxo_age_classifier;

pub use btc_price_encoder::encode_btc_price;
pub use change_detector::detect_change;
pub use fee_percentile::calculate_fee_percentile;
pub use lightning_detector::detect_lightning_indicator;
pub use topology_analyzer::analyze_topology;
pub use utxo_age_classifier::{
    analyze_utxo_ages, calculate_utxo_age_variance, encode_utxo_age_log,
};