Skip to content

Commit a112714

Browse files
committed
fix: wording
1 parent 227ae48 commit a112714

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

llms.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33352,21 +33352,21 @@ tutorial_badge: Intermediate
3335233352

3335333353
## Introduction
3335433354

33355-
Upgrading the runtime of your Substrate-based blockchain is a core feature that enables you to add new functionality, fix bugs, or optimize performance without requiring a hard fork. Runtime upgrades are performed by submitting a special extrinsic that replaces the existing Wasm runtime code on-chain. This process is trustless, transparent, and can be executed via governance or sudo, depending on your chain's configuration.
33355+
Upgrading the runtime of your Polkadot SDK-based blockchain is a core feature that enables you to add new functionality, fix bugs, or optimize performance without requiring a hard fork. Runtime upgrades are performed by submitting a special extrinsic that replaces the existing Wasm runtime code on-chain. This process is trustless, transparent, and can be executed via governance or sudo, depending on your chain's configuration.
3335633356

33357-
This tutorial will guide you through the process of preparing, submitting, and verifying a runtime upgrade for your parachain or standalone Substrate chain.
33357+
This tutorial will guide you through the process of preparing, submitting, and verifying a runtime upgrade for your parachain or standalone Polkadot-SDK based chain.
3335833358

3335933359
## Prerequisites
3336033360

3336133361
Before proceeding, ensure you have:
3336233362

33363-
- A working Substrate-based chain (local or testnet)
33363+
- A working Polkadot SDK-based chain
3336433364
- The latest source code for your runtime, with desired changes implemented and tested
3336533365
- [Rust toolchain](https://www.rust-lang.org/) and [wasm32-unknown-unknown target](https://substrate.dev/docs/en/knowledgebase/getting-started/#add-the-wasm-target) installed
3336633366
- Sufficient privileges to submit a runtime upgrade (sudo or governance access)
3336733367
- [Polkadot.js Apps](https://polkadot.js.org/apps/) or another compatible tool for submitting extrinsics
3336833368

33369-
## Step 1: Prepare Your Runtime Upgrade
33369+
## Prepare the Runtime Upgrade
3337033370

3337133371
1. **Implement and Test Changes**
3337233372
- Make your desired changes to the runtime code (e.g., add a pallet, update logic, fix bugs).

tutorials/polkadot-sdk/parachains/zero-to-hero/runtime-upgrade.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ tutorial_badge: Intermediate
88

99
## Introduction
1010

11-
Upgrading the runtime of your Substrate-based blockchain is a core feature that enables you to add new functionality, fix bugs, or optimize performance without requiring a hard fork. Runtime upgrades are performed by submitting a special extrinsic that replaces the existing Wasm runtime code on-chain. This process is trustless, transparent, and can be executed via governance or sudo, depending on your chain's configuration.
11+
Upgrading the runtime of your Polkadot SDK-based blockchain is a core feature that enables you to add new functionality, fix bugs, or optimize performance without requiring a hard fork. Runtime upgrades are performed by submitting a special extrinsic that replaces the existing Wasm runtime code on-chain. This process is trustless, transparent, and can be executed via governance or sudo, depending on your chain's configuration.
1212

13-
This tutorial will guide you through the process of preparing, submitting, and verifying a runtime upgrade for your parachain or standalone Substrate chain.
13+
This tutorial will guide you through the process of preparing, submitting, and verifying a runtime upgrade for your parachain or standalone Polkadot-SDK based chain.
1414

1515
## Prerequisites
1616

1717
Before proceeding, ensure you have:
1818

19-
- A working Substrate-based chain (local or testnet)
19+
- A working Polkadot SDK-based chain
2020
- The latest source code for your runtime, with desired changes implemented and tested
2121
- [Rust toolchain](https://www.rust-lang.org/) and [wasm32-unknown-unknown target](https://substrate.dev/docs/en/knowledgebase/getting-started/#add-the-wasm-target) installed
2222
- Sufficient privileges to submit a runtime upgrade (sudo or governance access)
2323
- [Polkadot.js Apps](https://polkadot.js.org/apps/) or another compatible tool for submitting extrinsics
2424

25-
## Step 1: Prepare Your Runtime Upgrade
25+
## Prepare the Runtime Upgrade
2626

2727
1. **Implement and Test Changes**
2828
- Make your desired changes to the runtime code (e.g., add a pallet, update logic, fix bugs).

0 commit comments

Comments
 (0)