Skip to content

Commit 781c194

Browse files
authored
Merge branch 'DefiLlama:main' into main
2 parents daf838a + 65047ed commit 781c194

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

projects/eclipse-bridge/index.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
const { sumTokens2 } = require("../helper/unwrapLPs");
2+
3+
module.exports = {
4+
ethereum: {
5+
tvl: (api) =>
6+
sumTokens2({
7+
api,
8+
owner: '0xd7e4b67e735733ac98a88f13d087d8aac670e644',
9+
fetchCoValentTokens: true,
10+
permitFailure: true
11+
}),
12+
},
13+
};

projects/shape/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const { sumTokens2 } = require("../helper/unwrapLPs");
2+
3+
module.exports = {
4+
ethereum: {
5+
tvl: (api) =>
6+
sumTokens2({
7+
api,
8+
owners: [
9+
"0x62Edd5f4930Ea92dCa3fB81689bDD9b9d076b57B",
10+
'0xEB06fFa16011B5628BaB98E29776361c83741dd3'
11+
],
12+
fetchCoValentTokens: true,
13+
}),
14+
},
15+
};

projects/zora/index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
const { sumTokens2 } = require("../helper/unwrapLPs");
2+
3+
module.exports = {
4+
ethereum: {
5+
tvl: (api) =>
6+
sumTokens2({
7+
api,
8+
owners: [
9+
"0x3e2Ea9B92B7E48A52296fD261dc26fd995284631",
10+
"0x1a0ad011913A150f69f6A19DF447A0CfD9551054",
11+
],
12+
fetchCoValentTokens: true,
13+
}),
14+
},
15+
};

0 commit comments

Comments
 (0)