mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
const { sumTokens2 } = require("../helper/unwrapLPs");
|
|
|
|
module.exports = {
|
|
ethereum: {
|
|
tvl: (api) =>
|
|
sumTokens2({
|
|
api,
|
|
owners: [
|
|
"0x4e259ee5f4136408908160dd32295a5031fa426f",
|
|
],
|
|
fetchCoValentTokens: true,
|
|
}),
|
|
},
|
|
};
|