marmot-ts
June 19, 2026 ยท View on GitHub
TypeScript implementation of the Marmot protocol โ end-to-end encrypted group messaging on Nostr using MLS (Messaging Layer Security).
Warning
This library is in Alpha and under heavy development. The API is subject to breaking changes without notice. It relies on ts-mls for MLS cryptographic guarantees. Do not use in production yet.
Features
- ๐ End-to-end encrypted group messaging using MLS (RFC 9420)
- ๐ Decentralized โ groups operate across Nostr relays
- ๐ Key package lifecycle โ publishing, rotation, deletion
- ๐ฆ Storage-agnostic โ bring any
GenericKeyValueStorebackend (LocalForage, IndexedDB, in-memory, โฆ) - ๐ Network-agnostic โ works with any Nostr client library
- ๐ฑ Cross-platform โ browsers, Node.js (v20+), Bun (v1.1+), and Deno (v2+)
Marmot Protocol Compliance
marmot-ts tracks the Marmot v2 protocol and is wire-compatible with the darkmatter reference implementation โ including the v2 app-component group model, MLS PublicMessage-framed handshakes, and the marmot.account-identity-proof.v1 LeafNode extension.
It currently supports the following Marmot Improvement Proposals (MIPs):
| MIP | Description | Status |
|---|---|---|
| MIP-00 | Introduction and Basic Operations | โ Supported |
| MIP-01 | Network Transport & Relay Communication | โ Supported |
| MIP-02 | Identities and Keys | โ Supported |
| MIP-03 | Group State & Memberships | โ Supported |
| MIP-04 | Encrypted Media | ๐ง In progress |
Installation
npm install @internet-privacy/marmot-ts
# or
pnpm add @internet-privacy/marmot-ts
Concepts
A MarmotClient needs four things to operate:
- A signer (
EventSigner, fromapplesauce-core) โ signs Nostr events on behalf of the user. - A network interface (
NostrNetworkInterface) โ publishes, requests, and subscribes to events on relays. - A group state store โ persists serialized MLS group state (
GenericKeyValueStore<SerializedClientState>). - A key package store โ persists local key package material (
GenericKeyValueStore<StoredKeyPackage>).
The stores share a single interface: GenericKeyValueStore<T>.
You can optionally supply:
accountProofSignerโ signs themarmot.account-identity-proof.v1LeafNode extension. This needs raw BIP-340 access (the applesauceEventSignercannot provide it) and is required for full wire interop with darkmatter, which validates the proof on every leaf.inviteStoreโ persists received invites; defaults to an in-memory store.historyFactoryโ wires a per-group message history backend (seeGroupRumorHistory).clientIdโ a stabled-tag slot for your published kind 30443 key packages.
The client exposes three managers โ client.groups, client.keyPackages, and client.invites โ plus client.network and the joinGroupFromWelcome entry point.
Storage
interface GenericKeyValueStore<T> {
getItem(key: string): Promise<T | null>;
setItem(key: string, value: T): Promise<T>;
removeItem(key: string): Promise<void>;
clear(): Promise<void>;
keys(): Promise<string[]>;
}
Any backend that matches this shape works. LocalForage instances satisfy it directly:
import localforage from "localforage";
const groupStateStore = localforage.createInstance({ name: "marmot-groups" });
const keyPackageStore = localforage.createInstance({ name: "marmot-keys" });
For tests or short-lived processes, the library ships an in-memory implementation under the ./extra subpath:
import { InMemoryKeyValueStore } from "@internet-privacy/marmot-ts/extra";
const groupStateStore = new InMemoryKeyValueStore();
const keyPackageStore = new InMemoryKeyValueStore();
Quick Start
Create the client
import { MarmotClient } from "@internet-privacy/marmot-ts";
const client = new MarmotClient({
signer, // your EventSigner (e.g. from applesauce-core)
network, // your NostrNetworkInterface implementation
groupStateStore, // GenericKeyValueStore<SerializedClientState>
keyPackageStore, // GenericKeyValueStore<StoredKeyPackage>
clientId: "my-app-desktop", // stable d-tag for kind 30443 key packages
});
Publish a key package
Other users invite you by referencing a key package you've published to relays.
await client.keyPackages.create({
relays: ["wss://relay.example.com"],
});
Create a group
const group = await client.groups.create("My Secret Group", {
description: "A private discussion",
relays: ["wss://relay.example.com"],
adminPubkeys: [await client.signer.getPublicKey()],
});
Send a message
Messages are app-defined Nostr rumors. Build a chat rumor, wrap it in an application-message intent, and submit it through the group's MLS session:
import {
createApplicationMessageIntent,
createChatRumor,
} from "@internet-privacy/marmot-ts";
const rumor = createChatRumor({
pubkey: await client.signer.getPublicKey(),
content: "Hello, world!",
});
await client.groups.send(group.id, createApplicationMessageIntent(rumor));
createChatRumorproduces a kind 9 rumor โ a chat convention, not part of the protocol. You can serialize any unsigned rumor as an application message.
Invite a member
Look up their key package event on a relay, then invite by event. This adds them in a single commit and delivers an encrypted Welcome:
const [keyPackageEvent] = await client.network.request(
["wss://relay.example.com"],
[{ kinds: [30443], authors: [memberPubkey], limit: 1 }],
);
if (keyPackageEvent) {
await client.groups.invite(group.id, keyPackageEvent);
}
Join a group from an invite
Invites arrive as kind 1059 gift wraps. The client.invites manager ingests,
decrypts, and stores them for you:
// Feed gift-wrap events in as they arrive from relays
await client.invites.ingestEvent(giftWrapEvent);
// Decrypt pending gift wraps into kind 444 Welcome rumors
await client.invites.decryptGiftWraps();
// getUnread() returns the decrypted kind 444 Welcome rumors directly
const [welcomeRumor] = await client.invites.getUnread();
if (welcomeRumor) {
const { group } = await client.joinGroupFromWelcome({ welcomeRumor });
await client.invites.markAsRead(welcomeRumor.id);
}
If you already hold a decrypted kind 444 Welcome rumor, you can join directly:
const { group } = await client.joinGroupFromWelcome({ welcomeRumor });
Receive messages
Decrypted application messages surface through the group's applicationMessage
event as serialized rumors โ deserialize them with deserializeApplicationData:
import { deserializeApplicationData } from "@internet-privacy/marmot-ts";
group.on("applicationMessage", (data) => {
const rumor = deserializeApplicationData(data);
console.log(`${rumor.pubkey}: ${rumor.content}`);
});
To deliver inbound traffic, subscribe to the group's relays for kind 445 events
and feed them to group.ingest. The async generator drives MLS processing and
yields a disposition per event (processed, unreadable, deferred, โฆ);
readable application messages are emitted via the event above:
import { bytesToHex } from "@noble/hashes/utils.js";
const subscription = client.network.subscription(group.relays, [
{ kinds: [445], "#h": [bytesToHex(group.groupData.nostrGroupId)] },
]);
subscription.subscribe({
next: async (event) => {
for await (const result of group.ingest([event])) {
if (result.kind === "unreadable")
console.warn("dropped an unreadable event");
}
},
});
Package entrypoints
The exports map exposes the library as focused subpaths:
| Import path | Contents |
|---|---|
@internet-privacy/marmot-ts | The common surface โ re-exports ./client, ./core, and ./utils |
@internet-privacy/marmot-ts/client | MarmotClient, MarmotGroup, managers, intents, history, network |
@internet-privacy/marmot-ts/core | Protocol/crypto/state primitives with no app I/O |
@internet-privacy/marmot-ts/engine | MarmotGroupEngine and the convergence/ingest state machine |
@internet-privacy/marmot-ts/extra | Optional stores โ InMemoryKeyValueStore, encrypted store, history backend |
@internet-privacy/marmot-ts/utils | Encoding, key-value, Nostr, relay-url, and timestamp helpers |
@internet-privacy/marmot-ts/mls | Re-export of ts-mls |
Documentation
Full documentation is in docs/ and served via VitePress. Run pnpm docs:dev to browse locally.
- Getting Started โ first-run walkthrough
- Architecture โ component overview and Nostr/MLS mapping
- Client Module โ
MarmotClient,MarmotGroup, storage, network, UI integration - Core Module โ protocol, credentials, key packages, groups, messages, welcome
Development
pnpm install # Install dependencies
pnpm build # Compile TypeScript
pnpm test # Run tests (watch mode)
pnpm format # Format code with Prettier
pnpm docs:dev # Serve documentation locally
pnpm docs:build # Build documentation