-
Privacy-Preserving
AI Memory
+
Long-Term Memory
for AI Agents
- Store memories on Walrus, encrypt with SEAL, and recall with
- semantic search. memwal gives agents long-term context while
- users keep ownership.
+ MemWal introduces a long-term, verifiable memory layer on
+ Walrus, allowing agents to remember, share, and reuse
+ information reliably.
diff --git a/docs/getting-started/quick-start.md b/docs/getting-started/quick-start.md
index 2742eec2..bd284111 100644
--- a/docs/getting-started/quick-start.md
+++ b/docs/getting-started/quick-start.md
@@ -9,9 +9,7 @@ The fastest way to get MemWal running is through the TypeScript SDK.
- [Node.js](https://nodejs.org/) v18+ or [Bun](https://bun.sh/) v1+
- A delegate key (Ed25519 private key in hex)
- A MemWalAccount object ID on Sui
-- A relayer URL — use a [public relayer](/relayer/public-relayer) or your own [self-hosted relayer](/relayer/self-hosting)
- - Production (mainnet): `https://relayer.memwal.ai`
- - Staging (testnet): `https://relayer.staging.memwal.ai`
+- A relayer URL
## Quick Start
@@ -95,6 +93,28 @@ The fastest way to get MemWal running is through the TypeScript SDK.
+
+ ### Generate your account ID and delegate key
+
+ Create a MemWal account ID and delegate private key for your SDK client using the hosted endpoint:
+
+
+ These hosted endpoints are provided by Walrus Foundation.
+
+
+ - Production (mainnet): `https://memwal.ai` or `https://memwal.wal.app`
+ - Staging (testnet): `https://staging.memwal.ai`
+
+
+
+ ### Choose a relayer
+
+ Use the hosted relayer, or deploy your own if it has access to a wallet funded with WAL and SUI:
+
+ - Production (mainnet): `https://relayer.memwal.ai`
+ - Staging (testnet): `https://relayer.staging.memwal.ai`
+
+
### Configure the SDK
diff --git a/docs/sdk/quick-start.md b/docs/sdk/quick-start.md
index b76fcc6c..02ac60b6 100644
--- a/docs/sdk/quick-start.md
+++ b/docs/sdk/quick-start.md
@@ -67,6 +67,16 @@ yarn add ai zod
## Configuration
+Before wiring the SDK into your app:
+
+- These hosted endpoints are provided by Walrus Foundation.
+- Generate a MemWal account ID and delegate private key for your client using the hosted endpoint:
+ - Production (mainnet): `https://memwal.ai` or `https://memwal.wal.app`
+ - Staging (testnet): `https://staging.memwal.ai`
+- Choose a relayer:
+ - Use the hosted relayer at `https://relayer.memwal.ai` (mainnet) or `https://relayer.staging.memwal.ai` (testnet)
+ - Or deploy your own relayer with access to a wallet funded with WAL and SUI
+
`MemWal.create` takes a config object with the following fields:
| Property | Type | Required | Description |