We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3a3b8c commit 8dc6f19Copy full SHA for 8dc6f19
projects/aqua-network/index.js
@@ -37,7 +37,7 @@ function tvl(time) {
37
var aquaHistoricalData = (
38
await utils.fetchURL(AQUA_STATS_URL)
39
).data;
40
-
+
41
return aquaHistoricalData.map((item) => ({
42
date: new Date(item.date),
43
totalLiquidityUSD: parseFloat(item.tvl) / 10e7,
@@ -46,7 +46,8 @@ function tvl(time) {
46
}
47
48
module.exports = {
49
+ misrepresentedTokens: true,
50
methodology:
51
'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/".',
- stellar: {tvl},
52
+ stellar: { tvl },
53
};
0 commit comments