Skip to content

Commit 8dc6f19

Browse files
committed
minor fix
1 parent b3a3b8c commit 8dc6f19

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

projects/aqua-network/index.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function tvl(time) {
3737
var aquaHistoricalData = (
3838
await utils.fetchURL(AQUA_STATS_URL)
3939
).data;
40-
40+
4141
return aquaHistoricalData.map((item) => ({
4242
date: new Date(item.date),
4343
totalLiquidityUSD: parseFloat(item.tvl) / 10e7,
@@ -46,7 +46,8 @@ function tvl(time) {
4646
}
4747

4848
module.exports = {
49+
misrepresentedTokens: true,
4950
methodology:
5051
'counts the liquidity of the Pools on AMM, data is pulled from the Aquarius API: "https://amm-api.aqua.network/api/external/v1/statistics/totals/".',
51-
stellar: {tvl},
52+
stellar: { tvl },
5253
};

0 commit comments

Comments
 (0)