Skip to content

Commit dfbcbf3

Browse files
authored
Merge branch 'NomicFoundation:main' into master
2 parents 5dea95e + d431221 commit dfbcbf3

File tree

5,786 files changed

+303826
-239447
lines changed

Some content is hidden

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

5,786 files changed

+303826
-239447
lines changed

.changeset/config.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3-
"changelog": "@changesets/cli/changelog",
3+
"changelog": "../scripts/custom-changelog.mjs",
44
"commit": false,
55
"linked": [],
66
"access": "public",
7-
"baseBranch": "master",
7+
"baseBranch": "main",
88
"updateInternalDependencies": "minor",
9-
"ignore": ["docs", "@nomiclabs/common", "@nomiclabs/hardhat-e2e-tests"],
9+
"ignore": [
10+
"@nomicfoundation/config",
11+
"@nomicfoundation/example-project",
12+
"@nomicfoundation/template-package",
13+
"template-*"
14+
],
15+
"fixed": [
16+
[
17+
"@nomicfoundation/hardhat-ignition",
18+
"@nomicfoundation/hardhat-ignition-ethers",
19+
"@nomicfoundation/hardhat-ignition-viem",
20+
"@nomicfoundation/ignition-core",
21+
"@nomicfoundation/ignition-ui"
22+
]
23+
],
1024
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
1125
"onlyUpdatePeerDependentsWhenOutOfRange": true
1226
}

.changeset/healthy-cows-ring.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thin-terms-confess.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thirty-olives-laugh.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.cspell.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": "0.2",
3+
"language": "en",
4+
"words": ["Saty", "ethers", "viem"]
5+
}

.devcontainer/devcontainer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "Hardhat",
3+
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
4+
"features": {
5+
"ghcr.io/devcontainers/features/node:1": {
6+
"version": "24"
7+
}
8+
},
9+
"onCreateCommand": "scripts/setup.sh",
10+
"postCreateCommand": "pnpm install --frozen-lockfile",
11+
"waitFor": "postCreateCommand",
12+
"containerEnv": {
13+
"ALCHEMY_URL": "${localEnv:ALCHEMY_URL}",
14+
"INFURA_URL": "${localEnv:INFURA_URL}"
15+
},
16+
"customizations": {
17+
"vscode": {
18+
"extensions": [
19+
"esbenp.prettier-vscode",
20+
"NomicFoundation.hardhat-solidity"
21+
]
22+
}
23+
}
24+
}

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ end_of_line = lf
77
indent_style = space
88
indent_size = 2
99
insert_final_newline = true
10-
trim_trailing_whitespace = false
10+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
*.sol linguist-language=Solidity
22
# prevent github actions to checkout files with crlf line endings
3-
* -text
3+
* text=auto
4+
5+
*.sol text eol=lf
6+
*.d.ts text eol=lf

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Bug report
2+
description: File a bug report
3+
type: "Bug"
4+
body:
5+
- type: input
6+
id: version
7+
attributes:
8+
label: "Version of Hardhat"
9+
description: "Run `npx hardhat --version` to get the version of Hardhat that you are using"
10+
placeholder: "1.2.3"
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: what-happened
15+
attributes:
16+
label: "What happened?"
17+
description: "A brief description of what happened and what you expected to happen"
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: reproduction-steps
22+
attributes:
23+
label: "Minimal reproduction steps"
24+
description: "Tell us the minimal steps needed to reproduce the bug"
25+
validations:
26+
required: true
27+
- type: input
28+
id: search-terms
29+
attributes:
30+
label: "Search terms"
31+
description: "Include the search terms you used before opening this issue. This will make it easier for others to find it."

0 commit comments

Comments
 (0)