Skip to content

Commit 7ae87cf

Browse files
committed
Apply suggestions
1 parent 6939a15 commit 7ae87cf

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

develop/toolkit/parachains/polkadot-omni-node.md

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

88
## Introduction
99

10-
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.
10+
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.
1111

1212
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.
1313

@@ -17,7 +17,7 @@ This guide provides step-by-step instructions for installing the `polkadot-omni-
1717

1818
Before getting started, ensure you have the following prerequisites:
1919

20-
- **[Rust](https://www.rust-lang.org/tools/install){target=_blank}** - required to build and install the polkadot-omni-node binary
20+
- **[Rust](https://www.rust-lang.org/tools/install){target=\_blank}** - required to build and install the polkadot-omni-node binary
2121

2222
Ensure Rust's `cargo` command is available in your terminal by running:
2323

@@ -87,4 +87,13 @@ polkadot-omni-node --chain ./INSERT_PARACHAIN_CHAIN_SPEC.json --sync warp
8787

8888
- The `--sync warp` flag enables warp sync, allowing the node to quickly catch up to the latest finalized state. Historical blocks are fetched in the background as the node continues operating
8989

90-
Once started, the node will begin connecting to peers and syncing with the network. You’ll see logs in your terminal reflecting its progress.
90+
Once started, the node will begin connecting to peers and syncing with the network. You’ll see logs in your terminal reflecting its progress.
91+
92+
## Interact with the Node
93+
94+
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:
95+
96+
- [Polkadot.js Apps](https://polkadot.js.org/apps/#/explorer){target=\_blank} — a web-based interface for exploring and interacting with Polkadot SDK-based chains
97+
- Custom scripts using compatible [libraries](/develop/toolkit/api-libraries/){target=\_blank}
98+
99+
Once connected, you can review blocks, call extrinsics, inspect storage, and interact with the runtime.

llms.txt

Lines changed: 11 additions & 2 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} 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

@@ -11363,7 +11363,7 @@ This guide provides step-by-step instructions for installing the `polkadot-omni-
1136311363

1136411364
Before getting started, ensure you have the following prerequisites:
1136511365

11366-
- **[Rust](https://www.rust-lang.org/tools/install){target=_blank}** - required to build and install the polkadot-omni-node binary
11366+
- **[Rust](https://www.rust-lang.org/tools/install){target=\_blank}** - required to build and install the polkadot-omni-node binary
1136711367

1136811368
Ensure Rust's `cargo` command is available in your terminal by running:
1136911369

@@ -11434,6 +11434,15 @@ polkadot-omni-node --chain ./INSERT_PARACHAIN_CHAIN_SPEC.json --sync warp
1143411434
- The `--sync warp` flag enables warp sync, allowing the node to quickly catch up to the latest finalized state. Historical blocks are fetched in the background as the node continues operating
1143511435

1143611436
Once started, the node will begin connecting to peers and syncing with the network. You’ll see logs in your terminal reflecting its progress.
11437+
11438+
## Interact with the Node
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:
11441+
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+
- Custom scripts using compatible [libraries](/develop/toolkit/api-libraries/){target=\_blank}
11444+
11445+
Once connected, you can review blocks, call extrinsics, inspect storage, and interact with the runtime.
1143711446
--- END CONTENT ---
1143811447

1143911448
Doc-Content: https://docs.polkadot.com/develop/toolkit/parachains/quickstart/

0 commit comments

Comments
 (0)