We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 650e6e6 commit 11dc44eCopy full SHA for 11dc44e
1 file changed
src/services/ExchangeService.js
@@ -356,7 +356,7 @@ class Bancor {
356
clearTimeout(bancorTimeout);
357
const tokens = await this.get(`currencies/tokens?limit=50&skip=0&fromCurrencyCode=USD&includeTotal=true&orderBy=volume24h&sortOrder=desc&blockchainType=eos`, bancorEosApi).catch(() => null);
358
if(!tokens) return;
359
- this.prices = tokens.currencies.page.reduce((acc,x) => {
+ this.prices = tokens.page.reduce((acc,x) => {
360
acc[x.code] = x.price;
361
return acc;
362
}, {});
0 commit comments