The XMTP React Chat example app has been archived and this repo is no longer being maintained.
Check out these other supported app repos you can use for guidance and inspiration when building with XMTP:
- The XMTP Quickstart React chat app demonstrates the core capabilities of the XMTP client SDK, providing code you can use to learn to build a basic messaging app.
- The XMTP Inbox chat app demonstrates core and advanced capabilities of the XMTP client SDK, showcasing innovative ways of building with XMTP. This app is an evolution of the XMTP React Chat example app previously maintained in this repo.
For even more examples of apps built with XMTP, see:
You can still fork this repo and existing forks continue to work.
Example chat application demonstrating the core concepts and capabilities of the XMTP client SDK
This application is built with React, Next.js, and the xmtp-js
client SDK.
Use the application to send and receive messages using the XMTP dev
network environment, with some important considerations. You are also free to customize and deploy the application.
This application is distributed under MIT License for learning about and developing applications built with XMTP, a messaging protocol and decentralized communication network for blockchain wallets. The application has not undergone a formal security audit.
Add your Infura ID to .env.local
in the project's root.
NEXT_PUBLIC_INFURA_ID={YOUR_INFURA_ID}
If you do not have an Infura ID, you can follow these instructions to get one.
npm install
npm run dev
Open http://localhost:3000 with your browser to see the application.
Web3Modal
is used to inject a Metamask, Coinbase Wallet, or WalletConnect provider through ethers
. Methods for connecting and disconnecting are included in WalletProvider
alongside the provider, signer, wallet address, and ENS utilities.
To use the application's chat functionality, the connected wallet must provide two signatures:
- A one-time signature that is used to generate the wallet's private XMTP identity
- A signature that is used on application start-up to initialize the XMTP client with that identity
The application uses the xmtp-js
Conversations abstraction to list the available conversations for a connected wallet and to listen for or create new conversations. For each conversation, the application gets existing messages and listens for or creates new messages. Conversations and messages are kept in a lightweight store and made available through XmtpProvider
.
Here are some important considerations when working with the example chat application:
- The application sends and receives messages using the XMTP
dev
network environment. To connect to theproduction
network instead, set the following environment variableNEXT_PUBLIC_XMTP_ENVIRONMENT=production
.- XMTP may occasionally delete messages and keys from the
dev
network, and will provide advance notice in the XMTP Discord community (request access). Theproduction
network is configured to store messages indefinitely.
- XMTP may occasionally delete messages and keys from the
- You can't yet send a message to a wallet address that hasn't used XMTP. The client displays an error when it looks up an address that doesn't have an identity broadcast on the XMTP network.