global: snapshot

This commit is contained in:
nym21
2026-03-22 12:19:06 +01:00
parent f731f0d9d0
commit 514fdc40ee
35 changed files with 732 additions and 745 deletions
+4 -4
View File
@@ -4470,8 +4470,8 @@ impl SeriesTree_Cointime_Adjusted {
pub fn new(client: Arc<BrkClientBase>, base_path: String) -> Self {
Self {
inflation_rate: BpsPercentRatioPattern::new(client.clone(), "cointime_adj_inflation_rate".to_string()),
tx_velocity_native: SeriesPattern1::new(client.clone(), "cointime_adj_tx_velocity".to_string()),
tx_velocity_fiat: SeriesPattern1::new(client.clone(), "cointime_adj_tx_velocity_fiat".to_string()),
tx_velocity_native: SeriesPattern1::new(client.clone(), "cointime_adj_tx_velocity_btc".to_string()),
tx_velocity_fiat: SeriesPattern1::new(client.clone(), "cointime_adj_tx_velocity_usd".to_string()),
}
}
}
@@ -6345,8 +6345,8 @@ pub struct SeriesTree_Supply_Velocity {
impl SeriesTree_Supply_Velocity {
pub fn new(client: Arc<BrkClientBase>, base_path: String) -> Self {
Self {
native: SeriesPattern1::new(client.clone(), "velocity".to_string()),
fiat: SeriesPattern1::new(client.clone(), "velocity_fiat".to_string()),
native: SeriesPattern1::new(client.clone(), "velocity_btc".to_string()),
fiat: SeriesPattern1::new(client.clone(), "velocity_usd".to_string()),
}
}
}