From 429a1d16b8eda48bbe6d0a8f7c556e4abf72737d Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Sun, 9 Jun 2024 17:12:39 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=20Add=20Additional=20Netw?= =?UTF-8?q?ork=20Configurations=20and=20Bump=20Dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- contracts/lib/forge-std | 2 +- hardhat.config.ts | 102 +++++++- package.json | 8 +- pnpm-lock.yaml | 556 ++++++++++++++++++---------------------- 4 files changed, 348 insertions(+), 320 deletions(-) diff --git a/contracts/lib/forge-std b/contracts/lib/forge-std index 52715a2..6e05729 160000 --- a/contracts/lib/forge-std +++ b/contracts/lib/forge-std @@ -1 +1 @@ -Subproject commit 52715a217dc51d0de15877878ab8213f6cbbbab5 +Subproject commit 6e05729b76f1ae0d437e74951aef1ca987788ab3 diff --git a/hardhat.config.ts b/hardhat.config.ts index 3a746d3..d20f813 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -720,11 +720,52 @@ const config: HardhatUserConfig = { chainId: 111, url: vars.get("BOB_TESTNET_URL", "https://testnet.rpc.gobob.xyz"), accounts, + ledgerAccounts, }, bobMain: { chainId: 60808, url: vars.get("BOB_MAINNET_URL", "https://rpc.gobob.xyz"), accounts, + ledgerAccounts, + }, + coreTestnet: { + chainId: 1115, + url: vars.get("CORE_TESTNET_URL", "https://rpc.test.btcs.network"), + accounts, + ledgerAccounts, + }, + coreMain: { + chainId: 1116, + url: vars.get("CORE_MAINNET_URL", "https://rpc.coredao.org"), + accounts, + ledgerAccounts, + }, + telosTestnet: { + chainId: 41, + url: vars.get("TELOS_TESTNET_URL", "https://testnet.telos.net/evm"), + accounts, + ledgerAccounts, + }, + telosMain: { + chainId: 40, + url: vars.get("TELOS_MAINNET_URL", "https://mainnet.telos.net/evm"), + accounts, + ledgerAccounts, + }, + rootstockTestnet: { + chainId: 31, + url: vars.get( + "ROOTSTOCK_TESTNET_URL", + "https://public-node.testnet.rsk.co", + ), + accounts, + ledgerAccounts, + }, + rootstockMain: { + chainId: 30, + url: vars.get("ROOTSTOCK_MAINNET_URL", "https://public-node.rsk.co"), + accounts, + ledgerAccounts, }, }, xdeploy: { @@ -913,6 +954,15 @@ const config: HardhatUserConfig = { // For BOB testnet & mainnet bob: vars.get("BOB_API_KEY", ""), bobTestnet: vars.get("BOB_API_KEY", ""), + // For Core testnet & mainnet + core: vars.get("CORE_MAINNET_API_KEY", ""), + coreTestnet: vars.get("CORE_TESTNET_API_KEY", ""), + // For Telos testnet & mainnet + telos: vars.get("TELOS_API_KEY", ""), + telosTestnet: vars.get("TELOS_API_KEY", ""), + // For Rootstock testnet & mainnet + rootstock: vars.get("ROOTSTOCK_API_KEY", ""), + rootstockTestnet: vars.get("ROOTSTOCK_API_KEY", ""), }, customChains: [ { @@ -999,8 +1049,8 @@ const config: HardhatUserConfig = { network: "evmosTestnet", chainId: 9000, urls: { - apiURL: "https://testnet.escan.live/api", - browserURL: "https://testnet.escan.live", + apiURL: "https://api.verify.mintscan.io/evm/api/0x2328", + browserURL: "https://www.mintscan.io/evmos-testnet", }, }, { @@ -1391,6 +1441,54 @@ const config: HardhatUserConfig = { browserURL: "https://testnet-explorer.gobob.xyz", }, }, + { + network: "core", + chainId: 1116, + urls: { + apiURL: "https://openapi.coredao.org/api", + browserURL: "https://scan.coredao.org", + }, + }, + { + network: "coreTestnet", + chainId: 1115, + urls: { + apiURL: "https://api.test.btcs.network/api", + browserURL: "https://scan.test.btcs.network", + }, + }, + { + network: "telos", + chainId: 40, + urls: { + apiURL: "https://api.teloscan.io/api", + browserURL: "https://www.teloscan.io", + }, + }, + { + network: "telosTestnet", + chainId: 41, + urls: { + apiURL: "https://api.testnet.teloscan.io/api", + browserURL: "https://testnet.teloscan.io", + }, + }, + { + network: "rootstock", + chainId: 30, + urls: { + apiURL: "https://rootstock.blockscout.com/api", + browserURL: "https://rootstock.blockscout.com", + }, + }, + { + network: "rootstockTestnet", + chainId: 31, + urls: { + apiURL: "https://rootstock-testnet.blockscout.com/api", + browserURL: "https://rootstock-testnet.blockscout.com", + }, + }, ], }, tenderly: { diff --git a/package.json b/package.json index 9af0c5e..a84e39a 100644 --- a/package.json +++ b/package.json @@ -159,7 +159,7 @@ "@typechain/hardhat": "^9.1.0", "@types/chai": "^4.3.16", "@types/mocha": "^10.0.6", - "@types/node": "^20.14.1", + "@types/node": "^20.14.2", "chai": "^4.4.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", @@ -168,7 +168,7 @@ "hardhat-abi-exporter": "^2.10.1", "hardhat-contract-sizer": "^2.10.0", "hardhat-gas-reporter": "^2.2.0", - "prettier": "^3.3.0", + "prettier": "^3.3.1", "prettier-plugin-solidity": "^1.3.1", "solhint": "^5.0.1", "solidity-coverage": "^0.8.12", @@ -176,7 +176,7 @@ "typechain": "^8.3.2", "typescript": "^5.4.5", "typescript-eslint": "^7.12.0", - "xdeployer": "^3.0.11", - "zksync-ethers": "^6.7.1" + "xdeployer": "^3.0.12", + "zksync-ethers": "^6.8.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dbd37dd..81a9e55 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,40 +12,40 @@ importers: version: 9.4.0 "@matterlabs/hardhat-zksync-deploy": specifier: ^1.4.0 - version: 1.4.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(zksync-ethers@6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))) + version: 1.4.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(zksync-ethers@6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))) "@matterlabs/hardhat-zksync-ethers": specifier: 1.0.0 - version: 1.0.0(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)(zksync-ethers@6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))) + version: 1.0.0(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)(zksync-ethers@6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))) "@matterlabs/hardhat-zksync-solc": specifier: ^1.1.4 - version: 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@matterlabs/hardhat-zksync-verify": specifier: ^1.4.3 - version: 1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) "@nomicfoundation/hardhat-chai-matchers": specifier: ^2.0.7 - version: 2.0.7(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(chai@4.4.1)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 2.0.7(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(chai@4.4.1)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@nomicfoundation/hardhat-ethers": specifier: ^3.0.6 - version: 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@nomicfoundation/hardhat-foundry": specifier: ^1.1.2 - version: 1.1.2(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 1.1.2(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@nomicfoundation/hardhat-ignition": specifier: ^0.15.4 - version: 0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + version: 0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) "@nomicfoundation/hardhat-ignition-ethers": specifier: ^0.15.4 - version: 0.15.4(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 0.15.4(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@nomicfoundation/hardhat-ledger": specifier: ^1.0.3 - version: 1.0.3(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + version: 1.0.3(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) "@nomicfoundation/hardhat-network-helpers": specifier: ^1.0.11 - version: 1.0.11(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 1.0.11(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@nomicfoundation/hardhat-verify": specifier: ^2.0.8 - version: 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@nomicfoundation/ignition-core": specifier: ^0.15.4 version: 0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -54,16 +54,16 @@ importers: version: 5.0.2 "@tenderly/hardhat-tenderly": specifier: ^2.2.2 - version: 2.2.2(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@types/node@20.14.1)(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + version: 2.2.2(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@types/node@20.14.2)(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) "@truffle/dashboard-hardhat-plugin": specifier: ^0.2.15 - version: 0.2.15(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + version: 0.2.15(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) "@typechain/ethers-v6": specifier: ^0.5.1 version: 0.5.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5) "@typechain/hardhat": specifier: ^9.1.0 - version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5)) + version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5)) "@types/chai": specifier: ^4.3.16 version: 4.3.16 @@ -71,8 +71,8 @@ importers: specifier: ^10.0.6 version: 10.0.6 "@types/node": - specifier: ^20.14.1 - version: 20.14.1 + specifier: ^20.14.2 + version: 20.14.2 chai: specifier: ^4.4.1 version: 4.4.1 @@ -87,31 +87,31 @@ importers: version: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) hardhat: specifier: ^2.22.5 - version: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) hardhat-abi-exporter: specifier: ^2.10.1 - version: 2.10.1(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 2.10.1(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) hardhat-contract-sizer: specifier: ^2.10.0 - version: 2.10.0(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 2.10.0(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) hardhat-gas-reporter: specifier: ^2.2.0 - version: 2.2.0(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typescript@5.4.5)(utf-8-validate@5.0.10) + version: 2.2.0(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typescript@5.4.5)(utf-8-validate@5.0.10) prettier: - specifier: ^3.3.0 - version: 3.3.0 + specifier: ^3.3.1 + version: 3.3.1 prettier-plugin-solidity: specifier: ^1.3.1 - version: 1.3.1(prettier@3.3.0) + version: 1.3.1(prettier@3.3.1) solhint: specifier: ^5.0.1 version: 5.0.1(typescript@5.4.5) solidity-coverage: specifier: ^0.8.12 - version: 0.8.12(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + version: 0.8.12(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.14.1)(typescript@5.4.5) + version: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) typechain: specifier: ^8.3.2 version: 8.3.2(typescript@5.4.5) @@ -122,11 +122,11 @@ importers: specifier: ^7.12.0 version: 7.12.0(eslint@8.57.0)(typescript@5.4.5) xdeployer: - specifier: ^3.0.11 - version: 3.0.11(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + specifier: ^3.0.12 + version: 3.0.12(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) zksync-ethers: - specifier: ^6.7.1 - version: 6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + specifier: ^6.8.0 + version: 6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) packages: "@adraffy/ens-normalize@1.10.0": @@ -166,31 +166,31 @@ packages: integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==, } - "@babel/code-frame@7.24.6": + "@babel/code-frame@7.24.7": resolution: { - integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==, + integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==, } engines: { node: ">=6.9.0" } - "@babel/helper-validator-identifier@7.24.6": + "@babel/helper-validator-identifier@7.24.7": resolution: { - integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==, + integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, } engines: { node: ">=6.9.0" } - "@babel/highlight@7.24.6": + "@babel/highlight@7.24.7": resolution: { - integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==, + integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==, } engines: { node: ">=6.9.0" } - "@babel/runtime@7.24.6": + "@babel/runtime@7.24.7": resolution: { - integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==, + integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==, } engines: { node: ">=6.9.0" } @@ -631,10 +631,10 @@ packages: integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==, } - "@noble/curves@1.3.0": + "@noble/curves@1.4.0": resolution: { - integrity: sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==, + integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==, } "@noble/hashes@1.2.0": @@ -650,13 +650,6 @@ packages: } engines: { node: ">= 16" } - "@noble/hashes@1.3.3": - resolution: - { - integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==, - } - engines: { node: ">= 16" } - "@noble/hashes@1.4.0": resolution: { @@ -870,100 +863,59 @@ packages: integrity: sha512-cHbmuxmhso5n2zdIaaIW4p8NNzrFj0mrnv8ufhAZfM3s3IFrRoGc1zo8hI/n1CiOTPuqUbdZcB79d+2tCKtCNw==, } - "@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1": - resolution: - { - integrity: sha512-KcTodaQw8ivDZyF+D76FokN/HdpgGpfjc/gFCImdLUyqB6eSWVaZPazMbeAjmfhx3R0zm/NYVzxwAokFKgrc0w==, - } - engines: { node: ">= 10" } - cpu: [arm64] - os: [darwin] - - "@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1": - resolution: - { - integrity: sha512-XhQG4BaJE6cIbjAVtzGOGbK3sn1BO9W29uhk9J8y8fZF1DYz0Doj8QDMfpMu+A6TjPDs61lbsmeYodIDnfveSA==, - } - engines: { node: ">= 10" } - cpu: [x64] - os: [darwin] - - "@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.1": + "@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2": resolution: { - integrity: sha512-GHF1VKRdHW3G8CndkwdaeLkVBi5A9u2jwtlS7SLhBc8b5U/GcoL39Q+1CSO3hYqePNP+eV5YI7Zgm0ea6kMHoA==, + integrity: sha512-JaqcWPDZENCvm++lFFGjrDd8mxtf+CtLd2MiXvMNTBD33dContTZ9TWETwNFwg7JTJT5Q9HEecH7FA+HTSsIUw==, } - engines: { node: ">= 10" } - cpu: [x64] - os: [freebsd] - - "@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.1": - resolution: - { - integrity: sha512-g4Cv2fO37ZsUENQ2vwPnZc2zRenHyAxHcyBjKcjaSmmkKrFr64yvzeNO8S3GBFCo90rfochLs99wFVGT/0owpg==, - } - engines: { node: ">= 10" } - cpu: [arm64] - os: [linux] + engines: { node: ">= 12" } - "@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.1": + "@nomicfoundation/solidity-analyzer-darwin-x64@0.1.2": resolution: { - integrity: sha512-WJ3CE5Oek25OGE3WwzK7oaopY8xMw9Lhb0mlYuJl/maZVo+WtP36XoQTb7bW/i8aAdHW5Z+BqrHMux23pvxG3w==, + integrity: sha512-fZNmVztrSXC03e9RONBT+CiksSeYcxI1wlzqyr0L7hsQlK1fzV+f04g2JtQ1c/Fe74ZwdV6aQBdd6Uwl1052sw==, } - engines: { node: ">= 10" } - cpu: [arm64] - os: [linux] + engines: { node: ">= 12" } - "@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.2": resolution: { - integrity: sha512-5WN7leSr5fkUBBjE4f3wKENUy9HQStu7HmWqbtknfXkkil+eNWiBV275IOlpXku7v3uLsXTOKpnnGHJYI2qsdA==, + integrity: sha512-3d54oc+9ZVBuB6nbp8wHylk4xh0N0Gc+bk+/uJae+rUgbOBwQSfuGIbAZt1wBXs5REkSmynEGcqx6DutoK0tPA==, } - engines: { node: ">= 10" } - cpu: [x64] - os: [linux] + engines: { node: ">= 12" } - "@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.2": resolution: { - integrity: sha512-KdYMkJOq0SYPQMmErv/63CwGwMm5XHenEna9X9aB8mQmhDBrYrlAOSsIPgFCUSL0hjxE3xHP65/EPXR/InD2+w==, + integrity: sha512-iDJfR2qf55vgsg7BtJa7iPiFAsYf2d0Tv/0B+vhtnI16+wfQeTbP7teookbGvAo0eJo7aLLm0xfS/GTkvHIucA==, } - engines: { node: ">= 10" } - cpu: [x64] - os: [linux] + engines: { node: ">= 12" } - "@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.2": resolution: { - integrity: sha512-VFZASBfl4qiBYwW5xeY20exWhmv6ww9sWu/krWSesv3q5hA0o1JuzmPHR4LPN6SUZj5vcqci0O6JOL8BPw+APg==, + integrity: sha512-9dlHMAt5/2cpWyuJ9fQNOUXFB/vgSFORg1jpjX1Mh9hJ/MfZXlDdHQ+DpFCs32Zk5pxRBb07yGvSHk9/fezL+g==, } - engines: { node: ">= 10" } - cpu: [arm64] - os: [win32] + engines: { node: ">= 12" } - "@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.2": resolution: { - integrity: sha512-JnFkYuyCSA70j6Si6cS1A9Gh1aHTEb8kOTBApp/c7NRTFGNMH8eaInKlyuuiIbvYFhlXW4LicqyYuWNNq9hkpQ==, + integrity: sha512-GzzVeeJob3lfrSlDKQw2bRJ8rBf6mEYaWY+gW0JnTDHINA0s2gPR4km5RLIj1xeZZOYz4zRw+AEeYgLRqB2NXg==, } - engines: { node: ">= 10" } - cpu: [ia32] - os: [win32] + engines: { node: ">= 12" } - "@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.1": + "@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.2": resolution: { - integrity: sha512-HrVJr6+WjIXGnw3Q9u6KQcbZCtk0caVWhCdFADySvRyUxJ8PnzlaP+MhwNE8oyT8OZ6ejHBRrrgjSqDCFXGirw==, + integrity: sha512-Fdjli4DCcFHb4Zgsz0uEJXZ2K7VEO+w5KVv7HmT7WO10iODdU9csC2az4jrhEsRtiR9Gfd74FlG0NYlw1BMdyA==, } - engines: { node: ">= 10" } - cpu: [x64] - os: [win32] + engines: { node: ">= 12" } - "@nomicfoundation/solidity-analyzer@0.1.1": + "@nomicfoundation/solidity-analyzer@0.1.2": resolution: { - integrity: sha512-1LMtXj1puAxyFusBgUIy5pZk3073cNXYnXUpuNKFghHbIit/xZgbk0AokpUADbNm3gyD6bFWl3LRFh3dhVdREg==, + integrity: sha512-q4n32/FNKIhQ3zQGGw5CvPF6GTvDCpYwIf7bEY/dZTZbgfDsHyjJwURxUJf3VQuuJj+fDIFl4+KkBVbw4Ef6jA==, } engines: { node: ">= 12" } @@ -997,22 +949,22 @@ packages: integrity: sha512-PTef+rMxkM5VQ7sLwLKSjp2DBakYQd661ZJiSRywx+q/nIpm3B/HYGcz5wPZCA5O/QcEP6TatXXDoeMwimbcnw==, } - "@openzeppelin/defender-sdk-base-client@1.13.3": + "@openzeppelin/defender-sdk-base-client@1.13.4": resolution: { - integrity: sha512-r4IiAdN720OWOz/VTMDSMzdHMbJNRk13fK/xabDMCVwthELhdN1F1tXe2AvT4KA+kBelY5nHGIIaQLG4mKgpkg==, + integrity: sha512-fZjDxdL5WBt6kjKN8j6WlfIsggZKv37W1KoRkT0XwYv7Jslmr22i2qUs8ZreAzATD3ESYQs7YlO7ge0ElqdOKg==, } - "@openzeppelin/defender-sdk-deploy-client@1.13.3": + "@openzeppelin/defender-sdk-deploy-client@1.13.4": resolution: { - integrity: sha512-V4Hhx0xdIUiaY04YHQHR4yZolgPAVrRrrwWiG2vA1xu90LJ9Btd99coCC+WasLd21vsqY4D3UT8QMGgPZgCTqw==, + integrity: sha512-1SbdImpjCYmjpDgK7Bff4vak29r/aECabVuQi5TB+7TdbOuRdVxDHu7vFhEpt3yrcPKW1joaNiUNDEc/noUsNQ==, } - "@openzeppelin/defender-sdk-network-client@1.13.3": + "@openzeppelin/defender-sdk-network-client@1.13.4": resolution: { - integrity: sha512-H4TNJAGYWwCozPWEAdYxOi2havYCB7780LR/uEpaNu+c24TrccMwttzjxDoKZHiIqLaa6+Ktd0TZJV1QGCyTEg==, + integrity: sha512-m76WQzqFET4jtFgA74V6Ui4czRoTvBy7leS+BbsIxoKX+NGODhs78y5zq7jSxsLu3c2iY69rujRkzj0Z+sCiiQ==, } "@openzeppelin/hardhat-upgrades@3.1.1": @@ -1083,10 +1035,10 @@ packages: integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==, } - "@scure/bip32@1.3.3": + "@scure/bip32@1.4.0": resolution: { - integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==, + integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==, } "@scure/bip39@1.1.1": @@ -1101,10 +1053,10 @@ packages: integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==, } - "@scure/bip39@1.2.2": + "@scure/bip39@1.3.0": resolution: { - integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==, + integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==, } "@sentry/core@5.30.0": @@ -1507,10 +1459,10 @@ packages: integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==, } - "@types/node@20.14.1": + "@types/node@20.14.2": resolution: { - integrity: sha512-T2MzSGEu+ysB/FkWfqmhV3PLyQlowdptmmgD20C6QxsS8Fmv5SjpZ1ayXaEC0S21/h5UJ9iA6W/5vSNU5l00OA==, + integrity: sha512-xyu6WAMVwv6AKFLB+e/7ySZVr/0zLCzOa7rSpq6jNwpqOrUbcACDWC+53d4n2QHOnDou0fbIsg8wZu/sxrnI4Q==, } "@types/pbkdf2@3.1.2": @@ -1750,10 +1702,10 @@ packages: integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, } - ajv@8.15.0: + ajv@8.16.0: resolution: { - integrity: sha512-15BTtQUOsSrmHCy+B4VnAiJAJxJ8IFgu6fcjFQF3jQYZ78nLSQthlFg4ehp+NLIyfvFgOlxNsjKIEhydtFPVHQ==, + integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==, } amazon-cognito-identity-js@6.3.12: @@ -2858,10 +2810,10 @@ packages: } engines: { node: ">=10" } - deep-eql@4.1.3: + deep-eql@4.1.4: resolution: { - integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==, + integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==, } engines: { node: ">=6" } @@ -3379,10 +3331,10 @@ packages: integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==, } - ethereum-cryptography@2.1.3: + ethereum-cryptography@2.2.0: resolution: { - integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==, + integrity: sha512-hsm9JhfytIf8QME/3B7j4bc8V+VdTU+Vas1aJlvIS96ffoNAosudXvGoEvWmc7QZYdkC8mrMJz9r0fcbw7GyCA==, } ethereumjs-abi@0.6.8: @@ -3532,12 +3484,6 @@ packages: integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, } - fast-uri@2.3.0: - resolution: - { - integrity: sha512-eel5UKGn369gGEWOqBShmFJWfq/xSJvsgDzgLYC845GneayWvXBf0lJCBn5qTABfewy1ZDPoaR5OZCP+kssfuw==, - } - fastq@1.17.1: resolution: { @@ -4637,10 +4583,10 @@ packages: integrity: sha512-iEcHpgM9cn6tsI5MewqxyEega9KPbIDytQTEnu6c0MtlQQhQFofssYuRqxCarZgUdzliepRZPwwwflE4wAIjaA==, } - jackspeak@3.2.3: + jackspeak@3.4.0: resolution: { - integrity: sha512-htOzIMPbpLid/Gq9/zaz9SfExABxqRe1sSCdxntlO/aMD6u0issZQiY25n2GKQUtJ02j7z5sfptlAOMpWWOmvw==, + integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==, } engines: { node: ">=14" } @@ -5821,10 +5767,10 @@ packages: engines: { node: ">=10.13.0" } hasBin: true - prettier@3.3.0: + prettier@3.3.1: resolution: { - integrity: sha512-J9odKxERhCQ10OC2yb93583f6UnYutOeiV5i0zEDS7UGTdUt0u+y8erxl3lBKvwo/JHyyoEdXjwp4dke9oyZ/g==, + integrity: sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==, } engines: { node: ">=14" } hasBin: true @@ -6908,16 +6854,16 @@ packages: integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==, } - tslib@2.6.2: + tslib@2.6.3: resolution: { - integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, + integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==, } - tslog@4.9.2: + tslog@4.9.3: resolution: { - integrity: sha512-wBM+LRJoNl34Bdu8mYEFxpvmOUedpNUwMNQB/NcuPIZKwdDde6xLHUev3bBjXQU7gdurX++X/YE7gLH8eXYsiQ==, + integrity: sha512-oDWuGVONxhVEBtschLf2cs/Jy8i7h1T+CpdkTNWQgdAF7DhRo2G8vMCgILKe7ojdEkLhICWgI1LYSSKaJsRgcw==, } engines: { node: ">=16" } @@ -7608,16 +7554,16 @@ packages: utf-8-validate: optional: true - xdeployer@3.0.11: + xdeployer@3.0.12: resolution: { - integrity: sha512-xFsmSRdDBz5gO/e40gQVV77/hDvsMNCli3PPxZAOsFk0kVNy90Cz1FdJw/VRXPUF0fjFr5IYSPoJ7xQVdKgD/Q==, + integrity: sha512-ItTqRKv6/Jsw4PUs0NoDQ+/bvgMp1MeuQDMK54jw1gy5vu8oETEieIzfq2JROAfw7NA6U5/mU4+qrEr9418F4Q==, } engines: { node: ">=14.0.0" } peerDependencies: "@nomicfoundation/hardhat-ethers": ^3.0.6 - ethers: ^6.12.1 - hardhat: ^2.22.4 + ethers: ^6.13.0 + hardhat: ^2.22.5 xhr-request-promise@0.1.3: resolution: @@ -7706,10 +7652,10 @@ packages: } engines: { node: ">=10" } - zksync-ethers@6.7.1: + zksync-ethers@6.8.0: resolution: { - integrity: sha512-JBYxQLkA/jCFvZwjtKBecnlMy+0Mw3/q9xXjTfM4R6qspl/tKhCiKney61Q6hDkopm7x8SEq1gzH8HwzfZHHgw==, + integrity: sha512-y/8IZcotKfdG04qKKhGTWA0k/6woe3LmrwKVBqQ5NuvWPb0ClEv5y9QF/oNY9V5hZXotavk5N+MRAG0mt2DF9w==, } engines: { node: ">=18.9.0" } peerDependencies: @@ -7744,27 +7690,27 @@ snapshots: "@aws-sdk/types@3.577.0": dependencies: "@smithy/types": 3.0.0 - tslib: 2.6.2 + tslib: 2.6.3 "@aws-sdk/util-utf8-browser@3.259.0": dependencies: - tslib: 2.6.2 + tslib: 2.6.3 - "@babel/code-frame@7.24.6": + "@babel/code-frame@7.24.7": dependencies: - "@babel/highlight": 7.24.6 + "@babel/highlight": 7.24.7 picocolors: 1.0.1 - "@babel/helper-validator-identifier@7.24.6": {} + "@babel/helper-validator-identifier@7.24.7": {} - "@babel/highlight@7.24.6": + "@babel/highlight@7.24.7": dependencies: - "@babel/helper-validator-identifier": 7.24.6 + "@babel/helper-validator-identifier": 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.1 - "@babel/runtime@7.24.6": + "@babel/runtime@7.24.7": dependencies: regenerator-runtime: 0.14.1 @@ -7817,7 +7763,7 @@ snapshots: "@ethereumjs/util@8.1.0": dependencies: "@ethereumjs/rlp": 4.0.1 - ethereum-cryptography: 2.1.3 + ethereum-cryptography: 2.2.0 micro-ftch: 0.3.1 "@ethersproject/abi@5.7.0": @@ -8195,33 +8141,33 @@ snapshots: bignumber.js: 9.1.2 rxjs: 7.8.1 - "@matterlabs/hardhat-zksync-deploy@1.4.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(zksync-ethers@6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)))": + "@matterlabs/hardhat-zksync-deploy@1.4.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(zksync-ethers@6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)))": dependencies: - "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) chai: 4.4.1 chalk: 4.1.2 ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) fs-extra: 11.2.0 glob: 10.4.1 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) lodash: 4.17.21 sinon: 17.0.1 sinon-chai: 3.7.0(chai@4.4.1)(sinon@17.0.1) ts-morph: 21.0.1 - zksync-ethers: 6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + zksync-ethers: 6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) transitivePeerDependencies: - encoding - supports-color - "@matterlabs/hardhat-zksync-ethers@1.0.0(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)(zksync-ethers@6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)))": + "@matterlabs/hardhat-zksync-ethers@1.0.0(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)(zksync-ethers@6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)))": dependencies: - "@matterlabs/hardhat-zksync-deploy": 1.4.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(zksync-ethers@6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))) - "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@matterlabs/hardhat-zksync-deploy": 1.4.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(zksync-ethers@6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))) + "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) chai: 4.4.1 chalk: 5.3.0 ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) - zksync-ethers: 6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + zksync-ethers: 6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) transitivePeerDependencies: - bufferutil - c-kzg @@ -8231,7 +8177,7 @@ snapshots: - typescript - utf-8-validate - "@matterlabs/hardhat-zksync-solc@1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": + "@matterlabs/hardhat-zksync-solc@1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": dependencies: "@nomiclabs/hardhat-docker": 2.0.2 chai: 4.4.1 @@ -8239,7 +8185,7 @@ snapshots: debug: 4.3.5 dockerode: 4.0.2 fs-extra: 11.2.0 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) proper-lockfile: 4.1.2 semver: 7.6.2 sinon: 17.0.1 @@ -8249,19 +8195,19 @@ snapshots: - encoding - supports-color - "@matterlabs/hardhat-zksync-verify@1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)": + "@matterlabs/hardhat-zksync-verify@1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)": dependencies: "@ethersproject/abi": 5.7.0 "@ethersproject/address": 5.7.0 - "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) - "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@openzeppelin/contracts": 4.9.6 axios: 1.7.2(debug@4.3.5) cbor: 8.1.0 chai: 4.4.1 chalk: 4.1.2 debug: 4.3.5 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) sinon: 17.0.1 sinon-chai: 3.7.0(chai@4.4.1)(sinon@17.0.1) transitivePeerDependencies: @@ -8285,16 +8231,14 @@ snapshots: dependencies: "@noble/hashes": 1.3.2 - "@noble/curves@1.3.0": + "@noble/curves@1.4.0": dependencies: - "@noble/hashes": 1.3.3 + "@noble/hashes": 1.4.0 "@noble/hashes@1.2.0": {} "@noble/hashes@1.3.2": {} - "@noble/hashes@1.3.3": {} - "@noble/hashes@1.4.0": {} "@noble/secp256k1@1.7.1": {} @@ -8355,55 +8299,55 @@ snapshots: "@nomicfoundation/ethereumjs-rlp": 5.0.4 ethereum-cryptography: 0.1.3 - "@nomicfoundation/hardhat-chai-matchers@2.0.7(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(chai@4.4.1)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": + "@nomicfoundation/hardhat-chai-matchers@2.0.7(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(chai@4.4.1)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": dependencies: - "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@types/chai-as-promised": 7.1.8 chai: 4.4.1 chai-as-promised: 7.1.2(chai@4.4.1) - deep-eql: 4.1.3 + deep-eql: 4.1.4 ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) ordinal: 1.0.3 - "@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": + "@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": dependencies: debug: 4.3.5 ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) lodash.isequal: 4.5.0 transitivePeerDependencies: - supports-color - "@nomicfoundation/hardhat-foundry@1.1.2(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": + "@nomicfoundation/hardhat-foundry@1.1.2(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": dependencies: chalk: 2.4.2 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) - "@nomicfoundation/hardhat-ignition-ethers@0.15.4(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": + "@nomicfoundation/hardhat-ignition-ethers@0.15.4(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-ignition@0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10))(@nomicfoundation/ignition-core@0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": dependencies: - "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) - "@nomicfoundation/hardhat-ignition": 0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@nomicfoundation/hardhat-ignition": 0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) "@nomicfoundation/ignition-core": 0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) - "@nomicfoundation/hardhat-ignition@0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": + "@nomicfoundation/hardhat-ignition@0.15.4(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": dependencies: - "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@nomicfoundation/ignition-core": 0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) "@nomicfoundation/ignition-ui": 0.15.4 chalk: 4.1.2 debug: 4.3.5 fs-extra: 10.1.0 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) prompts: 2.4.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - "@nomicfoundation/hardhat-ledger@1.0.3(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": + "@nomicfoundation/hardhat-ledger@1.0.3(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": dependencies: "@ledgerhq/errors": 6.16.4 "@ledgerhq/hw-app-eth": 6.33.6(debug@4.3.5) @@ -8415,7 +8359,7 @@ snapshots: env-paths: 2.2.1 ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) fs-extra: 7.0.1 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) io-ts: 1.10.4 ora: 5.4.1 transitivePeerDependencies: @@ -8424,19 +8368,19 @@ snapshots: - supports-color - utf-8-validate - "@nomicfoundation/hardhat-network-helpers@1.0.11(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": + "@nomicfoundation/hardhat-network-helpers@1.0.11(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": dependencies: ethereumjs-util: 7.1.5 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) - "@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": + "@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))": dependencies: "@ethersproject/abi": 5.7.0 "@ethersproject/address": 5.7.0 cbor: 8.1.0 chalk: 2.4.2 debug: 4.3.5 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) lodash.clonedeep: 4.5.0 semver: 6.3.1 table: 6.8.2 @@ -8447,7 +8391,7 @@ snapshots: "@nomicfoundation/ignition-core@0.15.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)": dependencies: "@ethersproject/address": 5.6.1 - "@nomicfoundation/solidity-analyzer": 0.1.1 + "@nomicfoundation/solidity-analyzer": 0.1.2 cbor: 9.0.2 debug: 4.3.5 ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -8462,48 +8406,36 @@ snapshots: "@nomicfoundation/ignition-ui@0.15.4": {} - "@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.1": + "@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2": optional: true - "@nomicfoundation/solidity-analyzer-darwin-x64@0.1.1": + "@nomicfoundation/solidity-analyzer-darwin-x64@0.1.2": optional: true - "@nomicfoundation/solidity-analyzer-freebsd-x64@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.2": optional: true - "@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.2": optional: true - "@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.2": optional: true - "@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.1": + "@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.2": optional: true - "@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.1": + "@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.2": optional: true - "@nomicfoundation/solidity-analyzer-win32-arm64-msvc@0.1.1": - optional: true - - "@nomicfoundation/solidity-analyzer-win32-ia32-msvc@0.1.1": - optional: true - - "@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.1": - optional: true - - "@nomicfoundation/solidity-analyzer@0.1.1": + "@nomicfoundation/solidity-analyzer@0.1.2": optionalDependencies: - "@nomicfoundation/solidity-analyzer-darwin-arm64": 0.1.1 - "@nomicfoundation/solidity-analyzer-darwin-x64": 0.1.1 - "@nomicfoundation/solidity-analyzer-freebsd-x64": 0.1.1 - "@nomicfoundation/solidity-analyzer-linux-arm64-gnu": 0.1.1 - "@nomicfoundation/solidity-analyzer-linux-arm64-musl": 0.1.1 - "@nomicfoundation/solidity-analyzer-linux-x64-gnu": 0.1.1 - "@nomicfoundation/solidity-analyzer-linux-x64-musl": 0.1.1 - "@nomicfoundation/solidity-analyzer-win32-arm64-msvc": 0.1.1 - "@nomicfoundation/solidity-analyzer-win32-ia32-msvc": 0.1.1 - "@nomicfoundation/solidity-analyzer-win32-x64-msvc": 0.1.1 + "@nomicfoundation/solidity-analyzer-darwin-arm64": 0.1.2 + "@nomicfoundation/solidity-analyzer-darwin-x64": 0.1.2 + "@nomicfoundation/solidity-analyzer-linux-arm64-gnu": 0.1.2 + "@nomicfoundation/solidity-analyzer-linux-arm64-musl": 0.1.2 + "@nomicfoundation/solidity-analyzer-linux-x64-gnu": 0.1.2 + "@nomicfoundation/solidity-analyzer-linux-x64-musl": 0.1.2 + "@nomicfoundation/solidity-analyzer-win32-x64-msvc": 0.1.2 "@nomiclabs/hardhat-docker@2.0.2": dependencies: @@ -8542,49 +8474,49 @@ snapshots: - debug - encoding - "@openzeppelin/defender-sdk-base-client@1.13.3": + "@openzeppelin/defender-sdk-base-client@1.13.4": dependencies: amazon-cognito-identity-js: 6.3.12 async-retry: 1.3.3 transitivePeerDependencies: - encoding - "@openzeppelin/defender-sdk-deploy-client@1.13.3(debug@4.3.5)": + "@openzeppelin/defender-sdk-deploy-client@1.13.4(debug@4.3.5)": dependencies: - "@openzeppelin/defender-sdk-base-client": 1.13.3 + "@openzeppelin/defender-sdk-base-client": 1.13.4 axios: 1.7.2(debug@4.3.5) lodash: 4.17.21 transitivePeerDependencies: - debug - encoding - "@openzeppelin/defender-sdk-network-client@1.13.3(debug@4.3.5)": + "@openzeppelin/defender-sdk-network-client@1.13.4(debug@4.3.5)": dependencies: - "@openzeppelin/defender-sdk-base-client": 1.13.3 + "@openzeppelin/defender-sdk-base-client": 1.13.4 axios: 1.7.2(debug@4.3.5) lodash: 4.17.21 transitivePeerDependencies: - debug - encoding - "@openzeppelin/hardhat-upgrades@3.1.1(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": + "@openzeppelin/hardhat-upgrades@3.1.1(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": dependencies: - "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) "@openzeppelin/defender-admin-client": 1.54.6(bufferutil@4.0.8)(debug@4.3.5)(utf-8-validate@5.0.10) "@openzeppelin/defender-base-client": 1.54.6(debug@4.3.5) - "@openzeppelin/defender-sdk-base-client": 1.13.3 - "@openzeppelin/defender-sdk-deploy-client": 1.13.3(debug@4.3.5) - "@openzeppelin/defender-sdk-network-client": 1.13.3(debug@4.3.5) + "@openzeppelin/defender-sdk-base-client": 1.13.4 + "@openzeppelin/defender-sdk-deploy-client": 1.13.4(debug@4.3.5) + "@openzeppelin/defender-sdk-network-client": 1.13.4(debug@4.3.5) "@openzeppelin/upgrades-core": 1.33.1 chalk: 4.1.2 debug: 4.3.5 ethereumjs-util: 7.1.5 ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) proper-lockfile: 4.1.2 undici: 6.18.2 optionalDependencies: - "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) transitivePeerDependencies: - bufferutil - encoding @@ -8633,10 +8565,10 @@ snapshots: "@noble/hashes": 1.3.2 "@scure/base": 1.1.6 - "@scure/bip32@1.3.3": + "@scure/bip32@1.4.0": dependencies: - "@noble/curves": 1.3.0 - "@noble/hashes": 1.3.3 + "@noble/curves": 1.4.0 + "@noble/hashes": 1.4.0 "@scure/base": 1.1.6 "@scure/bip39@1.1.1": @@ -8649,9 +8581,9 @@ snapshots: "@noble/hashes": 1.3.2 "@scure/base": 1.1.6 - "@scure/bip39@1.2.2": + "@scure/bip39@1.3.0": dependencies: - "@noble/hashes": 1.3.3 + "@noble/hashes": 1.4.0 "@scure/base": 1.1.6 "@sentry/core@5.30.0": @@ -8729,7 +8661,7 @@ snapshots: "@smithy/types@3.0.0": dependencies: - tslib: 2.6.2 + tslib: 2.6.3 "@solidity-parser/parser@0.17.0": {} @@ -8743,20 +8675,20 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - "@tenderly/hardhat-tenderly@2.2.2(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@types/node@20.14.1)(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": + "@tenderly/hardhat-tenderly@2.2.2(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@types/node@20.14.2)(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": dependencies: "@ethersproject/bignumber": 5.7.0 - "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) - "@openzeppelin/hardhat-upgrades": 3.1.1(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@openzeppelin/hardhat-upgrades": 3.1.1(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) "@openzeppelin/upgrades-core": 1.33.1 axios: 1.7.2(debug@4.3.5) ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) fs-extra: 10.1.0 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) hardhat-deploy: 0.11.45(bufferutil@4.0.8)(utf-8-validate@5.0.10) - tenderly: 0.9.1(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) - ts-node: 10.9.2(@types/node@20.14.1)(typescript@5.4.5) - tslog: 4.9.2 + tenderly: 0.9.1(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) + ts-node: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) + tslog: 4.9.3 typescript: 5.4.5 transitivePeerDependencies: - "@nomicfoundation/hardhat-verify" @@ -8821,12 +8753,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@truffle/dashboard-hardhat-plugin@0.2.15(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": + "@truffle/dashboard-hardhat-plugin@0.2.15(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)": dependencies: "@truffle/config": 1.3.61(bufferutil@4.0.8)(utf-8-validate@5.0.10) "@truffle/dashboard-message-bus-client": 0.1.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) "@truffle/from-hardhat": 0.2.20(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - encoding @@ -8947,27 +8879,27 @@ snapshots: typechain: 8.3.2(typescript@5.4.5) typescript: 5.4.5 - "@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))": + "@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))": dependencies: "@typechain/ethers-v6": 0.5.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5) ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) fs-extra: 9.1.0 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) typechain: 8.3.2(typescript@5.4.5) "@types/bn.js@4.11.6": dependencies: - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/bn.js@5.1.5": dependencies: - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/cacheable-request@6.0.3": dependencies: "@types/http-cache-semantics": 4.0.4 "@types/keyv": 3.1.4 - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/responselike": 1.0.3 "@types/chai-as-promised@7.1.8": @@ -8979,13 +8911,13 @@ snapshots: "@types/glob@7.2.0": dependencies: "@types/minimatch": 5.1.2 - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/http-cache-semantics@4.0.4": {} "@types/keyv@3.1.4": dependencies: - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/lru-cache@5.1.1": {} @@ -8997,13 +8929,13 @@ snapshots: "@types/node@18.15.13": {} - "@types/node@20.14.1": + "@types/node@20.14.2": dependencies: undici-types: 5.26.5 "@types/pbkdf2@3.1.2": dependencies: - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/prettier@2.7.3": {} @@ -9011,11 +8943,11 @@ snapshots: "@types/responselike@1.0.3": dependencies: - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/secp256k1@4.0.6": dependencies: - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@types/w3c-web-usb@1.0.10": {} @@ -9145,9 +9077,9 @@ snapshots: clean-stack: 2.2.0 indent-string: 4.0.0 - ajv-formats@2.1.1(ajv@8.15.0): + ajv-formats@2.1.1(ajv@8.16.0): optionalDependencies: - ajv: 8.15.0 + ajv: 8.16.0 ajv@6.12.6: dependencies: @@ -9156,12 +9088,12 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.15.0: + ajv@8.16.0: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 2.3.0 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 + uri-js: 4.4.1 amazon-cognito-identity-js@6.3.12: dependencies: @@ -9286,7 +9218,7 @@ snapshots: axios-retry@3.9.1: dependencies: - "@babel/runtime": 7.24.6 + "@babel/runtime": 7.24.7 is-retry-allowed: 2.2.0 axios@0.21.4(debug@4.3.5): @@ -9519,7 +9451,7 @@ snapshots: dependencies: assertion-error: 1.1.0 check-error: 1.0.3 - deep-eql: 4.1.3 + deep-eql: 4.1.4 get-func-name: 2.0.2 loupe: 2.3.7 pathval: 1.1.1 @@ -9672,8 +9604,8 @@ snapshots: conf@10.2.0: dependencies: - ajv: 8.15.0 - ajv-formats: 2.1.1(ajv@8.15.0) + ajv: 8.16.0 + ajv-formats: 2.1.1(ajv@8.16.0) atomically: 1.7.0 debounce-fn: 4.0.0 dot-prop: 6.0.1 @@ -9830,7 +9762,7 @@ snapshots: dependencies: mimic-response: 3.1.0 - deep-eql@4.1.3: + deep-eql@4.1.4: dependencies: type-detect: 4.0.8 @@ -10243,12 +10175,12 @@ snapshots: "@scure/bip32": 1.1.5 "@scure/bip39": 1.1.1 - ethereum-cryptography@2.1.3: + ethereum-cryptography@2.2.0: dependencies: - "@noble/curves": 1.3.0 - "@noble/hashes": 1.3.3 - "@scure/bip32": 1.3.3 - "@scure/bip39": 1.2.2 + "@noble/curves": 1.4.0 + "@noble/hashes": 1.4.0 + "@scure/bip32": 1.4.0 + "@scure/bip39": 1.3.0 ethereumjs-abi@0.6.8: dependencies: @@ -10422,8 +10354,6 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-uri@2.3.0: {} - fastq@1.17.1: dependencies: reusify: 1.0.4 @@ -10633,7 +10563,7 @@ snapshots: glob@10.4.1: dependencies: foreground-child: 3.1.1 - jackspeak: 3.2.3 + jackspeak: 3.4.0 minimatch: 9.0.4 minipass: 7.1.2 path-scurry: 1.11.1 @@ -10795,17 +10725,17 @@ snapshots: ajv: 6.12.6 har-schema: 2.0.0 - hardhat-abi-exporter@2.10.1(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): + hardhat-abi-exporter@2.10.1(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): dependencies: "@ethersproject/abi": 5.7.0 delete-empty: 3.0.0 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) - hardhat-contract-sizer@2.10.0(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): + hardhat-contract-sizer@2.10.0(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): dependencies: chalk: 4.1.2 cli-table3: 0.6.5 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) strip-ansi: 6.0.1 hardhat-deploy@0.11.45(bufferutil@4.0.8)(utf-8-validate@5.0.10): @@ -10839,7 +10769,7 @@ snapshots: - supports-color - utf-8-validate - hardhat-gas-reporter@2.2.0(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typescript@5.4.5)(utf-8-validate@5.0.10): + hardhat-gas-reporter@2.2.0(bufferutil@4.0.8)(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: "@ethersproject/abi": 5.7.0 "@ethersproject/bytes": 5.7.0 @@ -10849,9 +10779,9 @@ snapshots: brotli-wasm: 2.0.1 chalk: 4.1.2 cli-table3: 0.6.5 - ethereum-cryptography: 2.1.3 + ethereum-cryptography: 2.2.0 glob: 10.4.1 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) jsonschema: 1.4.1 lodash: 4.17.21 markdown-table: 2.0.0 @@ -10864,7 +10794,7 @@ snapshots: - utf-8-validate - zod - hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10): + hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10): dependencies: "@ethersproject/abi": 5.7.0 "@metamask/eth-sig-util": 4.0.1 @@ -10872,7 +10802,7 @@ snapshots: "@nomicfoundation/ethereumjs-common": 4.0.4 "@nomicfoundation/ethereumjs-tx": 5.0.4 "@nomicfoundation/ethereumjs-util": 9.0.4 - "@nomicfoundation/solidity-analyzer": 0.1.1 + "@nomicfoundation/solidity-analyzer": 0.1.2 "@sentry/node": 5.30.0 "@types/bn.js": 5.1.5 "@types/lru-cache": 5.1.1 @@ -10910,7 +10840,7 @@ snapshots: uuid: 8.3.2 ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) optionalDependencies: - ts-node: 10.9.2(@types/node@20.14.1)(typescript@5.4.5) + ts-node: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: - bufferutil @@ -11192,9 +11122,9 @@ snapshots: iter-tools@7.5.3: dependencies: - "@babel/runtime": 7.24.6 + "@babel/runtime": 7.24.7 - jackspeak@3.2.3: + jackspeak@3.4.0: dependencies: "@isaacs/cliui": 8.0.2 optionalDependencies: @@ -11713,7 +11643,7 @@ snapshots: parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.24.6 + "@babel/code-frame": 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -11790,16 +11720,16 @@ snapshots: prelude-ls@1.2.1: {} - prettier-plugin-solidity@1.3.1(prettier@3.3.0): + prettier-plugin-solidity@1.3.1(prettier@3.3.1): dependencies: "@solidity-parser/parser": 0.17.0 - prettier: 3.3.0 + prettier: 3.3.1 semver: 7.6.2 solidity-comments-extractor: 0.0.8 prettier@2.8.8: {} - prettier@3.3.0: {} + prettier@3.3.1: {} process-nextick-args@2.0.1: {} @@ -12032,7 +11962,7 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.6.2 + tslib: 2.6.3 safe-array-concat@1.1.2: dependencies: @@ -12281,7 +12211,7 @@ snapshots: solidity-comments-extractor@0.0.8: {} - solidity-coverage@0.8.12(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): + solidity-coverage@0.8.12(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): dependencies: "@ethersproject/abi": 5.7.0 "@solidity-parser/parser": 0.18.0 @@ -12292,7 +12222,7 @@ snapshots: ghost-testrpc: 0.0.2 global-modules: 2.0.0 globby: 10.0.2 - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) jsonschema: 1.4.1 lodash: 4.17.21 mocha: 10.4.0 @@ -12456,7 +12386,7 @@ snapshots: table@6.8.2: dependencies: - ajv: 8.15.0 + ajv: 8.16.0 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 @@ -12511,7 +12441,7 @@ snapshots: safe-buffer: 5.2.1 yallist: 3.1.1 - tenderly@0.9.1(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5): + tenderly@0.9.1(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5): dependencies: axios: 0.27.2 cli-table3: 0.6.5 @@ -12519,9 +12449,9 @@ snapshots: js-yaml: 4.1.0 open: 8.4.2 prompts: 2.4.2 - tslog: 4.9.2 + tslog: 4.9.3 optionalDependencies: - ts-node: 10.9.2(@types/node@20.14.1)(typescript@5.4.5) + ts-node: 10.9.2(@types/node@20.14.2)(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: - debug @@ -12577,14 +12507,14 @@ snapshots: "@ts-morph/common": 0.22.0 code-block-writer: 12.0.0 - ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5): + ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5): dependencies: "@cspotcode/source-map-support": 0.8.1 "@tsconfig/node10": 1.0.11 "@tsconfig/node12": 1.0.11 "@tsconfig/node14": 1.0.3 "@tsconfig/node16": 1.0.4 - "@types/node": 20.14.1 + "@types/node": 20.14.2 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -12599,9 +12529,9 @@ snapshots: tslib@2.4.0: {} - tslib@2.6.2: {} + tslib@2.6.3: {} - tslog@4.9.2: {} + tslog@4.9.3: {} tsort@0.0.1: {} @@ -13004,7 +12934,7 @@ snapshots: "@ethereumjs/util": 8.1.0 bn.js: 5.2.1 ethereum-bloom-filters: 1.1.0 - ethereum-cryptography: 2.1.3 + ethereum-cryptography: 2.2.0 ethjs-unit: 0.1.6 number-to-bn: 1.7.0 randombytes: 2.1.0 @@ -13125,11 +13055,11 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - xdeployer@3.0.11(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): + xdeployer@3.0.12(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)))(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)): dependencies: - "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) + "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)) ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) + hardhat: 2.22.5(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10) xhr-request-promise@0.1.3: dependencies: @@ -13185,7 +13115,7 @@ snapshots: yocto-queue@0.1.0: {} - zksync-ethers@6.7.1(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): + zksync-ethers@6.8.0(ethers@6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: ethers: 6.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)