Skip to content

Commit

Permalink
chore: list new farms on eth and base (#10685)
Browse files Browse the repository at this point in the history
<!--
Before opening a pull request, please read the [contributing
guidelines](https://github.com/pancakeswap/pancake-frontend/blob/develop/CONTRIBUTING.md)
first
-->


<!-- start pr-codex -->

---

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

<!-- end pr-codex -->
  • Loading branch information
Chef-Yogi authored Sep 16, 2024
1 parent 608addf commit c6275d4
Show file tree
Hide file tree
Showing 2 changed files with 54 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: 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,
Expand Down
27 changes: 27 additions & 0 deletions packages/farms/src/farms/eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit c6275d4

Please sign in to comment.