@asyncswap/engine-rpc 0.0.9 → 0.0.11
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 +3 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ A library for Ethereum engine api JSON-RPC spec.
|
|
|
6
6
|
|
|
7
7
|
```
|
|
8
8
|
bun add @asyncswap/engine-rpc
|
|
9
|
+
# Must install to resolve types
|
|
10
|
+
bun add -D @asyncswap/eth-types
|
|
9
11
|
```
|
|
10
12
|
|
|
11
13
|
## Quick Start
|
|
@@ -28,7 +30,7 @@ console.log(payload);
|
|
|
28
30
|
|
|
29
31
|
## Dependencies
|
|
30
32
|
|
|
31
|
-
- `@asyncswap/
|
|
33
|
+
- `@asyncswap/jsonrpc` - a minimal JSON-RPC 2.0 spec library.
|
|
32
34
|
|
|
33
35
|
## License
|
|
34
36
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@asyncswap/engine-rpc",
|
|
3
3
|
"description": "A library for Ethereum engine api JSON-RPC spec.",
|
|
4
4
|
"author": "Meek Msaki",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.11",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/bun": "latest",
|
|
41
|
-
"@asyncswap/eth-types": "^0.0.
|
|
41
|
+
"@asyncswap/eth-types": "^0.0.3"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"typescript": "^5"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@asyncswap/jsonrpc": "^0.4.
|
|
47
|
+
"@asyncswap/jsonrpc": "^0.4.15"
|
|
48
48
|
}
|
|
49
49
|
}
|