Skip to content

Commit

Permalink
fix: Merkl url for zksync (#11115)
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 correcting the spelling of `zkync` to `zksync` across
multiple files to ensure consistency in naming conventions for the
blockchain network.

### Detailed summary
- Changed `zkync` to `zksync` in `scripts/updateMerkl/index.ts`.
- Updated `ZKSYNC` constant in `apps/web/src/state/info/constant.ts`.
- Updated links in `apps/web/src/config/constants/merklPools.json` to
reflect the correct spelling of `zksync`.

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

<!-- end pr-codex -->
  • Loading branch information
memoyil authored Jan 8, 2025
1 parent 91145d6 commit 3480479
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions apps/web/src/config/constants/merklPools.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,32 +27,32 @@
{
"chainId": 324,
"address": "0x3bF35ac7BF2E4aaF98e007c9C3e0d214562A3DBB",
"link": "https://merkl.angle.money/zkync/pool/2/0x3bF35ac7BF2E4aaF98e007c9C3e0d214562A3DBB"
"link": "https://merkl.angle.money/zksync/pool/2/0x3bF35ac7BF2E4aaF98e007c9C3e0d214562A3DBB"
},
{
"chainId": 324,
"address": "0x3AEf05a8E7D7A83f5527edeD214e0b24A87d0991",
"link": "https://merkl.angle.money/zkync/pool/2/0x3AEf05a8E7D7A83f5527edeD214e0b24A87d0991"
"link": "https://merkl.angle.money/zksync/pool/2/0x3AEf05a8E7D7A83f5527edeD214e0b24A87d0991"
},
{
"chainId": 324,
"address": "0x5631fE6d29E3CB717517DA05A9970e499DEF5e31",
"link": "https://merkl.angle.money/zkync/pool/2/0x5631fE6d29E3CB717517DA05A9970e499DEF5e31"
"link": "https://merkl.angle.money/zksync/pool/2/0x5631fE6d29E3CB717517DA05A9970e499DEF5e31"
},
{
"chainId": 324,
"address": "0x291d9F9764c72C9BA6fF47b451a9f7885Ebf9977",
"link": "https://merkl.angle.money/zkync/pool/2/0x291d9F9764c72C9BA6fF47b451a9f7885Ebf9977"
"link": "https://merkl.angle.money/zksync/pool/2/0x291d9F9764c72C9BA6fF47b451a9f7885Ebf9977"
},
{
"chainId": 324,
"address": "0xC081eACC77c75CE1f39a43c04b53D90ADaD35fFd",
"link": "https://merkl.angle.money/zkync/pool/2/0xC081eACC77c75CE1f39a43c04b53D90ADaD35fFd"
"link": "https://merkl.angle.money/zksync/pool/2/0xC081eACC77c75CE1f39a43c04b53D90ADaD35fFd"
},
{
"chainId": 324,
"address": "0xD05eEf3792276E92bB051029DaDFc2Bf81121692",
"link": "https://merkl.angle.money/zkync/pool/2/0xD05eEf3792276E92bB051029DaDFc2Bf81121692"
"link": "https://merkl.angle.money/zksync/pool/2/0xD05eEf3792276E92bB051029DaDFc2Bf81121692"
},
{
"chainId": 42161,
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/state/info/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const infoChainNameToExplorerChainName = {
BSC: 'bsc',
ETH: 'ethereum',
POLYGON_ZKEVM: 'polygon-zkevm',
ZKSYNC: 'zkync',
ZKSYNC: 'zksync',
ARB: 'arbitrum',
LINEA: 'linea',
BASE: 'base',
Expand Down
2 changes: 1 addition & 1 deletion scripts/updateMerkl/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type MerklConfigPool = {
export const chainIdToChainName = {
1: 'ethereum',
56: 'bnb smart chain',
324: 'zkync',
324: 'zksync',
1101: 'polygon zkevm',
8453: 'base',
42161: 'arbitrum',
Expand Down

0 comments on commit 3480479

Please sign in to comment.