File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
source/renderer/app/config Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -26,30 +26,24 @@ type CurrencyRateGeckoResponse = Array<{
2626const id = 'coingecko' ;
2727const name = 'CoinGecko' ;
2828const website = 'https://www.coingecko.com/en/api' ;
29- const hostname = '127.0.0.1 ' ;
29+ const hostname = 'coingecko.dev-preprod.eks.lw.iog.io ' ;
3030const version = 'v3' ;
3131const pathBase = `api/${ version } ` ;
3232const 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 } ) ,
You can’t perform that action at this time.
0 commit comments