From 29d1f2bc809f38cc54c4da00d47006b395ccc7f8 Mon Sep 17 00:00:00 2001 From: Chef Yogi <99634186+Chef-Yogi@users.noreply.github.com> Date: Mon, 16 Sep 2024 21:42:28 +0800 Subject: [PATCH] chore: list new gauges (#10686) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## 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}` --- packages/gauges/src/constants/config/prod.ts | 44 ++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/packages/gauges/src/constants/config/prod.ts b/packages/gauges/src/constants/config/prod.ts index a24ed746c3605..9dc3f6925d2c9 100644 --- a/packages/gauges/src/constants/config/prod.ts +++ b/packages/gauges/src/constants/config/prod.ts @@ -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, + }, ]