diff --git a/precompiles/xcm/XCM.sol b/precompiles/xcm/XCM.sol index 19af7ae9b7..6e7f676441 100644 --- a/precompiles/xcm/XCM.sol +++ b/precompiles/xcm/XCM.sol @@ -5,7 +5,6 @@ pragma solidity ^0.8.0; */ interface XCM { /** - * @dev Withdraw assets using PalletXCM call. * @param asset_id - list of XC20 asset addresses * @param asset_amount - list of transfer amounts (must match with asset addresses above) * @param recipient_account_id - SS58 public key of the destination account @@ -28,7 +27,6 @@ interface XCM { ) external returns (bool); /** - * @dev Withdraw assets using PalletXCM call. * @param asset_id - list of XC20 asset addresses * @param asset_amount - list of transfer amounts (must match with asset addresses above) * @param recipient_account_id - ETH address of the destination account @@ -51,7 +49,6 @@ interface XCM { ) external returns (bool); /** - * @dev Execute a transaction on a remote chain. * @param parachain_id - destination parachain Id (ignored if is_relay is true) * @param is_relay - if true, destination is relay_chain, if false it is parachain (see previous argument) * @param payment_asset_id - ETH address of the local asset derivate used to pay for execution in the destination chain @@ -70,7 +67,6 @@ interface XCM { ) external returns (bool); /** - * @dev Reserve transfer assets using PalletXCM call. * @param asset_id - list of XC20 asset addresses * @param asset_amount - list of transfer amounts (must match with asset addresses above) * @param recipient_account_id - SS58 public key of the destination account @@ -93,7 +89,6 @@ interface XCM { ) external returns (bool); /** - * @dev Reserve transfer using PalletXCM call. * @param asset_id - list of XC20 asset addresses * @param asset_amount - list of transfer amounts (must match with asset addresses above) * @param recipient_account_id - ETH address of the destination account diff --git a/precompiles/xcm/XCM_v2.sol b/precompiles/xcm/XCM_v2.sol index a87ebfa554..d29d367d8f 100644 --- a/precompiles/xcm/XCM_v2.sol +++ b/precompiles/xcm/XCM_v2.sol @@ -16,7 +16,6 @@ interface XCM { } /** - * @dev Withdraw assets using PalletXCM call. * @param asset_id - list of XC20 asset addresses * @param asset_amount - list of transfer amounts (must match with asset addresses above) * @param beneficiary - Multilocation of beneficiary in respect to destination parachain @@ -37,7 +36,6 @@ interface XCM { ) external returns (bool); /** - * @dev Execute a transaction on a remote chain. * @param destination - Multilocation of destination chain * @param payment_asset_id - Address of the local asset derivate used to pay for execution in the destination chain * @param payment_amount - amount of payment asset to use for execution payment - should cover cost of XCM instructions + Transact call weight. @@ -54,7 +52,6 @@ interface XCM { ) external returns (bool); /** - * @dev Reserve transfer assets using PalletXCM call. * @param asset_id - list of XC20 asset addresses * @param asset_amount - list of transfer amounts (must match with asset addresses above) * @param beneficiary - Multilocation of beneficiary in respect to destination parachain @@ -74,7 +71,6 @@ interface XCM { ) external returns (bool); /** - * @dev send xcm using PalletXCM call. * @param destination - Multilocation of destination chain where to send this call * @param xcm_call - encoded xcm call you want to send to destination **/