feat(automatic-exchange-rates): add Transitive rate provider

This commit is contained in:
Herculino Trotta
2025-03-01 22:58:33 -03:00
parent c9b346b791
commit d3ea0e43da
4 changed files with 114 additions and 2 deletions

View File

@@ -95,6 +95,7 @@ class ExchangeRateService(models.Model):
SYNTH_FINANCE_STOCK = "synth_finance_stock", "Synth Finance Stock"
COINGECKO_FREE = "coingecko_free", "CoinGecko (Demo/Free)"
COINGECKO_PRO = "coingecko_pro", "CoinGecko (Pro)"
TRANSITIVE = "transitive", "Transitive (Calculated from Existing Rates)"
class IntervalType(models.TextChoices):
ON = "on", _("On")