Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 16 additions & 13 deletions docs/mini-apps/core-concepts/navigation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,22 @@ Launch your mini app directly from external sources like websites, QR codes, or
</a>
```

### Group Messages

### Chat Deeplinks

#### Direct Messages (Users or Agents)

Start a private conversation with a specific user or agent.

```typescript DeeplinkDM.tsx
<button
onClick={() => openUrl(`cbwallet://messaging/${address}`)} >
Send Direct Message
</button>
```


#### Group Messages

Navigate users directly to a specific group chat conversation.

Expand Down Expand Up @@ -291,18 +306,6 @@ Use the `conversationID` as a button:
</button>
```

### Direct Messages (Users or Agents)

Start a private conversation with a specific user or agent.

```typescript DeeplinkDM.tsx
<button
onClick={() => openUrl(`cbwallet://messaging/${address}`)}
>
Send Direct Message
</button>
```

## Schema

### Group Message Parameters
Expand Down