hardhat-deploy 2.0.0-next.36 → 2.0.0-next.37
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/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -172,9 +172,9 @@ import artifacts from './generated/artifacts.js';
|
|
|
172
172
|
export {artifacts};
|
|
173
173
|
// ------------------------------------------------------------------------------------------------
|
|
174
174
|
// we then create the deployScript function taht we use in our deploy script, you can call it whatever you want
|
|
175
|
-
import {setup
|
|
175
|
+
import {setup} from 'rocketh';
|
|
176
176
|
// the setup function can take functions, accounts and data and will ensure you have type-safety
|
|
177
|
-
const deployScript = setup<typeof functions, typeof config.accounts, typeof config.data>(functions);
|
|
177
|
+
const {deployScript, loadAndExecuteDeployments} = setup<typeof functions, typeof config.accounts, typeof config.data>(functions);
|
|
178
178
|
// we also export loadAndExecuteDeployments for tests
|
|
179
179
|
export {loadAndExecuteDeployments, deployScript};
|
|
180
180
|
```
|
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.37",
|
|
4
4
|
"description": "deployment plugin for hardhat",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"as-soon": "^0.0.11",
|
|
34
34
|
"hardhat": "3.0.1",
|
|
35
35
|
"rimraf": "^6.0.1",
|
|
36
|
-
"rocketh": "^0.
|
|
36
|
+
"rocketh": "^0.14.1",
|
|
37
37
|
"set-defaults": "^0.0.5",
|
|
38
38
|
"typescript": "^5.9.2"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"hardhat": "^3.0.0",
|
|
42
|
-
"rocketh": "^0.
|
|
42
|
+
"rocketh": "^0.14.1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@nomicfoundation/hardhat-zod-utils": "3.0.0",
|