Files
g1nt0ki f9f37f8d82 Tvl-v2 (#9466)
* use tvl function v2

* refactor addFundsInMasterChef

* replace usage of timestamp field

* more refactoring

* more refactoring
2024-03-21 13:56:53 +05:30

14 lines
303 B
JavaScript

const st_tao = "0xB60acD2057067DC9ed8c083f5aa227a244044fD6"
async function tvl(api) {
const supply = await api.call({ abi: 'erc20:totalSupply', target: st_tao })
api.add(st_tao, supply)
}
module.exports = {
methodology: "TVL counts tokens staked by the protocol.",
ethereum: {
tvl,
},
}