@asyncswap/eth-rpc 0.4.14 → 0.4.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 +3 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ A comprehensive TypeScript client for Ethereum execution and engine APIs.
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
bun add @asyncswap/eth-rpc
|
|
9
|
+
# Must install to resolve types
|
|
10
|
+
bun add -D @asyncswap/eth-types
|
|
9
11
|
```
|
|
10
12
|
|
|
11
13
|
## Quick Start
|
|
@@ -32,7 +34,7 @@ eth.eth_getTransactionCount("0x34", "safe");
|
|
|
32
34
|
|
|
33
35
|
## Dependencies
|
|
34
36
|
|
|
35
|
-
- `@asyncswap/jsonrpc` - JSON-RPC 2.0
|
|
37
|
+
- `@asyncswap/jsonrpc` - a minimal JSON-RPC 2.0 spec library.
|
|
36
38
|
|
|
37
39
|
## License
|
|
38
40
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@asyncswap/eth-rpc",
|
|
3
3
|
"description": "A library for ethereum execution clients apis.",
|
|
4
4
|
"author": "Meek Msaki",
|
|
5
|
-
"version": "0.4.
|
|
5
|
+
"version": "0.4.16",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/bun": "latest",
|
|
42
|
-
"@asyncswap/eth-types": "^0.0.
|
|
42
|
+
"@asyncswap/eth-types": "^0.0.3"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"typescript": "^5"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@asyncswap/jsonrpc": "^0.4.
|
|
48
|
+
"@asyncswap/jsonrpc": "^0.4.15"
|
|
49
49
|
}
|
|
50
50
|
}
|