Skip to content

Commit 4297a9d

Browse files
committed
🔁 Bump Dependencies
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
1 parent e76b30d commit 4297a9d

File tree

3 files changed

+215
-185
lines changed

3 files changed

+215
-185
lines changed

hardhat.config.ts

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const config: HardhatUserConfig = {
5959
},
6060
},
6161
zksolc: {
62-
version: "1.5.6",
62+
version: "1.5.7",
6363
compilerSource: "binary",
6464
settings: {
6565
enableEraVMExtensions: false,
@@ -368,6 +368,8 @@ const config: HardhatUserConfig = {
368368
zksync: true,
369369
verifyURL:
370370
"https://explorer.sepolia.era.zksync.dev/contract_verification",
371+
browserVerifyURL: "https://sepolia.explorer.zksync.io",
372+
enableVerifyURL: true,
371373
},
372374
zkSyncMain: {
373375
chainId: 324,
@@ -376,6 +378,8 @@ const config: HardhatUserConfig = {
376378
zksync: true,
377379
verifyURL:
378380
"https://zksync2-mainnet-explorer.zksync.io/contract_verification",
381+
browserVerifyURL: "https://explorer.zksync.io",
382+
enableVerifyURL: true,
379383
},
380384
mantleTestnet: {
381385
chainId: 5003,
@@ -963,6 +967,9 @@ const config: HardhatUserConfig = {
963967
// For SX testnet & mainnet
964968
sx: process.env.SX_API_KEY || "",
965969
sxTestnet: process.env.SX_API_KEY || "",
970+
// For ZKsync testnet & mainnet
971+
zkSync: process.env.ZKSYNC_API_KEY || "",
972+
zkSyncTestnet: process.env.ZKSYNC_API_KEY || "",
966973
},
967974
customChains: [
968975
{
@@ -1675,6 +1682,22 @@ const config: HardhatUserConfig = {
16751682
browserURL: "https://explorerl2.toronto.sx.technology",
16761683
},
16771684
},
1685+
{
1686+
network: "zkSync",
1687+
chainId: 324,
1688+
urls: {
1689+
apiURL: "https://api-era.zksync.network/api",
1690+
browserURL: "https://era.zksync.network",
1691+
},
1692+
},
1693+
{
1694+
network: "zkSyncTestnet",
1695+
chainId: 300,
1696+
urls: {
1697+
apiURL: "https://api-sepolia-era.zksync.network/api",
1698+
browserURL: "https://sepolia-era.zksync.network",
1699+
},
1700+
},
16781701
],
16791702
},
16801703
};

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,11 @@
153153
"lint:fix": "pnpm run prettier:fix && pnpm run solhint:fix && npx eslint . --fix"
154154
},
155155
"devDependencies": {
156-
"@eslint/js": "^9.13.0",
156+
"@eslint/js": "^9.14.0",
157157
"@matterlabs/hardhat-zksync-deploy": "^1.6.0",
158158
"@matterlabs/hardhat-zksync-ethers": "1.2.1",
159159
"@matterlabs/hardhat-zksync-solc": "^1.2.5",
160-
"@matterlabs/hardhat-zksync-verify": "^1.6.0",
160+
"@matterlabs/hardhat-zksync-verify": "^1.7.0",
161161
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
162162
"@nomicfoundation/hardhat-ethers": "^3.0.8",
163163
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
@@ -167,10 +167,10 @@
167167
"@typechain/hardhat": "^9.1.0",
168168
"@types/chai": "^4.3.20",
169169
"@types/mocha": "^10.0.9",
170-
"@types/node": "^22.8.2",
170+
"@types/node": "^22.8.6",
171171
"chai": "^4.5.0",
172172
"dotenv": "^16.4.5",
173-
"eslint": "^9.13.0",
173+
"eslint": "^9.14.0",
174174
"eslint-config-prettier": "^9.1.0",
175175
"ethers": "^6.13.4",
176176
"hardhat": "^2.22.15",
@@ -184,7 +184,7 @@
184184
"ts-node": "^10.9.2",
185185
"typechain": "^8.3.2",
186186
"typescript": "^5.6.3",
187-
"typescript-eslint": "^8.12.1",
188-
"zksync-ethers": "^6.14.0"
187+
"typescript-eslint": "^8.12.2",
188+
"zksync-ethers": "^6.14.2"
189189
}
190190
}

0 commit comments

Comments
 (0)