From d027bf555547b5c79c769f3851d1f307319256be Mon Sep 17 00:00:00 2001 From: Chef Yogi <99634186+Chef-Yogi@users.noreply.github.com> Date: Fri, 4 Oct 2024 01:18:09 +0800 Subject: [PATCH] chore: list new gauges on arb&bsc (#10781) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## 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}` --- packages/gauges/src/constants/config/prod.ts | 37 ++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/packages/gauges/src/constants/config/prod.ts b/packages/gauges/src/constants/config/prod.ts index 4d4d424343518..b5b96e9a3b0b2 100644 --- a/packages/gauges/src/constants/config/prod.ts +++ b/packages/gauges/src/constants/config/prod.ts @@ -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, + }, ]