This repository was archived by the owner on Aug 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 211
Update index.md #768
Merged
Merged
Update index.md #768
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
--- | ||
title: Introduction | ||
Introduction | ||
--- | ||
|
||
One of the defining features of the Substrate blockchain development framework is its support for | ||
One of the defining features of the Substrate blockchain development framework is the support for | ||
**forkless runtime upgrades**. Forkless upgrades are a means of enhancing a blockchain runtime in a | ||
way that is supported and protected by the capabilities of the blockchain itself. A blockchain's | ||
way that supports and protects the capabilities of the blockchain itself. A blockchain's | ||
Comment on lines
-5
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. different from the other tutorial |
||
[runtime](../../knowledgebase/runtime) defines the [state](../../knowledgebase/runtime/storage) the | ||
blockchain can hold and also defines the logic for effecting changes to that state. Substrate makes | ||
it possible to deploy enhanced runtime capabilities (including _breaking_ changes) without a | ||
[hard fork](../../knowledgebase/getting-started/glossary#fork). These new capabilities expect the | ||
blockchain's state and storage schema to be configured in the correct way for operation, though. | ||
If the expected schema and state are not present a [storage migration](../../knowledgebase/runtime/upgrades.md#storage-migrations) is necessary. | ||
blockchain state and storage schema to be configured in the correct way for operation. | ||
If the expected schema and state are not present, a [storage migration](../../knowledgebase/runtime/upgrades.md#storage-migrations) is necessary. | ||
|
||
This tutorial will use the Substrate Developer Hub | ||
This tutorial will use the Substrate | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. different from the other tutorial |
||
[Node Template](https://github.com/substrate-developer-hub/substrate-node-template) to explore how to write and perform storage migrations of [FRAME](../../knowledgebase/runtime/frame)-based runtimes. | ||
> TODO: outline of steps | ||
|
||
|
@@ -33,8 +33,8 @@ will guide you through the process of setting up your development environment. T | |
system for runtime development and guide you through the process of extending the capabilities of a | ||
FRAME runtime by adding a pallet. The [Perform a Forkless Upgrade](../../tutorials/upgrade-a-chain/) tutorial will introduce runtime upgrades. | ||
|
||
If you're an experienced developer and wish to skip those | ||
tutorials, you can clone the | ||
If you're a more experienced developer and wish to skip those | ||
tutorials, you can clone the | ||
Comment on lines
-36
to
+37
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. different from the other tutorial |
||
[Node Template repository](https://github.com/substrate-developer-hub/substrate-node-template) and | ||
refer to the | ||
[documentation for local development](https://github.com/substrate-developer-hub/substrate-node-template#local-development). |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
different from the other tutorial