@asyncswap/engine-rpc 0.0.3 → 0.0.5
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/CHANGELOG.md +16 -0
- package/package.json +2 -3
- package/src/engine-api.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @asyncswap/engine-rpc
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- dc792b1: (refactor): change to `withHeaders` option and update BaseClient source
|
|
8
|
+
- Updated dependencies [dc792b1]
|
|
9
|
+
- @asyncswap/jsonrpc@0.4.9
|
|
10
|
+
|
|
11
|
+
## 0.0.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- e9fc1df: remove biome dep
|
|
16
|
+
- Updated dependencies [e9fc1df]
|
|
17
|
+
- @asyncswap/eth-rpc@0.4.9
|
|
18
|
+
|
|
3
19
|
## 0.0.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
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.5",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -33,13 +33,12 @@
|
|
|
33
33
|
"format": "bun biome format --write"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@biomejs/biome": "2.3.11",
|
|
37
36
|
"@types/bun": "latest"
|
|
38
37
|
},
|
|
39
38
|
"peerDependencies": {
|
|
40
39
|
"typescript": "^5"
|
|
41
40
|
},
|
|
42
41
|
"dependencies": {
|
|
43
|
-
"@asyncswap/
|
|
42
|
+
"@asyncswap/jsonrpc": "^0.4.9"
|
|
44
43
|
}
|
|
45
44
|
}
|
package/src/engine-api.ts
CHANGED