Skip to content

Commit 686982a

Browse files
authored
Fix historical TVL data calc (DefiLlama#11467)
1 parent 186bda5 commit 686982a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/aqua-network/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ async function getData() {
99
const data = await _data
1010
const res = {}
1111
data.forEach((item) => {
12-
res[item.date] = item.tvl / 1e8
12+
res[item.date] = item.tvl / 1e7
1313
})
1414
return res
1515
}

0 commit comments

Comments
 (0)