Skip to content

Commit 7cfc8e2

Browse files
committed
[DDW-1203] Switch to the proxy URL from SRE
1 parent 3c9d0eb commit 7cfc8e2

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

source/renderer/app/config/currencyConfig.coingecko.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,30 +26,24 @@ type CurrencyRateGeckoResponse = Array<{
2626
const id = 'coingecko';
2727
const name = 'CoinGecko';
2828
const website = 'https://www.coingecko.com/en/api';
29-
const hostname = '127.0.0.1';
29+
const hostname = 'coingecko.dev-preprod.eks.lw.iog.io';
3030
const version = 'v3';
3131
const pathBase = `api/${version}`;
3232
const requests = {
3333
list: [
3434
{
3535
hostname,
36-
port: 8095,
37-
protocol: 'http',
3836
method: 'GET',
3937
path: `/${pathBase}/coins/list`,
4038
},
4139
{
4240
hostname,
43-
port: 8095,
44-
protocol: 'http',
4541
method: 'GET',
4642
path: `/${pathBase}/simple/supported_vs_currencies`,
4743
},
4844
],
4945
rate: ({ code }: LocalizedCurrency) => ({
5046
hostname,
51-
port: 8095,
52-
protocol: 'http',
5347
method: 'GET',
5448
path: `/${pathBase}/coins/markets?ids=cardano&vs_currency=${code}`,
5549
}),

0 commit comments

Comments
 (0)