mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-30 13:52:23 +08:00
11 lines
327 B
JavaScript
11 lines
327 B
JavaScript
module.exports = {
|
|
misrepresentedTokens: true,
|
|
ethereum: {
|
|
tvl: async (_, _1, _2, { api }) => {
|
|
const tvl = await api.call({ abi: 'uint256:getContractTVL', target: '0x7623e9DC0DA6FF821ddb9EbABA794054E078f8c4'})
|
|
return {
|
|
'ethereum:0x0000000000000000000000000000000000000000': tvl
|
|
}
|
|
}
|
|
}
|
|
} |