rocketh 0.17.15 → 0.17.16
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 +14 -5
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -3,10 +3,17 @@
|
|
|
3
3
|
<a href="https://rocketh.dev">Rocketh</a>
|
|
4
4
|
<hr/>
|
|
5
5
|
|
|
6
|
-
<img src="https://img.shields.io/
|
|
7
|
-
<img src="https://img.shields.io/
|
|
8
|
-
<img src="https://img.shields.io/
|
|
9
|
-
|
|
6
|
+
<img alt="Version" src="https://img.shields.io/npm/v/rocketh" />
|
|
7
|
+
<img alt="License" src="https://img.shields.io/github/license/wighawag/rocketh" />
|
|
8
|
+
<img src="https://img.shields.io/npm/dw/rocketh" alt="weekly downloads" />
|
|
9
|
+
<img alt="Dependents" src="https://img.shields.io/librariesio/dependents/npm/rocketh" />
|
|
10
|
+
<img alt="Github Stars" src="https://img.shields.io/github/stars/wighawag/rocketh" />
|
|
11
|
+
<!-- <img alt="Node Version" src="https://img.shields.io/node/v/rocketh"> -->
|
|
12
|
+
<img alt="Issues and PRs" src="https://img.shields.io/github/issues-pr/wighawag/rocketh" />
|
|
13
|
+
<img alt="Tests Status" src="https://img.shields.io/github/actions/workflow/status/wighawag/rocketh/test.yml?label=test">
|
|
14
|
+
<img alt="Commit activity" src="https://img.shields.io/github/commit-activity/w/wighawag/rocketh">
|
|
15
|
+
<img alt="Last commit" src="https://img.shields.io/github/last-commit/wighawag/rocketh">
|
|
16
|
+
<img alt="dependencies status" src="https://img.shields.io/librariesio/release/npm/rocketh" />
|
|
10
17
|
</div>
|
|
11
18
|
|
|
12
19
|
# Rocketh
|
|
@@ -62,10 +69,12 @@ For full documentation, visit [rocketh.dev](https://rocketh.dev).
|
|
|
62
69
|
|
|
63
70
|
## Getting Started
|
|
64
71
|
|
|
65
|
-
In this guide, we will create a new project using Rocketh
|
|
72
|
+
In this guide, we will create a new project using Rocketh from scratch..
|
|
66
73
|
|
|
67
74
|
> **Note**
|
|
68
75
|
> if you want to use a full featured template, you can use the [template-ethereum-contracts](https://github.com/wighawag/template-ethereum-contracts) repository.
|
|
76
|
+
>
|
|
77
|
+
> You can also use `hardhat-deploy init`, see [hardhat-deploy](https://rocketh.dev/hardhat-deploy/) for more information.
|
|
69
78
|
|
|
70
79
|
We will be using hardhat for contract compilation and hardhat-deploy to hook hardhat with rocketh.
|
|
71
80
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rocketh",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.16",
|
|
4
4
|
"description": "core functionality of rocketh",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,6 +27,9 @@
|
|
|
27
27
|
"dist",
|
|
28
28
|
"src"
|
|
29
29
|
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=22.0.0"
|
|
32
|
+
},
|
|
30
33
|
"dependencies": {
|
|
31
34
|
"abitype": "^1.2.3",
|
|
32
35
|
"change-case": "^5.4.4",
|
|
@@ -34,8 +37,8 @@
|
|
|
34
37
|
"eip-1193-jsonrpc-provider": "^0.4.3",
|
|
35
38
|
"ldenv": "^0.3.16",
|
|
36
39
|
"named-logs": "^0.4.1",
|
|
37
|
-
"viem": "^2.
|
|
38
|
-
"@rocketh/core": "0.17.
|
|
40
|
+
"viem": "^2.45.0",
|
|
41
|
+
"@rocketh/core": "0.17.10"
|
|
39
42
|
},
|
|
40
43
|
"devDependencies": {
|
|
41
44
|
"as-soon": "^0.1.4",
|