@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.
- package/README.md +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 [
|
|
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.
|
|
31
|
+
serverUrl: process.env.MEMWAL_SERVER_URL ?? "https://relayer.memory.walrus.xyz",
|
|
32
32
|
namespace: "demo",
|
|
33
33
|
});
|
|
34
34
|
|
package/package.json
CHANGED