From 018e5c231ed57b0f18e8fe5c795918e6f20cc397 Mon Sep 17 00:00:00 2001 From: chef-ryan Date: Thu, 17 Oct 2024 20:38:35 +0800 Subject: [PATCH] feat: Obording 3 new famrs (#10832) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. (Base) BRETT-ETH 0.01% // voting cap 0.5% - (New Farm) - LP Address: 0xa46179462f33b2c85134e5ec9Cac87073742560a 2. (Base) DEGEN-ETH 0.01% // voting cap 0.5% - (New Farm) - LP Address: 0xe80fd412AA92E0Ee8B86b419107616E05c00b77a 3. (Base) AERO-USDC 0.01% // voting cap 0.5% - (New Farm) - LP Address: 0xea34ea0d44b035ce1b7d87d47a77e3b251013b06 --- ## PR-Codex overview This PR introduces new farm configurations to the `baseFarmConfig` array, adding three new farms with specific parameters such as `pid`, `chainId`, `protocol`, `lpAddress`, `token0`, `token1`, and `feeAmount`. ### Detailed summary - Added new farm configuration with `pid: 55`, `lpAddress: '0xEa34EA0D44b035ce1B7D87D47a77E3B251013b06'`, `token0: baseTokens.usdc`, `token1: baseTokens.aero`. - Added new farm configuration with `pid: 54`, `lpAddress: '0xe80fd412AA92E0Ee8B86b419107616E05c00b77a'`, `token0: baseTokens.weth`, `token1: baseTokens.degen`. - Added new farm configuration with `pid: 53`, `lpAddress: '0xa46179462f33b2c85134e5ec9Cac87073742560a'`, `token0: baseTokens.weth`, `token1: baseTokens.brett`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --------- Co-authored-by: chefmomota --- packages/farms/src/farms/base.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/packages/farms/src/farms/base.ts b/packages/farms/src/farms/base.ts index 09884a443bbea..dd0134c86a3d9 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: 55, + chainId: ChainId.BASE, + protocol: Protocol.V3, + lpAddress: '0xEa34EA0D44b035ce1B7D87D47a77E3B251013b06', + token0: baseTokens.usdc, + token1: baseTokens.aero, + feeAmount: FeeAmount.LOWEST, + }, + { + pid: 54, + chainId: ChainId.BASE, + protocol: Protocol.V3, + lpAddress: '0xe80fd412AA92E0Ee8B86b419107616E05c00b77a', + token0: baseTokens.weth, + token1: baseTokens.degen, + feeAmount: FeeAmount.LOWEST, + }, + { + pid: 53, + chainId: ChainId.BASE, + protocol: Protocol.V3, + lpAddress: '0xa46179462f33b2c85134e5ec9Cac87073742560a', + token0: baseTokens.weth, + token1: baseTokens.brett, + feeAmount: FeeAmount.LOWEST, + }, { pid: 52, chainId: ChainId.BASE,