2022-08-04 11:42:53 +00:00
|
|
|
// @ts-check
|
2023-01-23 09:37:39 +00:00
|
|
|
|
2023-05-19 23:35:51 +00:00
|
|
|
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
|
2022-08-04 11:42:53 +00:00
|
|
|
const sidebars = {
|
2023-05-19 23:35:51 +00:00
|
|
|
main: [
|
2023-06-14 00:26:55 +00:00
|
|
|
"overview/index",
|
|
|
|
"overview/history",
|
|
|
|
"overview/why-waku",
|
|
|
|
"overview/use-cases",
|
2023-05-19 23:35:51 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
2023-06-14 00:26:55 +00:00
|
|
|
label: "Concepts",
|
2023-05-19 23:35:51 +00:00
|
|
|
items: [
|
2023-06-14 00:26:55 +00:00
|
|
|
"overview/concepts/protocols",
|
|
|
|
"overview/concepts/content-topics",
|
|
|
|
"overview/concepts/network-domains",
|
2023-06-18 08:34:09 +00:00
|
|
|
"overview/concepts/transports",
|
2023-06-06 02:47:24 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
2023-06-14 00:26:55 +00:00
|
|
|
label: "Peer Discovery",
|
|
|
|
link: {
|
|
|
|
type: "doc",
|
|
|
|
id: "overview/concepts/peer-discovery",
|
|
|
|
},
|
2023-06-06 02:47:24 +00:00
|
|
|
items: [
|
2023-06-16 08:40:22 +00:00
|
|
|
"overview/concepts/static-peers",
|
2023-06-14 00:26:55 +00:00
|
|
|
"overview/concepts/dns-discovery",
|
|
|
|
"overview/concepts/discv5",
|
|
|
|
"overview/concepts/peer-exchange",
|
2023-06-06 02:47:24 +00:00
|
|
|
]
|
|
|
|
},
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
2023-06-14 00:26:55 +00:00
|
|
|
},
|
2023-05-19 23:35:51 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
2023-06-14 00:26:55 +00:00
|
|
|
label: "Reference",
|
2023-06-27 22:38:21 +00:00
|
|
|
collapsed: false,
|
2023-05-19 23:35:51 +00:00
|
|
|
items: [
|
2023-06-14 00:26:55 +00:00
|
|
|
"overview/reference/glossary",
|
|
|
|
"overview/reference/security-features",
|
|
|
|
"overview/reference/research-in-progress",
|
|
|
|
"overview/reference/waku-vs-libp2p",
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
2023-07-15 23:08:27 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'html',
|
|
|
|
value: '<a href="/guides/nodes-and-sdks" target="_blank" rel="noopener noreferrer" class="menu__link external-link">Nodes and SDKs<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
2023-05-19 23:35:51 +00:00
|
|
|
}
|
|
|
|
],
|
2023-06-14 00:26:55 +00:00
|
|
|
guides: [
|
|
|
|
"guides/nodes-and-sdks",
|
2023-06-14 03:34:58 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Run a Nwaku Node",
|
|
|
|
link: {
|
|
|
|
type: "doc",
|
|
|
|
id: "guides/run-nwaku-node",
|
|
|
|
},
|
|
|
|
items: [
|
2023-06-15 13:54:02 +00:00
|
|
|
"guides/nwaku/build-source",
|
2023-06-14 12:08:58 +00:00
|
|
|
"guides/nwaku/run-docker",
|
2023-06-15 02:09:14 +00:00
|
|
|
"guides/nwaku/run-docker-compose",
|
2023-06-16 08:40:22 +00:00
|
|
|
"guides/nwaku/configure-discovery",
|
2023-09-15 20:08:15 +00:00
|
|
|
"guides/nwaku/configure-nwaku"
|
2023-06-15 20:42:35 +00:00
|
|
|
]
|
|
|
|
},
|
2023-07-11 17:52:38 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "JavaScript Waku SDK",
|
|
|
|
link: {
|
|
|
|
type: "doc",
|
|
|
|
id: "guides/js-waku/index",
|
|
|
|
},
|
|
|
|
items: [
|
|
|
|
"guides/js-waku/light-send-receive",
|
|
|
|
"guides/js-waku/store-retrieve-messages",
|
2023-07-15 21:54:13 +00:00
|
|
|
"guides/js-waku/use-waku-create-app",
|
2023-08-03 05:40:57 +00:00
|
|
|
"guides/js-waku/configure-discovery",
|
2023-08-16 08:29:32 +00:00
|
|
|
"guides/js-waku/run-waku-nodejs",
|
|
|
|
"guides/js-waku/debug-waku-dapp",
|
2023-11-21 13:19:52 +00:00
|
|
|
"guides/js-waku/manage-filter",
|
2023-07-11 17:52:38 +00:00
|
|
|
{
|
|
|
|
type: 'html',
|
2023-08-16 08:29:32 +00:00
|
|
|
value: '<a href="https://examples.waku.org" target="_blank" rel="noopener noreferrer" class="menu__link external-link">@waku/sdk Examples<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
2023-07-11 17:52:38 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'html',
|
2023-07-18 18:51:12 +00:00
|
|
|
value: '<a href="https://js.waku.org" target="_blank" rel="noopener noreferrer" class="menu__link external-link">API Reference<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
2023-07-11 17:52:38 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2023-06-15 20:42:35 +00:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Reference",
|
2023-06-27 22:38:21 +00:00
|
|
|
collapsed: false,
|
2023-06-15 20:42:35 +00:00
|
|
|
items: [
|
|
|
|
"guides/reference/node-config-methods",
|
|
|
|
"guides/reference/node-config-options",
|
2023-06-14 03:34:58 +00:00
|
|
|
]
|
|
|
|
},
|
2023-06-14 00:26:55 +00:00
|
|
|
],
|
2023-05-22 05:19:27 +00:00
|
|
|
community: [
|
2023-06-14 00:26:55 +00:00
|
|
|
"community",
|
|
|
|
"contribute",
|
|
|
|
"presentations",
|
2023-07-18 18:51:12 +00:00
|
|
|
"powered-by-waku",
|
2023-06-20 11:41:55 +00:00
|
|
|
{
|
|
|
|
type: 'html',
|
|
|
|
value: '<a href="https://github.com/waku-org/bounties" target="_blank" rel="noopener noreferrer" class="menu__link external-link">Waku Bounties<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
|
|
|
},
|
2023-06-02 18:12:50 +00:00
|
|
|
{
|
2023-06-14 00:26:55 +00:00
|
|
|
type: 'html',
|
|
|
|
value: '<a href="https://hackenproof.com/status-dot-im/waku" target="_blank" rel="noopener noreferrer" class="menu__link external-link">Bug Bounty Program<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.1918 4H3.42848V2.85715H13.1428V12.5714H11.9999V4.80813L3.83254 12.9755L3.02441 12.1674L11.1918 4Z" fill="white"/></svg>',
|
|
|
|
},
|
2023-05-19 23:35:51 +00:00
|
|
|
]
|
2022-08-04 11:42:53 +00:00
|
|
|
};
|
|
|
|
|
2023-06-14 00:26:55 +00:00
|
|
|
module.exports = sidebars;
|