We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d4973 commit da067d1Copy full SHA for da067d1
projects/felix/index.js
@@ -1,11 +1,12 @@
1
const { getLiquityV2Tvl } = require('../helper/liquity')
2
+const { staking } = require("../helper/staking");
3
-const config = {
4
- hyperliquid: '0x9De1e57049c475736289Cb006212F3E1DCe4711B'
5
-}
+module.exports = {
+ hyperliquid: {
6
+ tvl: getLiquityV2Tvl('0x9De1e57049c475736289Cb006212F3E1DCe4711B')
7
+ },
8
+ ethereum: {
9
+ tvl: staking('0x36f586A30502AE3afb555b8aA4dCc05d233c2ecE', '0x866a2bf4e572cbcf37d5071a7a58503bfb36be1b')
10
-Object.keys(config).forEach(chain => {
- module.exports[chain] = {
- tvl: getLiquityV2Tvl(config[chain])
11
}
-})
12
+}
0 commit comments