Skip to content

Commit

Permalink
chore: list new gauges on arb&bsc (#10781)
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 introduces new gauge configurations for various token pairs in
the `prod.ts` file, specifically for the `ARBITRUM_ONE` and `BSC`
chains. It adds details such as `gid`, `pairName`, `address`, `chainId`,
`type`, and associated token addresses.

### Detailed summary
- Added new gauge configurations:
- Gauge with `gid: 546`, pair `EGP-WETH`, on `ARBITRUM_ONE`, type `V3`,
fee tier `HIGH`.
- Gauge with `gid: 547`, pair `MGP-WETH YieldIQ`, on `ARBITRUM_ONE`,
type `ALM`.
- Gauge with `gid: 548`, pair `wstETH-mstETH YieldIQ`, on
`ARBITRUM_ONE`, type `ALM`.
- Gauge with `gid: 549`, pair `ETH-wstETH YieldIQ`, on `BSC`, type
`ALM`.

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

<!-- end pr-codex -->
  • Loading branch information
Chef-Yogi authored Oct 3, 2024
1 parent 8738855 commit d027bf5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions packages/gauges/src/constants/config/prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5401,4 +5401,41 @@ export const CONFIG_PROD: GaugeConfig[] = [
token1Address: baseTokens.eurc.address,
feeTier: FeeAmount.LOWEST,
},
{
gid: 546,
pairName: 'EGP-WETH',
address: '0x02c12Fd05Cb0d26579789AbCFdc58B07dB755236',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.V3,
token0Address: arbitrumTokens.egp.address,
token1Address: arbitrumTokens.weth.address,
feeTier: FeeAmount.HIGH,
},
{
gid: 547,
pairName: 'MGP-WETH YieldIQ',
address: '0x5100245A8649586a00d3FE94c6B1b29B75537258',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.ALM,
token0Address: arbitrumTokens.weth.address,
token1Address: arbitrumTokens.mgp.address,
},
{
gid: 548,
pairName: 'wstETH-mstETH YieldIQ',
address: '0x0A26ef06C183D51260Ca7434ddb510a6cd711c85',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.ALM,
token0Address: arbitrumTokens.wstETH.address,
token1Address: arbitrumTokens.mstETH.address,
},
{
gid: 549,
pairName: 'ETH-wstETH YieldIQ',
address: '0x04dE953421b8c6B627D8787dDEeE433DE3411b71',
chainId: ChainId.BSC,
type: GaugeType.ALM,
token0Address: bscTokens.eth.address,
token1Address: bscTokens.wstETH.address,
},
]

0 comments on commit d027bf5

Please sign in to comment.