From 212199163717f7f21b073392e88f655e9192b207 Mon Sep 17 00:00:00 2001 From: LordGhostX Date: Mon, 22 May 2023 18:05:38 +0100 Subject: [PATCH] add bounties link --- .cspell.json | 4 +++- docs/contribute.md | 4 ++-- docs/overview/concepts/peer-discovery.md | 2 +- docs/overview/history.md | 2 +- docs/overview/index.md | 2 +- docs/overview/reference/waku-vs-libp2p.md | 2 +- docusaurus.config.js | 2 +- sidebars.js | 7 ++++++- 8 files changed, 16 insertions(+), 9 deletions(-) diff --git a/.cspell.json b/.cspell.json index 4690b49..57f99ba 100644 --- a/.cspell.json +++ b/.cspell.json @@ -31,7 +31,9 @@ "Dappnode", "gameplay", "Smol", - "Datagram" + "Datagram", + "Graphcast", + "permissionless" ], "flagWords": [], "ignorePaths": [ diff --git a/docs/contribute.md b/docs/contribute.md index d864d75..2a7f64b 100644 --- a/docs/contribute.md +++ b/docs/contribute.md @@ -6,7 +6,7 @@ Get involved in Waku's open-source initiatives to improve the protocol, implemen ## Run a Node -The Waku network is permissionless and decentralized, consisting of nodes. It is open for anyone to run their node, use the network, and contribute to its support. Please visit the [running a nwaku node](https://github.com/waku-org/nwaku/blob/master/docs/operators/quickstart.md) guide to learn more. +The Waku network is permissionless and decentralized, consisting of nodes. It is open for anyone to run their node, use the network, and contribute to its support. Please visit the [nwaku guide for operators](https://github.com/waku-org/nwaku/tree/master/docs/operators) to learn more. ## Build a Waku Application @@ -32,4 +32,4 @@ Community pull requests (PRs) are highly encouraged, but we recommend beginning ## Contribute to Waku Research -[Vac](https://vac.dev/) drives Waku research, advancing through ongoing R&D. Vac is dedicated to developing modular p2p protocols for private, secure, and censorship-resistant communication. Explore Vac's open problems at . \ No newline at end of file +[Vac](https://vac.dev/) drives Waku research, advancing through ongoing R&D. Vac is dedicated to developing modular p2p protocols for private, secure, and censorship-resistant communication. Explore Vac's open problems at . \ No newline at end of file diff --git a/docs/overview/concepts/peer-discovery.md b/docs/overview/concepts/peer-discovery.md index 920681b..cb65337 100644 --- a/docs/overview/concepts/peer-discovery.md +++ b/docs/overview/concepts/peer-discovery.md @@ -12,7 +12,7 @@ Once a connection is established, the node must actively seek out additional pee ## Predefined Nodes -Waku applications have the flexibility to embed bootstrap node addresses directly into their codebase. Developers can opt to utilize either the [predefined nodes by Status](https://github.com/waku-org/js-waku/blob/master/packages/core/src/lib/predefined_bootstrap_nodes.ts#L45) or [set up their nodes](https://github.com/waku-org/nwaku/blob/master/docs/operators/quickstart.md) per their preference. +Waku applications have the flexibility to embed bootstrap node addresses directly into their codebase. Developers can opt to utilize either the [predefined nodes by Status](https://github.com/waku-org/js-waku/blob/master/packages/core/src/lib/predefined_bootstrap_nodes.ts#L45) or [set up their nodes](https://github.com/waku-org/nwaku/tree/master/docs/operators) per their preference. #### Pros diff --git a/docs/overview/history.md b/docs/overview/history.md index a98450a..ad40993 100644 --- a/docs/overview/history.md +++ b/docs/overview/history.md @@ -33,7 +33,7 @@ The development of the Whisper protocol lagged behind the advancements made by t ### 2018 -Due to the lack of progress made on Whisper and growing concerns around scalability, Vac was established to focus on researching and developing more scalable peer-to-peer messaging solutions. +Due to the lack of progress made on Whisper and growing concerns around scalability, [Vac](https://vac.dev/) was established to focus on researching and developing more scalable peer-to-peer messaging solutions. ### 2020 diff --git a/docs/overview/index.md b/docs/overview/index.md index 324310a..4015451 100644 --- a/docs/overview/index.md +++ b/docs/overview/index.md @@ -1,5 +1,5 @@ --- -title: Introduction +title: What is Waku? slug: / --- diff --git a/docs/overview/reference/waku-vs-libp2p.md b/docs/overview/reference/waku-vs-libp2p.md index e179560..c2b6179 100644 --- a/docs/overview/reference/waku-vs-libp2p.md +++ b/docs/overview/reference/waku-vs-libp2p.md @@ -6,7 +6,7 @@ Since Waku is built on top of libp2p, they share a lot of concepts and terminolo ## Waku as a Service Network -Waku intends to incentivize mechanisms to run nodes, but it's not part of libp2p's scope. Additionally, users or developers do not have to deploy their infra as a prerequisite to use Waku. It is a service network. However, you are encouraged to [run your node](https://github.com/waku-org/nwaku/blob/master/docs/operators/quickstart.md) to support and decentralize the network. +Waku intends to incentivize mechanisms to run nodes, but it's not part of libp2p's scope. Additionally, users or developers do not have to deploy their infra as a prerequisite to use Waku. It is a service network. However, you are encouraged to [run your node](https://github.com/waku-org/nwaku/tree/master/docs/operators) to support and decentralize the network. ## Waku as a Keyturn Solution diff --git a/docusaurus.config.js b/docusaurus.config.js index 4b43b4b..2d7357d 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -91,7 +91,7 @@ const config = { to: "/contribute" }, { - label: "Open Bounties", + label: "Gitcoin Bounties", href: "https://bounties.gitcoin.co/status-im/bounties" } ] diff --git a/sidebars.js b/sidebars.js index cc2d109..b58df69 100644 --- a/sidebars.js +++ b/sidebars.js @@ -39,7 +39,12 @@ const sidebars = { community: [ "powered-by-waku", "community", - "contribute" + "contribute", + { + type: "link", + label: "Gitcoin Bounties", + href: "https://bounties.gitcoin.co/status-im/bounties" + } ] };