Files
DefiLlama-Adapters/projects/metapool.js
2021-09-16 08:26:52 +01:00

17 lines
306 B
JavaScript

const utils = require('./helper/utils');
async function tvl() {
const totalTvl = await utils.fetchURL('http://validators.narwallets.com:7000/metrics_json')
return {
near: totalTvl.data.tvl
}
}
module.exports = {
methodology: 'TVL counts the NEAR tokens that are staked.',
tvl,
}