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 125a098 commit 2edd33e
Show file tree
Hide file tree
Showing 4 changed files with 269 additions and 242 deletions.
3 changes: 0 additions & 3 deletions abis/contracts/CobieEscrow.sol/CobieEscrow.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@
"constructor(address) payable",
"error AccessControlBadConfirmation()",
"error AccessControlUnauthorizedAccount(address,bytes32)",
"error AddressEmptyCode(address)",
"error AddressInsufficientBalance(address)",
"error AddressMismatch(address,address)",
"error EtherTransferFail()",
"error FailedInnerCall()",
"error SafeERC20FailedOperation(address)",
"error ValueMismatch()",
"event Deposit(address indexed,address indexed,address,uint256,uint256 indexed,string)",
Expand Down
25 changes: 24 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const config: HardhatUserConfig = {
},
},
zksolc: {
version: "1.5.6",
version: "1.5.7",
compilerSource: "binary",
settings: {
enableEraVMExtensions: false,
Expand Down Expand Up @@ -448,6 +448,8 @@ const config: HardhatUserConfig = {
zksync: true,
verifyURL:
"https://explorer.sepolia.era.zksync.dev/contract_verification",
browserVerifyURL: "https://sepolia.explorer.zksync.io",
enableVerifyURL: true,
accounts,
ledgerAccounts,
},
Expand All @@ -458,6 +460,8 @@ const config: HardhatUserConfig = {
zksync: true,
verifyURL:
"https://zksync2-mainnet-explorer.zksync.io/contract_verification",
browserVerifyURL: "https://explorer.zksync.io",
enableVerifyURL: true,
accounts,
ledgerAccounts,
},
Expand Down Expand Up @@ -1117,6 +1121,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 @@ -1821,6 +1828,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 @@ -160,11 +160,11 @@
"lint:fix": "pnpm run prettier:fix && pnpm run 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-ledger": "^1.0.3",
Expand All @@ -177,9 +177,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 @@ -193,8 +193,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 2edd33e

Please sign in to comment.