mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-28 21:05:32 +08:00
14 lines
370 B
JavaScript
14 lines
370 B
JavaScript
|
|
async function tvl(api) {
|
|
const LPETH_CONTRACT = "0xF3a75E087A92770b4150fFF14c6d36FB07796252"
|
|
const liabilities = await api.call({ abi: 'uint256:liabilities', target: LPETH_CONTRACT, })
|
|
api.addGasToken(liabilities)
|
|
}
|
|
|
|
module.exports = {
|
|
methodology: 'Counts the amount of deposited ETH in the LPETH contract.',
|
|
doublecounted: true,
|
|
ethereum: {
|
|
tvl
|
|
}
|
|
} |