@asyncswap/engine-rpc 0.0.1 → 0.0.2

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @asyncswap/engine-rpc
2
2
 
3
+ ## 0.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 863d9b8: udpate example
8
+
3
9
  ## 0.0.1
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -13,7 +13,7 @@ bun add @asyncswap/engine-rpc
13
13
  ### Engine API Client
14
14
 
15
15
  ```typescript
16
- import { EngineExecutionClient } from '@asyncswap/eth-rpc';
16
+ import { EngineExecutionClient } from '@asyncswap/engine-rpc';
17
17
 
18
18
  const engineUrl = 'http://localhost:8551';
19
19
  const engine = new EngineExecutionClient(engineUrl, process.env.JWT_TOKEN!);
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.1",
5
+ "version": "0.0.2",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
8
  "main": "dist/index.js",