Skip to content

Commit 0ff9a04

Browse files
committed
remove Vitalik's address
1 parent a5e6674 commit 0ff9a04

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ import { Wallet } from 'ethers'
7777
const wallet = Wallet.createRandom()
7878
// Create the client with your wallet. This will connect to the XMTP development network by default
7979
const xmtp = await Client.create(wallet)
80-
// Start a conversation with Vitalik
80+
// Start a conversation with XMTP
8181
const conversation = await xmtp.conversations.newConversation(
82-
'0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
82+
'0x3F11b27F323b62B159D2642964fa27C46C841897'
8383
)
8484
// Load all messages in the conversation
8585
const messages = await conversation.messages()
@@ -166,7 +166,7 @@ You can create a new conversation with any Ethereum address on the XMTP network.
166166

167167
```ts
168168
const newConversation = await xmtp.conversations.newConversation(
169-
'0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
169+
'0x3F11b27F323b62B159D2642964fa27C46C841897'
170170
)
171171
```
172172

@@ -176,7 +176,7 @@ To be able to send a message, the recipient must have already started their Clie
176176

177177
```ts
178178
const conversation = await xmtp.conversations.newConversation(
179-
'0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
179+
'0x3F11b27F323b62B159D2642964fa27C46C841897'
180180
)
181181
await conversation.send('Hello world')
182182
```
@@ -207,7 +207,7 @@ The Stream returned by the `stream` methods is an asynchronous iterator and as s
207207

208208
```ts
209209
const conversation = await xmtp.conversations.newConversation(
210-
'0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
210+
'0x3F11b27F323b62B159D2642964fa27C46C841897'
211211
)
212212
for await (const message of await conversation.streamMessages()) {
213213
if (message.senderAddress === xmtp.address) {

0 commit comments

Comments
 (0)