From a34303b77403ce426e0ffe9838d8b39f243a8eb8 Mon Sep 17 00:00:00 2001 From: realdealshaman Date: Thu, 19 Dec 2024 14:29:55 +0000 Subject: [PATCH] add adapters for 9mm v2 and v3 --- projects/9mm-v2/index.js | 12 ++++++++++++ projects/9mm-v3/index.js | 6 ++++++ 2 files changed, 18 insertions(+) create mode 100644 projects/9mm-v2/index.js create mode 100644 projects/9mm-v3/index.js diff --git a/projects/9mm-v2/index.js b/projects/9mm-v2/index.js new file mode 100644 index 000000000000..c6d31097e986 --- /dev/null +++ b/projects/9mm-v2/index.js @@ -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, + }), + }, +} \ No newline at end of file diff --git a/projects/9mm-v3/index.js b/projects/9mm-v3/index.js new file mode 100644 index 000000000000..ad02c07b3f23 --- /dev/null +++ b/projects/9mm-v3/index.js @@ -0,0 +1,6 @@ +const { uniV3Export } = require('../helper/uniswapV3') + +module.exports = uniV3Export({ + pulse: { factory: '0xe50dbdc88e87a2c92984d794bcf3d1d76f619c68', fromBlock: 18942139, } , + base: { factory: '0x7b72C4002EA7c276dd717B96b20f4956c5C904E7', fromBlock: 15754625, } +}) \ No newline at end of file