Skip to content

Commit

Permalink
feat: xrgb farm & csix Syrup Pools (#9115)
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 a new ERC20 token `XRGB` on BSC, updates a farm with `XRGB` and `WBNB` pair, and introduces a new pool with `CAKE` and `CSIX` tokens.

### Detailed summary
- Added `XRGB` ERC20 token on BSC
- Updated farm with `XRGB` and `WBNB` pair
- Introduced a new pool with `CAKE` and `CSIX` tokens

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

<!-- end pr-codex -->
  • Loading branch information
ChefJerry authored Feb 21, 2024
1 parent 4047869 commit cd1141e
Show file tree
Hide file tree
Showing 3 changed files with 24 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 @@ -47,6 +47,13 @@ export const farmsV3 = defineFarmV3Configs([
...v3TopFixedLps,
// new lps should follow after the top fixed lps
// latest first
{
pid: 143,
lpAddress: '0x9a5936bab8f9ae1D89DA5fa95C484F7aD597C8C0',
token0: bscTokens.xrgb,
token1: bscTokens.wbnb,
feeAmount: FeeAmount.HIGH,
},
{
pid: 142,
lpAddress: '0x4167f229a0323F480518b61CB35eD4d6a0C5EA27',
Expand Down
9 changes: 9 additions & 0 deletions packages/pools/src/constants/pools/56.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ export const livePools: SerializedPool[] = [
tokenPerBlock: '10',
isFinished: false,
},
{
sousId: 371,
stakingToken: bscTokens.cake,
earningToken: bscTokens.csix,
contractAddress: '0xD41794253c07Fe3097721f98E985ecB7f692362e',
poolCategory: PoolCategory.CORE,
tokenPerBlock: '0.07716',
version: 3,
},
{
sousId: 370,
stakingToken: bscTokens.cake,
Expand Down
8 changes: 8 additions & 0 deletions packages/tokens/src/constants/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3005,4 +3005,12 @@ export const bscTokens = {
'https://dmail.ai/',
),
defi: new ERC20Token(ChainId.BSC, '0x6d106C0B8d2f47c5465bdBD58D1Be253762cBBC1', 18, 'DEFI', 'DeFi', 'https://de.fi/'),
xrgb: new ERC20Token(
ChainId.BSC,
'0x5cc5E64AB764A0f1E97F23984E20fD4528356a6a',
18,
'XRGB',
'XRGB',
'https://xrgb.xyz',
),
}

0 comments on commit cd1141e

Please sign in to comment.