Skip to content

Commit 96c3d82

Browse files
authored
Add TVL adapter for Stakin.gg on Base (DefiLlama#14295)
1 parent 9591241 commit 96c3d82

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

projects/stakin-gg/index.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const WETH = '0x4200000000000000000000000000000000000006';
2+
const CONTRACT = '0xEF5E916de82839A8131eaac866280492966cd37C';
3+
4+
async function tvl(api) {
5+
return api.sumTokens({ tokens: [WETH], owners: [CONTRACT] });
6+
}
7+
8+
module.exports = {
9+
methodology: 'Counts WETH in the project’s main contract',
10+
start: 28896428,
11+
base: { tvl },
12+
};

0 commit comments

Comments
 (0)