Skip to content

Commit 06171bd

Browse files
committed
Merge branch 'main' into hardhat-tracer-support
2 parents edb9f78 + dfd91d2 commit 06171bd

File tree

503 files changed

+1344
-441952
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

503 files changed

+1344
-441952
lines changed

.cargo-husky/hooks/pre-commit

-21
This file was deleted.

.cargo/config

-88
This file was deleted.

.changeset/clever-peaches-obey.md

-5
This file was deleted.

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"access": "public",
77
"baseBranch": "main",
88
"updateInternalDependencies": "minor",
9-
"ignore": ["@nomiclabs/common", "benchmark"],
9+
"ignore": ["@nomiclabs/common"],
1010
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
1111
"onlyUpdatePeerDependentsWhenOutOfRange": true
1212
}

.changeset/cyan-cheetahs-add.md

-5
This file was deleted.

.changeset/dry-flowers-help.md

-5
This file was deleted.

.changeset/dry-jobs-fail.md

-5
This file was deleted.

.changeset/happy-mails-impress.md

-5
This file was deleted.

.changeset/little-bananas-thank.md

-5
This file was deleted.

.changeset/many-baboons-refuse.md

-5
This file was deleted.

.changeset/new-books-marry.md

-5
This file was deleted.

.changeset/pink-goats-jam.md

-5
This file was deleted.

.changeset/seven-tips-float.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"hardhat": patch
3+
---
4+
5+
Improved the validation of network and forking URLs (thanks @kshyun28!)

.changeset/smart-hotels-fold.md

-5
This file was deleted.

.changeset/strange-ladybugs-end.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@nomicfoundation/hardhat-chai-matchers": patch
3+
---
4+
5+
Accept predicate functions in the `changeEtherBalance`, `changeEthersBalances`, `changeTokenBalance` and `changeTokenBalances` matchers (thanks @SevenSwen and @k06a!)

.changeset/tall-jokes-judge.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"hardhat": patch
3+
---
4+
5+
Bump EDR to v0.3.8. This adds support for blob transactions, improves performance, and fixes some bugs. Check the [EDR release](https://github.com/NomicFoundation/edr/releases/tag/%40nomicfoundation%2Fedr%400.3.8) for more details.

.changeset/thick-beers-tie.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@nomicfoundation/hardhat-verify": patch
3+
---
4+
5+
Improved validation of contructor arguments (thanks @fwx5618177!)

.changeset/wicked-mugs-itch.md

-5
This file was deleted.

.changeset/wicked-walls-itch.md

-5
This file was deleted.

.changeset/wise-cheetahs-confess.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@nomicfoundation/hardhat-network-helpers": patch
3+
---
4+
5+
Improve an error message and add utility to clear all the existing snaphosts.

.devcontainer/devcontainer.json

+4-20
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
{
2-
"name": "Hardhat + EDR",
2+
"name": "Hardhat",
33
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
44
"features": {
55
"ghcr.io/devcontainers/features/node:1": {
66
"version": "18"
77
}
88
},
9-
"postAttachCommand": "scripts/setup.sh",
10-
"portsAttributes": {
11-
// The default port of mdbook
12-
"3000": {
13-
"label": "mdbook",
14-
"onAutoForward": "openPreview"
15-
}
16-
},
9+
"postCreateCommand": "scripts/setup.sh",
1710
"containerEnv": {
1811
"ALCHEMY_URL": "${localEnv:ALCHEMY_URL}",
1912
"INFURA_URL": "${localEnv:INFURA_URL}"
@@ -22,17 +15,8 @@
2215
"vscode": {
2316
"extensions": [
2417
"esbenp.prettier-vscode",
25-
"NomicFoundation.hardhat-solidity",
26-
"rust-lang.rust-analyzer",
27-
"tamasfe.even-better-toml",
28-
"vadimcn.vscode-lldb"
29-
],
30-
"settings": {
31-
"rust-analyzer.cargo.features": "all",
32-
"rust-analyzer.rustfmt.extraArgs": [
33-
"+nightly"
34-
]
35-
}
18+
"NomicFoundation.hardhat-solidity"
19+
]
3620
}
3721
}
3822
}

.github/dependabot.yml

-12
This file was deleted.

.github/workflows/add-issue-to-project.yml

-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,3 @@ jobs:
1414
with:
1515
project-url: https://github.com/orgs/NomicFoundation/projects/4
1616
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
17-
labeled: area:edr
18-
label-operator: NOT

.github/workflows/e2e-tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ jobs:
1212
run-e2e:
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, macos-latest, windows-latest]
15+
# Disabled windows because it's too slow
16+
# See: https://github.com/NomicFoundation/hardhat/issues/5247
17+
os: [ubuntu-latest, macos-latest]
1618
name: Run E2E tests on ${{ matrix.os }}
1719
runs-on: ${{ matrix.os }}
1820
env:

.github/workflows/edr-benchmark.yml

-85
This file was deleted.

0 commit comments

Comments
 (0)