Skip to content

Commit f65b8eb

Browse files
committed
fix gaspump DefiLlama#11499
1 parent 1878c28 commit f65b8eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/gaspump/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { fetchURL } = require('../helper/utils');
44
async function fetchTvl(api) {
55
const response = await fetchURL("https://api.gas111.com/api/v1/internal/tokens/balances-list")
66
for (const pool of response.data) {
7-
api.add(ADDRESSES.ton.TON, pool.bonding_curve_balance/2) // we include only the TON part of the pool
7+
api.add(ADDRESSES.ton.TON, pool.bonding_curve_balance)
88
}
99
}
1010

0 commit comments

Comments
 (0)