Browse Source
Feature/add coingecko as default data source (#1775)
* Add CoinGecko as a default data source
* Update changelog
pull/1777/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/configuration.service.ts
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
- Added `COINGECKO` as a default to `DATA_SOURCES` |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Harmonized the axis style of charts |
|
|
|
|
|
@ -19,7 +19,7 @@ export class ConfigurationService { |
|
|
|
CACHE_TTL: num({ default: 1 }), |
|
|
|
DATA_SOURCE_PRIMARY: str({ default: DataSource.YAHOO }), |
|
|
|
DATA_SOURCES: json({ |
|
|
|
default: [DataSource.MANUAL, DataSource.YAHOO] |
|
|
|
default: [DataSource.COINGECKO, DataSource.MANUAL, DataSource.YAHOO] |
|
|
|
}), |
|
|
|
ENABLE_FEATURE_BLOG: bool({ default: false }), |
|
|
|
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: bool({ default: false }), |
|
|
|