This repo provides a package you can use to build with XMTP in a React Native or Expo app.
Is there a feature you need that's currently supported? Please open an issue.
Or better yet, open a PR and we'll get it reviewed and merged as soon as possible. If you contribute a PR that gets merged into this repo, you'll be eligible to claim this XMTP contributor POAP!
To learn more about XMTP and get answers to frequently asked questions, see XMTP documentation.
Access the xmtp-react-native
client SDK reference documentation.
Use the XMTP React Native example app as a tool to start building an app with XMTP. This basic messaging app has an intentionally unopinionated UI to help make it easier for you to build with. See example/README.md for more instructions.
Follow the React Native guide to set up a CLI environment.
yarn
cd example
yarn
yarn run [ios or android]
npx expo prebuild
For bare React Native projects, install and configure the expo
package before continuing.
then add the required babel plugin
yarn add @babel/plugin-proposal-export-namespace-from -D
then add the plugin to your babel.config.js
module.exports = {
presets: ['module:@react-native/babel-preset'],
plugins: [
'@babel/plugin-proposal-export-namespace-from',
// ... other plugins
],
};
yarn add @xmtp/react-native-sdk
In the ios
directory, update your Podfile
file as follows:
platform :ios, '16.0'
. This is required by XMTP.If you get the error The SQLCipher Sqlite extension is not present, but an encryption key is given
Other Linker Flags
first item to -l"xmtpv3"
npx pod-install
Your app must use Android minSdkVersion = 22
to work with the xmtp-react-native
SDK.
The XMTP message API revolves around a network client that allows retrieving and sending messages to other network participants. A client must be connected to a wallet on startup. If this is the very first time the client is created, the client will generate a key bundle that is used to encrypt and authenticate messages. The key bundle persists encrypted in the network using a wallet signature. The public side of the key bundle is also regularly advertised on the network to allow parties to establish shared encryption keys. All this happens transparently, without requiring any additional code.
import { Client } from '@xmtp/react-native-sdk'
import { ConnectWallet, useSigner } from "@thirdweb-dev/react-native";
// Create the client with your wallet. This will connect to the XMTP development network by default
const xmtp = await Client.create(useSigner(), { env: 'production', dbEncryptionKey: [32 Byte Array] });
// Start a conversation with XMTP
const conversation = await xmtp.conversations.newConversation(
'0x3F11b27F323b62B159D2642964fa27C46C841897'
)
// Load all messages in the conversation
const messages = await conversation.messages()
// Send a message
await conversation.send('gm')
// Listen for new messages in the conversation
for await (const message of await conversation.streamMessages()) {
console.log(`[${message.senderAddress}]: ${message.content}`)
}
Currently, network nodes are configured to rate limit high-volume publishing from clients. A rate-limited client can expect to receive a 429 status code response from a node. Rate limits can change at any time in the interest of maintaining network health.
A client is created with Client.create(wallet: Signer, options: ClientOptions): Promise<Client>
that requires passing in a connected wallet that implements the Signer interface. The client will request a wallet signature in two cases:
Important
The client connects to the XMTPdev
environment by default. UseClientOptions
to change this and other parameters of the network connection.
import { Client } from '@xmtp/react-native-sdk'
// Create the client with a `Signer` from your application
const xmtp = await Client.create(wallet, options)
You can configure the client with these parameters of Client.create
:
Parameter | Default | Description | |
---|---|---|---|
env | DEV |
Connect to the specified XMTP network environment. Valid values include DEV , .PRODUCTION , or LOCAL . For important details about working with these environments, see XMTP production and dev network environments. |
|
dbEncryptionKey | REQUIRED |
A 32 ByteArray used to encrypt the local database. | |
historySyncUrl | https://message-history.dev.ephemera.network/ |
The history sync url used to specify where history can be synced from other devices on the network. | |
appVersion | undefined |
Add a client app version identifier that's included with API requests. For example, you can use the following format: appVersion: APP_NAME + '/' + APP_VERSION .Setting this value provides telemetry that shows which apps are using the XMTP client SDK. This information can help XMTP developers provide app support, especially around communicating important SDK updates, including deprecations and required upgrades. |
Most of the time, when interacting with the network, you'll want to do it through conversations
. Conversations are between two wallets.
import { Client } from '@xmtp/react-native-sdk'
// Create the client with a `Signer` from your application
const xmtp = await Client.create(wallet, options)
const conversations = xmtp.conversations
You can get a list of all conversations that have one or more messages.
const allConversations = await xmtp.conversations.list()
// Say gm to everyone you've been chatting with
for (const conversation of allConversations) {
console.log(`Saying GM to ${conversation.peerAddress}`)
await conversation.send('gm')
}
These conversations include all conversations for a user regardless of which app created the conversation. This functionality provides the concept of an interoperable inbox, which enables a user to access all of their conversations in any app built with XMTP.
You can also listen for new conversations being started in real-time. This will allow applications to display incoming messages from new contacts.
Warning
This stream will continue infinitely. To end the stream you can callxmtp.conversations.cancelStream()
.
await xmtp.conversations.stream()
for await (const conversation of stream) {
console.log(`New conversation started with ${conversation.peerInboxId}`)
// Say hello to your new friend
await conversation.send('Hi there!')
// Break from the loop to stop listening
break
}
You can create a new conversation with any Ethereum address on the XMTP network.
const newConversation = await xmtp.conversations.newConversation(
'0x3F11b27F323b62B159D2642964fa27C46C841897'
)
To be able to send a message, the recipient must have already started their client at least once and consequently advertised their key bundle on the network. Messages are addressed using wallet addresses. The message payload can be a plain string, but other types of content can be supported through the use of SendOptions
. See Handle different types of content for more details.
const conversation = await xmtp.conversations.newConversation(
'0x3F11b27F323b62B159D2642964fa27C46C841897'
)
await conversation.send('Hello world')
You can receive the complete message history in a conversation by calling conversation.messages()
for (const conversation of await xmtp.conversations.list()) {
const messagesInConversation = await conversation.messages(beforeNs: 1293487234981234, afterNs: 3458123498234234)
}
It may be helpful to retrieve and process the messages in a conversation page by page.
const conversation = await xmtp.conversations.newConversation(
'0x3F11b27F323b62B159D2642964fa27C46C841897'
)
for await (const page of conversation.messages(limit: 25)) {
for (const msg of page) {
// Breaking from the outer loop will stop the client from requesting any further pages
if (msg.content === 'gm') {
return
}
console.log(msg.content)
}
}
You can listen for any new messages (incoming or outgoing) in a conversation by calling conversation.streamMessages()
.
A successfully received message (that makes it through the decoding and decryption without throwing) can be trusted to be authentic, i.e. that it was sent by the owner of the message.senderAddress
wallet and that it wasn't modified in transit. The message.sent
timestamp can be trusted to have been set by the sender.
The Stream returned by the stream
methods is an asynchronous iterator and as such usable by a for-await-of loop. Note however that it is by its nature infinite, so any looping construct used with it will not terminate, unless the termination is explicitly initiated by calling cancelStreamMessages()
.
const conversation = await xmtp.conversations.newConversation(
'0x3F11b27F323b62B159D2642964fa27C46C841897'
)
for await (const message of await conversation.streamMessages()) {
if (message.senderAddress === xmtp.address) {
// This message was sent from me
continue
}
console.log(`New message from ${message.senderAddress}: ${message.content}`)
}
To listen for any new messages from all conversations, use conversations.streamAllMessages()
.
Note
There is a chance this stream can miss messages if multiple new conversations are received in the time it takes to update the stream to include a new conversation.Warning
This stream will continue infinitely. To end the stream you can callconversations.cancelStreamAllMessages()
.
for await (const message of await xmtp.conversations.streamAllMessages()) {
if (message.senderAddress === xmtp.address) {
// This message was sent from me
continue
}
console.log(`New message from ${message.senderAddress}: ${message.content}`)
}
The user consent feature enables your app to request and respect user consent preferences. With this feature, another blockchain account address registered on the XMTP network can have one of three consent preference values:
To learn more, see Request and respect user consent.
If you would like to check and see if a blockchain address is registered on the network before instantiating a client instance, you can use Client.canMessage
.
import { Client } from '@xmtp/react-native-sdk'
const isOnProdNetwork = await Client.canMessage('0x3F11b27F323b62B159D2642964fa27C46C841897')
You can send a broadcast message (1:many message or announcement) with XMTP. The recipient sees the message as a DM from the sending wallet address.
For important information about sending broadcast messages, see Best practices for broadcast messages.
canMessage
method to identify the wallet addresses that are activated on the XMTP network.For example:
const ethers = require('ethers')
const { Client } = require('@xmtp/react-native-sdk')
async function main() {
//Create a random wallet for example purposes. On the frontend you should replace it with the user's wallet (metamask, rainbow, etc)
//Initialize the xmtp client
const xmtp = await Client.createRandom({ env: "dev" });
//In this example we are going to broadcast to the GM_BOT wallet (already activated) and a random wallet (not activated)
const GM_BOT = '0x937C0d4a6294cdfa575de17382c7076b579DC176'
const test = ethers.Wallet.createRandom()
const broadcasts_array = [GM_BOT, test.address]
//Querying the activation status of the wallets
const broadcasts_canMessage = await xmtp.canMessage(broadcasts_array)
for (let i = 0; i < broadcasts_array.length; i++) {
//Checking the activation status of each wallet
const wallet = broadcasts_array[i]
const canMessage = broadcasts_canMessage[i]
if (broadcasts_canMessage[i]) {
//If activated, start
const conversation = await xmtp.conversations.newConversation(wallet)
// Send a message
const sent = await conversation.send('gm')
}
}
}
main()
All send functions support SendOptions
as an optional parameter. The contentType
option allows specifying different types of content than the default simple string standard content type, which is identified with content type identifier ContentTypeText
.
To learn more about content types, see Content types with XMTP.
Support for other types of content can be added by registering additional ContentCodecs
with the Client
. Every codec is associated with a content type identifier, ContentTypeId
, which is used to signal to the client which codec should be used to process the content that is being sent or received.
For example, see the Native Codecs available in xmtp-react-native
.
// Assuming we've loaded a fictional NumberCodec that can be used to encode numbers,
// and is identified with ContentTypeNumber, we can use it as follows.
xmtp.register(new NumberCodec())
conversation.send(3.14, {
contentType: ContentTypeNumber
})
Additional codecs can be configured through the ClientOptions
parameter of Client.create
. The codecs
option is a list of codec instances that should be added to the default set of codecs (currently only the TextCodec
). If a codec is added for a content type that is already in the default set, it will replace the original codec.
// Adding support for `xmtp.org/reaction` content type
import { ReactionCodec } from '@xmtp/react-native-sdk'
const xmtp = Client.create(wallet, { codecs: [new ReactionCodec()] })
await conversation.send({
reaction: {
reference: otherMessage.id,
action: "added",
schema: "unicode",
content: "💖",
},
});
To learn more about how to build a custom content type, see Build a custom content type.
Custom codecs and content types may be proposed as interoperable standards through XRCs. To learn about the custom content type proposal process, see XIP-5.
import { Client } from '@xmtp/react-native-sdk'
const client = await Client.build(address, options)
Check out the push-notifications-example
branch and follow instructions in the README.
Because xmtp-react-native
is in active development, you should expect breaking revisions that might require you to adopt the latest SDK release to enable your app to continue working as expected.
XMTP communicates about breaking revisions in the XMTP Discord community, providing as much advance notice as possible. Additionally, breaking revisions in an xmtp-react-native
release are described on the Releases page.
Older versions of the SDK will eventually be deprecated, which means:
The following table provides the deprecation schedule.
Announced | Effective | Minimum Version | Rationale |
---|---|---|---|
No more support for V2 | March 1, 2025 | 3.0.0 | In a move towards better security with MLS and the ability to decentralize we will be shutting down V2 and moving entirely to V3 MLS. You can see the legacy branch here: https://github.com/xmtp/xmtp-react-native/tree/xmtp-legacy |
Bug reports, feature requests, and PRs are welcome in accordance with these contribution guidelines.
production
and dev
network environmentsXMTP provides both production
and dev
network environments to support the development phases of your project.
The production
and dev
networks are completely separate and not interchangeable.
For example, for a given blockchain account address, its XMTP identity on dev
network is completely distinct from its XMTP identity on the production
network, as are the messages associated with these identities. In addition, XMTP identities and messages created on the dev
network can't be accessed from or moved to the production
network, and vice versa.
Important
When you create a client, it connects to the XMTPdev
environment by default. To learn how to use theenv
parameter to set your client's network environment, see Configure the client.
The env
parameter accepts one of three valid values: dev
, production
, or local
. Here are some best practices for when to use each environment:
dev
: Use to have a client communicate with the dev
network. As a best practice, set env
to dev
while developing and testing your app. Follow this best practice to isolate test messages to dev
inboxes.
production
: Use to have a client communicate with the production
network. As a best practice, set env
to production
when your app is serving real users. Follow this best practice to isolate messages between real-world users to production
inboxes.
local
: Use to have a client communicate with an XMTP node you are running locally. For example, an XMTP node developer can set env
to local
to generate client traffic to test a node running locally.
The production
network is configured to store messages indefinitely. XMTP may occasionally delete messages and keys from the dev
network, and will provide advance notice in the XMTP Discord community.