Few changes

This commit is contained in:
Franck Royer 2021-05-24 12:56:28 +10:00
parent ccdb9318f0
commit c7bd881375
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 6 additions and 8 deletions

View File

@ -12,7 +12,7 @@ discuss:
---
After almost three months working on JS-Waku,
we thought it would be a good time to give a proper update.
we thought it would be a good time to give it a proper introduction.
<!-- Waku v2 is built for Status and Ethereum ecosystem -->
@ -21,11 +21,9 @@ First, let's review what is Waku v2.
Waku v2 comes from a need to have a more scalable, better optimised solution for the Status app to achieve decentralised
communications on resource restricted devices (ie, phones).
We see the need of such solution in the broader Ethereum ecosystem, beyond Status.
We are building Waku v2 as a decentralised communication platform for all to use and build onto.
For example, this is one of the reasons why all Waku related code and specs are opensource.
This is why are building Waku v2 as a decentralised communication platform for all to use and build on.
If you want to read more about Waku v2 and what it aims to achieve,
go to [What's the Plan for Waku v2?](/waku-v2-plan).
checkout [What's the Plan for Waku v2?](/waku-v2-plan).
<!-- present waku v2 ecosystem pre js-waku, ie, wakunode2 -->
@ -38,7 +36,7 @@ The nim-waku project doubles as a library, that can be used to add Waku v2 suppo
<!-- present the gap js-waku is trying to fill -->
We believe that dApps and wallets can benefit from the Waku network in several ways.
For some dApps, it may make sense to enable user to user communications.
For some dApps, it may make sense to enable peer-to-peer communications.
For others, machine-to-machine communications could be a great asset.
For example, in the case of a DAO with a governance token,
Waku could be used for [gas-less polling](https://twitter.com/ethstatus/status/1293963402705018881?s=20).
@ -82,7 +80,7 @@ You can start a node, connect to other nodes and send a message in less than ten
```javascript
import { Waku } from 'js-waku';
const waku = await Waku.create();
const waku = await Waku.create({});
const nodes = await getStatusFleetNodes();
await Promise.all(nodes.map((addr) => waku.dial(addr)));
@ -110,7 +108,7 @@ You can find documentation on the [npmjs page](https://www.npmjs.com/package/js-
Even better, you can simply join us in building JS-Waku as we are currently have a position open:
[js-waku: Wallet & Dapp Integration Developer](https://status.im/our_team/jobs.html?gh_jid=3157894).
Whether you are a developer, you can still come chat with us on Discord [#waku (core development)](https://discord.gg/uWbdCmFU) or [#waku-support (dev support)](https://discord.gg/VChNsDdj) (soon to be migrated to Waku!).
Whether you are a developer, you can come chat with us on Discord [#waku (core development)](https://discord.gg/uWbdCmFU) or [#waku-support (dev support)](https://discord.gg/VChNsDdj) (soon to be migrated to Waku!).
If you have any ideas on how Waku could enable a specific dapp or use case, do share, we are always keen to hear it.