@mysten-incubation/memwal 0.0.7-dev.1 → 0.0.7-dev.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/README.md +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,18 @@ Peer dependencies (install as needed):
|
|
|
20
20
|
pnpm add @mysten/sui @mysten/seal @mysten/walrus ai zod
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
+
### Version compatibility
|
|
24
|
+
|
|
25
|
+
`@mysten/seal` and `@mysten/walrus` must both resolve to versions that accept the same `@mysten/sui` major. Known-good matrix:
|
|
26
|
+
|
|
27
|
+
| Package | Version |
|
|
28
|
+
| --- | --- |
|
|
29
|
+
| `@mysten/sui` | `^2.16.2` |
|
|
30
|
+
| `@mysten/seal` | `^1.1.3` |
|
|
31
|
+
| `@mysten/walrus` | `^1.1.7` |
|
|
32
|
+
|
|
33
|
+
`@mysten/walrus@0.x` bundles `@mysten/sui@1.x` and cannot coexist with `@mysten/seal@1.x`, which requires `@mysten/sui@^2.x`. If `npm install` fails with `ERESOLVE` mentioning `@mysten/sui@^1.x`, upgrade `@mysten/walrus` to `^1.1.7`, refresh your lockfile, and run `npm why @mysten/sui` to find any remaining dependency that pins sui v1.
|
|
34
|
+
|
|
23
35
|
## Quick Start
|
|
24
36
|
|
|
25
37
|
```ts
|
package/package.json
CHANGED