Skip to content

Commit

Permalink
feat: add pixel farm (#9103)
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 `PIXEL` with its details and farm configuration for Ethereum.

### Detailed summary
- Added `PIXEL` ERC20 token with details
- Updated farm configuration to include `PIXEL` token for Ethereum blockchain

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

<!-- end pr-codex -->
  • Loading branch information
ChefJerry authored Feb 20, 2024
1 parent 0c50f51 commit 669fbc8
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/eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ export const farmsV3 = defineFarmV3Configs([
feeAmount: FeeAmount.MEDIUM,
},
// Keep those farms on top
{
pid: 58,
lpAddress: '0xE7976f522b5a75Aedd057540c8baA05283a9F79E',
token0: ethereumTokens.pixel,
token1: ethereumTokens.weth,
feeAmount: FeeAmount.MEDIUM,
},
{
pid: 57,
lpAddress: '0xe512273b90a5fFD21dD19fBB09B7634A3d35ADd9',
Expand Down
8 changes: 8 additions & 0 deletions packages/tokens/src/constants/eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,4 +417,12 @@ export const ethereumTokens = {
'Pandora',
'https://www.ether.fi/',
),
pixel: new ERC20Token(
ChainId.ETHEREUM,
'0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31',
18,
'PIXEL',
'PIXEL',
'https://www.pixels.xyz/',
),
}

0 comments on commit 669fbc8

Please sign in to comment.