Skip to content

Commit

Permalink
add support for mog
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Aug 9, 2024
1 parent 0a2d111 commit 49fb492
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/imf-money/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
const { sumTokensExport } = require('../helper/unwrapLPs')
const PEPE_TOKEN_CONTRACT = '0x6982508145454Ce325dDbE47a25d4ec3d2311933';
const MOG_TOKEN_CONTRACT = '0xaaee1a9723aadb7afa2810263653a34ba2c21c7a';
const LOCKED_MONEY_CONTRACT = '0x30F75834cB406b7093208Fda7F689938aCBD1EeB'; //wallet that has all the locked money

module.exports = {
methodology: 'Sums the value of deposited memes',
ethereum: {
tvl: sumTokensExport({ owner: LOCKED_MONEY_CONTRACT, token: PEPE_TOKEN_CONTRACT}),
tvl: sumTokensExport({ owner: LOCKED_MONEY_CONTRACT, tokens: [PEPE_TOKEN_CONTRACT,MOG_TOKEN_CONTRACT]}),
}
};

0 comments on commit 49fb492

Please sign in to comment.