Skip to content

Commit

Permalink
feat: Add farms (#10561)
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 swaps token addresses in `prod.ts` config and adds new LP farms
in `bsc.ts` with various token pairs and fee tiers.

### Detailed summary
- Swapped token addresses in `prod.ts` config
- Added new LP farms in `bsc.ts` with various token pairs and fee tiers

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

<!-- end pr-codex -->
  • Loading branch information
ChefMomota authored Aug 28, 2024
1 parent 498e9f6 commit b5d4709
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions packages/farms/constants/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,27 @@ export const farmsV3 = defineFarmV3Configs([
...v3TopFixedLps,
// new lps should follow after the top fixed lps
// latest first
{
pid: 183,
lpAddress: '0x247f51881d1E3aE0f759AFB801413a6C948Ef442',
token0: bscTokens.usdt,
token1: bscTokens.btcb,
feeAmount: FeeAmount.LOWEST,
},
{
pid: 182,
lpAddress: '0x9F599F3D64a9D99eA21e68127Bb6CE99f893DA61',
token0: bscTokens.eth,
token1: bscTokens.usdt,
feeAmount: FeeAmount.LOWEST,
},
{
pid: 181,
lpAddress: '0x62Fcb3C1794FB95BD8B1A97f6Ad5D8a7e4943a1e',
token0: bscTokens.eth,
token1: bscTokens.wbnb,
feeAmount: FeeAmount.LOWEST,
},
{
pid: 180,
lpAddress: '0x7b0240618CfE1cf4c576a905CA2557f287F97911',
Expand Down
4 changes: 2 additions & 2 deletions packages/gauges/src/constants/config/prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5113,8 +5113,8 @@ export const CONFIG_PROD: GaugeConfig[] = [
pairName: 'BTCB-USDT',
chainId: ChainId.BSC,
type: GaugeType.V3,
token0Address: bscTokens.btcb.address,
token1Address: bscTokens.usdt.address,
token0Address: bscTokens.usdt.address,
token1Address: bscTokens.btcb.address,
feeTier: FeeAmount.LOWEST,
},
]

0 comments on commit b5d4709

Please sign in to comment.