Skip to content

Commit

Permalink
feat: add wbnb-rbnb v3 farm (#8945)
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
### Focus of this PR:
This PR focuses on adding new tokens and farms to the codebase.

### Detailed summary:
- Added a new ERC20 token called MEOW with its corresponding details.
- Added a new farm with PID 136 and its corresponding LP address and
token pair.
- Added a new farm with PID 135 and its corresponding LP address.

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

<!-- end pr-codex -->
  • Loading branch information
ChefJerry authored Jan 31, 2024
1 parent a270af1 commit 1c8cba7
Show file tree
Hide file tree
Showing 2 changed files with 15 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: 136,
lpAddress: '0x5b46fC8392cDEd6A91A79d85eFabFD51C7956cA0',
token0: bscTokens.wbnb,
token1: bscTokens.rbnb,
feeAmount: FeeAmount.LOWEST,
},
{
pid: 135,
lpAddress: '0x93bA6af467c7B46B44D5C0BB300270c732510C9C',
Expand Down
8 changes: 8 additions & 0 deletions packages/tokens/src/zkSync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,12 @@ export const zksyncTokens = {
'Wrapped liquid staked Ether 2.0',
'https://lido.fi/',
),
meow: new ERC20Token(
ChainId.ZKSYNC,
'0x79db8c67d0c33203da4Efb58F7D325E1e0d4d692',
18,
'MEOW',
'Zeek Coin',
'https://zeekcoin.com/',
),
}

0 comments on commit 1c8cba7

Please sign in to comment.