Skip to content

Commit

Permalink
chore: Add dlp mdlp stable pair (#9045)
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 DLP-mDLP stable pair to the code. 

### Detailed summary
- Added `dlp` and `mdlp` tokens with their respective details.
- Added a stable swap configuration for the DLP-mDLP LP pair.

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

<!-- end pr-codex -->
  • Loading branch information
chefjackson authored Feb 9, 2024
1 parent c8ee501 commit a8ffc15
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changeset/fifty-nails-sit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@pancakeswap/smart-router': patch
'@pancakeswap/tokens': patch
---

Add dlp mdlp stable pair
10 changes: 10 additions & 0 deletions packages/smart-router/evm/constants/stableSwap/arb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,14 @@ export const pools: StableSwapPool[] = [
stableLpFee: 0.0025,
stableLpFeeRateOfTotalFee: 0.5,
},
{
lpSymbol: 'DLP-mDLP LP',
lpAddress: '0x0db5e247ab73FBaE16d9301f2977f974EC0AA336',
token: arbitrumTokens.dlp,
quoteToken: arbitrumTokens.mdlp,
stableSwapAddress: '0xd0f0be815a76eFE677c92b07b39a5e972BAf22bD',
infoStableSwapAddress: '0x58B2F00f74a1877510Ec37b22f116Bf5D63Ab1b0',
stableLpFee: 0.0025,
stableLpFeeRateOfTotalFee: 0.5,
},
]
16 changes: 16 additions & 0 deletions packages/tokens/src/constants/arb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,20 @@ export const arbitrumTokens = {
'USDV',
'https://usdv.money/',
),
dlp: new ERC20Token(
ChainId.ARBITRUM_ONE,
'0x32dF62dc3aEd2cD6224193052Ce665DC18165841',
18,
'DLP',
'RDNT-WETH',
'https://pancakeswap.finance',
),
mdlp: new ERC20Token(
ChainId.ARBITRUM_ONE,
'0xfe14F790DA92971131544d915c4ADa6F1abce3Bd',
18,
'mDLP',
'Magpie locked DLP',
'https://www.radiant.magpiexyz.io/stake',
),
}

0 comments on commit a8ffc15

Please sign in to comment.