Skip to content

Commit 1e59211

Browse files
committed
Apply suggestions
1 parent b626b59 commit 1e59211

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

.snippets/code/develop/toolkit/interoperability/asset-transfer-api/overview/localParachainTx.md renamed to .snippets/code/develop/toolkit/interoperability/asset-transfer-api/overview/localRollupTx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div id="termynal" data-termynal>
2-
<span data-ty="input"><span class="file-path"></span>ts-node localParachainTx.ts</span>
2+
<span data-ty="input"><span class="file-path"></span>ts-node localRollupTx.ts</span>
33
<br>
44
<span data-ty>Call data:</span>
55
<span data-ty>{</span>

.snippets/code/develop/toolkit/interoperability/asset-transfer-api/overview/paraToPara.md renamed to .snippets/code/develop/toolkit/interoperability/asset-transfer-api/overview/rollupToRollup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div id='termynal' data-termynal>
2-
<span data-ty='input'><span class='file-path'></span>ts-node paraToPara.ts</span>
2+
<span data-ty='input'><span class='file-path'></span>ts-node rollupToRollup.ts</span>
33

44
<br>
55
<span data-ty>Call data:</span>

.snippets/code/develop/toolkit/interoperability/asset-transfer-api/reference/tx-result.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ A promise containing the result of constructing the transaction.
5252

5353
`SystemToRelay`
5454

55-
System paracahin to system relay chain.
55+
System rollup to relay chain.
5656

5757
---
5858

develop/toolkit/interoperability/asset-transfer-api/overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,21 +92,21 @@ After running the script, you'll see the following output in the terminal, which
9292
The following example demonstrates a local GLMR transfer within Moonbeam, using the `balances` pallet. It transfers 1 GLMR token from one account to another account, where both the sender and recipient accounts are located on the same rollup.
9393

9494
```ts
95-
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/localParachainTx.ts'
95+
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/localRollupTx.ts'
9696
```
9797

9898
Upon executing this script, the terminal will display the following output, illustrating the encoded extrinsic for the cross-chain message and its corresponding decoded format:
9999

100-
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/localParachainTx.md'
100+
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/localRollupTx.md'
101101

102102
### Rollup to Rollup Transfer
103103

104104
This example demonstrates creating a cross-chain asset transfer between two rollups. It shows how to send vMOVR and vBNC from a Moonriver account to a Bifrost Kusama account using the safe XCM version. It connects to Moonriver, initializes the API, and uses the `createTransferTransaction` method to prepare a transaction.
105105

106106
```ts
107-
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/paraToPara.ts'
107+
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/rollupToRollup.ts'
108108
```
109109

110110
After running this script, you'll see the following output in your terminal. This output presents the encoded extrinsic for the cross-chain message, along with its decoded format, providing a clear view of the transaction details.
111111
112-
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/paraToPara.md'
112+
--8<-- 'code/develop/toolkit/interoperability/asset-transfer-api/overview/rollupToRollup.md'

llms.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ Doc-Page: https://docs.polkadot.com/polkadot-protocol/smart-contract-basics/polk
134134
Doc-Page: https://docs.polkadot.com/tutorials/
135135
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/
136136
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/
137-
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/para-to-para/
138-
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/para-to-system/
137+
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/rollup-to-rollup/
138+
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/rollup-to-system/
139139
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/xcm-transfers/from-relaychain-to-rollup/
140140
Doc-Page: https://docs.polkadot.com/tutorials/interoperability/xcm-transfers/
141141
Doc-Page: https://docs.polkadot.com/tutorials/onchain-governance/fast-track-gov-proposal/
@@ -10830,7 +10830,7 @@ main()
1083010830
Upon executing this script, the terminal will display the following output, illustrating the encoded extrinsic for the cross-chain message and its corresponding decoded format:
1083110831

1083210832
<div id="termynal" data-termynal>
10833-
<span data-ty="input"><span class="file-path"></span>ts-node localParachainTx.ts</span>
10833+
<span data-ty="input"><span class="file-path"></span>ts-node localRollupTx.ts</span>
1083410834
<br>
1083510835
<span data-ty>Call data:</span>
1083610836
<span data-ty>{</span>
@@ -10900,7 +10900,7 @@ main()
1090010900
After running this script, you'll see the following output in your terminal. This output presents the encoded extrinsic for the cross-chain message, along with its decoded format, providing a clear view of the transaction details.
1090110901

1090210902
<div id='termynal' data-termynal>
10903-
<span data-ty='input'><span class='file-path'></span>ts-node paraToPara.ts</span>
10903+
<span data-ty='input'><span class='file-path'></span>ts-node rollupToRollup.ts</span>
1090410904

1090510905
<br>
1090610906
<span data-ty>Call data:</span>
@@ -11238,7 +11238,7 @@ public async createTransferTransaction<T extends Format>(
1123811238

1123911239
`SystemToRelay`
1124011240

11241-
System paracahin to system relay chain.
11241+
System rollup to relay chain.
1124211242

1124311243
---
1124411244

@@ -11579,7 +11579,7 @@ public async claimAssets<T extends Format>(
1157911579

1158011580
`SystemToRelay`
1158111581

11582-
System paracahin to system relay chain.
11582+
System rollup to relay chain.
1158311583

1158411584
---
1158511585

@@ -21508,7 +21508,7 @@ To enable communication between rollups, explicit HRMP channels must be establis
2150821508
</div>
2150921509
--- END CONTENT ---
2151021510

21511-
Doc-Content: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/para-to-para/
21511+
Doc-Content: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/rollup-to-rollup/
2151221512
--- BEGIN CONTENT ---
2151321513
---
2151421514
title: Opening HRMP Channels Between Rollups
@@ -21693,7 +21693,7 @@ By following these steps, you will have successfully accepted the HRMP channel r
2169321693
Remember that for full bidirectional communication, you'll need to repeat this process in the opposite direction, with rollup 2600 initiating a channel request to rollup 2500.
2169421694
--- END CONTENT ---
2169521695

21696-
Doc-Content: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/para-to-system/
21696+
Doc-Content: https://docs.polkadot.com/tutorials/interoperability/xcm-channels/rollup-to-system/
2169721697
--- BEGIN CONTENT ---
2169821698
---
2169921699
title: Opening HRMP Channels with System Rollups
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title: XCM Channels
22
nav:
33
- index.md
4-
- para-to-para.md
5-
- para-to-system.md
4+
- rollup-to-rollup.md
5+
- rollup-to-system.md

0 commit comments

Comments
 (0)