Skip to content

Commit

Permalink
[Fix]: Hyperlock tvl-ish (#9417)
Browse files Browse the repository at this point in the history
* fix: hyperlock tvl-ish

* feat: lint

* code refactor

---------

Co-authored-by: g1nt0ki <[email protected]>
  • Loading branch information
phijfry and g1nt0ki authored Mar 18, 2024
1 parent 06b2ef7 commit 57d74a4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions projects/hyperlock/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
const { sumTokensExport } = require('../helper/unwrapLPs')
const { sumTokensExport } = require("../helper/unwrapLPs");

const v2Deposits = "0xC3EcaDB7a5faB07c72af6BcFbD588b7818c4a40e";
const v3Deposits = "0xc28EffdfEF75448243c1d9bA972b97e32dF60d06";

// https://docs.hyperlock.finance/developers/hyperlock-contracts
module.exports = {
doublecounted: true,
blast: {
tvl: sumTokensExport({ owners: ['0xc28EffdfEF75448243c1d9bA972b97e32dF60d06', '0xC3EcaDB7a5faB07c72af6BcFbD588b7818c4a40e'], resolveUniV3: true, })
}
}
tvl: sumTokensExport({ owners: [v2Deposits, v3Deposits], tokens: ["0x12c69bfa3fb3cba75a1defa6e976b87e233fc7df"], resolveUniV3: true, resolveLP: true }),
},
};

0 comments on commit 57d74a4

Please sign in to comment.