From 1b79301f8decb7f28ad37806c6f3f0595ce58acd Mon Sep 17 00:00:00 2001 From: bader y Date: Tue, 20 Jun 2023 07:52:34 -0400 Subject: [PATCH] Proper Learn Intro Page (#4917) * added learn-index page * changed all links for learn-index * add section scaffold * add all links * slight * added basics * finish inscriptions * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> * Update docs/learn/learn-index.md Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> --------- Co-authored-by: Filippo <110459737+filippoweb3@users.noreply.github.com> Co-authored-by: Radha <86818441+DrW3RK@users.noreply.github.com> --- docs/learn/learn-index.md | 82 ++++++++++++++++++++++++++++++ polkadot-wiki/docusaurus.config.js | 2 +- polkadot-wiki/pages/en/index.js | 2 +- polkadot-wiki/sidebars.js | 1 + polkadot-wiki/src/pages/index.js | 2 +- 5 files changed, 86 insertions(+), 3 deletions(-) create mode 100644 docs/learn/learn-index.md diff --git a/docs/learn/learn-index.md b/docs/learn/learn-index.md new file mode 100644 index 000000000000..0ce6b181fbfe --- /dev/null +++ b/docs/learn/learn-index.md @@ -0,0 +1,82 @@ +--- +id: learn-index +title: Learn about Polkadot +sidebar_label: Learn Polkadot +description: Learn how the Polkadot network works and what tool you can use to interact with it. +keywords: [learn, index, tools, resources] +slug: ../learn-index +--- + +Welcome to the learner's section of the Polkadot Wiki. + +Whether you are a developer or someone just getting started with +blockchain, here you will learn how the Polkadot network works from the ground up - from accounts to the protocols that power the Polkadot network. + +If you want to learn more about how to use different tools on Polkadot, you can visit the [Polkadot Technical Explainers playlist](https://youtube.com/playlist?list=PLOyWqupZ-WGuAuS00rK-pebTMAOxW41W8) on YouTube. + +## The Basics: DOT, Accounts, & Staking + +Learn the basics of transactions, accounts, staking, NFTs, and more. + +- [Accounts](./learn-accounts.md) - How accounts work on Polkadot. +- [Transactions (extrinsics)](./learn-extrinsics.md) - The role of extrinsics, and how they define + state changes on Polkadot. +- [Tokens and Assets](./learn-assets.md) - See how different types of assets can exist in the + Polkadot ecosystem and how asset teleportation works. +- [NFTs](./learn-nft.md) - Polkadot's approach to NFTs. +- [Architectural Components](./learn-polkadot-host) - Learn the basics of how the Polkadot + architecture works. +- [Staking](./learn-staking.md) - Learn about how staking works, and how it aids in securing + Polkadot. + +## Advanced Concepts + +Learn more advanced concepts of the Polkadot network. + +- [Accounts - Advanced](./learn-account-advanced) - Learn how accounts work on a finer, more + advanced level. +- [Advanced Staking Concepts](./learn-staking-advanced.md) - Advanced staking information. +- [NFT Pallets](./learn-nft-pallets.md) - An overview of the functionalities of NFT Pallets in + Polkadot Ecosystem. +- [Cryptography](./learn-cryptography.md) - Understand what cryptography is used throughout the + Polkadot network. +- [NPoS Algorithms](./learn-phragmen) - Learn about the election method used on Polkadot's Nominated + Proof of Staking. + +## Network Architecture + +Learn more about Polkadot's network architecture in depth. + +- [Architecture](./learn-architecture.md) - Learn about the key components to Polkadot's + Architecture. +- [Nominator](./learn-nominator.md) - Learn about what it means to be a nominator. +- [Validators](./learn-validator.md) - An introduction about validators. +- [Collators](./learn-collator.md) - Learn about how collators maintain the network. +- [Parachains](./learn-parachains.md) - An introductory guide to parachains. +- [Bridges](./learn-bridges.md) - Learn about bridges and common bridge examples. +- [Cross-Consensus Messaging (XCM)](./learn-xcm.md) - Learn about the messaging format at the + forefront of interoperability. +- [SPREE (Shared Protected Runtime Execution Enclaves)](./learn-spree.md) - Learn about the + fundamentals of SPREE. + +## Polkadot Comparisons + +Learn how Polkadot compares to other similar technologies. + +- [Kusama](./learn-comparisons-kusama.md) - How the canary network, Kusama, differs to Polkadot. +- [Ethereum](./learn-comparison-ethereum-2.md) - A high-level comparison between Polkadot and + Ethereum. +- [Cosmos](./learn-comparisons-cosmos.md) - Learn about the differences between Polkadot and Cosmos. +- [Avalanche](./learn-comparisons-avalanche.md) - A high-level comparison between Polkadot and + Avalanche. +- [Other comparisons](./learn-comparisons.md) - Learn how Polkadot compares to Ethereum, Cosmos, and + other chains. +- [Layer Two and Rollups](./learn-comparison-rollups.md) - Comparisons between various rollup and + layer two protocols and how they relate to Polkadot. + +## Future Implementations + +Learn about upcoming innovations for the Polkadot network that are not yet implemented. + +[Parathreads](./learn-parathreads.md) - An introductory guide to parathreads - the mechanism for +pay-as-you-go blockspace. diff --git a/polkadot-wiki/docusaurus.config.js b/polkadot-wiki/docusaurus.config.js index 024197beeb40..9fe0f2b1c6f4 100644 --- a/polkadot-wiki/docusaurus.config.js +++ b/polkadot-wiki/docusaurus.config.js @@ -210,7 +210,7 @@ module.exports = { position: "right", }, { - to: "docs/learn-DOT", + to: "docs/learn-index", label: "Learn", position: "right", }, diff --git a/polkadot-wiki/pages/en/index.js b/polkadot-wiki/pages/en/index.js index 0fd4dd38f56b..55859c229918 100644 --- a/polkadot-wiki/pages/en/index.js +++ b/polkadot-wiki/pages/en/index.js @@ -48,7 +48,7 @@ class HomeNav extends React.Component { aosDelay="0" /> - +