feat: rename TFC to MC currency across codebase, UI, and documentation

This commit is contained in:
mik-tf
2025-09-08 12:53:09 -04:00
parent a4c5feb1ab
commit f233964f22
8 changed files with 55 additions and 55 deletions

View File

@@ -99,11 +99,11 @@ impl CurrencyService {
last_updated: chrono::Utc::now(),
},
Currency {
code: "TFC".to_string(),
name: "ThreeFold Credits".to_string(),
symbol: "TFC".to_string(),
code: "MC".to_string(),
name: "Mycelium Credit".to_string(),
symbol: "MC".to_string(),
currency_type: crate::models::currency::CurrencyType::Custom("credits".to_string()),
exchange_rate_to_base: dec!(1.0), // 1 TFC = 1 USD
exchange_rate_to_base: dec!(1.0), // 1 MC = 1 USD
is_base_currency: false,
decimal_places: 2,
is_active: true,