From b38ea008a695a8b947d8c5ce12aaf76156a7120d Mon Sep 17 00:00:00 2001 From: augustocollado <56117494+augustocollado@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:03:29 -0300 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Erin Shaben --- .../ethereum-api/precompiles/cross-chain-transfers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builders/toolkit/ethereum-api/precompiles/cross-chain-transfers.md b/builders/toolkit/ethereum-api/precompiles/cross-chain-transfers.md index 1ee2601f..94516792 100644 --- a/builders/toolkit/ethereum-api/precompiles/cross-chain-transfers.md +++ b/builders/toolkit/ethereum-api/precompiles/cross-chain-transfers.md @@ -11,9 +11,9 @@ As presented in the [Native Cross-Chain Communication](/learn/framework/xcm/){ta The communication protocol enabling token transfers is built on [Substrate](/learn/framework/overview/#substrate-framework){target=\_blank} and runs on a lower level than the EVM, making it harder for EVM developers to access. -Nevertheless, EVM Appchains have an XCM precompile that fills the gap between execution layers, exposing a smart contract interface that abstracts away the underlying complexities, making the execution of cross-chain token transfers as easy as any other smart contract call. +Nevertheless, EVM appchains have an XCM precompile that fills the gap between execution layers, exposing a smart contract interface that abstracts away the underlying complexities, making the execution of cross-chain token transfers as easy as any other smart contract call. -This guide will show you how to interact with the [XCM interface](https://github.com/moondance-labs/tanssi/blob/master/test/contracts/solidity/XcmInterface.sol){target=\_blank} precompile to execute cross-chain token transfers through the Ethereum API. +This guide will show you how to interact with the [XCM Interface](https://github.com/moondance-labs/tanssi/blob/master/test/contracts/solidity/XcmInterface.sol){target=\_blank} precompile to execute cross-chain token transfers through the Ethereum API. The XCM precompile is located at the following address: @@ -115,7 +115,7 @@ To follow along with this tutorial, you will need to have your wallet configured ### Remix Set Up {: #remix-set-up } -You can interact with the XCM interface precompile using [Remix](https://remix.ethereum.org){target=\_blank}. To add the precompile to Remix, you will need to: +You can interact with the XCM Interface precompile using [Remix](https://remix.ethereum.org){target=\_blank}. To add the precompile to Remix, you will need to: 1. Get a copy of [`XcmInterface.sol`](https://github.com/moondance-labs/tanssi/blob/master/test/contracts/solidity/XcmInterface.sol){target=\_blank} 2. Paste the file contents into a Remix file named `XcmInterface.sol`