Files
DefiLlama-Adapters/projects/chainge.js
Real Shaman cb3f4ab7e9 add methodology to chainge finance
add methodology to chainge finance
2021-11-17 18:58:39 +00:00

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
}