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