Skip to content

Commit

Permalink
chore: List syrup pool (#10663)
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
The focus of this PR is to add a new pool `POOLX` for BSC network and
update pool configurations for BSC and Polygon networks.

### Detailed summary
- Added `POOLX` token for BSC network
- Added a new pool with `POOLX` token
- Removed a pool configuration for Polygon network

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

<!-- end pr-codex -->
  • Loading branch information
chefjackson authored Sep 11, 2024
1 parent 2238492 commit 449827a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
22 changes: 2 additions & 20 deletions packages/pools/src/constants/pools/1101.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,6 @@
import { polygonZkEvmTokens } from '@pancakeswap/tokens'
import { getAddress } from 'viem'
import { PoolCategory, SerializedPool } from '../../types'
import { SerializedPool } from '../../types'

export const livePools: SerializedPool[] = [
{
sousId: 1,
stakingToken: polygonZkEvmTokens.cake,
earningToken: polygonZkEvmTokens.pol,
contractAddress: '0x3BF2521A44502eDC06efA069be66694ec4d3AB65',
poolCategory: PoolCategory.CORE,
tokenPerSecond: '0.0055',
version: 3,
},
].map((p) => ({
...p,
isFinished: false,
contractAddress: getAddress(p.contractAddress),
stakingToken: p.stakingToken.serialize,
earningToken: p.earningToken.serialize,
}))
export const livePools: SerializedPool[] = []

// known finished pools
export const finishedPools: SerializedPool[] = []
Expand Down
8 changes: 8 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,14 @@ export const livePools: SerializedPool[] = [
tokenPerBlock: '10',
isFinished: false,
},
{
sousId: 388,
stakingToken: bscTokens.cake,
earningToken: bscTokens.poolx,
contractAddress: '0x68A07e7701564eA5a47812cEf7935E2eF1B505f8',
poolCategory: PoolCategory.CORE,
tokenPerBlock: '0.0055',
},
{
sousId: 387,
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 @@ -3301,4 +3301,12 @@ export const bscTokens = {
'Liquid Staked BTC',
'https://www.babylon.magpiexyz.io',
),
poolx: new ERC20Token(
ChainId.BSC,
'0xbAeA9aBA1454DF334943951d51116aE342eAB255',
18,
'POOLX',
'Poolz Finance',
'https://www.poolz.finance',
),
}

0 comments on commit 449827a

Please sign in to comment.