@@ -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} ;
0 commit comments