Skip to content

Commit

Permalink
add adapters for 9mm v2 and v3
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Dec 19, 2024
1 parent da2acb5 commit a34303b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
12 changes: 12 additions & 0 deletions projects/9mm-v2/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const { getUniTVL } = require('../helper/unknownTokens')

module.exports = {
misrepresentedTokens: true,
methodology: "Factory addresses (0x3a0Fa7884dD93f3cd234bBE2A0958Ef04b05E13b for PulseChain) is used to find the LP pairs. TVL is equal to the liquidity on the AMM.",
pulse: {
tvl: getUniTVL({
factory: '0x3a0Fa7884dD93f3cd234bBE2A0958Ef04b05E13b',
useDefaultCoreAssets: true,
}),
},
}
6 changes: 6 additions & 0 deletions projects/9mm-v3/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { uniV3Export } = require('../helper/uniswapV3')

module.exports = uniV3Export({
pulse: { factory: '0xe50dbdc88e87a2c92984d794bcf3d1d76f619c68', fromBlock: 18942139, } ,
base: { factory: '0x7b72C4002EA7c276dd717B96b20f4956c5C904E7', fromBlock: 15754625, }
})

0 comments on commit a34303b

Please sign in to comment.