Expand description
In-depth guides about the most common components of the Polkadot SDK. They are slightly more
high level and broad than reference_docs
.
§Polkadot SDK Docs Guides
This crate contains a collection of guides that are foundational to the developers of Polkadot SDK. They are common user-journeys that are traversed in the Polkadot ecosystem.
The main user-journey covered by these guides is:
your_first_pallet
, where you learn what a FRAME pallet is, and write your first application logic.your_first_runtime
, where you learn how to compile your pallets into a WASM runtime.your_first_node
, where you learn how to run the said runtime in a node.
By this step, you have already launched a full Polkadot-SDK-based blockchain!
Once done, feel free to step up into one of our templates: crate::polkadot_sdk::templates
.
Other guides are related to other miscellaneous topics and are listed as modules below.
Modules§
- async_
backing_ guide - How to enable Async Backing on parachain projects that started in 2023 or before.
- enable_
elastic_ scaling_ mvp - How to enable elastic scaling MVP on a parachain.
- enable_
metadata_ hash - How to enable metadata hash verification in the runtime.
- enable_
pov_ reclaim - How to enhance a given runtime and node to be cumulus-enabled, run it as a parachain and connect it to a relay-chain. How to enable storage weight reclaiming in a parachain node and runtime.
- handling_
parachain_ forks - How to parameterize parachain forking in relation to relay chain forking.
- your_
first_ node - Running the given runtime with a node. No specific consensus mechanism is used at this stage.
- your_
first_ pallet - Write your first simple pallet, learning the most most basic features of FRAME along the way.
- your_
first_ runtime - Write your first real runtime, compiling it to WASM.