diff --git a/CHANGELOG.md b/CHANGELOG.md index ed55dec87c..4a5be63fc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ ### Chores +- Defined a proxy for currency conversions ([PR 3121](https://github.com/input-output-hk/daedalus/pull/3121)) - Switched Daedalus to be built with Nix flakes ([PR 3008](https://github.com/input-output-hk/daedalus/pull/3008)) - Update `cardano-wallet` to `v2023-04-14` ([PR 3104](https://github.com/input-output-hk/daedalus/pull/3104)) - Prepared an official `aarch64-darwin` build ([PR 3116](https://github.com/input-output-hk/daedalus/pull/3116)) diff --git a/source/renderer/app/config/currencyConfig.coingecko.ts b/source/renderer/app/config/currencyConfig.coingecko.ts index d40bc663f4..daefdf2a83 100644 --- a/source/renderer/app/config/currencyConfig.coingecko.ts +++ b/source/renderer/app/config/currencyConfig.coingecko.ts @@ -26,7 +26,7 @@ type CurrencyRateGeckoResponse = Array<{ const id = 'coingecko'; const name = 'CoinGecko'; const website = 'https://www.coingecko.com/en/api'; -const hostname = 'api.coingecko.com'; +const hostname = 'coingecko.live-mainnet.eks.lw.iog.io'; const version = 'v3'; const pathBase = `api/${version}`; const requests = {