rpc-express-toolkit-safe 4.3.2 → 4.4.0

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -25,3 +25,7 @@ const client = new RpcSafeClient('http://localhost:3000/api');
25
25
  The deprecated `createSafeEndpoint()` and `createSafeClient()` factory functions are still exported for compatibility.
26
26
 
27
27
  Under the hood this package simply exports from `rpc-express-toolkit/safe` and depends on `rpc-express-toolkit`.
28
+
29
+ ## License
30
+
31
+ MIT. See [LICENSE](../../LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rpc-express-toolkit-safe",
3
- "version": "4.3.2",
3
+ "version": "4.4.0",
4
4
  "description": "Safe preset wrapper for rpc-express-toolkit (safeEnabled defaults to true).",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -20,9 +20,9 @@
20
20
  "validation"
21
21
  ],
22
22
  "peerDependencies": {
23
- "rpc-express-toolkit": "^4.3.2"
23
+ "rpc-express-toolkit": "^4.4.0"
24
24
  },
25
25
  "dependencies": {
26
- "rpc-express-toolkit": "^4.3.2"
26
+ "rpc-express-toolkit": "^4.4.0"
27
27
  }
28
28
  }