Skip to content

Commit

Permalink
fix: gauage gid correction (#8861)
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
### 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}`

<!-- end pr-codex -->
  • Loading branch information
ChefBingbong authored Jan 18, 2024
1 parent 1bceb39 commit ac2da9d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/gauges/src/constants/config/prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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',
Expand Down

0 comments on commit ac2da9d

Please sign in to comment.