Skip to content

Commit

Permalink
fix: incorrect liquidity token list on sepolia (#10152)
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 updates the `exchange.ts` file in the web app config to replace
`scrollSepoliaTokens` with `sepoliaTokens` for `ChainId.SEPOLIA`.

### Detailed summary
- Replaced `scrollSepoliaTokens` with `sepoliaTokens` for
`ChainId.SEPOLIA` in the `exchange.ts` file.

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

<!-- end pr-codex -->
  • Loading branch information
ChefBingbong authored Jul 9, 2024
1 parent 6eac78f commit 9623329
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/web/src/config/constants/exchange.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
polygonZkEvmTestnetTokens,
polygonZkEvmTokens,
scrollSepoliaTokens,
sepoliaTokens,
zkSyncTestnetTokens,
zksyncTokens,
} from '@pancakeswap/tokens'
Expand Down Expand Up @@ -103,7 +104,7 @@ export const BASES_TO_TRACK_LIQUIDITY_FOR: ChainTokenList = {
[ChainId.BASE]: [baseTokens.usdc, baseTokens.weth],
[ChainId.BASE_TESTNET]: [baseTestnetTokens.usdc, baseTestnetTokens.weth],
[ChainId.SCROLL_SEPOLIA]: [scrollSepoliaTokens.usdc, scrollSepoliaTokens.weth],
[ChainId.SEPOLIA]: [scrollSepoliaTokens.usdc, scrollSepoliaTokens.weth],
[ChainId.SEPOLIA]: [sepoliaTokens.usdc, sepoliaTokens.weth],
[ChainId.ARBITRUM_SEPOLIA]: [arbSepoliaTokens.usdc, arbSepoliaTokens.weth],
[ChainId.BASE_SEPOLIA]: [baseSepoliaTokens.usdc, baseSepoliaTokens.weth],
}
Expand Down

0 comments on commit 9623329

Please sign in to comment.