From eeda076c0fee3017930eb86d27616dc508bbfc90 Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Thu, 6 Jun 2024 17:38:41 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20Add=20Telos,=20Core,=20and=20Rootst?= =?UTF-8?q?ock=20Main=20and=20Test=20Network=20Deployments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- README.md | 6 ++ hardhat.config.ts | 93 ++++++++++++++++++++++ package.json | 10 ++- pnpm-lock.yaml | 198 ++++++++++++++++++++++------------------------ 4 files changed, 202 insertions(+), 105 deletions(-) diff --git a/README.md b/README.md index 02bd2758..388c4452 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,9 @@ All files | 100 | 100 | 100 | 100 | - Kroma: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://kromascan.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) - Kava: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://kavascan.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) - X Layer: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://www.oklink.com/xlayer/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) + - Core: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://scan.coredao.org/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) + - Telos: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://www.teloscan.io/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) + - Rootstock: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://rootstock.blockscout.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) - **Ethereum Test Networks:** - Rinkeby (⚠️ Deprecated): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://rinkeby.etherscan.io/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) - Ropsten (⚠️ Deprecated): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://ropsten.etherscan.io/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) @@ -135,3 +138,6 @@ All files | 100 | 100 | 100 | 100 | - Kroma Testnet (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://sepolia.kromascan.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) - Sei Arctic Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://seistream.app/account/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) - X Layer (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://www.oklink.com/xlayer-test/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) + - Core Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://scan.test.btcs.network/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) + - Telos Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://www.teloscan.io/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) + - Rootstock Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://rootstock-testnet.blockscout.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2) diff --git a/hardhat.config.ts b/hardhat.config.ts index 119eb880..68565c2b 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -605,6 +605,42 @@ const config: HardhatUserConfig = { accounts: process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [], }, + coreTestnet: { + chainId: 1115, + url: process.env.CORE_TESTNET_URL || "", + accounts: + process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [], + }, + coreMain: { + chainId: 1116, + url: process.env.CORE_MAINNET_URL || "", + accounts: + process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [], + }, + telosTestnet: { + chainId: 41, + url: process.env.TELOS_TESTNET_URL || "", + accounts: + process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [], + }, + telosMain: { + chainId: 40, + url: process.env.TELOS_MAINNET_URL || "", + accounts: + process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [], + }, + rootstockTestnet: { + chainId: 31, + url: process.env.ROOTSTOCK_TESTNET_URL || "", + accounts: + process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [], + }, + rootstockMain: { + chainId: 30, + url: process.env.ROOTSTOCK_MAINNET_URL || "", + accounts: + process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [], + }, }, gasReporter: { enabled: process.env.REPORT_GAS !== undefined, @@ -747,6 +783,15 @@ const config: HardhatUserConfig = { // For BOB testnet & mainnet bob: process.env.BOB_API_KEY || "", bobTestnet: process.env.BOB_API_KEY || "", + // For Core testnet & mainnet + core: process.env.CORE_MAINNET_API_KEY || "", + coreTestnet: process.env.CORE_TESTNET_API_KEY || "", + // For Telos testnet & mainnet + telos: process.env.TELOS_API_KEY || "", + telosTestnet: process.env.TELOS_API_KEY || "", + // For Rootstock testnet & mainnet + rootstock: process.env.ROOTSTOCK_API_KEY || "", + rootstockTestnet: process.env.ROOTSTOCK_API_KEY || "", }, customChains: [ { @@ -1225,6 +1270,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", + }, + }, ], }, }; diff --git a/package.json b/package.json index 8da415f6..5ae6b677 100644 --- a/package.json +++ b/package.json @@ -116,6 +116,12 @@ "deploy:xlayermain": "npx hardhat run --network xlayerMain scripts/deploy.ts", "deploy:bobtestnet": "npx hardhat run --network bobTestnet scripts/deploy.ts", "deploy:bobmain": "npx hardhat run --network bobMain scripts/deploy.ts", + "deploy:coretestnet": "npx hardhat run --network coreTestnet scripts/deploy.ts", + "deploy:coremain": "npx hardhat run --network coreMain scripts/deploy.ts", + "deploy:telostestnet": "npx hardhat run --network telosTestnet scripts/deploy.ts", + "deploy:telosmain": "npx hardhat run --network telosMain scripts/deploy.ts", + "deploy:rootstocktestnet": "npx hardhat run --network rootstockTestnet scripts/deploy.ts", + "deploy:rootstockmain": "npx hardhat run --network rootstockMain scripts/deploy.ts", "prettier:check": "npx prettier -c \"**/*.{js,ts,md,sol,json,yml,yaml}\"", "prettier:fix": "npx prettier -w \"**/*.{js,ts,md,sol,json,yml,yaml}\"", "solhint:check": "npx solhint \"contracts/**/*.sol\"", @@ -138,7 +144,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", "dotenv": "^16.4.5", "eslint": "^8.57.0", @@ -148,7 +154,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", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0df51533..ffd1fdcc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,28 +12,28 @@ importers: version: 9.4.0 "@matterlabs/hardhat-zksync-deploy": specifier: ^1.4.0 - version: 1.4.0(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))(zksync-ethers@6.7.1(ethers@6.13.0)) + version: 1.4.0(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))(zksync-ethers@6.7.1(ethers@6.13.0)) "@matterlabs/hardhat-zksync-ethers": specifier: 1.0.0 - version: 1.0.0(ethers@6.13.0)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(zksync-ethers@6.7.1(ethers@6.13.0)) + version: 1.0.0(ethers@6.13.0)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(zksync-ethers@6.7.1(ethers@6.13.0)) "@matterlabs/hardhat-zksync-solc": specifier: ^1.1.4 - version: 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) "@matterlabs/hardhat-zksync-verify": specifier: ^1.4.3 - version: 1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(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))(typescript@5.4.5) + version: 1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(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))(typescript@5.4.5) "@nomicfoundation/hardhat-chai-matchers": specifier: ^2.0.7 - version: 2.0.7(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)))(chai@4.4.1)(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 2.0.7(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)))(chai@4.4.1)(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) "@nomicfoundation/hardhat-ethers": specifier: ^3.0.6 - version: 3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) "@nomicfoundation/hardhat-network-helpers": specifier: ^1.0.11 - version: 1.0.11(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 1.0.11(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) "@nomicfoundation/hardhat-verify": specifier: ^2.0.8 - version: 2.0.8(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 2.0.8(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) "@openzeppelin/contracts": specifier: ^4.9.6 version: 4.9.6 @@ -42,7 +42,7 @@ importers: version: 0.5.1(ethers@6.13.0)(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)(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))(typechain@8.3.2(typescript@5.4.5)) + version: 9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.0)(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))(typechain@8.3.2(typescript@5.4.5)) "@types/chai": specifier: ^4.3.16 version: 4.3.16 @@ -50,8 +50,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 @@ -69,31 +69,31 @@ importers: version: 6.13.0 hardhat: specifier: ^2.22.5 - version: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + version: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) hardhat-abi-exporter: specifier: ^2.10.1 - version: 2.10.1(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 2.10.1(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) hardhat-contract-sizer: specifier: ^2.10.0 - version: 2.10.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 2.10.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) hardhat-gas-reporter: specifier: ^2.2.0 - version: 2.2.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5) + version: 2.2.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5) 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(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + version: 0.8.12(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) 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) @@ -120,24 +120,24 @@ packages: integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==, } - "@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" } @@ -1013,10 +1013,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": @@ -1208,10 +1208,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==, } amdefine@1.0.1: @@ -1915,10 +1915,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" } @@ -2315,12 +2315,6 @@ packages: integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, } - fast-uri@2.3.0: - resolution: - { - integrity: sha512-eel5UKGn369gGEWOqBShmFJWfq/xSJvsgDzgLYC845GneayWvXBf0lJCBn5qTABfewy1ZDPoaR5OZCP+kssfuw==, - } - fastq@1.17.1: resolution: { @@ -2941,10 +2935,10 @@ packages: peerDependencies: ws: "*" - jackspeak@3.2.3: + jackspeak@3.4.0: resolution: { - integrity: sha512-htOzIMPbpLid/Gq9/zaz9SfExABxqRe1sSCdxntlO/aMD6u0issZQiY25n2GKQUtJ02j7z5sfptlAOMpWWOmvw==, + integrity: sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==, } engines: { node: ">=14" } @@ -3700,10 +3694,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 @@ -4839,16 +4833,16 @@ snapshots: "@adraffy/ens-normalize@1.10.1": {} - "@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 @@ -5056,15 +5050,15 @@ snapshots: "@jridgewell/resolve-uri": 3.1.2 "@jridgewell/sourcemap-codec": 1.4.15 - "@matterlabs/hardhat-zksync-deploy@1.4.0(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))(zksync-ethers@6.7.1(ethers@6.13.0))": + "@matterlabs/hardhat-zksync-deploy@1.4.0(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))(zksync-ethers@6.7.1(ethers@6.13.0))": dependencies: - "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) chai: 4.4.1 chalk: 4.1.2 ethers: 6.13.0 fs-extra: 11.2.0 glob: 10.4.1 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) lodash: 4.17.21 sinon: 17.0.1 sinon-chai: 3.7.0(chai@4.4.1)(sinon@17.0.1) @@ -5074,14 +5068,14 @@ snapshots: - encoding - supports-color - "@matterlabs/hardhat-zksync-ethers@1.0.0(ethers@6.13.0)(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)(zksync-ethers@6.7.1(ethers@6.13.0))": + "@matterlabs/hardhat-zksync-ethers@1.0.0(ethers@6.13.0)(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)(zksync-ethers@6.7.1(ethers@6.13.0))": dependencies: - "@matterlabs/hardhat-zksync-deploy": 1.4.0(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))(zksync-ethers@6.7.1(ethers@6.13.0)) - "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + "@matterlabs/hardhat-zksync-deploy": 1.4.0(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))(zksync-ethers@6.7.1(ethers@6.13.0)) + "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) chai: 4.4.1 chalk: 5.3.0 ethers: 6.13.0 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) zksync-ethers: 6.7.1(ethers@6.13.0) transitivePeerDependencies: - bufferutil @@ -5092,7 +5086,7 @@ snapshots: - typescript - utf-8-validate - "@matterlabs/hardhat-zksync-solc@1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))": + "@matterlabs/hardhat-zksync-solc@1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))": dependencies: "@nomiclabs/hardhat-docker": 2.0.2 chai: 4.4.1 @@ -5100,7 +5094,7 @@ snapshots: debug: 4.3.5 dockerode: 4.0.2 fs-extra: 11.2.0 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) proper-lockfile: 4.1.2 semver: 7.6.2 sinon: 17.0.1 @@ -5110,19 +5104,19 @@ snapshots: - encoding - supports-color - "@matterlabs/hardhat-zksync-verify@1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(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))(typescript@5.4.5)": + "@matterlabs/hardhat-zksync-verify@1.4.3(@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(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))(typescript@5.4.5)": dependencies: "@ethersproject/abi": 5.7.0 "@ethersproject/address": 5.7.0 - "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) - "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + "@matterlabs/hardhat-zksync-solc": 1.1.4(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) + "@nomicfoundation/hardhat-verify": 2.0.8(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) "@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(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) sinon: 17.0.1 sinon-chai: 3.7.0(chai@4.4.1)(sinon@17.0.1) transitivePeerDependencies: @@ -5216,39 +5210,39 @@ 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)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)))(chai@4.4.1)(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))": + "@nomicfoundation/hardhat-chai-matchers@2.0.7(@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)))(chai@4.4.1)(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))": dependencies: - "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)) + "@nomicfoundation/hardhat-ethers": 3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)) "@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 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) ordinal: 1.0.3 - "@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))": + "@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))": dependencies: debug: 4.3.5 ethers: 6.13.0 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) lodash.isequal: 4.5.0 transitivePeerDependencies: - supports-color - "@nomicfoundation/hardhat-network-helpers@1.0.11(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))": + "@nomicfoundation/hardhat-network-helpers@1.0.11(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))": dependencies: ethereumjs-util: 7.1.5 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) - "@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))": + "@nomicfoundation/hardhat-verify@2.0.8(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))": 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(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) lodash.clonedeep: 4.5.0 semver: 6.3.1 table: 6.8.2 @@ -5462,21 +5456,21 @@ 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)(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))(typechain@8.3.2(typescript@5.4.5))": + "@typechain/hardhat@9.1.0(@typechain/ethers-v6@0.5.1(ethers@6.13.0)(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5))(ethers@6.13.0)(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))(typechain@8.3.2(typescript@5.4.5))": dependencies: "@typechain/ethers-v6": 0.5.1(ethers@6.13.0)(typechain@8.3.2(typescript@5.4.5))(typescript@5.4.5) ethers: 6.13.0 fs-extra: 9.1.0 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) 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/chai-as-promised@7.1.8": dependencies: @@ -5487,7 +5481,7 @@ 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": {} @@ -5499,19 +5493,19 @@ 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": {} "@types/secp256k1@4.0.6": dependencies: - "@types/node": 20.14.1 + "@types/node": 20.14.2 "@typescript-eslint/eslint-plugin@7.12.0(@typescript-eslint/parser@7.12.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)": dependencies: @@ -5637,12 +5631,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 amdefine@1.0.1: optional: true @@ -5852,7 +5846,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 @@ -6046,7 +6040,7 @@ snapshots: dependencies: mimic-response: 3.1.0 - deep-eql@4.1.3: + deep-eql@4.1.4: dependencies: type-detect: 4.0.8 @@ -6358,8 +6352,6 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-uri@2.3.0: {} - fastq@1.17.1: dependencies: reusify: 1.0.4 @@ -6478,7 +6470,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 @@ -6589,20 +6581,20 @@ snapshots: optionalDependencies: uglify-js: 3.17.4 - hardhat-abi-exporter@2.10.1(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)): + hardhat-abi-exporter@2.10.1(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)): dependencies: "@ethersproject/abi": 5.7.0 delete-empty: 3.0.0 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) - hardhat-contract-sizer@2.10.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)): + hardhat-contract-sizer@2.10.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)): dependencies: chalk: 4.1.2 cli-table3: 0.6.5 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) strip-ansi: 6.0.1 - hardhat-gas-reporter@2.2.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5): + hardhat-gas-reporter@2.2.0(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5))(typescript@5.4.5): dependencies: "@ethersproject/abi": 5.7.0 "@ethersproject/bytes": 5.7.0 @@ -6614,7 +6606,7 @@ snapshots: cli-table3: 0.6.5 ethereum-cryptography: 2.1.3 glob: 10.4.1 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) jsonschema: 1.4.1 lodash: 4.17.21 markdown-table: 2.0.0 @@ -6627,7 +6619,7 @@ snapshots: - utf-8-validate - zod - hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5): + hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5): dependencies: "@ethersproject/abi": 5.7.0 "@metamask/eth-sig-util": 4.0.1 @@ -6673,7 +6665,7 @@ snapshots: uuid: 8.3.2 ws: 7.5.9 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 @@ -6806,7 +6798,7 @@ snapshots: dependencies: ws: 8.13.0 - jackspeak@3.2.3: + jackspeak@3.4.0: dependencies: "@isaacs/cliui": 8.0.2 optionalDependencies: @@ -7130,7 +7122,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 @@ -7180,16 +7172,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: {} @@ -7467,7 +7459,7 @@ snapshots: solidity-comments-extractor@0.0.8: {} - solidity-coverage@0.8.12(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5)): + solidity-coverage@0.8.12(hardhat@2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5)): dependencies: "@ethersproject/abi": 5.7.0 "@solidity-parser/parser": 0.18.0 @@ -7478,7 +7470,7 @@ snapshots: ghost-testrpc: 0.0.2 global-modules: 2.0.0 globby: 10.0.2 - hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.1)(typescript@5.4.5))(typescript@5.4.5) + hardhat: 2.22.5(ts-node@10.9.2(@types/node@20.14.2)(typescript@5.4.5))(typescript@5.4.5) jsonschema: 1.4.1 lodash: 4.17.21 mocha: 10.4.0 @@ -7587,7 +7579,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 @@ -7663,14 +7655,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