Skip to content

Commit e8fcc63

Browse files
authored
Merge pull request #161 from status-im/readme-update
2 parents 2bd7438 + 2f27263 commit e8fcc63

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,19 @@ waku.addPeerToAddressBook(
3434
);
3535
```
3636

37+
You can also use `getStatusFleetNodes` to connect to nodes run by Status:
38+
39+
```javascript
40+
import { getStatusFleetNodes } from 'js-waku';
41+
42+
const nodes = await getStatusFleetNodes();
43+
await Promise.all(
44+
nodes.map((addr) => {
45+
return waku.dial(addr);
46+
})
47+
);
48+
```
49+
3750
The `contentTopic` is a metadata `string` that allows categorization of messages on the waku network.
3851
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`.
3952
See the [Waku v2 Message spec](https://rfc.vac.dev/spec/14/) for more details.
@@ -91,6 +104,10 @@ npm install
91104
npm run doc
92105
```
93106

107+
## Changelog
108+
109+
Release changelog can be found [here](https://github.com/status-im/js-waku/blob/main/CHANGELOG.md).
110+
94111
## Waku Protocol Support
95112

96113
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
119136

120137
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/).
121138

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).
123142

124143
## Examples
125144

0 commit comments

Comments
 (0)