You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And by polling you can call all the messages at once, which we stored in your local database
48
+
49
+
```tsx
50
+
/* Sync the conversations from the network to update the local db */
51
+
awaitclient.conversations.sync();
52
+
// get message array
53
+
awaitclient.conversations.messages();
54
+
```
55
+
56
+
### Working with addresses
34
57
35
58
Conversations in XMTP can be `DMs` or `Groups`. The underlying technicalities are the same, but DMs are essentially groups locked between two users that can be reused - basically a fixed group of 2. This is how MLS works.
36
59
@@ -55,6 +78,12 @@ const address =
55
78
56
79
> XMTP is working on integrating passkeys as a pillar of identity. Expect a breaking change soon as XMTP prepares for the first v3 stable release.
57
80
81
+
## Web inbox
82
+
83
+
Interact with the XMTP network using [xmtp.chat](https://xmtp.chat), the official web inbox for developers.
84
+
85
+

86
+
58
87
## Examples
59
88
60
89
-[gm](/examples/gm/): A simple agent that replies to all text messages with "gm".
@@ -70,9 +99,3 @@ Examples integrating XMTP with external libraries from the ecosystem
70
99
-[grok](/integrations/grok/): Integrate XMTP to the Grok API
71
100
72
101
> See all the available [integrations](/integrations/).
73
-
74
-
## Web inbox
75
-
76
-
Interact with the XMTP network using [xmtp.chat](https://xmtp.chat), the official web inbox for developers.
0 commit comments