Skip to content

Commit ee6b363

Browse files
committed
Merge branch 'main' into hardhat-edr-merge
2 parents b2de7a9 + b2a551f commit ee6b363

File tree

129 files changed

+5579
-177
lines changed

Some content is hidden

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

129 files changed

+5579
-177
lines changed

.changeset/friendly-moles-explode.md

-5
This file was deleted.

.changeset/orange-paws-promise.md

-5
This file was deleted.

.github/workflows/compile-with-typescript-v4.yml

+5
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,10 @@ jobs:
2020
- name: Install typescript v4 in all packages
2121
run: |
2222
sed -i 's/"typescript": "~5.0.0"/"typescript": "^4.0.0"/' package.json packages/*/package.json && yarn
23+
# hardhat-viem is the only package that requires TypeScript v5
24+
- name: Remove hardhat-viem directory
25+
run: rm -fr packages/hardhat-viem
26+
- name: Remove hardhat-viem from the build script
27+
run: sed -i 's/packages\/hardhat-viem packages\/hardhat-toolbox-viem//' package.json
2328
- name: Build
2429
run: yarn build

.github/workflows/hardhat-viem-ci.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
name: hardhat-viem CI
2+
3+
on:
4+
push:
5+
branches: main
6+
paths:
7+
- "packages/hardhat-viem/**"
8+
- "packages/hardhat-core/**"
9+
- "packages/hardhat-common/**"
10+
- "config/**"
11+
pull_request:
12+
branches:
13+
- "**"
14+
paths:
15+
- "packages/hardhat-viem/**"
16+
- "packages/hardhat-core/**"
17+
- "packages/hardhat-common/**"
18+
- "config/**"
19+
workflow_dispatch:
20+
21+
defaults:
22+
run:
23+
working-directory: packages/hardhat-viem
24+
25+
concurrency:
26+
group: ${{github.workflow}}-${{github.ref}}
27+
cancel-in-progress: true
28+
29+
jobs:
30+
test_on_windows:
31+
name: Test hardhat-viem on Windows with Node 16
32+
runs-on: windows-latest
33+
steps:
34+
- uses: actions/checkout@v2
35+
- uses: actions/setup-node@v2
36+
with:
37+
node-version: 16
38+
cache: yarn
39+
- name: Install
40+
run: yarn --frozen-lockfile
41+
- name: Build
42+
run: yarn build
43+
- name: Run tests
44+
run: yarn test
45+
46+
test_on_macos:
47+
name: Test hardhat-viem on MacOS with Node 16
48+
runs-on: macos-latest
49+
# disable until actions/virtual-environments#4896 is fixed
50+
if: ${{ false }}
51+
steps:
52+
- uses: actions/checkout@v2
53+
- uses: actions/setup-node@v2
54+
with:
55+
node-version: 16
56+
cache: yarn
57+
- name: Install
58+
run: yarn --frozen-lockfile
59+
- name: Build
60+
run: yarn build
61+
- name: Run tests
62+
run: yarn test
63+
64+
test_on_linux:
65+
name: Test hardhat-viem on Ubuntu with Node ${{ matrix.node }}
66+
runs-on: ubuntu-latest
67+
strategy:
68+
matrix:
69+
node: [16, 18, 20]
70+
steps:
71+
- uses: actions/checkout@v2
72+
- uses: actions/setup-node@v2
73+
with:
74+
node-version: ${{ matrix.node }}
75+
cache: yarn
76+
- name: Install
77+
run: yarn --frozen-lockfile
78+
- name: Build
79+
run: yarn build
80+
- name: Run tests
81+
run: yarn test

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ docs/.env.example
113113
# EDR remote node cache
114114
edr-cache/
115115

116-
# Brew package manager.
116+
# Brew package manager.
117117
# Lock file is not recommended to be commited: https://github.com/Homebrew/homebrew-bundle#versions-and-lockfiles
118118
Brewfile.lock.json
119+
120+
*.code-workspace

config/eslint/constants.js

+2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ module.exports.slowImportsCommonIgnoredModules = [
1616
"hardhat/builtin-tasks/task-names",
1717
"hardhat/internal/core/errors",
1818
"hardhat/internal/core/providers/util",
19+
"hardhat/internal/util/fs-utils",
1920
"hardhat/utils/contract-names",
21+
"hardhat/utils/source-names",
2022
];

docs/redirects.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ const customRedirects = [
5151
destination: "https://discord.gg/TETZs2KK4k",
5252
permanent: false,
5353
},
54+
{
55+
source: "/ignition-discord",
56+
destination: "https://discord.gg/7jBkZQXB25",
57+
permanent: false,
58+
},
5459
{
5560
source: "/hre",
5661
destination: "/advanced/hardhat-runtime-environment",

docs/src/components/mdxComponents/CodeBlocks.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const Pre = () => (
1313
<CodeBlocks.Pre className="">
1414
<code>
1515
{`
16-
$ npx hardhat
16+
$ npx hardhat init
1717
888 888 888 888 888
1818
888 888 888 888 888
1919
888 888 888 888 888

docs/src/content/hardhat-runner/docs/advanced/_dirinfo.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ order:
1212
- href: /vscode-tests
1313
title: Running tests in VS Code
1414
- /using-esm
15+
- /using-viem

docs/src/content/hardhat-runner/docs/advanced/create-task.md

+25
Original file line numberDiff line numberDiff line change
@@ -325,3 +325,28 @@ subtask("print", "Prints a message")
325325
console.log(taskArgs.message);
326326
});
327327
```
328+
329+
### Scoped tasks
330+
331+
You can group tasks under a _scope_. This is useful when you have several tasks that are related to each other in some way.
332+
333+
```js
334+
const myScope = scope("my-scope", "Scope description");
335+
336+
myScope.task("my-task", "Do something")
337+
.setAction(async () => { ... });
338+
339+
myScope.task("my-other-task", "Do something else")
340+
.setAction(async () => { ... });
341+
```
342+
343+
In this case, you can run these tasks with `npx hardhat my-scope my-task` and `npx hardhat my-scope my-other-task`.
344+
345+
Scoped tasks can also be run programmatically:
346+
347+
```js
348+
await hre.run({
349+
scope: "my-scope",
350+
task: "my-task",
351+
});
352+
```

docs/src/content/hardhat-runner/docs/advanced/hardhat-and-foundry.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ yarn add --dev hardhat @nomicfoundation/hardhat-foundry
108108

109109
::::
110110

111-
After that, initialize a Hardhat project with `npx hardhat`. Choose the "Create an empty hardhat.config.js" option, and then import the plugin in `hardhat.config.js`:
111+
After that, initialize a Hardhat project with `npx hardhat init`. Choose the "Create an empty hardhat.config.js" option, and then import the plugin in `hardhat.config.js`:
112112

113113
```javascript
114114
require("@nomicfoundation/hardhat-foundry");

docs/src/content/hardhat-runner/docs/advanced/scripts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const hre = require("hardhat");
2424

2525
You can get access to all your tasks and plugins. To run these scripts you simply go through node: `node script.js`.
2626

27-
To try this out, let's look at [a fresh Hardhat project](../guides/project-setup.md). Run `npx hardhat` and go through the steps to create a JavaScript project. When you're done, your project directory should look like this:
27+
To try this out, let's look at [a fresh Hardhat project](../guides/project-setup.md). Run `npx hardhat init` and go through the steps to create a JavaScript project. When you're done, your project directory should look like this:
2828

2929
```
3030
$ ls -l

docs/src/content/hardhat-runner/docs/advanced/using-esm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ yarn add --dev hardhat
8080

8181
::::
8282

83-
and run `npx hardhat` to create a Hardhat project:
83+
and run `npx hardhat init` to create a Hardhat project:
8484

8585
```
8686
888 888 888 888 888

0 commit comments

Comments
 (0)