Skip to content

Commit

Permalink
🔁 Bump Dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Nov 2, 2024
1 parent 3dccc4b commit d3a8667
Show file tree
Hide file tree
Showing 3 changed files with 279 additions and 249 deletions.
25 changes: 24 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const config: HardhatUserConfig = {
},
},
zksolc: {
version: "1.5.6",
version: "1.5.7",
compilerSource: "binary",
settings: {
enableEraVMExtensions: false,
Expand Down Expand Up @@ -456,6 +456,8 @@ const config: HardhatUserConfig = {
zksync: true,
verifyURL:
"https://explorer.sepolia.era.zksync.dev/contract_verification",
browserURL: "https://sepolia.explorer.zksync.io",
enableVerifyURL: true,
accounts,
ledgerAccounts,
},
Expand All @@ -466,6 +468,8 @@ const config: HardhatUserConfig = {
zksync: true,
verifyURL:
"https://zksync2-mainnet-explorer.zksync.io/contract_verification",
browserURL: "https://explorer.zksync.io",
enableVerifyURL: true,
accounts,
ledgerAccounts,
},
Expand Down Expand Up @@ -1148,6 +1152,9 @@ const config: HardhatUserConfig = {
// For SX testnet & mainnet
sx: vars.get("SX_API_KEY", ""),
sxTestnet: vars.get("SX_API_KEY", ""),
// For ZKsync testnet & mainnet
zkSync: vars.get("ZKSYNC_API_KEY", ""),
zkSyncTestnet: vars.get("ZKSYNC_API_KEY", ""),
},
customChains: [
{
Expand Down Expand Up @@ -1852,6 +1859,22 @@ const config: HardhatUserConfig = {
browserURL: "https://explorerl2.toronto.sx.technology",
},
},
{
network: "zkSync",
chainId: 324,
urls: {
apiURL: "https://api-era.zksync.network/api",
browserURL: "https://era.zksync.network",
},
},
{
network: "zkSyncTestnet",
chainId: 300,
urls: {
apiURL: "https://api-sepolia-era.zksync.network/api",
browserURL: "https://sepolia-era.zksync.network",
},
},
],
},
// tenderly: {
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@
"lint:fix": "pnpm prettier:fix && pnpm solhint:fix && npx eslint . --fix"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@eslint/js": "^9.14.0",
"@matterlabs/hardhat-zksync-deploy": "^1.6.0",
"@matterlabs/hardhat-zksync-ethers": "1.2.1",
"@matterlabs/hardhat-zksync-solc": "^1.2.5",
"@matterlabs/hardhat-zksync-verify": "^1.6.0",
"@matterlabs/hardhat-zksync-verify": "^1.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
Expand All @@ -187,9 +187,9 @@
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.2",
"@types/node": "^22.8.6",
"chai": "^4.5.0",
"eslint": "^9.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.13.4",
"hardhat": "^2.22.15",
Expand All @@ -203,8 +203,8 @@
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.1",
"typescript-eslint": "^8.12.2",
"xdeployer": "^3.1.5",
"zksync-ethers": "^6.14.0"
"zksync-ethers": "^6.14.2"
}
}
Loading

0 comments on commit d3a8667

Please sign in to comment.