Skip to content

Commit

Permalink
feat: List dmail farm (#9068)
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 focuses on adding a new ERC20 token called DMAIL to the BSC
network. It also adds a new farm and gauge for the USDT-DMAIL pair on
BSC.

### Detailed summary
- Added a new ERC20 token `DMAIL` with address
`0xcC6f1e1B87cfCbe9221808d2d85C501aab0B5192` on BSC.
- Added a new farm with PID 142 and LP address
`0x4167f229a0323F480518b61CB35eD4d6a0C5EA27` for the USDT-DMAIL pair on
BSC.
- Added a new gauge with GID 273, pair name `USDT-DMAIL`, and address
`0x4167f229a0323F480518b61CB35eD4d6a0C5EA27` on BSC.

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

<!-- end pr-codex -->
  • Loading branch information
ChefMomota authored Feb 15, 2024
1 parent b0ec2a4 commit 0b7fc1c
Show file tree
Hide file tree
Showing 3 changed files with 25 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: 142,
lpAddress: '0x4167f229a0323F480518b61CB35eD4d6a0C5EA27',
token0: bscTokens.usdt,
token1: bscTokens.dmail,
feeAmount: FeeAmount.HIGH,
},
{
pid: 141,
lpAddress: '0x9F5a0AD81Fe7fD5dFb84EE7A0CFb83967359BD90',
Expand Down
10 changes: 10 additions & 0 deletions packages/gauges/src/constants/config/prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2732,4 +2732,14 @@ export const CONFIG_PROD: GaugeConfig[] = [
token1Address: bscTokens.sol.address,
feeTier: FeeAmount.MEDIUM,
},
{
gid: 273,
pairName: 'USDT-DMAIL',
address: '0x4167f229a0323F480518b61CB35eD4d6a0C5EA27',
chainId: ChainId.BSC,
type: GaugeType.V3,
token0Address: bscTokens.usdt.address,
token1Address: bscTokens.dmail.address,
feeTier: FeeAmount.HIGH,
},
]
8 changes: 8 additions & 0 deletions packages/tokens/src/constants/bsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2996,4 +2996,12 @@ export const bscTokens = {
'SOLANA',
'https://solana.com/',
),
dmail: new ERC20Token(
ChainId.BSC,
'0xcC6f1e1B87cfCbe9221808d2d85C501aab0B5192',
18,
'DMAIL',
'Dmail Network',
'https://dmail.ai/',
),
}

0 comments on commit 0b7fc1c

Please sign in to comment.