You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llms.txt
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -11353,7 +11353,7 @@ description: Run parachain nodes easily with the polkadot-omni-node, a white-lab
11353
11353
11354
11354
## Introduction
11355
11355
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.
11357
11357
11358
11358
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.
11359
11359
@@ -11371,9 +11371,9 @@ Ensure Rust's `cargo` command is available in your terminal by running:
11371
11371
cargo --version
11372
11372
```
11373
11373
11374
-
## Install the Polkadot Omni Node
11374
+
## Install Polkadot Omni Node
11375
11375
11376
-
To install the `polkadot-omni-node` globally using `cargo`, run:
11376
+
To install `polkadot-omni-node` globally using `cargo`, run:
@@ -11391,23 +11391,23 @@ You should see the installed version number printed to the terminal, confirming
11391
11391
11392
11392
## Obtain Chain Specifications
11393
11393
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.
11395
11395
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.
11397
11397
11398
11398
To obtain a chain specification:
11399
11399
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
11401
11401
11402
11402
2. Find the parachain you want to run
11403
11403
11404
11404
3. Click the chain spec to open it
11405
11405
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`
11407
11407
11408
-
## Running a Parachain Full Node
11408
+
## Run a Parachain Full Node
11409
11409
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.
11411
11411
11412
11412
To see all available flags and configuration options, run:
11413
11413
@@ -11437,7 +11437,7 @@ Once started, the node will begin connecting to peers and syncing with the netwo
11437
11437
11438
11438
## Interact with the Node
11439
11439
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:
11441
11441
11442
11442
- [Polkadot.js Apps](https://polkadot.js.org/apps/#/explorer){target=\_blank} — a web-based interface for exploring and interacting with Polkadot SDK-based chains
11443
11443
- Custom scripts using compatible [libraries](/develop/toolkit/api-libraries/){target=\_blank}
0 commit comments