From c6275d41c81f84945c52eb04ece829ccecc4e6c1 Mon Sep 17 00:00:00 2001 From: Chef Yogi <99634186+Chef-Yogi@users.noreply.github.com> Date: Mon, 16 Sep 2024 20:14:57 +0800 Subject: [PATCH] chore: list new farms on eth and base (#10685) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview The focus of this PR is to add new farm configurations for BASE and ETHEREUM chains. ### Detailed summary - Added new farm configurations for BASE chain with lpAddress, tokens, and feeAmount - Added new farm configurations for ETHEREUM chain with lpAddress, tokens, and feeAmount > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- packages/farms/src/farms/base.ts | 27 +++++++++++++++++++++++++++ packages/farms/src/farms/eth.ts | 27 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/packages/farms/src/farms/base.ts b/packages/farms/src/farms/base.ts index f9eac9aeafaab..4b6b2968ae547 100644 --- a/packages/farms/src/farms/base.ts +++ b/packages/farms/src/farms/base.ts @@ -72,6 +72,33 @@ const pinnedFarmConfig: UniversalFarmConfig[] = [ export const baseFarmConfig: UniversalFarmConfig[] = [ ...pinnedFarmConfig, + { + pid: 49, + chainId: ChainId.BASE, + protocol: Protocol.V3, + lpAddress: '0x55B40f8911402568414ec6e7e0d2D87c3D19e65C', + token0: baseTokens.cbBTC, + token1: baseTokens.usdbc, + feeAmount: FeeAmount.LOWEST, + }, + { + pid: 48, + chainId: ChainId.BASE, + protocol: Protocol.V3, + lpAddress: '0xb94b22332ABf5f89877A14Cc88f2aBC48c34B3Df', + token0: baseTokens.usdc, + token1: baseTokens.cbBTC, + feeAmount: FeeAmount.LOWEST, + }, + { + pid: 47, + chainId: ChainId.BASE, + protocol: Protocol.V3, + lpAddress: '0xC211e1f853A898Bd1302385CCdE55f33a8C4B3f3', + token0: baseTokens.weth, + token1: baseTokens.cbBTC, + feeAmount: FeeAmount.LOWEST, + }, { pid: 46, chainId: ChainId.BASE, diff --git a/packages/farms/src/farms/eth.ts b/packages/farms/src/farms/eth.ts index a1d3a393e6208..09bcf72186abc 100644 --- a/packages/farms/src/farms/eth.ts +++ b/packages/farms/src/farms/eth.ts @@ -82,6 +82,33 @@ const pinnedFarmConfig: UniversalFarmConfig[] = [ export const ethereumFarmConfig: UniversalFarmConfig[] = [ ...pinnedFarmConfig, + { + pid: 81, + chainId: ChainId.ETHEREUM, + protocol: Protocol.V3, + lpAddress: '0x5fbbC3380DD9f7253Aa10838DD641dAc8242F817', + token0: ethereumTokens.usdc, + token1: ethereumTokens.cbBTC, + feeAmount: FeeAmount.LOW, + }, + { + pid: 80, + chainId: ChainId.ETHEREUM, + protocol: Protocol.V3, + lpAddress: '0xF84AAd7ab687b1BB1FBB190344240b60B39e5b79', + token0: ethereumTokens.weth, + token1: ethereumTokens.cbBTC, + feeAmount: FeeAmount.LOW, + }, + { + pid: 79, + chainId: ChainId.ETHEREUM, + protocol: Protocol.V3, + lpAddress: '0x3E253Ae716eBf5047d6deeE8f2607121ceA08482', + token0: ethereumTokens.wbtc, + token1: ethereumTokens.cbBTC, + feeAmount: FeeAmount.LOWEST, + }, { chainId: ChainId.ETHEREUM, protocol: Protocol.STABLE,