From ac2da9d2eddb3bf458bbbc20a165e980a6bd0613 Mon Sep 17 00:00:00 2001 From: chefBingbong <133646395+ChefBingbong@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:25:55 +0000 Subject: [PATCH] fix: gauage gid correction (#8861) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview ### Detailed summary - The focus of this PR is to update the configuration file `prod.ts` in the `constants/config` directory. - Notable changes include: - Updated the `gid`, `pairName`, `address`, `chainId`, `type`, `token0Address`, `token1Address`, and `feeTier` for the gauge with `gid` 240. - Removed the gauge with `gid` 241 for the pair `MGP-WETH`. - Added a new gauge with `gid` 241 for the pair `MGP-WETH` with updated `address`, `chainId`, `type`, `token0Address`, `token1Address`, and `feeTier`. - Added a new gauge with `gid` 242 for the pair `RDP-BNB`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- packages/gauges/src/constants/config/prod.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/gauges/src/constants/config/prod.ts b/packages/gauges/src/constants/config/prod.ts index 106ef84e418b0..ef66fc5831c66 100644 --- a/packages/gauges/src/constants/config/prod.ts +++ b/packages/gauges/src/constants/config/prod.ts @@ -2367,16 +2367,6 @@ export const CONFIG_PROD: GaugeConfig[] = [ }, { gid: 240, - pairName: 'MGP-WETH', - address: '0x4E910E367C2DbF42cdB8D6b041033793fe480803', - chainId: ChainId.ARBITRUM_ONE, - type: GaugeType.V2, - token0Address: arbitrumTokens.weth.address, - token1Address: arbitrumTokens.mgp.address, - feeTier: FeeAmount.MEDIUM, - }, - { - gid: 241, pairName: 'MGP-BNB', address: '0x2b3DBbA2D1F5158c7BA4b645B7ea187F7F1763af', chainId: ChainId.BSC, @@ -2385,6 +2375,16 @@ export const CONFIG_PROD: GaugeConfig[] = [ token1Address: bscTokens.mgp.address, feeTier: FeeAmount.MEDIUM, }, + { + gid: 241, + pairName: 'MGP-WETH', + address: '0x4E910E367C2DbF42cdB8D6b041033793fe480803', + chainId: ChainId.ARBITRUM_ONE, + type: GaugeType.V2, + token0Address: arbitrumTokens.weth.address, + token1Address: arbitrumTokens.mgp.address, + feeTier: FeeAmount.MEDIUM, + }, { gid: 242, pairName: 'RDP-BNB',