hardhat 3.10.0 → 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# hardhat
|
|
2
2
|
|
|
3
|
+
## 3.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#8447](https://github.com/NomicFoundation/hardhat/pull/8447) [`dff401d`](https://github.com/NomicFoundation/hardhat/commit/dff401dea894eeb7c6a59f1d2aaea7158c106ea8) Thanks [@kanej](https://github.com/kanej)! - Added experimental EIP-7778 support to the Amsterdam hardfork: a block's `gasUsed` excludes gas refunds; transaction receipts are unchanged.
|
|
8
|
+
|
|
9
|
+
- [#8447](https://github.com/NomicFoundation/hardhat/pull/8447) [`dff401d`](https://github.com/NomicFoundation/hardhat/commit/dff401dea894eeb7c6a59f1d2aaea7158c106ea8) Thanks [@kanej](https://github.com/kanej)! - Added experimental EIP-7928 support to the Amsterdam hardfork: blocks on Amsterdam now include the `blockAccessListHash` header field. The value is simulated, not the real `keccak256(rlp(blockAccessList))`.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#8447](https://github.com/NomicFoundation/hardhat/pull/8447) [`dff401d`](https://github.com/NomicFoundation/hardhat/commit/dff401dea894eeb7c6a59f1d2aaea7158c106ea8) Thanks [@kanej](https://github.com/kanej)! - Fixed JSON-RPC provider call traces omitting event logs (https://github.com/NomicFoundation/edr/issues/1542)
|
|
14
|
+
|
|
3
15
|
## 3.10.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hardhat",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.",
|
|
5
5
|
"homepage": "https://hardhat.org",
|
|
6
6
|
"repository": {
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@nomicfoundation/hardhat-test-utils": "^2.0.3"
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@nomicfoundation/edr": "0.14.
|
|
80
|
+
"@nomicfoundation/edr": "0.14.2",
|
|
81
81
|
"@nomicfoundation/hardhat-errors": "^3.0.17",
|
|
82
82
|
"@nomicfoundation/hardhat-utils": "^4.1.5",
|
|
83
83
|
"@nomicfoundation/hardhat-vendored": "^3.0.4",
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "A TypeScript Hardhat project using Node Test Runner and Viem",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"hardhat": "workspace:^3.
|
|
8
|
+
"hardhat": "workspace:^3.11.0",
|
|
9
9
|
"@nomicfoundation/hardhat-toolbox-viem": "workspace:^5.0.7",
|
|
10
10
|
"@nomicfoundation/hardhat-ignition": "workspace:^3.1.8",
|
|
11
11
|
"@types/node": "^22.8.5",
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "A TypeScript Hardhat project using Mocha and Ethers.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"hardhat": "workspace:^3.
|
|
8
|
+
"hardhat": "workspace:^3.11.0",
|
|
9
9
|
"@nomicfoundation/hardhat-toolbox-mocha-ethers": "workspace:^3.0.7",
|
|
10
10
|
"@nomicfoundation/hardhat-ethers": "workspace:^4.0.15",
|
|
11
11
|
"@nomicfoundation/hardhat-ignition": "workspace:^3.1.8",
|