Skip to content

Commit

Permalink
chore: list new gauges (#10686)
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 gauge configurations for various token pairs on
different chains.

### Detailed summary
- Added gauge configurations for `mBTC-BTCB` on BSC
- Added gauge configurations for `mBTC-WBTC` on Arbitrum One
- Added gauge configurations for `SEED-ETH` on Arbitrum One
- Added gauge configurations for `WBNB-CKP` on BSC
- Added gauge configurations for `WBNB-MGP` on BSC

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

<!-- end pr-codex -->
  • Loading branch information
Chef-Yogi authored Sep 16, 2024
1 parent c6275d4 commit 29d1f2b
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions packages/gauges/src/constants/config/prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5267,4 +5267,48 @@ export const CONFIG_PROD: GaugeConfig[] = [
token1Address: bscTokens.btcb.address,
feeTier: FeeAmount.LOW,
},
{
gid: 532,
address: '0xaA4DABbF68AC17eF6dABFd11a7035b913C5F2de3',
pairName: 'mBTC-BTCB',
chainId: ChainId.BSC,
type: GaugeType.StableSwap,
tokenAddresses: [bscTokens.mBtc.address, bscTokens.btcb.address],
},
{
gid: 533,
address: '0x893c6d8b83726df868C1426f71c46Ba479ba3cC8',
pairName: 'mBTC-WBTC',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.StableSwap,
tokenAddresses: [arbitrumTokens.mBtc.address, arbitrumTokens.wbtc.address],
},
{
gid: 534,
address: '0x87Fe0e807E3E92A7558303FB51F201dcBfb07cC1',
pairName: 'SEED-ETH',
chainId: ChainId.ARBITRUM_ONE,
type: GaugeType.V3,
token0Address: arbitrumTokens.seed.address,
token1Address: arbitrumTokens.weth.address,
feeTier: FeeAmount.MEDIUM,
},
{
gid: 535,
pairName: 'WBNB-CKP',
address: '0xeB184FD678854dE991FFF9a715A42eB933b9170E',
chainId: ChainId.BSC,
type: GaugeType.ALM,
token0Address: bscTokens.ckp.address,
token1Address: bscTokens.wbnb.address,
},
{
gid: 536,
pairName: 'WBNB-MGP',
address: '0x660Ee2c04De3e3B74E7C5a9463fFbDE94b909eAe',
chainId: ChainId.BSC,
type: GaugeType.ALM,
token0Address: bscTokens.wbnb.address,
token1Address: bscTokens.mgp.address,
},
]

0 comments on commit 29d1f2b

Please sign in to comment.