diff --git a/docs/maintain/maintain-index.md b/docs/maintain/maintain-index.md index f1debee33e39..948422af2e7e 100644 --- a/docs/maintain/maintain-index.md +++ b/docs/maintain/maintain-index.md @@ -7,50 +7,20 @@ keywords: [index, reference, maintain] slug: ../maintain-index --- +import DocCardList from '@theme/DocCardList'; + Welcome to the network maintainers section of the Polkadot wiki. Here you will find information and guides to set up a node and run the network. -## Node - -- [Networks Guide](maintain-networks.md) - A list of the available Polkadot networks that you can - connect to with a node. -- [Set up a Full Node](maintain-sync.md) - Get up and started by syncing a full node for the Kusama - network. The steps in the guide will broadly apply also to any Substrate-based network (like - Polkadot). -- [Set up Secure WebSocket](maintain-wss.md) - Set up a Secure WebSockets proxy server to safely - access your node's RPC server - -## Collator + -- [Learn about Collators](../learn/learn-collator.md) - High level overview of collators and related - links. +:::info Polkadot's Canary Network Kusama -## Nominator +For more information about being a Kusama maintainer, see the pages below: -- [Learn about Nominators](../learn/learn-nominator.md) - High level overview of nominators and - related links. -- [Nomination Guide (Polkadot)](maintain-guides-how-to-nominate-polkadot.md) - Walkthrough on how to - nominate on the Polkadot network. - [Nomination Guide (Kusama)](kusama/maintain-guides-how-to-nominate-kusama.md) - Walkthrough on how to nominate on the Kusama canary network. -- [How to stop being a Nominator](maintain-guides-how-to-nominate-polkadot.md) - Guide on how to - stop nominating. - -## Validator - -- [Learn about Validators](../learn/learn-validator.md) - High level overview of validator and - related links. -- [Validator Payouts](maintain-guides-validator-payout.md) - Overview on how validator rewards are - calculated and paid. -- [Validation Guide (Polkadot)](maintain-guides-how-to-validate-polkadot.md) - Walkthrough on how to - validate on the Polkadot network. - [Validation Guide (Kusama)](kusama/maintain-guides-how-to-validate-kusama.md) - Walkthrough on how to validate on the Kusama canary network. -- [Using systemd for the Validator Node](maintain-guides-how-to-systemd.md) - Configuring systemd - with the Validator node. -- [Secure Validator](maintain-guides-secure-validator.md) - Best tips and practices for validating. -- [How to upgrade a Validator Node](maintain-guides-how-to-upgrade.md) - Guide on upgrading your - validator node. -- [How to Chill](maintain-guides-how-to-chill.md) - Walkthrough on how to chill as a validator. -- [How to Stop Validating](maintain-guides-how-to-stop-validating.md) - Proper way to stop - validating. + +::: diff --git a/polkadot-wiki/sidebars.js b/polkadot-wiki/sidebars.js index e4ff01a819db..df41e9803eee 100644 --- a/polkadot-wiki/sidebars.js +++ b/polkadot-wiki/sidebars.js @@ -719,15 +719,24 @@ module.exports = { { type: "category", label: "Maintain", + link: { + type: 'doc', + id: "maintain/maintain-index", + }, items: [ - "maintain/maintain-index", "maintain/maintain-polkadot-parameters", - "maintain/maintain-endpoints", - "maintain/maintain-guides-async-backing", { type: "category", label: "Nodes and Dapps", + description: 'Learn how to set up a node.', + link: { + type: 'generated-index', + title: "Nodes and Dapps", + description: "Learn how to set up a node.", + slug: '/maintain-node-index', + }, items: [ + "maintain/maintain-endpoints", "maintain/maintain-sync", "maintain/maintain-bootnode", "maintain/maintain-rpc", @@ -737,9 +746,30 @@ module.exports = { ], }, "maintain/maintain-guides-how-to-nominate-polkadot", + { + type: "category", + label: "Collator Guides", + description: "Guides for Collator Nodes.", + link: { + type: 'generated-index', + title: "Collator Guides", + description: "Guides for Collator Nodes.", + slug: '/maintain-collator-index', + }, + items: [ + "maintain/maintain-guides-async-backing", + ], + }, { type: "category", label: "Validator Guides", + description: "Guides for Validator Nodes.", + link: { + type: 'generated-index', + title: "Validator Guides", + description: "Guides for Validator Nodes.", + slug: '/maintain-validator-index', + }, items: [ "maintain/maintain-guides-how-to-validate-polkadot", "maintain/maintain-guides-validator-payout",