Skip to content

Commit

Permalink
chore: list new farms and gauges on ARB (#9904)
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
This PR adds new Arb farms and gauges configurations for USD+-WETH,
USD+-ARB, and USD+-USDC pairs on Arbitrum network.

### Detailed summary
- Added new farm configurations for Arb LPs
- Added new gauge configurations for USD+-WETH, USD+-ARB, and USD+-USDC
pairs on Arbitrum network

> ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your
question}`

<!-- end pr-codex -->
  • Loading branch information
Chef-Yogi authored May 31, 2024
1 parent cb9726c commit 3114d21
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
21 changes: 21 additions & 0 deletions packages/farms/constants/arb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,27 @@ const v3TopFixedLps: FarmConfigV3[] = [

export const farmsV3 = defineFarmV3Configs([
...v3TopFixedLps,
{
pid: 51,
lpAddress: '0xa1F9159e11aD48524c16C9bf10bf440815b03e6C',
token0: arbitrumTokens.usdc,
token1: arbitrumTokens.usdplus,
feeAmount: FeeAmount.LOWEST,
},
{
pid: 50,
lpAddress: '0xf92768916015b5eBd9fa54D6BA10dA5864e24914',
token0: arbitrumTokens.arb,
token1: arbitrumTokens.usdplus,
feeAmount: FeeAmount.LOWEST,
},
{
pid: 49,
lpAddress: '0xe37304F7489ed253b2A46A1d9DabDcA3d311D22E',
token0: arbitrumTokens.weth,
token1: arbitrumTokens.usdplus,
feeAmount: FeeAmount.LOWEST,
},
{
pid: 48,
lpAddress: '0x843aC8dc6D34AEB07a56812b8b36429eE46BDd07',
Expand Down
30 changes: 30 additions & 0 deletions packages/gauges/src/constants/config/prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4102,4 +4102,34 @@ export const CONFIG_PROD: GaugeConfig[] = [
token0Address: ethereumTokens.weth.address,
token1Address: ethereumTokens.mETH.address,
},
{
gid: 415,
pairName: 'USD+-WETH',
address: '0xe37304F7489ed253b2A46A1d9DabDcA3d311D22E',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.V3,
feeTier: FeeAmount.LOWEST,
token0Address: arbitrumTokens.weth.address,
token1Address: arbitrumTokens.usdplus.address,
},
{
gid: 416,
pairName: 'USD+-ARB',
address: '0xf92768916015b5eBd9fa54D6BA10dA5864e24914',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.V3,
feeTier: FeeAmount.LOWEST,
token0Address: arbitrumTokens.arb.address,
token1Address: arbitrumTokens.usdplus.address,
},
{
gid: 417,
pairName: 'USD+-USDC',
address: '0xa1F9159e11aD48524c16C9bf10bf440815b03e6C',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.V3,
feeTier: FeeAmount.LOWEST,
token0Address: arbitrumTokens.usdc.address,
token1Address: arbitrumTokens.usdplus.address,
},
]

0 comments on commit 3114d21

Please sign in to comment.