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

10 lines
281 B
JavaScript

module.exports = {
fantom: {
tvl: () => 0,
staking: async (api) => {
const bal = await api.call({ abi: 'uint256:getTotalInvested', target: '0xe0d4ed2613f6c8737234d28d24b9c5d7f106bd28' })
api.add('0x80F2B8CdbC470c4DB4452Cc7e4a62F5277Db7061', bal)
},
}
}