@mysten-incubation/memwal 0.0.7-dev.0 → 0.0.7-dev.1

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,7 +6,7 @@ Walrus Memory SDK for storing encrypted AI memories on Walrus and retrieving the
6
6
 
7
7
  ## Documentation
8
8
 
9
- For full documentation, visit [docs.memwal.ai](https://docs.memwal.ai).
9
+ For full documentation, visit [memory.walrus.xyz](https://memory.walrus.xyz).
10
10
 
11
11
  ## Install
12
12
 
@@ -28,7 +28,7 @@ import { MemWal } from "@mysten-incubation/memwal";
28
28
  const memwal = MemWal.create({
29
29
  key: process.env.MEMWAL_PRIVATE_KEY!,
30
30
  accountId: process.env.MEMWAL_ACCOUNT_ID!,
31
- serverUrl: process.env.MEMWAL_SERVER_URL ?? "https://relayer.memwal.ai",
31
+ serverUrl: process.env.MEMWAL_SERVER_URL ?? "https://relayer.memory.walrus.xyz",
32
32
  namespace: "demo",
33
33
  });
34
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mysten-incubation/memwal",
3
- "version": "0.0.7-dev.0",
3
+ "version": "0.0.7-dev.1",
4
4
  "description": "Walrus Memory — Privacy-first AI memory SDK with Ed25519 delegate key auth",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",