From b53baf87ba627733ea5d4c28a1491fda97fb9641 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Sat, 15 May 2021 20:41:05 +1000 Subject: [PATCH 1/3] Mention discord channel --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a082ed03b3..a6bb408872 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,9 @@ You can track progress on the [project board](https://github.com/status-im/js-wa If you encounter any bug or would like to propose new features, feel free to [open an issue](https://github.com/status-im/js-waku/issues/new/). -For support, questions & more general topics, please join the discussion on the [Vac forum](https://forum.vac.dev/tag/js-waku) (use _\#js-waku_ tag). +For support, questions & more general topics, +please join the discussion on the [Vac forum](https://forum.vac.dev/tag/js-waku) (use _\#js-waku_ tag) +or [\#waku-support on Status Discord](https://discord.gg/VChNsDdj). ## Examples From 6d957b62e17a30bdbad3ccfc6324113c34fb57b8 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Sat, 15 May 2021 20:42:54 +1000 Subject: [PATCH 2/3] Add doc for `getStatusFleetNodes` --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index a6bb408872..7d302a8c73 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,19 @@ waku.addPeerToAddressBook( ); ``` +You can also use `getStatusFleetNodes` to connect to nodes run by Status: + +```javascript +import { getStatusFleetNodes } from 'js-waku'; + +const nodes = await getStatusFleetNodes(); +await Promise.all( + nodes.map((addr) => { + return waku.dial(addr); + }) +); +``` + The `contentTopic` is a metadata `string` that allows categorization of messages on the waku network. Depending on your use case, you can either create one (or several) new `contentTopic`(s) or look at the [RFCs](https://rfc.vac.dev/) and use an existing `contentTopic`. See the [Waku v2 Message spec](https://rfc.vac.dev/spec/14/) for more details. From 2f272634bc76473beb42057904442a465e9a3876 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Sat, 15 May 2021 20:59:52 +1000 Subject: [PATCH 3/3] Add link to release changelog --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 7d302a8c73..a54bc2bf88 100644 --- a/README.md +++ b/README.md @@ -104,6 +104,10 @@ npm install npm run doc ``` +## Changelog + +Release changelog can be found [here](https://github.com/status-im/js-waku/blob/main/CHANGELOG.md). + ## Waku Protocol Support You can track progress on the [project board](https://github.com/status-im/js-waku/projects/1).