mirror of
https://github.com/acid-info/waku.guide.git
synced 2025-02-23 15:28:29 +00:00
add bounties link
This commit is contained in:
parent
531dac96b8
commit
2121991637
@ -31,7 +31,9 @@
|
|||||||
"Dappnode",
|
"Dappnode",
|
||||||
"gameplay",
|
"gameplay",
|
||||||
"Smol",
|
"Smol",
|
||||||
"Datagram"
|
"Datagram",
|
||||||
|
"Graphcast",
|
||||||
|
"permissionless"
|
||||||
],
|
],
|
||||||
"flagWords": [],
|
"flagWords": [],
|
||||||
"ignorePaths": [
|
"ignorePaths": [
|
||||||
|
@ -6,7 +6,7 @@ Get involved in Waku's open-source initiatives to improve the protocol, implemen
|
|||||||
|
|
||||||
## Run a Node
|
## 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
|
## Build a Waku Application
|
||||||
|
|
||||||
@ -32,4 +32,4 @@ Community pull requests (PRs) are highly encouraged, but we recommend beginning
|
|||||||
|
|
||||||
## Contribute to Waku Research
|
## 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 <https://vac.dev/open-problems>.
|
[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 <https://vac.dev/open-problems>.
|
@ -12,7 +12,7 @@ Once a connection is established, the node must actively seek out additional pee
|
|||||||
|
|
||||||
## Predefined Nodes
|
## 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
|
#### Pros
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ The development of the Whisper protocol lagged behind the advancements made by t
|
|||||||
|
|
||||||
### 2018
|
### 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
|
### 2020
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Introduction
|
title: What is Waku?
|
||||||
slug: /
|
slug: /
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -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 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
|
## Waku as a Keyturn Solution
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ const config = {
|
|||||||
to: "/contribute"
|
to: "/contribute"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Open Bounties",
|
label: "Gitcoin Bounties",
|
||||||
href: "https://bounties.gitcoin.co/status-im/bounties"
|
href: "https://bounties.gitcoin.co/status-im/bounties"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -39,7 +39,12 @@ const sidebars = {
|
|||||||
community: [
|
community: [
|
||||||
"powered-by-waku",
|
"powered-by-waku",
|
||||||
"community",
|
"community",
|
||||||
"contribute"
|
"contribute",
|
||||||
|
{
|
||||||
|
type: "link",
|
||||||
|
label: "Gitcoin Bounties",
|
||||||
|
href: "https://bounties.gitcoin.co/status-im/bounties"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user