Skip to content

Commit 15d2294

Browse files
Apply suggestions from code review
Co-authored-by: Bruno Galvao <[email protected]>
1 parent 9e6dfff commit 15d2294

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

develop/interoperability/.nav.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ nav:
33
- index.md
44
- 'Introduction to XCM': intro-to-xcm.md
55
- 'Channels': xcm-channels.md
6-
- 'Runtime Configuration': xcm-config.md
6+
- 'XCM Runtime Configuration': xcm-config.md
77
- 'Send Messages': send-messages.md
8-
- 'Runtime APIs': xcm-runtime-apis.md
8+
- 'XCM Runtime APIs': xcm-runtime-apis.md
99
- 'Test and Debug': test-and-debug.md
1010
- guides
1111
- versions

develop/interoperability/guides/from-apps/claiming-trapped-assets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Claiming Trapped Assets
3-
description: How to claim digital assets that become trapped on-chain due to an XCM execution failure. This guide details the process and required steps.
3+
description: How to claim assets that become trapped on-chain due to an XCM execution failure. This guide details the process and required steps.
44
---
55

66
# Claiming Trapped Assets
77

88
## Introduction
99

10-
When XCM execution fails or succeeds, leftover assets become "trapped" on the destination chain. These assets are held by the system but not accessible through normal means. XCM provides mechanisms to claim these trapped assets and recover them.
10+
When XCM execution fails or succeeds, leftover assets can become "trapped" on the destination chain. These assets are held by the system but not accessible through normal means. XCM provides mechanisms to claim these trapped assets and recover them.
1111
This guide details the process and required steps to claim trapped assets.
1212

1313
## Trapped Assets Causes

develop/interoperability/guides/from-apps/transfers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ XcmV5Instruction.InitiateTransfer({
2121

2222
## Transfer Types
2323

24-
The `remote_fees` parameter only takes one asset, `assets` takes a list of many. Both need to specify which transfer type they're using. The developer needs to specify whether or not those assets are transferred via a [`Teleport`](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.AssetTransferFilter.html#variant.Teleport){target=\_blank}, a [`ReserveWithdraw`](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.AssetTransferFilter.html#variant.ReserveWithdraw){target=\_blank} or a [`ReserveDeposit`](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.AssetTransferFilter.html#variant.ReserveDeposit){target=\_blank}. These correspond to the types of cross-chain transfers.
24+
The `remote_fees` parameter only takes one asset. The `assets` parameter takes a list of many. Both need to specify which transfer type they're using. The developer needs to specify whether or not those assets are transferred via a [`Teleport`](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.AssetTransferFilter.html#variant.Teleport){target=\_blank}, a [`ReserveWithdraw`](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.AssetTransferFilter.html#variant.ReserveWithdraw){target=\_blank} or a [`ReserveDeposit`](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.AssetTransferFilter.html#variant.ReserveDeposit){target=\_blank}. These correspond to the types of cross-chain transfers.
2525

2626
For example, to transfer 50 DOT via a teleport, the transfer type must be specified as a teleport. This also requires using an [Asset Filter](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.AssetFilter.html){target=\_blank}.
2727

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
title: Versions
1+
title: XCM Versions
22
nav:
33
- index.md
44
- 'Version 5': v5

develop/interoperability/versions/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Explore the different versions of XCM, understand version-specific
44
template: index-page.html
55
---
66

7-
# Versions
7+
# XCM Versions
88

99
XCM is a versioned language that evolves to meet the growing needs of cross-chain communication in the Polkadot ecosystem. Understanding XCM versioning is essential for developers building interoperable applications to keep up with the latest improvements.
1010

0 commit comments

Comments
 (0)