Skip to content

Commit f112947

Browse files
committed
Fix llms.txt
1 parent 4872997 commit f112947

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

llms.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11353,7 +11353,7 @@ description: Run parachain nodes easily with the polkadot-omni-node, a white-lab
1135311353

1135411354
## Introduction
1135511355

11356-
The [`polkadot-omni-node`](https://crates.io/crates/polkadot-omni-node/{{dependencies.crates.polkadot_omni_node.version}}){target=\_blank} is a versatile, pre-built binary designed to simplify running parachains in the Polkadot ecosystem. Unlike traditional node binaries that are tightly coupled to specific runtime code, the `polkadot-omni-node` operates using an external [chain specification](/polkadot-protocol/glossary#chain-specification){target=\_blank} file, allowing it to adapt dynamically to different parachains.
11356+
The [`polkadot-omni-node`](https://crates.io/crates/polkadot-omni-node/{{dependencies.crates.polkadot_omni_node.version}}){target=\_blank} crate is a versatile, pre-built binary designed to simplify running parachains in the Polkadot ecosystem. Unlike traditional node binaries that are tightly coupled to specific runtime code, the `polkadot-omni-node` operates using an external [chain specification](/polkadot-protocol/glossary#chain-specification){target=\_blank} file, allowing it to adapt dynamically to different parachains.
1135711357

1135811358
This approach enables it to act as a white-labeled node binary, capable of running most parachains that do not require custom node-level logic or extensions. Developers can leverage this flexibility to test, deploy, or operate parachain nodes without maintaining a dedicated codebase for each network.
1135911359

@@ -11371,9 +11371,9 @@ Ensure Rust's `cargo` command is available in your terminal by running:
1137111371
cargo --version
1137211372
```
1137311373

11374-
## Install the Polkadot Omni Node
11374+
## Install Polkadot Omni Node
1137511375

11376-
To install the `polkadot-omni-node` globally using `cargo`, run:
11376+
To install `polkadot-omni-node` globally using `cargo`, run:
1137711377

1137811378
```bash
1137911379
cargo install --locked polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
@@ -11391,23 +11391,23 @@ You should see the installed version number printed to the terminal, confirming
1139111391

1139211392
## Obtain Chain Specifications
1139311393

11394-
The `polkadot-omni-node` uses a chain specification file to configure and launch a parachain node. This file defines the parachain's genesis state and network settings.
11394+
The `polkadot-omni-node` binary uses a chain specification file to configure and launch a parachain node. This file defines the parachain's genesis state and network settings.
1139511395

11396-
The most common source for official chain specifications is the [paritytech/chainspecs](https://github.com/paritytech/chainspecs){target=\_blank} repository. These specifications are also browsable in a user-friendly format via the [Chainspect Collection](https://paritytech.github.io/chainspecs/){target=\_blank} website.
11396+
The most common source for official chain specifications is the [`paritytech/chainspecs`](https://github.com/paritytech/chainspecs){target=\_blank} repository. These specifications are also browsable in a user-friendly format via the [Chainspec Collection](https://paritytech.github.io/chainspecs/){target=\_blank} website.
1139711397

1139811398
To obtain a chain specification:
1139911399

11400-
1. Visit the [Chainspect Collection](https://paritytech.github.io/chainspecs/){target=\_blank} website
11400+
1. Visit the [Chainspec Collection](https://paritytech.github.io/chainspecs/){target=\_blank} website
1140111401

1140211402
2. Find the parachain you want to run
1140311403

1140411404
3. Click the chain spec to open it
1140511405

11406-
4. Copy the JSON content and save it locally as a .json file, e.g., `chain_spec.json`
11406+
4. Copy the JSON content and save it locally as a `.json` file, e.g., `chain_spec.json`
1140711407

11408-
## Running a Parachain Full Node
11408+
## Run a Parachain Full Node
1140911409

11410-
Once you've installed the `polkadot-omni-node` and saved the appropriate chain specification file, you can start a full node for your chosen parachain.
11410+
Once you've installed `polkadot-omni-node` and saved the appropriate chain specification file, you can start a full node for your chosen parachain.
1141111411

1141211412
To see all available flags and configuration options, run:
1141311413

@@ -11437,7 +11437,7 @@ Once started, the node will begin connecting to peers and syncing with the netwo
1143711437

1143811438
## Interact with the Node
1143911439

11440-
By default, the `polkadot-omni-node` exposes a WebSocket endpoint at `ws://localhost:9944`, which you can use to interact with the running node. You can connect using:
11440+
By default, `polkadot-omni-node` exposes a WebSocket endpoint at `ws://localhost:9944`, which you can use to interact with the running node. You can connect using:
1144111441

1144211442
- [Polkadot.js Apps](https://polkadot.js.org/apps/#/explorer){target=\_blank} — a web-based interface for exploring and interacting with Polkadot SDK-based chains
1144311443
- Custom scripts using compatible [libraries](/develop/toolkit/api-libraries/){target=\_blank}

0 commit comments

Comments
 (0)