Skip to content

Commit

Permalink
Updated bridge contract, revised TVL calculation method. (#10063)
Browse files Browse the repository at this point in the history
* Create BridgemMantaLock

* Delete projects/BridgemMantaLock

* Create bridgem manta tvl

* Create bridgem ethereum tvl

* Update index.js

* merge adapters

---------

Co-authored-by: jiangxiaop <[email protected]>
Co-authored-by: g1nt0ki <[email protected]>
  • Loading branch information
3 people authored May 1, 2024
1 parent 3dc4da7 commit 7289701
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions projects/bridgem/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
const { sumTokensExport } = require("../helper/unwrapLPs");

const STONE = '0xEc901DA9c68E90798BbBb74c11406A32A70652C3';
const AtomicLockContract = '0x19727db22Cba70B1feE40337Aba69D83c6741caF';

const USDC = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48';
const ESTONE = '0x7122985656e38BDC0302Db86685bb972b145bD3C';
const LOCK_CONTRACT = '0xD6572c7Cd671ECF75d920aDcd200B00343959600';

module.exports = {
methodology: 'counts the number of STONE in the AtomicLockContract.',
manta: {
tvl: sumTokensExport({ owner: AtomicLockContract, tokens: [STONE] }),
},
ethereum: {
tvl: sumTokensExport({ owner: LOCK_CONTRACT, tokens: [USDC, ESTONE] }),
}
};

0 comments on commit 7289701

Please sign in to comment.