From 6ded9630b286ca5f036b96d152f8fbb127ab2845 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Fri, 13 Aug 2021 16:02:54 +1000 Subject: [PATCH] Remove mention of Status in guide Keep it in the code doc. --- guides/reactjs-relay.md | 2 +- guides/store-retrieve-messages.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/reactjs-relay.md b/guides/reactjs-relay.md index 30b20936b9..be576608a9 100644 --- a/guides/reactjs-relay.md +++ b/guides/reactjs-relay.md @@ -82,7 +82,7 @@ function App() { # Connect to Other Peers The Waku instance needs to connect to other peers to communicate with the network. -First, create `bootstrapWaku` to connect to Waku bootstrap nodes (hosted by Status): +First, create `bootstrapWaku` to connect to Waku bootstrap nodes: ```js import { getBootstrapNodes } from 'js-waku'; diff --git a/guides/store-retrieve-messages.md b/guides/store-retrieve-messages.md index fc1672c922..822009f0e9 100644 --- a/guides/store-retrieve-messages.md +++ b/guides/store-retrieve-messages.md @@ -41,7 +41,7 @@ import { Waku } from 'js-waku'; const wakuNode = await Waku.create({ bootstrap: true }); ``` -Passing the `bootstrap` option will connect your node to predefined Waku nodes hosted by Status. +Passing the `bootstrap` option will connect your node to predefined Waku nodes. If you want to bootstrap to your own nodes, you can pass an array of multiaddresses instead: ```js