hardhat-deploy 2.0.0-next.62 → 2.0.0-next.64
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/package.json +10 -10
- package/templates/basic/README.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hardhat-deploy",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.64",
|
|
4
4
|
"description": "deployment plugin for hardhat",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -34,27 +34,27 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@changesets/cli": "^2.29.8",
|
|
37
|
-
"@rocketh/node": "0.17.
|
|
38
|
-
"@types/node": "^25.0.
|
|
39
|
-
"as-soon": "^0.
|
|
40
|
-
"hardhat": "3.1.
|
|
37
|
+
"@rocketh/node": "0.17.18",
|
|
38
|
+
"@types/node": "^25.0.10",
|
|
39
|
+
"as-soon": "^0.1.5",
|
|
40
|
+
"hardhat": "3.1.5",
|
|
41
41
|
"rimraf": "^6.1.2",
|
|
42
|
-
"rocketh": "0.17.
|
|
42
|
+
"rocketh": "0.17.15",
|
|
43
43
|
"set-defaults": "^0.0.5",
|
|
44
44
|
"typescript": "^5.9.3"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@rocketh/node": "^0.17.
|
|
48
|
-
"hardhat": "^3.1.
|
|
47
|
+
"@rocketh/node": "^0.17.18",
|
|
48
|
+
"hardhat": "^3.1.5"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@nomicfoundation/hardhat-zod-utils": "3.0.1",
|
|
52
52
|
"@types/debug": "^4.1.12",
|
|
53
|
-
"commander": "^
|
|
53
|
+
"commander": "^14.0.2",
|
|
54
54
|
"debug": "^4.4.3",
|
|
55
55
|
"named-logs-console": "^0.5.1",
|
|
56
56
|
"slash": "^5.1.0",
|
|
57
|
-
"zod": "^3.
|
|
57
|
+
"zod": "^4.3.6"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "tsc --project tsconfig.json",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This project showcases a Hardhat 3 project using the [hardhat-deploy](https://github.com/wighawag/hardhat-deploy) plugin (along with the [rocketh](https://github.com/wighawag/rocketh) deployment system) and the native Node.js test runner (`node:test`) .
|
|
4
4
|
|
|
5
|
-
To learn more about
|
|
5
|
+
To learn more about hardhat-deploy and rocketh, please visit the [documentation](https://rocketh.dev).
|
|
6
6
|
|
|
7
7
|
## Project Overview
|
|
8
8
|
|
|
@@ -10,7 +10,7 @@ This example project includes:
|
|
|
10
10
|
|
|
11
11
|
- A simple Hardhat configuration file.
|
|
12
12
|
- Foundry-compatible Solidity unit tests.
|
|
13
|
-
-
|
|
13
|
+
- Built-in mechanism to load deployments in test via hardhat-deploy and rocketh.
|
|
14
14
|
|
|
15
15
|
## Usage
|
|
16
16
|
|