Skip to content

Commit da067d1

Browse files
authored
felix stable (DefiLlama#15166)
1 parent c0d4973 commit da067d1

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

projects/felix/index.js

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
const { getLiquityV2Tvl } = require('../helper/liquity')
2+
const { staking } = require("../helper/staking");
23

3-
const config = {
4-
hyperliquid: '0x9De1e57049c475736289Cb006212F3E1DCe4711B'
5-
}
4+
module.exports = {
5+
hyperliquid: {
6+
tvl: getLiquityV2Tvl('0x9De1e57049c475736289Cb006212F3E1DCe4711B')
7+
},
8+
ethereum: {
9+
tvl: staking('0x36f586A30502AE3afb555b8aA4dCc05d233c2ecE', '0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b')
610

7-
Object.keys(config).forEach(chain => {
8-
module.exports[chain] = {
9-
tvl: getLiquityV2Tvl(config[chain])
1011
}
11-
})
12+
}

0 commit comments

Comments
 (0)