Skip to content

Commit

Permalink
feat: Obording 3 new famrs (#10832)
Browse files Browse the repository at this point in the history
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

<!-- start pr-codex -->

---

## 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}`

<!-- end pr-codex -->

---------

Co-authored-by: chefmomota <[email protected]>
  • Loading branch information
chef-ryan and ChefMomota authored Oct 17, 2024
1 parent f4230b6 commit 018e5c2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions packages/farms/src/farms/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 018e5c2

Please sign in to comment.