Skip to content

Commit 701427a

Browse files
albertov19ggwpez0xLucca
authored
Omninode Install Fix (#427)
* Fix cargo install omni node (#410) * Fix cargo install omni node * Update tutorials/polkadot-sdk/parachains/zero-to-hero/set-up-a-template.md Co-authored-by: 0xLucca <[email protected]> * Update tutorials/polkadot-sdk/parachains/zero-to-hero/set-up-a-template.md Co-authored-by: 0xLucca <[email protected]> --------- Co-authored-by: 0xLucca <[email protected]> * llms --------- Co-authored-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: 0xLucca <[email protected]>
1 parent 19053c9 commit 701427a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

llms.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@ This API can be used independently for dry-running, double-checking, or testing.
11261126
This API allows a dry-run of any extrinsic and obtaining the outcome if it fails or succeeds, as well as the local xcm and remote xcm messages sent to other chains.
11271127

11281128
```rust
1129-
fn dry_run_call(origin: OriginCaller, call: Call) -> Result<CallDryRunEffects<Event>, Error>;
1129+
/// Dry run call V2.
11301130
```
11311131

11321132
??? interface "Input parameters"
@@ -1853,7 +1853,7 @@ client.destroy();
18531853
This API allows the direct dry-run of an xcm message instead of an extrinsic one, checks if it will execute successfully, and determines what other xcm messages will be forwarded to other chains.
18541854

18551855
```rust
1856-
fn dry_run_xcm(origin_location: VersionedLocation, xcm: VersionedXcm<Call>) -> Result<XcmDryRunEffects<Event>, Error>;
1856+
/// Dry run call V1.
18571857
```
18581858

18591859
??? interface "Input parameters"
@@ -26265,7 +26265,7 @@ This tutorial requires two essential tools:
2626526265
Install it by executing the following command:
2626626266

2626726267
```bash
26268-
cargo install --git https://github.com/paritytech/polkadot-sdk --tag {{dependencies.polkadot_sdk.stable_version}} --force staging-chain-spec-builder
26268+
cargo install staging-chain-spec-builder@9.0.0
2626926269
```
2627026270

2627126271
This installs the `chain-spec-builder` binary. Refer to the [Generate Chain Specs](/develop/parachains/deployment/generate-chain-specs/){target=\_blank} documentation for detailed usage.
@@ -26276,7 +26276,7 @@ This tutorial requires two essential tools:
2627626276
To install it, run the following command:
2627726277

2627826278
```bash
26279-
cargo install --git https://github.com/paritytech/polkadot-sdk --tag {{dependencies.polkadot_sdk.stable_version}} --force polkadot-omni-node
26279+
cargo install polkadot-omni-node@0.4.0
2628026280
```
2628126281

2628226282
This installs the `polkadot-omni-node` binary.

tutorials/polkadot-sdk/parachains/zero-to-hero/set-up-a-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This tutorial requires two essential tools:
3838
Install it by executing the following command:
3939

4040
```bash
41-
cargo install --git https://github.com/paritytech/polkadot-sdk --tag {{dependencies.polkadot_sdk.stable_version}} --force staging-chain-spec-builder
41+
cargo install staging-chain-spec-builder@9.0.0
4242
```
4343

4444
This installs the `chain-spec-builder` binary. Refer to the [Generate Chain Specs](/develop/parachains/deployment/generate-chain-specs/){target=\_blank} documentation for detailed usage.
@@ -49,7 +49,7 @@ This tutorial requires two essential tools:
4949
To install it, run the following command:
5050

5151
```bash
52-
cargo install --git https://github.com/paritytech/polkadot-sdk --tag {{dependencies.polkadot_sdk.stable_version}} --force polkadot-omni-node
52+
cargo install polkadot-omni-node@0.4.0
5353
```
5454

5555
This installs the `polkadot-omni-node` binary.

0 commit comments

Comments
 (0)