Skip to content

Commit d565397

Browse files
authored
Add Level (DefiLlama#11491)
1 parent 7ecc1a8 commit d565397

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

projects/level-money/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const ADDRESSES = require('../helper/coreAssets.json')
2+
const { sumTokensExport } = require("../helper/unwrapLPs");
3+
4+
const LEVEL_STAKING_CONTRACT = '0x7FDA203f6F77545548E984133be62693bCD61497';
5+
6+
const TOKEN_CONTRACTS = [
7+
ADDRESSES.ethereum.USDT, // USDT
8+
ADDRESSES.ethereum.USDC, // USDC
9+
];
10+
11+
module.exports = {
12+
ethereum: {
13+
tvl: sumTokensExport({
14+
owner: LEVEL_STAKING_CONTRACT,
15+
tokens: TOKEN_CONTRACTS,
16+
}),
17+
}
18+
};

0 commit comments

Comments
 (0)