You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,19 @@ waku.addPeerToAddressBook(
34
34
);
35
35
```
36
36
37
+
You can also use `getStatusFleetNodes` to connect to nodes run by Status:
38
+
39
+
```javascript
40
+
import { getStatusFleetNodes } from'js-waku';
41
+
42
+
constnodes=awaitgetStatusFleetNodes();
43
+
awaitPromise.all(
44
+
nodes.map((addr) => {
45
+
returnwaku.dial(addr);
46
+
})
47
+
);
48
+
```
49
+
37
50
The `contentTopic` is a metadata `string` that allows categorization of messages on the waku network.
38
51
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`.
39
52
See the [Waku v2 Message spec](https://rfc.vac.dev/spec/14/) for more details.
@@ -91,6 +104,10 @@ npm install
91
104
npm run doc
92
105
```
93
106
107
+
## Changelog
108
+
109
+
Release changelog can be found [here](https://github.com/status-im/js-waku/blob/main/CHANGELOG.md).
110
+
94
111
## Waku Protocol Support
95
112
96
113
You can track progress on the [project board](https://github.com/status-im/js-waku/projects/1).
@@ -119,7 +136,9 @@ You can track progress on the [project board](https://github.com/status-im/js-wa
119
136
120
137
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/).
121
138
122
-
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).
139
+
For support, questions & more general topics,
140
+
please join the discussion on the [Vac forum](https://forum.vac.dev/tag/js-waku) (use _\#js-waku_ tag)
141
+
or [\#waku-support on Status Discord](https://discord.gg/VChNsDdj).
0 commit comments