1import { Client } from "@xmtp/node-sdk"
2
3const client = await Client.create(signer, {
4 env: "production",
5 gatewayHost: "https://xmtp.exchange/a1b2c3d4e5f6g7h8"
6})
7
8// Send a message
9const conversation = await client.conversations.newConversation("0x...")
10await conversation.send("Hello XMTP!")