Skip to content

Commit 3480479

Browse files
authored
fix: Merkl url for zksync (#11115)
<!-- 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 -->
1 parent 91145d6 commit 3480479

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

apps/web/src/config/constants/merklPools.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,32 @@
2727
{
2828
"chainId": 324,
2929
"address": "0x3bF35ac7BF2E4aaF98e007c9C3e0d214562A3DBB",
30-
"link": "https://merkl.angle.money/zkync/pool/2/0x3bF35ac7BF2E4aaF98e007c9C3e0d214562A3DBB"
30+
"link": "https://merkl.angle.money/zksync/pool/2/0x3bF35ac7BF2E4aaF98e007c9C3e0d214562A3DBB"
3131
},
3232
{
3333
"chainId": 324,
3434
"address": "0x3AEf05a8E7D7A83f5527edeD214e0b24A87d0991",
35-
"link": "https://merkl.angle.money/zkync/pool/2/0x3AEf05a8E7D7A83f5527edeD214e0b24A87d0991"
35+
"link": "https://merkl.angle.money/zksync/pool/2/0x3AEf05a8E7D7A83f5527edeD214e0b24A87d0991"
3636
},
3737
{
3838
"chainId": 324,
3939
"address": "0x5631fE6d29E3CB717517DA05A9970e499DEF5e31",
40-
"link": "https://merkl.angle.money/zkync/pool/2/0x5631fE6d29E3CB717517DA05A9970e499DEF5e31"
40+
"link": "https://merkl.angle.money/zksync/pool/2/0x5631fE6d29E3CB717517DA05A9970e499DEF5e31"
4141
},
4242
{
4343
"chainId": 324,
4444
"address": "0x291d9F9764c72C9BA6fF47b451a9f7885Ebf9977",
45-
"link": "https://merkl.angle.money/zkync/pool/2/0x291d9F9764c72C9BA6fF47b451a9f7885Ebf9977"
45+
"link": "https://merkl.angle.money/zksync/pool/2/0x291d9F9764c72C9BA6fF47b451a9f7885Ebf9977"
4646
},
4747
{
4848
"chainId": 324,
4949
"address": "0xC081eACC77c75CE1f39a43c04b53D90ADaD35fFd",
50-
"link": "https://merkl.angle.money/zkync/pool/2/0xC081eACC77c75CE1f39a43c04b53D90ADaD35fFd"
50+
"link": "https://merkl.angle.money/zksync/pool/2/0xC081eACC77c75CE1f39a43c04b53D90ADaD35fFd"
5151
},
5252
{
5353
"chainId": 324,
5454
"address": "0xD05eEf3792276E92bB051029DaDFc2Bf81121692",
55-
"link": "https://merkl.angle.money/zkync/pool/2/0xD05eEf3792276E92bB051029DaDFc2Bf81121692"
55+
"link": "https://merkl.angle.money/zksync/pool/2/0xD05eEf3792276E92bB051029DaDFc2Bf81121692"
5656
},
5757
{
5858
"chainId": 42161,

apps/web/src/state/info/constant.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const infoChainNameToExplorerChainName = {
6969
BSC: 'bsc',
7070
ETH: 'ethereum',
7171
POLYGON_ZKEVM: 'polygon-zkevm',
72-
ZKSYNC: 'zkync',
72+
ZKSYNC: 'zksync',
7373
ARB: 'arbitrum',
7474
LINEA: 'linea',
7575
BASE: 'base',

scripts/updateMerkl/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type MerklConfigPool = {
1212
export const chainIdToChainName = {
1313
1: 'ethereum',
1414
56: 'bnb smart chain',
15-
324: 'zkync',
15+
324: 'zksync',
1616
1101: 'polygon zkevm',
1717
8453: 'base',
1818
42161: 'arbitrum',

0 commit comments

Comments
 (0)