Skip to content

Commit

Permalink
feat: List gauges and farm (#9991)
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 introduces new ERC20 tokens and LP farms for BSC, and adds new
gauges for Ethereum chain.

### Detailed summary
- Added `axlSTARS` ERC20 token for BSC
- Added LP farm for `axlSTARS` and `USDT` on BSC
- Added new gauges for `TAIKO-ETH` and `USDT-axlSTARS` pairs on Ethereum

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

<!-- end pr-codex -->
  • Loading branch information
ChefMomota authored Jun 12, 2024
1 parent 952445f commit 15d70da
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/farms/constants/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ export const farmsV3 = defineFarmV3Configs([
...v3TopFixedLps,
// new lps should follow after the top fixed lps
// latest first
{
pid: 168,
token0: bscTokens.usdt,
token1: bscTokens.axlSTARS,
lpAddress: '0x0a3178B9C9FbCdE0fDFcFd805ce776eB3b8138e3',
feeAmount: FeeAmount.HIGH,
},
{
pid: 167,
token0: bscTokens.fury,
Expand Down
20 changes: 20 additions & 0 deletions packages/gauges/src/constants/config/prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4332,4 +4332,24 @@ export const CONFIG_PROD: GaugeConfig[] = [
token0Address: arbitrumTokens.fusdc.address,
token1Address: arbitrumTokens.usdc.address,
},
{
gid: 438,
pairName: 'TAIKO-ETH',
address: '0x05dF8F9fCFf0b6a6FDE7166706a52693906C9936',
chainId: ChainId.ETHEREUM,
type: GaugeType.V3,
feeTier: FeeAmount.HIGH,
token0Address: ethereumTokens.taiko.address,
token1Address: ethereumTokens.weth.address,
},
{
gid: 439,
pairName: 'USDT-axlSTARS',
address: '0x0a3178B9C9FbCdE0fDFcFd805ce776eB3b8138e3',
chainId: ChainId.BSC,
type: GaugeType.V3,
feeTier: FeeAmount.HIGH,
token0Address: bscTokens.usdt.address,
token1Address: bscTokens.axlSTARS.address,
},
]
8 changes: 8 additions & 0 deletions packages/tokens/src/constants/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3181,4 +3181,12 @@ export const bscTokens = {
'Lista DAO',
'https://lista.org/',
),
axlSTARS: new ERC20Token(
ChainId.BSC,
'0xC3CAC4AE38cCf6985EF9039ACC1abBc874DdcBB0',
6,
'axlSTARS',
'Axelar Wrapped STARS',
'https://www.stargaze.zone/',
),
}

0 comments on commit 15d70da

Please sign in to comment.