mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
14 lines
300 B
JavaScript
14 lines
300 B
JavaScript
const utils = require('./helper/utils');
|
|
|
|
// fusion
|
|
async function fetch() {
|
|
let tvl = await utils.fetchURL('https://info.chainge.finance/api/v1/info/getInfoOuterTvl')
|
|
|
|
return tvl.data.data.totalTvl
|
|
}
|
|
|
|
module.exports = {
|
|
methodology: "assets in liquidity are counted as TVL",
|
|
fetch
|
|
}
|