diff --git a/Cargo.lock b/Cargo.lock index 61bc895e706ed3643c7bc6a9f5f73e25b2830c32..0d9d13af79a5f9c803e5946e07984fc71028794c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -809,6 +809,7 @@ dependencies = [ "parachains-common", "rococo-emulated-chain", "sp-core", + "staging-xcm", "testnet-parachains-constants", ] @@ -927,6 +928,7 @@ dependencies = [ "frame-support", "parachains-common", "sp-core", + "staging-xcm", "testnet-parachains-constants", "westend-emulated-chain", ] diff --git a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/Cargo.toml b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/Cargo.toml index 98762beb0cb23132c3880515287328bb09bde032..8100e681348836fb28c9236b9ba20d27f117d71b 100644 --- a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/Cargo.toml +++ b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/Cargo.toml @@ -23,3 +23,6 @@ emulated-integration-tests-common = { path = "../../../../common", default-featu asset-hub-rococo-runtime = { path = "../../../../../../runtimes/assets/asset-hub-rococo" } rococo-emulated-chain = { path = "../../../relays/rococo" } testnet-parachains-constants = { path = "../../../../../../runtimes/constants", features = ["rococo"] } + +# Polkadot +xcm = { package = "staging-xcm", path = "../../../../../../../../polkadot/xcm", default-features = false } diff --git a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/src/lib.rs b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/src/lib.rs index f1e972e869dc94465aa28356a7eaa1c4cd4503ef..202d02b250bb2e90261a01c13c6aab59c674b511 100644 --- a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/src/lib.rs +++ b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-rococo/src/lib.rs @@ -22,7 +22,8 @@ use frame_support::traits::OnInitialize; use emulated_integration_tests_common::{ impl_accounts_helpers_for_parachain, impl_assert_events_helpers_for_parachain, impl_assets_helpers_for_parachain, impl_assets_helpers_for_system_parachain, - impl_xcm_helpers_for_parachain, impls::Parachain, xcm_emulator::decl_test_parachains, + impl_foreign_assets_helpers_for_parachain, impl_xcm_helpers_for_parachain, impls::Parachain, + xcm_emulator::decl_test_parachains, }; use rococo_emulated_chain::Rococo; @@ -56,4 +57,5 @@ impl_accounts_helpers_for_parachain!(AssetHubRococo); impl_assert_events_helpers_for_parachain!(AssetHubRococo); impl_assets_helpers_for_system_parachain!(AssetHubRococo, Rococo); impl_assets_helpers_for_parachain!(AssetHubRococo); +impl_foreign_assets_helpers_for_parachain!(AssetHubRococo, xcm::v3::Location); impl_xcm_helpers_for_parachain!(AssetHubRococo); diff --git a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/Cargo.toml b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/Cargo.toml index a42a9abf618d403852561d5d4b20e7fb6ad576e7..e0abaa66c5cabba445b91c19436f9a4ce3642386 100644 --- a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/Cargo.toml +++ b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/Cargo.toml @@ -23,3 +23,6 @@ emulated-integration-tests-common = { path = "../../../../common", default-featu asset-hub-westend-runtime = { path = "../../../../../../runtimes/assets/asset-hub-westend" } westend-emulated-chain = { path = "../../../relays/westend" } testnet-parachains-constants = { path = "../../../../../../runtimes/constants", features = ["westend"] } + +# Polkadot +xcm = { package = "staging-xcm", path = "../../../../../../../../polkadot/xcm", default-features = false } diff --git a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/src/lib.rs b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/src/lib.rs index 7f05eefb4c208dab2192bc111347ffa4f2760fc0..6043a6aeda48f1e1ec010ac42e98a50feaae3a30 100644 --- a/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/src/lib.rs +++ b/cumulus/parachains/integration-tests/emulated/chains/parachains/assets/asset-hub-westend/src/lib.rs @@ -22,7 +22,8 @@ use frame_support::traits::OnInitialize; use emulated_integration_tests_common::{ impl_accounts_helpers_for_parachain, impl_assert_events_helpers_for_parachain, impl_assets_helpers_for_parachain, impl_assets_helpers_for_system_parachain, - impl_xcm_helpers_for_parachain, impls::Parachain, xcm_emulator::decl_test_parachains, + impl_foreign_assets_helpers_for_parachain, impl_xcm_helpers_for_parachain, impls::Parachain, + xcm_emulator::decl_test_parachains, }; use westend_emulated_chain::Westend; @@ -56,4 +57,5 @@ impl_accounts_helpers_for_parachain!(AssetHubWestend); impl_assert_events_helpers_for_parachain!(AssetHubWestend); impl_assets_helpers_for_system_parachain!(AssetHubWestend, Westend); impl_assets_helpers_for_parachain!(AssetHubWestend); +impl_foreign_assets_helpers_for_parachain!(AssetHubWestend, xcm::v3::Location); impl_xcm_helpers_for_parachain!(AssetHubWestend); diff --git a/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/genesis.rs b/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/genesis.rs index 6bcf0f004b690d1a786a60bb2c1664890087b818..450439f5ea3080b66c5c572dfdae972c23c52a4b 100644 --- a/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/genesis.rs +++ b/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/genesis.rs @@ -17,8 +17,6 @@ use frame_support::parameter_types; use sp_core::{sr25519, storage::Storage}; -// Polkadot -use xcm::v3::Location; // Cumulus use emulated_integration_tests_common::{ accounts, build_genesis_storage, collators, get_account_id_from_seed, SAFE_XCM_VERSION, @@ -79,19 +77,9 @@ pub fn genesis(para_id: u32) -> Storage { foreign_assets: penpal_runtime::ForeignAssetsConfig { assets: vec![ // Relay Native asset representation - ( - Location::try_from(RelayLocation::get()).unwrap(), - PenpalAssetOwner::get(), - true, - ED, - ), + (RelayLocation::get(), PenpalAssetOwner::get(), true, ED), // Sufficient AssetHub asset representation - ( - Location::try_from(LocalReservableFromAssetHub::get()).unwrap(), - PenpalAssetOwner::get(), - true, - ED, - ), + (LocalReservableFromAssetHub::get(), PenpalAssetOwner::get(), true, ED), ], ..Default::default() }, diff --git a/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/lib.rs b/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/lib.rs index b41ed88eb11725bb41030de0e25b172f8fd2dd4b..c268b014bfa34e1b8c0a450ae2e446bb6f636c9d 100644 --- a/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/lib.rs +++ b/cumulus/parachains/integration-tests/emulated/chains/parachains/testing/penpal/src/lib.rs @@ -26,7 +26,8 @@ use sp_core::Encode; // Cumulus use emulated_integration_tests_common::{ impl_accounts_helpers_for_parachain, impl_assert_events_helpers_for_parachain, - impl_assets_helpers_for_parachain, impl_xcm_helpers_for_parachain, + impl_assets_helpers_for_parachain, impl_foreign_assets_helpers_for_parachain, + impl_xcm_helpers_for_parachain, impls::{NetworkId, Parachain}, xcm_emulator::decl_test_parachains, }; @@ -87,6 +88,8 @@ impl_accounts_helpers_for_parachain!(PenpalB); impl_assert_events_helpers_for_parachain!(PenpalA); impl_assert_events_helpers_for_parachain!(PenpalB); impl_assets_helpers_for_parachain!(PenpalA); +impl_foreign_assets_helpers_for_parachain!(PenpalA, xcm::latest::Location); impl_assets_helpers_for_parachain!(PenpalB); +impl_foreign_assets_helpers_for_parachain!(PenpalB, xcm::latest::Location); impl_xcm_helpers_for_parachain!(PenpalA); impl_xcm_helpers_for_parachain!(PenpalB); diff --git a/cumulus/parachains/integration-tests/emulated/common/src/impls.rs b/cumulus/parachains/integration-tests/emulated/common/src/impls.rs index 618c3addc5d0c67c3954610425345d3ec8b2f36b..c8a2f097abe95bb0f6003957c7ef5cc90c4f09c3 100644 --- a/cumulus/parachains/integration-tests/emulated/common/src/impls.rs +++ b/cumulus/parachains/integration-tests/emulated/common/src/impls.rs @@ -38,9 +38,7 @@ pub use polkadot_runtime_parachains::{ inclusion::{AggregateMessageOrigin, UmpQueueId}, }; pub use xcm::{ - prelude::{Location, OriginKind, Outcome, VersionedXcm, XcmVersion}, - v3, - v4::Error as XcmError, + prelude::{Location, OriginKind, Outcome, VersionedXcm, XcmError, XcmVersion}, DoubleEncoded, }; @@ -696,12 +694,12 @@ macro_rules! impl_assets_helpers_for_system_parachain { #[macro_export] macro_rules! impl_assets_helpers_for_parachain { - ( $chain:ident) => { + ($chain:ident) => { $crate::impls::paste::paste! { impl<N: $crate::impls::Network> $chain<N> { - /// Create foreign assets using sudo `ForeignAssets::force_create()` - pub fn force_create_foreign_asset( - id: $crate::impls::v3::Location, + /// Create assets using sudo `Assets::force_create()` + pub fn force_create_asset( + id: u32, owner: $crate::impls::AccountId, is_sufficient: bool, min_balance: u128, @@ -711,20 +709,20 @@ macro_rules! impl_assets_helpers_for_parachain { let sudo_origin = <$chain<N> as $crate::impls::Chain>::RuntimeOrigin::root(); <Self as $crate::impls::TestExt>::execute_with(|| { $crate::impls::assert_ok!( - <Self as [<$chain ParaPallet>]>::ForeignAssets::force_create( + <Self as [<$chain ParaPallet>]>::Assets::force_create( sudo_origin, - id.clone(), + id.clone().into(), owner.clone().into(), is_sufficient, min_balance, ) ); - assert!(<Self as [<$chain ParaPallet>]>::ForeignAssets::asset_exists(id.clone())); + assert!(<Self as [<$chain ParaPallet>]>::Assets::asset_exists(id.clone())); type RuntimeEvent<N> = <$chain<N> as $crate::impls::Chain>::RuntimeEvent; $crate::impls::assert_expected_events!( Self, vec![ - RuntimeEvent::<N>::ForeignAssets( + RuntimeEvent::<N>::Assets( $crate::impls::pallet_assets::Event::ForceCreated { asset_id, .. @@ -736,19 +734,19 @@ macro_rules! impl_assets_helpers_for_parachain { for (beneficiary, amount) in prefund_accounts.into_iter() { let signed_origin = <$chain<N> as $crate::impls::Chain>::RuntimeOrigin::signed(owner.clone()); - Self::mint_foreign_asset(signed_origin, id.clone(), beneficiary, amount); + Self::mint_asset(signed_origin, id.clone(), beneficiary, amount); } } - /// Mint assets making use of the ForeignAssets pallet-assets instance - pub fn mint_foreign_asset( + /// Mint assets making use of the assets pallet + pub fn mint_asset( signed_origin: <Self as $crate::impls::Chain>::RuntimeOrigin, - id: $crate::impls::v3::Location, + id: u32, beneficiary: $crate::impls::AccountId, amount_to_mint: u128, ) { <Self as $crate::impls::TestExt>::execute_with(|| { - $crate::impls::assert_ok!(<Self as [<$chain ParaPallet>]>::ForeignAssets::mint( + $crate::impls::assert_ok!(<Self as [<$chain ParaPallet>]>::Assets::mint( signed_origin, id.clone().into(), beneficiary.clone().into(), @@ -760,7 +758,7 @@ macro_rules! impl_assets_helpers_for_parachain { $crate::impls::assert_expected_events!( Self, vec![ - RuntimeEvent::<N>::ForeignAssets( + RuntimeEvent::<N>::Assets( $crate::impls::pallet_assets::Event::Issued { asset_id, owner, amount } ) => { asset_id: *asset_id == id, @@ -771,9 +769,39 @@ macro_rules! impl_assets_helpers_for_parachain { ); }); } - /// Create assets using sudo `Assets::force_create()` - pub fn force_create_asset( - id: u32, + + /// Returns the encoded call for `create` from the assets pallet + pub fn create_asset_call( + asset_id: u32, + min_balance: $crate::impls::Balance, + admin: $crate::impls::AccountId, + ) -> $crate::impls::DoubleEncoded<()> { + use $crate::impls::{Chain, Encode}; + + <Self as Chain>::RuntimeCall::Assets($crate::impls::pallet_assets::Call::< + <Self as Chain>::Runtime, + $crate::impls::pallet_assets::Instance1, + >::create { + id: asset_id.into(), + min_balance, + admin: admin.into(), + }) + .encode() + .into() + } + } + } + }; +} + +#[macro_export] +macro_rules! impl_foreign_assets_helpers_for_parachain { + ($chain:ident, $asset_id_type:ty) => { + $crate::impls::paste::paste! { + impl<N: $crate::impls::Network> $chain<N> { + /// Create foreign assets using sudo `ForeignAssets::force_create()` + pub fn force_create_foreign_asset( + id: $asset_id_type, owner: $crate::impls::AccountId, is_sufficient: bool, min_balance: u128, @@ -783,20 +811,20 @@ macro_rules! impl_assets_helpers_for_parachain { let sudo_origin = <$chain<N> as $crate::impls::Chain>::RuntimeOrigin::root(); <Self as $crate::impls::TestExt>::execute_with(|| { $crate::impls::assert_ok!( - <Self as [<$chain ParaPallet>]>::Assets::force_create( + <Self as [<$chain ParaPallet>]>::ForeignAssets::force_create( sudo_origin, - id.clone().into(), + id.clone(), owner.clone().into(), is_sufficient, min_balance, ) ); - assert!(<Self as [<$chain ParaPallet>]>::Assets::asset_exists(id.clone())); + assert!(<Self as [<$chain ParaPallet>]>::ForeignAssets::asset_exists(id.clone())); type RuntimeEvent<N> = <$chain<N> as $crate::impls::Chain>::RuntimeEvent; $crate::impls::assert_expected_events!( Self, vec![ - RuntimeEvent::<N>::Assets( + RuntimeEvent::<N>::ForeignAssets( $crate::impls::pallet_assets::Event::ForceCreated { asset_id, .. @@ -808,19 +836,19 @@ macro_rules! impl_assets_helpers_for_parachain { for (beneficiary, amount) in prefund_accounts.into_iter() { let signed_origin = <$chain<N> as $crate::impls::Chain>::RuntimeOrigin::signed(owner.clone()); - Self::mint_asset(signed_origin, id.clone(), beneficiary, amount); + Self::mint_foreign_asset(signed_origin, id.clone(), beneficiary, amount); } } - /// Mint assets making use of the assets pallet - pub fn mint_asset( + /// Mint assets making use of the ForeignAssets pallet-assets instance + pub fn mint_foreign_asset( signed_origin: <Self as $crate::impls::Chain>::RuntimeOrigin, - id: u32, + id: $asset_id_type, beneficiary: $crate::impls::AccountId, amount_to_mint: u128, ) { <Self as $crate::impls::TestExt>::execute_with(|| { - $crate::impls::assert_ok!(<Self as [<$chain ParaPallet>]>::Assets::mint( + $crate::impls::assert_ok!(<Self as [<$chain ParaPallet>]>::ForeignAssets::mint( signed_origin, id.clone().into(), beneficiary.clone().into(), @@ -832,7 +860,7 @@ macro_rules! impl_assets_helpers_for_parachain { $crate::impls::assert_expected_events!( Self, vec![ - RuntimeEvent::<N>::Assets( + RuntimeEvent::<N>::ForeignAssets( $crate::impls::pallet_assets::Event::Issued { asset_id, owner, amount } ) => { asset_id: *asset_id == id, @@ -844,29 +872,9 @@ macro_rules! impl_assets_helpers_for_parachain { }); } - /// Returns the encoded call for `create` from the assets pallet - pub fn create_asset_call( - asset_id: u32, - min_balance: $crate::impls::Balance, - admin: $crate::impls::AccountId, - ) -> $crate::impls::DoubleEncoded<()> { - use $crate::impls::{Chain, Encode}; - - <Self as Chain>::RuntimeCall::Assets($crate::impls::pallet_assets::Call::< - <Self as Chain>::Runtime, - $crate::impls::pallet_assets::Instance1, - >::create { - id: asset_id.into(), - min_balance, - admin: admin.into(), - }) - .encode() - .into() - } - /// Returns the encoded call for `create` from the foreign assets pallet pub fn create_foreign_asset_call( - asset_id: $crate::impls::v3::Location, + asset_id: $asset_id_type, min_balance: $crate::impls::Balance, admin: $crate::impls::AccountId, ) -> $crate::impls::DoubleEncoded<()> { diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/foreign_assets_transfers.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/foreign_assets_transfers.rs index 6444e9de82e880f6e459f3a81dcf32f854f1bf81..6bdf89e6f277edb7d0e6e85383223d52b24c89ea 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/foreign_assets_transfers.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/foreign_assets_transfers.rs @@ -137,14 +137,13 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { let destination = AssetHubRococo::sibling_location_of(PenpalA::para_id()); let sender = AssetHubRococoSender::get(); let native_amount_to_send: Balance = ASSET_HUB_ROCOCO_ED * 10000; - let native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let native_asset_location = RelayLocation::get(); let receiver = PenpalAReceiver::get(); let assets_owner = PenpalAssetOwner::get(); // Foreign asset used: bridged WND let foreign_amount_to_send = ASSET_HUB_ROCOCO_ED * 10_000_000; let wnd_at_rococo_parachains = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Westend)]); - let wnd_at_rococo_parachains_latest: Location = wnd_at_rococo_parachains.try_into().unwrap(); + Location::new(2, [Junction::GlobalConsensus(NetworkId::Westend)]); // Configure destination chain to trust AH as reserve of WND PenpalA::execute_with(|| { @@ -157,14 +156,14 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { )); }); PenpalA::force_create_foreign_asset( - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); AssetHubRococo::force_create_foreign_asset( - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone().try_into().unwrap(), assets_owner.clone(), false, ASSET_MIN_BALANCE, @@ -172,7 +171,7 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { ); AssetHubRococo::mint_foreign_asset( <AssetHubRococo as Chain>::RuntimeOrigin::signed(assets_owner), - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone().try_into().unwrap(), sender.clone(), foreign_amount_to_send * 2, ); @@ -180,7 +179,7 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { // Assets to send let assets: Vec<Asset> = vec![ (Parent, native_amount_to_send).into(), - (wnd_at_rococo_parachains_latest, foreign_amount_to_send).into(), + (wnd_at_rococo_parachains.clone(), foreign_amount_to_send).into(), ]; let fee_asset_id = AssetId(Parent.into()); let fee_asset_item = assets.iter().position(|a| a.id == fee_asset_id).unwrap() as u32; @@ -204,15 +203,18 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { let sender_balance_before = test.sender.balance; let sender_wnds_before = AssetHubRococo::execute_with(|| { type ForeignAssets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance( + wnd_at_rococo_parachains.clone().try_into().unwrap(), + &sender, + ) }); let receiver_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(native_asset_location.clone(), &receiver) }); let receiver_wnds_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains.clone(), &receiver) }); // Set assertions and dispatchables @@ -225,7 +227,10 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { let sender_balance_after = test.sender.balance; let sender_wnds_after = AssetHubRococo::execute_with(|| { type ForeignAssets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance( + wnd_at_rococo_parachains.clone().try_into().unwrap(), + &sender, + ) }); let receiver_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; @@ -262,14 +267,13 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { let destination = PenpalA::sibling_location_of(AssetHubRococo::para_id()); let sender = PenpalASender::get(); let native_amount_to_send: Balance = ASSET_HUB_ROCOCO_ED * 10000; - let native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let native_asset_location = RelayLocation::get(); let assets_owner = PenpalAssetOwner::get(); // Foreign asset used: bridged WND let foreign_amount_to_send = ASSET_HUB_ROCOCO_ED * 10_000_000; let wnd_at_rococo_parachains = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Westend)]); - let wnd_at_rococo_parachains_latest: Location = wnd_at_rococo_parachains.try_into().unwrap(); + Location::new(2, [Junction::GlobalConsensus(NetworkId::Westend)]); // Configure destination chain to trust AH as reserve of WND PenpalA::execute_with(|| { @@ -282,14 +286,14 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { )); }); PenpalA::force_create_foreign_asset( - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); AssetHubRococo::force_create_foreign_asset( - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone().try_into().unwrap(), assets_owner.clone(), false, ASSET_MIN_BALANCE, @@ -299,13 +303,13 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - native_asset_location, + native_asset_location.clone(), sender.clone(), native_amount_to_send * 2, ); PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone(), sender.clone(), foreign_amount_to_send * 2, ); @@ -322,7 +326,7 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { )]); AssetHubRococo::mint_foreign_asset( <AssetHubRococo as Chain>::RuntimeOrigin::signed(assets_owner), - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone().try_into().unwrap(), sov_penpal_on_ahr, foreign_amount_to_send * 2, ); @@ -330,7 +334,7 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { // Assets to send let assets: Vec<Asset> = vec![ (Parent, native_amount_to_send).into(), - (wnd_at_rococo_parachains_latest, foreign_amount_to_send).into(), + (wnd_at_rococo_parachains.clone(), foreign_amount_to_send).into(), ]; let fee_asset_id = AssetId(Parent.into()); let fee_asset_item = assets.iter().position(|a| a.id == fee_asset_id).unwrap() as u32; @@ -353,16 +357,19 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { // Query initial balances let sender_native_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(native_asset_location.clone(), &sender) }); let sender_wnds_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains.clone(), &sender) }); let receiver_native_before = test.receiver.balance; let receiver_wnds_before = AssetHubRococo::execute_with(|| { type ForeignAssets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance( + wnd_at_rococo_parachains.clone().try_into().unwrap(), + &receiver, + ) }); // Set assertions and dispatchables @@ -378,12 +385,15 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { }); let sender_wnds_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains.clone(), &sender) }); let receiver_native_after = test.receiver.balance; let receiver_wnds_after = AssetHubRococo::execute_with(|| { type ForeignAssets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance( + wnd_at_rococo_parachains.try_into().unwrap(), + &receiver, + ) }); // Sender's balance is reduced by amount sent plus delivery fees @@ -412,8 +422,7 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { let sender = PenpalASender::get(); let roc_to_send: Balance = ROCOCO_ED * 10000; let assets_owner = PenpalAssetOwner::get(); - let roc_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let roc_location_latest: Location = roc_location.try_into().unwrap(); + let roc_location = RelayLocation::get(); let sender_as_seen_by_ah = AssetHubRococo::sibling_location_of(PenpalA::para_id()); let sov_of_sender_on_ah = AssetHubRococo::sovereign_account_id_of(sender_as_seen_by_ah); let receiver_as_seen_by_ah = AssetHubRococo::sibling_location_of(PenpalB::para_id()); @@ -433,24 +442,23 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Register WND as foreign asset and transfer it around the Rococo ecosystem let wnd_at_rococo_parachains = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Westend)]); - let wnd_at_rococo_parachains_latest: Location = wnd_at_rococo_parachains.try_into().unwrap(); + Location::new(2, [Junction::GlobalConsensus(NetworkId::Westend)]); AssetHubRococo::force_create_foreign_asset( - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone().try_into().unwrap(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); PenpalA::force_create_foreign_asset( - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); PenpalB::force_create_foreign_asset( - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, @@ -460,13 +468,13 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - roc_location, + roc_location.clone(), sender.clone(), roc_to_send * 2, ); PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone(), sender.clone(), wnd_to_send * 2, ); @@ -474,7 +482,7 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { AssetHubRococo::fund_accounts(vec![(sov_of_sender_on_ah.clone().into(), roc_to_send * 2)]); AssetHubRococo::mint_foreign_asset( <AssetHubRococo as Chain>::RuntimeOrigin::signed(assets_owner), - wnd_at_rococo_parachains, + wnd_at_rococo_parachains.clone().try_into().unwrap(), sov_of_sender_on_ah.clone(), wnd_to_send * 2, ); @@ -484,10 +492,10 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Assets to send let assets: Vec<Asset> = vec![ - (roc_location_latest.clone(), roc_to_send).into(), - (wnd_at_rococo_parachains_latest, wnd_to_send).into(), + (roc_location.clone(), roc_to_send).into(), + (wnd_at_rococo_parachains.clone(), wnd_to_send).into(), ]; - let fee_asset_id: AssetId = roc_location_latest.into(); + let fee_asset_id: AssetId = roc_location.clone().into(); let fee_asset_item = assets.iter().position(|a| a.id == fee_asset_id).unwrap() as u32; // Init Test @@ -508,31 +516,37 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Query initial balances let sender_rocs_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_location, &sender) + <ForeignAssets as Inspect<_>>::balance(roc_location.clone(), &sender) }); let sender_wnds_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains.clone(), &sender) }); let rocs_in_sender_reserve_on_ahr_before = <AssetHubRococo as Chain>::account_data_of(sov_of_sender_on_ah.clone()).free; let wnds_in_sender_reserve_on_ahr_before = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sov_of_sender_on_ah) + <Assets as Inspect<_>>::balance( + wnd_at_rococo_parachains.clone().try_into().unwrap(), + &sov_of_sender_on_ah, + ) }); let rocs_in_receiver_reserve_on_ahr_before = <AssetHubRococo as Chain>::account_data_of(sov_of_receiver_on_ah.clone()).free; let wnds_in_receiver_reserve_on_ahr_before = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sov_of_receiver_on_ah) + <Assets as Inspect<_>>::balance( + wnd_at_rococo_parachains.clone().try_into().unwrap(), + &sov_of_receiver_on_ah, + ) }); let receiver_rocs_before = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_location, &receiver) + <ForeignAssets as Inspect<_>>::balance(roc_location.clone(), &receiver) }); let receiver_wnds_before = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains.clone(), &receiver) }); // Set assertions and dispatchables @@ -545,21 +559,27 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Query final balances let sender_rocs_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_location, &sender) + <ForeignAssets as Inspect<_>>::balance(roc_location.clone(), &sender) }); let sender_wnds_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(wnd_at_rococo_parachains.clone(), &sender) }); let wnds_in_sender_reserve_on_ahr_after = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sov_of_sender_on_ah) + <Assets as Inspect<_>>::balance( + wnd_at_rococo_parachains.clone().try_into().unwrap(), + &sov_of_sender_on_ah, + ) }); let rocs_in_sender_reserve_on_ahr_after = <AssetHubRococo as Chain>::account_data_of(sov_of_sender_on_ah).free; let wnds_in_receiver_reserve_on_ahr_after = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(wnd_at_rococo_parachains, &sov_of_receiver_on_ah) + <Assets as Inspect<_>>::balance( + wnd_at_rococo_parachains.clone().try_into().unwrap(), + &sov_of_receiver_on_ah, + ) }); let rocs_in_receiver_reserve_on_ahr_after = <AssetHubRococo as Chain>::account_data_of(sov_of_receiver_on_ah).free; diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/reserve_transfer.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/reserve_transfer.rs index 2a341c2e5159f18bb268f6b52ab4208cca8c064e..5aef70f5cbfc08522a5693d38bb2c774209a2469 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/reserve_transfer.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/reserve_transfer.rs @@ -47,7 +47,7 @@ fn para_to_relay_sender_assertions(t: ParaToRelayTest) { RuntimeEvent::ForeignAssets( pallet_assets::Event::Burned { asset_id, owner, balance, .. } ) => { - asset_id: *asset_id == v3::Location::try_from(RelayLocation::get()).unwrap(), + asset_id: *asset_id == RelayLocation::get(), owner: *owner == t.sender.account_id, balance: *balance == t.args.amount, }, @@ -106,6 +106,7 @@ pub fn system_para_to_para_sender_assertions(t: SystemParaToParaTest) { pub fn system_para_to_para_receiver_assertions(t: SystemParaToParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; + PenpalA::assert_xcmp_queue_success(None); for asset in t.args.assets.into_inner().into_iter() { let expected_id = asset.id.0.try_into().unwrap(); @@ -125,7 +126,7 @@ pub fn para_to_system_para_sender_assertions(t: ParaToSystemParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; PenpalA::assert_xcm_pallet_attempted_complete(None); for asset in t.args.assets.into_inner().into_iter() { - let expected_id = asset.id.0.try_into().unwrap(); + let expected_id = asset.id.0; let asset_amount = if let Fungible(a) = asset.fun { Some(a) } else { None }.unwrap(); assert_expected_events!( PenpalA, @@ -265,9 +266,8 @@ fn system_para_to_para_assets_sender_assertions(t: SystemParaToParaTest) { fn para_to_system_para_assets_sender_assertions(t: ParaToSystemParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let reservable_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); + let reservable_asset_location = PenpalLocalReservableFromAssetHub::get(); PenpalA::assert_xcm_pallet_attempted_complete(Some(Weight::from_parts(864_610_000, 8799))); assert_expected_events!( PenpalA, @@ -297,14 +297,13 @@ fn para_to_system_para_assets_sender_assertions(t: ParaToSystemParaTest) { fn system_para_to_para_assets_receiver_assertions(t: SystemParaToParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; - let system_para_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_asset_location = PenpalLocalReservableFromAssetHub::get(); PenpalA::assert_xcmp_queue_success(None); assert_expected_events!( PenpalA, vec![ RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, .. }) => { - asset_id: *asset_id == v3::Location::try_from(RelayLocation::get()).unwrap(), + asset_id: *asset_id == RelayLocation::get(), owner: *owner == t.receiver.account_id, }, RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, amount }) => { @@ -356,7 +355,7 @@ fn relay_to_para_assets_receiver_assertions(t: RelayToParaTest) { PenpalA, vec![ RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, .. }) => { - asset_id: *asset_id == v3::Location::try_from(RelayLocation::get()).unwrap(), + asset_id: *asset_id == RelayLocation::get(), owner: *owner == t.receiver.account_id, }, RuntimeEvent::MessageQueue( @@ -576,7 +575,7 @@ fn reserve_transfer_native_asset_from_relay_to_para() { let amount_to_send: Balance = ROCOCO_ED * 1000; // Init values fot Parachain - let relay_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let relay_native_asset_location = RelayLocation::get(); let receiver = PenpalAReceiver::get(); // Init Test @@ -591,7 +590,7 @@ fn reserve_transfer_native_asset_from_relay_to_para() { let sender_balance_before = test.sender.balance; let receiver_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &receiver) }); // Set assertions and dispatchables @@ -604,7 +603,7 @@ fn reserve_transfer_native_asset_from_relay_to_para() { let sender_balance_after = test.sender.balance; let receiver_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &receiver) }); // Sender's balance is reduced by amount sent plus delivery fees @@ -626,12 +625,12 @@ fn reserve_transfer_native_asset_from_para_to_relay() { let amount_to_send: Balance = ROCOCO_ED * 1000; let assets: Assets = (Parent, amount_to_send).into(); let asset_owner = PenpalAssetOwner::get(); - let relay_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let relay_native_asset_location = RelayLocation::get(); // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner), - relay_native_asset_location, + relay_native_asset_location.clone(), sender.clone(), amount_to_send * 2, ); @@ -662,7 +661,7 @@ fn reserve_transfer_native_asset_from_para_to_relay() { // Query initial balances let sender_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &sender) }); let receiver_balance_before = test.receiver.balance; @@ -675,7 +674,7 @@ fn reserve_transfer_native_asset_from_para_to_relay() { // Query final balances let sender_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &sender) }); let receiver_balance_after = test.receiver.balance; @@ -702,7 +701,7 @@ fn reserve_transfer_native_asset_from_system_para_to_para() { let assets: Assets = (Parent, amount_to_send).into(); // Init values for Parachain - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let receiver = PenpalAReceiver::get(); // Init Test @@ -724,7 +723,7 @@ fn reserve_transfer_native_asset_from_system_para_to_para() { let sender_balance_before = test.sender.balance; let receiver_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &receiver) }); // Set assertions and dispatchables @@ -758,13 +757,13 @@ fn reserve_transfer_native_asset_from_para_to_system_para() { let sender = PenpalASender::get(); let amount_to_send: Balance = ASSET_HUB_ROCOCO_ED * 10000; let assets: Assets = (Parent, amount_to_send).into(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let asset_owner = PenpalAssetOwner::get(); // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner), - system_para_native_asset_location, + system_para_native_asset_location.clone(), sender.clone(), amount_to_send * 2, ); @@ -795,7 +794,7 @@ fn reserve_transfer_native_asset_from_para_to_system_para() { // Query initial balances let sender_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &sender) }); let receiver_balance_before = test.receiver.balance; @@ -863,9 +862,8 @@ fn reserve_transfer_assets_from_system_para_to_para() { // Init values for Parachain let receiver = PenpalAReceiver::get(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let system_para_foreign_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); + let system_para_foreign_asset_location = PenpalLocalReservableFromAssetHub::get(); // Init Test let para_test_args = TestContext { @@ -890,11 +888,14 @@ fn reserve_transfer_assets_from_system_para_to_para() { }); let receiver_system_native_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &receiver) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &receiver) }); let receiver_foreign_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_foreign_asset_location, &receiver) + <ForeignAssets as Inspect<_>>::balance( + system_para_foreign_asset_location.clone(), + &receiver, + ) }); // Set assertions and dispatchables @@ -911,7 +912,7 @@ fn reserve_transfer_assets_from_system_para_to_para() { }); let receiver_system_native_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &receiver) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &receiver) }); let receiver_foreign_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; @@ -949,13 +950,11 @@ fn reserve_transfer_assets_from_para_to_system_para() { let asset_amount_to_send = ASSET_HUB_ROCOCO_ED * 10000; let penpal_asset_owner = PenpalAssetOwner::get(); let penpal_asset_owner_signer = <PenpalA as Chain>::RuntimeOrigin::signed(penpal_asset_owner); - let asset_location_on_penpal = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); - let asset_location_on_penpal_latest: Location = asset_location_on_penpal.try_into().unwrap(); - let system_asset_location_on_penpal = v3::Location::try_from(RelayLocation::get()).unwrap(); + let asset_location_on_penpal = PenpalLocalReservableFromAssetHub::get(); + let system_asset_location_on_penpal = RelayLocation::get(); let assets: Assets = vec![ (Parent, fee_amount_to_send).into(), - (asset_location_on_penpal_latest, asset_amount_to_send).into(), + (asset_location_on_penpal.clone(), asset_amount_to_send).into(), ] .into(); let fee_asset_index = assets @@ -982,9 +981,8 @@ fn reserve_transfer_assets_from_para_to_system_para() { let receiver = AssetHubRococoReceiver::get(); let penpal_location_as_seen_by_ahr = AssetHubRococo::sibling_location_of(PenpalA::para_id()); let sov_penpal_on_ahr = AssetHubRococo::sovereign_account_id_of(penpal_location_as_seen_by_ahr); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let system_para_foreign_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); + let system_para_foreign_asset_location = PenpalLocalReservableFromAssetHub::get(); let ah_asset_owner = AssetHubRococoAssetOwner::get(); let ah_asset_owner_signer = <AssetHubRococo as Chain>::RuntimeOrigin::signed(ah_asset_owner); @@ -1019,11 +1017,11 @@ fn reserve_transfer_assets_from_para_to_system_para() { // Query initial balances let sender_system_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &sender) }); let sender_foreign_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_foreign_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(system_para_foreign_asset_location.clone(), &sender) }); let receiver_balance_before = test.receiver.balance; let receiver_assets_before = AssetHubRococo::execute_with(|| { @@ -1040,7 +1038,7 @@ fn reserve_transfer_assets_from_para_to_system_para() { // Query final balances let sender_system_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &sender) }); let sender_foreign_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; @@ -1079,14 +1077,14 @@ fn reserve_transfer_native_asset_from_para_to_para_through_relay() { let amount_to_send: Balance = ROCOCO_ED * 10000; let asset_owner = PenpalAssetOwner::get(); let assets = (Parent, amount_to_send).into(); - let relay_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let relay_native_asset_location = RelayLocation::get(); let sender_as_seen_by_relay = Rococo::child_location_of(PenpalA::para_id()); let sov_of_sender_on_relay = Rococo::sovereign_account_id_of(sender_as_seen_by_relay); // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner), - relay_native_asset_location, + relay_native_asset_location.clone(), sender.clone(), amount_to_send * 2, ); @@ -1108,11 +1106,11 @@ fn reserve_transfer_native_asset_from_para_to_para_through_relay() { // Query initial balances let sender_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &sender) }); let receiver_assets_before = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &receiver) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &receiver) }); // Set assertions and dispatchables @@ -1125,7 +1123,7 @@ fn reserve_transfer_native_asset_from_para_to_para_through_relay() { // Query final balances let sender_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &sender) }); let receiver_assets_after = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/swap.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/swap.rs index cea1b8aefbd5ffbb00f37e5dcef75a7736543d11..919e0080ba62d90a78a3738c4c8f141c01979feb 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/swap.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/swap.rs @@ -17,7 +17,10 @@ use crate::imports::*; #[test] fn swap_locally_on_chain_using_local_assets() { - let asset_native = Box::new(asset_hub_rococo_runtime::xcm_config::TokenLocationV3::get()); + let asset_native = Box::new( + v3::Location::try_from(asset_hub_rococo_runtime::xcm_config::TokenLocation::get()) + .expect("conversion works"), + ); let asset_one = Box::new(v3::Location::new( 0, [ @@ -227,11 +230,9 @@ fn swap_locally_on_chain_using_foreign_assets() { #[test] fn cannot_create_pool_from_pool_assets() { - let asset_native = Box::new(asset_hub_rococo_runtime::xcm_config::TokenLocationV3::get()); - let mut asset_one = asset_hub_rococo_runtime::xcm_config::PoolAssetsPalletLocationV3::get(); - asset_one - .append_with(v3::Junction::GeneralIndex(ASSET_ID.into())) - .expect("pool assets"); + let asset_native = asset_hub_rococo_runtime::xcm_config::TokenLocation::get(); + let mut asset_one = asset_hub_rococo_runtime::xcm_config::PoolAssetsPalletLocation::get(); + asset_one.append_with(GeneralIndex(ASSET_ID.into())).expect("pool assets"); AssetHubRococo::execute_with(|| { let pool_owner_account_id = asset_hub_rococo_runtime::AssetConversionOrigin::get(); @@ -254,8 +255,8 @@ fn cannot_create_pool_from_pool_assets() { assert_matches::assert_matches!( <AssetHubRococo as AssetHubRococoPallet>::AssetConversion::create_pool( <AssetHubRococo as Chain>::RuntimeOrigin::signed(AssetHubRococoSender::get()), - asset_native, - Box::new(asset_one), + Box::new(v3::Location::try_from(asset_native).expect("conversion works")), + Box::new(v3::Location::try_from(asset_one).expect("conversion works")), ), Err(DispatchError::Module(ModuleError{index: _, error: _, message})) => assert_eq!(message, Some("Unknown")) ); @@ -264,7 +265,9 @@ fn cannot_create_pool_from_pool_assets() { #[test] fn pay_xcm_fee_with_some_asset_swapped_for_native() { - let asset_native = asset_hub_rococo_runtime::xcm_config::TokenLocationV3::get(); + let asset_native = + v3::Location::try_from(asset_hub_rococo_runtime::xcm_config::TokenLocation::get()) + .expect("conversion works"); let asset_one = xcm::v3::Location { parents: 0, interior: [ diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/teleport.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/teleport.rs index dbfd7c50f61a56bc1c422747317d350f676c00dd..f74378d7631a610a57c61153e62aedfcb588a611 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/teleport.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-rococo/src/tests/teleport.rs @@ -110,7 +110,7 @@ fn para_dest_assertions(t: RelayToSystemParaTest) { fn penpal_to_ah_foreign_assets_sender_assertions(t: ParaToSystemParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let expected_asset_id = t.args.asset_id.unwrap(); let (_, expected_asset_amount) = non_fee_asset(&t.args.assets, t.args.fee_asset_item as usize).unwrap(); @@ -203,7 +203,7 @@ fn ah_to_penpal_foreign_assets_receiver_assertions(t: SystemParaToParaTest) { let (_, expected_asset_amount) = non_fee_asset(&t.args.assets, t.args.fee_asset_item as usize).unwrap(); let checking_account = <PenpalA as PenpalAPallet>::PolkadotXcm::check_account(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); PenpalA::assert_xcmp_queue_success(None); @@ -420,22 +420,20 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using ) { // Init values for Parachain let fee_amount_to_send: Balance = ASSET_HUB_ROCOCO_ED * 10000; - let asset_location_on_penpal = - v3::Location::try_from(PenpalLocalTeleportableToAssetHub::get()).unwrap(); + let asset_location_on_penpal = PenpalLocalTeleportableToAssetHub::get(); let asset_id_on_penpal = match asset_location_on_penpal.last() { - Some(v3::Junction::GeneralIndex(id)) => *id as u32, + Some(Junction::GeneralIndex(id)) => *id as u32, _ => unreachable!(), }; let asset_amount_to_send = ASSET_HUB_ROCOCO_ED * 1000; let asset_owner = PenpalAssetOwner::get(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let sender = PenpalASender::get(); let penpal_check_account = <PenpalA as PenpalAPallet>::PolkadotXcm::check_account(); let ah_as_seen_by_penpal = PenpalA::sibling_location_of(AssetHubRococo::para_id()); - let asset_location_on_penpal_latest: Location = asset_location_on_penpal.try_into().unwrap(); let penpal_assets: Assets = vec![ (Parent, fee_amount_to_send).into(), - (asset_location_on_penpal_latest, asset_amount_to_send).into(), + (asset_location_on_penpal.clone(), asset_amount_to_send).into(), ] .into(); let fee_asset_index = penpal_assets @@ -447,7 +445,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner.clone()), - system_para_native_asset_location, + system_para_native_asset_location.clone(), sender.clone(), fee_amount_to_send * 2, ); @@ -471,7 +469,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using // Init values for System Parachain let foreign_asset_at_asset_hub_rococo = - v3::Location::new(1, [v3::Junction::Parachain(PenpalA::para_id().into())]) + Location::new(1, [Junction::Parachain(PenpalA::para_id().into())]) .appended_with(asset_location_on_penpal) .unwrap(); let penpal_to_ah_beneficiary_id = AssetHubRococoReceiver::get(); @@ -493,7 +491,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let penpal_sender_balance_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - system_para_native_asset_location, + system_para_native_asset_location.clone(), &PenpalASender::get(), ) }); @@ -507,7 +505,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_receiver_assets_before = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; <Assets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_rococo, + foreign_asset_at_asset_hub_rococo.clone().try_into().unwrap(), &AssetHubRococoReceiver::get(), ) }); @@ -520,7 +518,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let penpal_sender_balance_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - system_para_native_asset_location, + system_para_native_asset_location.clone(), &PenpalASender::get(), ) }); @@ -534,7 +532,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_receiver_assets_after = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; <Assets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_rococo, + foreign_asset_at_asset_hub_rococo.clone().try_into().unwrap(), &AssetHubRococoReceiver::get(), ) }); @@ -562,19 +560,17 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using type ForeignAssets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; assert_ok!(ForeignAssets::transfer( <AssetHubRococo as Chain>::RuntimeOrigin::signed(AssetHubRococoReceiver::get()), - foreign_asset_at_asset_hub_rococo, + foreign_asset_at_asset_hub_rococo.clone().try_into().unwrap(), AssetHubRococoSender::get().into(), asset_amount_to_send, )); }); - let foreign_asset_at_asset_hub_rococo_latest: Location = - foreign_asset_at_asset_hub_rococo.try_into().unwrap(); let ah_to_penpal_beneficiary_id = PenpalAReceiver::get(); let penpal_as_seen_by_ah = AssetHubRococo::sibling_location_of(PenpalA::para_id()); let ah_assets: Assets = vec![ (Parent, fee_amount_to_send).into(), - (foreign_asset_at_asset_hub_rococo_latest, asset_amount_to_send).into(), + (foreign_asset_at_asset_hub_rococo.clone(), asset_amount_to_send).into(), ] .into(); let fee_asset_index = ah_assets @@ -602,7 +598,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let penpal_receiver_balance_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - system_para_native_asset_location, + system_para_native_asset_location.clone(), &PenpalAReceiver::get(), ) }); @@ -610,7 +606,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_sender_assets_before = AssetHubRococo::execute_with(|| { type ForeignAssets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_rococo, + foreign_asset_at_asset_hub_rococo.clone().try_into().unwrap(), &AssetHubRococoSender::get(), ) }); @@ -636,7 +632,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_sender_assets_after = AssetHubRococo::execute_with(|| { type ForeignAssets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_rococo, + foreign_asset_at_asset_hub_rococo.try_into().unwrap(), &AssetHubRococoSender::get(), ) }); diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/foreign_assets_transfers.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/foreign_assets_transfers.rs index 4f8c9bf7f9c1c384e774be1bc854da227129a3c4..8cfda37c84c9495acce070bad7a42ad8ef058277 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/foreign_assets_transfers.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/foreign_assets_transfers.rs @@ -137,14 +137,13 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { let destination = AssetHubWestend::sibling_location_of(PenpalA::para_id()); let sender = AssetHubWestendSender::get(); let native_amount_to_send: Balance = ASSET_HUB_WESTEND_ED * 1000; - let native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let native_asset_location = RelayLocation::get(); let receiver = PenpalAReceiver::get(); let assets_owner = PenpalAssetOwner::get(); // Foreign asset used: bridged ROC let foreign_amount_to_send = ASSET_HUB_WESTEND_ED * 10_000_000; let roc_at_westend_parachains = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Rococo)]); - let roc_at_westend_parachains_latest: Location = roc_at_westend_parachains.try_into().unwrap(); + Location::new(2, [Junction::GlobalConsensus(NetworkId::Rococo)]); // Configure destination chain to trust AH as reserve of ROC PenpalA::execute_with(|| { @@ -157,14 +156,14 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { )); }); PenpalA::force_create_foreign_asset( - roc_at_westend_parachains, + roc_at_westend_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); AssetHubWestend::force_create_foreign_asset( - roc_at_westend_parachains, + roc_at_westend_parachains.clone().try_into().unwrap(), assets_owner.clone(), false, ASSET_MIN_BALANCE, @@ -172,7 +171,7 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { ); AssetHubWestend::mint_foreign_asset( <AssetHubWestend as Chain>::RuntimeOrigin::signed(assets_owner), - roc_at_westend_parachains, + roc_at_westend_parachains.clone().try_into().unwrap(), sender.clone(), foreign_amount_to_send * 2, ); @@ -180,7 +179,7 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { // Assets to send let assets: Vec<Asset> = vec![ (Parent, native_amount_to_send).into(), - (roc_at_westend_parachains_latest, foreign_amount_to_send).into(), + (roc_at_westend_parachains.clone(), foreign_amount_to_send).into(), ]; let fee_asset_id = AssetId(Parent.into()); let fee_asset_item = assets.iter().position(|a| a.id == fee_asset_id).unwrap() as u32; @@ -204,15 +203,18 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { let sender_balance_before = test.sender.balance; let sender_rocs_before = AssetHubWestend::execute_with(|| { type ForeignAssets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance( + roc_at_westend_parachains.clone().try_into().unwrap(), + &sender, + ) }); let receiver_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(native_asset_location.clone(), &receiver) }); let receiver_rocs_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains.clone(), &receiver) }); // Set assertions and dispatchables @@ -225,7 +227,10 @@ fn transfer_foreign_assets_from_asset_hub_to_para() { let sender_balance_after = test.sender.balance; let sender_rocs_after = AssetHubWestend::execute_with(|| { type ForeignAssets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance( + roc_at_westend_parachains.clone().try_into().unwrap(), + &sender, + ) }); let receiver_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; @@ -262,14 +267,13 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { let destination = PenpalA::sibling_location_of(AssetHubWestend::para_id()); let sender = PenpalASender::get(); let native_amount_to_send: Balance = ASSET_HUB_WESTEND_ED * 10000; - let native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let native_asset_location = RelayLocation::get(); let assets_owner = PenpalAssetOwner::get(); // Foreign asset used: bridged ROC let foreign_amount_to_send = ASSET_HUB_WESTEND_ED * 10_000_000; let roc_at_westend_parachains = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Rococo)]); - let roc_at_westend_parachains_latest: Location = roc_at_westend_parachains.try_into().unwrap(); + Location::new(2, [Junction::GlobalConsensus(NetworkId::Rococo)]); // Configure destination chain to trust AH as reserve of ROC PenpalA::execute_with(|| { @@ -282,14 +286,14 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { )); }); PenpalA::force_create_foreign_asset( - roc_at_westend_parachains, + roc_at_westend_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); AssetHubWestend::force_create_foreign_asset( - roc_at_westend_parachains, + roc_at_westend_parachains.clone().try_into().unwrap(), assets_owner.clone(), false, ASSET_MIN_BALANCE, @@ -299,13 +303,13 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - native_asset_location, + native_asset_location.clone(), sender.clone(), native_amount_to_send * 2, ); PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - roc_at_westend_parachains, + roc_at_westend_parachains.clone(), sender.clone(), foreign_amount_to_send * 2, ); @@ -323,7 +327,7 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { )]); AssetHubWestend::mint_foreign_asset( <AssetHubWestend as Chain>::RuntimeOrigin::signed(assets_owner), - roc_at_westend_parachains, + roc_at_westend_parachains.clone().try_into().unwrap(), sov_penpal_on_ahr, foreign_amount_to_send * 2, ); @@ -331,7 +335,7 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { // Assets to send let assets: Vec<Asset> = vec![ (Parent, native_amount_to_send).into(), - (roc_at_westend_parachains_latest, foreign_amount_to_send).into(), + (roc_at_westend_parachains.clone(), foreign_amount_to_send).into(), ]; let fee_asset_id = AssetId(Parent.into()); let fee_asset_item = assets.iter().position(|a| a.id == fee_asset_id).unwrap() as u32; @@ -354,16 +358,19 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { // Query initial balances let sender_native_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(native_asset_location.clone(), &sender) }); let sender_rocs_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains.clone(), &sender) }); let receiver_native_before = test.receiver.balance; let receiver_rocs_before = AssetHubWestend::execute_with(|| { type ForeignAssets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance( + roc_at_westend_parachains.clone().try_into().unwrap(), + &receiver, + ) }); // Set assertions and dispatchables @@ -379,12 +386,15 @@ fn transfer_foreign_assets_from_para_to_asset_hub() { }); let sender_rocs_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains.clone(), &sender) }); let receiver_native_after = test.receiver.balance; let receiver_rocs_after = AssetHubWestend::execute_with(|| { type ForeignAssets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance( + roc_at_westend_parachains.try_into().unwrap(), + &receiver, + ) }); // Sender's balance is reduced by amount sent plus delivery fees @@ -413,8 +423,7 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { let sender = PenpalASender::get(); let wnd_to_send: Balance = WESTEND_ED * 10000; let assets_owner = PenpalAssetOwner::get(); - let wnd_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let wnd_location_latest: Location = wnd_location.try_into().unwrap(); + let wnd_location = RelayLocation::get(); let sender_as_seen_by_ah = AssetHubWestend::sibling_location_of(PenpalA::para_id()); let sov_of_sender_on_ah = AssetHubWestend::sovereign_account_id_of(sender_as_seen_by_ah); let receiver_as_seen_by_ah = AssetHubWestend::sibling_location_of(PenpalB::para_id()); @@ -434,24 +443,23 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Register ROC as foreign asset and transfer it around the Westend ecosystem let roc_at_westend_parachains = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Rococo)]); - let roc_at_westend_parachains_latest: Location = roc_at_westend_parachains.try_into().unwrap(); + Location::new(2, [Junction::GlobalConsensus(NetworkId::Rococo)]); AssetHubWestend::force_create_foreign_asset( - roc_at_westend_parachains, + roc_at_westend_parachains.clone().try_into().unwrap(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); PenpalA::force_create_foreign_asset( - roc_at_westend_parachains, + roc_at_westend_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, vec![], ); PenpalB::force_create_foreign_asset( - roc_at_westend_parachains, + roc_at_westend_parachains.clone(), assets_owner.clone(), false, ASSET_MIN_BALANCE, @@ -461,13 +469,13 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - wnd_location, + wnd_location.clone(), sender.clone(), wnd_to_send * 2, ); PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(assets_owner.clone()), - roc_at_westend_parachains, + roc_at_westend_parachains.clone(), sender.clone(), roc_to_send * 2, ); @@ -475,7 +483,7 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { AssetHubWestend::fund_accounts(vec![(sov_of_sender_on_ah.clone().into(), wnd_to_send * 2)]); AssetHubWestend::mint_foreign_asset( <AssetHubWestend as Chain>::RuntimeOrigin::signed(assets_owner), - roc_at_westend_parachains, + roc_at_westend_parachains.clone().try_into().unwrap(), sov_of_sender_on_ah.clone(), roc_to_send * 2, ); @@ -485,10 +493,10 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Assets to send let assets: Vec<Asset> = vec![ - (wnd_location_latest.clone(), wnd_to_send).into(), - (roc_at_westend_parachains_latest, roc_to_send).into(), + (wnd_location.clone(), wnd_to_send).into(), + (roc_at_westend_parachains.clone(), roc_to_send).into(), ]; - let fee_asset_id: AssetId = wnd_location_latest.into(); + let fee_asset_id: AssetId = wnd_location.clone().into(); let fee_asset_item = assets.iter().position(|a| a.id == fee_asset_id).unwrap() as u32; // Init Test @@ -509,31 +517,37 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Query initial balances let sender_wnds_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_location, &sender) + <ForeignAssets as Inspect<_>>::balance(wnd_location.clone(), &sender) }); let sender_rocs_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains.clone(), &sender) }); let wnds_in_sender_reserve_on_ah_before = <AssetHubWestend as Chain>::account_data_of(sov_of_sender_on_ah.clone()).free; let rocs_in_sender_reserve_on_ah_before = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(roc_at_westend_parachains, &sov_of_sender_on_ah) + <Assets as Inspect<_>>::balance( + roc_at_westend_parachains.clone().try_into().unwrap(), + &sov_of_sender_on_ah, + ) }); let wnds_in_receiver_reserve_on_ah_before = <AssetHubWestend as Chain>::account_data_of(sov_of_receiver_on_ah.clone()).free; let rocs_in_receiver_reserve_on_ah_before = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(roc_at_westend_parachains, &sov_of_receiver_on_ah) + <Assets as Inspect<_>>::balance( + roc_at_westend_parachains.clone().try_into().unwrap(), + &sov_of_receiver_on_ah, + ) }); let receiver_wnds_before = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_location, &receiver) + <ForeignAssets as Inspect<_>>::balance(wnd_location.clone(), &receiver) }); let receiver_rocs_before = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &receiver) + <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains.clone(), &receiver) }); // Set assertions and dispatchables @@ -546,21 +560,27 @@ fn transfer_foreign_assets_from_para_to_para_through_asset_hub() { // Query final balances let sender_wnds_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(wnd_location, &sender) + <ForeignAssets as Inspect<_>>::balance(wnd_location.clone(), &sender) }); let sender_rocs_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains, &sender) + <ForeignAssets as Inspect<_>>::balance(roc_at_westend_parachains.clone(), &sender) }); let rocs_in_sender_reserve_on_ah_after = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(roc_at_westend_parachains, &sov_of_sender_on_ah) + <Assets as Inspect<_>>::balance( + roc_at_westend_parachains.clone().try_into().unwrap(), + &sov_of_sender_on_ah, + ) }); let wnds_in_sender_reserve_on_ah_after = <AssetHubWestend as Chain>::account_data_of(sov_of_sender_on_ah).free; let rocs_in_receiver_reserve_on_ah_after = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(roc_at_westend_parachains, &sov_of_receiver_on_ah) + <Assets as Inspect<_>>::balance( + roc_at_westend_parachains.clone().try_into().unwrap(), + &sov_of_receiver_on_ah, + ) }); let wnds_in_receiver_reserve_on_ah_after = <AssetHubWestend as Chain>::account_data_of(sov_of_receiver_on_ah).free; diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/reserve_transfer.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/reserve_transfer.rs index 0677a77e344780aac63daff62048b9828f9e7e73..df01eb0d48ad929194e81808e36cf77528b54a21 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/reserve_transfer.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/reserve_transfer.rs @@ -47,7 +47,7 @@ fn para_to_relay_sender_assertions(t: ParaToRelayTest) { RuntimeEvent::ForeignAssets( pallet_assets::Event::Burned { asset_id, owner, balance, .. } ) => { - asset_id: *asset_id == v3::Location::try_from(RelayLocation::get()).unwrap(), + asset_id: *asset_id == RelayLocation::get(), owner: *owner == t.sender.account_id, balance: *balance == t.args.amount, }, @@ -106,6 +106,7 @@ pub fn system_para_to_para_sender_assertions(t: SystemParaToParaTest) { pub fn system_para_to_para_receiver_assertions(t: SystemParaToParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; + PenpalA::assert_xcmp_queue_success(None); for asset in t.args.assets.into_inner().into_iter() { let expected_id = asset.id.0.try_into().unwrap(); @@ -125,7 +126,7 @@ pub fn para_to_system_para_sender_assertions(t: ParaToSystemParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; PenpalA::assert_xcm_pallet_attempted_complete(None); for asset in t.args.assets.into_inner().into_iter() { - let expected_id = asset.id.0.try_into().unwrap(); + let expected_id = asset.id.0; let asset_amount = if let Fungible(a) = asset.fun { Some(a) } else { None }.unwrap(); assert_expected_events!( PenpalA, @@ -265,9 +266,8 @@ fn system_para_to_para_assets_sender_assertions(t: SystemParaToParaTest) { fn para_to_system_para_assets_sender_assertions(t: ParaToSystemParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let reservable_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); + let reservable_asset_location = PenpalLocalReservableFromAssetHub::get(); PenpalA::assert_xcm_pallet_attempted_complete(Some(Weight::from_parts(864_610_000, 8799))); assert_expected_events!( PenpalA, @@ -297,14 +297,13 @@ fn para_to_system_para_assets_sender_assertions(t: ParaToSystemParaTest) { fn system_para_to_para_assets_receiver_assertions(t: SystemParaToParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; - let system_para_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_asset_location = PenpalLocalReservableFromAssetHub::get(); PenpalA::assert_xcmp_queue_success(None); assert_expected_events!( PenpalA, vec![ RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, .. }) => { - asset_id: *asset_id == v3::Location::try_from(RelayLocation::get()).unwrap(), + asset_id: *asset_id == RelayLocation::get(), owner: *owner == t.receiver.account_id, }, RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, amount }) => { @@ -356,7 +355,7 @@ fn relay_to_para_assets_receiver_assertions(t: RelayToParaTest) { PenpalA, vec![ RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, .. }) => { - asset_id: *asset_id == v3::Location::try_from(RelayLocation::get()).unwrap(), + asset_id: *asset_id == RelayLocation::get(), owner: *owner == t.receiver.account_id, }, RuntimeEvent::MessageQueue( @@ -576,7 +575,7 @@ fn reserve_transfer_native_asset_from_relay_to_para() { let amount_to_send: Balance = WESTEND_ED * 1000; // Init values fot Parachain - let relay_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let relay_native_asset_location = RelayLocation::get(); let receiver = PenpalAReceiver::get(); // Init Test @@ -591,7 +590,7 @@ fn reserve_transfer_native_asset_from_relay_to_para() { let sender_balance_before = test.sender.balance; let receiver_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &receiver) }); // Set assertions and dispatchables @@ -604,7 +603,7 @@ fn reserve_transfer_native_asset_from_relay_to_para() { let sender_balance_after = test.sender.balance; let receiver_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &receiver) }); // Sender's balance is reduced by amount sent plus delivery fees @@ -626,12 +625,12 @@ fn reserve_transfer_native_asset_from_para_to_relay() { let amount_to_send: Balance = WESTEND_ED * 1000; let assets: Assets = (Parent, amount_to_send).into(); let asset_owner = PenpalAssetOwner::get(); - let relay_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let relay_native_asset_location = RelayLocation::get(); // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner), - relay_native_asset_location, + relay_native_asset_location.clone(), sender.clone(), amount_to_send * 2, ); @@ -662,7 +661,7 @@ fn reserve_transfer_native_asset_from_para_to_relay() { // Query initial balances let sender_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &sender) }); let receiver_balance_before = test.receiver.balance; @@ -675,7 +674,7 @@ fn reserve_transfer_native_asset_from_para_to_relay() { // Query final balances let sender_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.into(), &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &sender) }); let receiver_balance_after = test.receiver.balance; @@ -702,7 +701,7 @@ fn reserve_transfer_native_asset_from_system_para_to_para() { let assets: Assets = (Parent, amount_to_send).into(); // Init values for Parachain - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let receiver = PenpalAReceiver::get(); // Init Test @@ -724,7 +723,7 @@ fn reserve_transfer_native_asset_from_system_para_to_para() { let sender_balance_before = test.sender.balance; let receiver_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.into(), &receiver) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &receiver) }); // Set assertions and dispatchables @@ -758,13 +757,13 @@ fn reserve_transfer_native_asset_from_para_to_system_para() { let sender = PenpalASender::get(); let amount_to_send: Balance = ASSET_HUB_WESTEND_ED * 1000; let assets: Assets = (Parent, amount_to_send).into(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let asset_owner = PenpalAssetOwner::get(); // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner), - system_para_native_asset_location, + system_para_native_asset_location.clone(), sender.clone(), amount_to_send * 2, ); @@ -796,7 +795,7 @@ fn reserve_transfer_native_asset_from_para_to_system_para() { // Query initial balances let sender_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &sender) }); let receiver_balance_before = test.receiver.balance; @@ -864,9 +863,8 @@ fn reserve_transfer_assets_from_system_para_to_para() { // Init values for Parachain let receiver = PenpalAReceiver::get(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let system_para_foreign_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); + let system_para_foreign_asset_location = PenpalLocalReservableFromAssetHub::get(); // Init Test let para_test_args = TestContext { @@ -891,11 +889,14 @@ fn reserve_transfer_assets_from_system_para_to_para() { }); let receiver_system_native_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &receiver) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &receiver) }); let receiver_foreign_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_foreign_asset_location, &receiver) + <ForeignAssets as Inspect<_>>::balance( + system_para_foreign_asset_location.clone(), + &receiver, + ) }); // Set assertions and dispatchables @@ -950,13 +951,11 @@ fn reserve_transfer_assets_from_para_to_system_para() { let asset_amount_to_send = ASSET_HUB_WESTEND_ED * 100; let penpal_asset_owner = PenpalAssetOwner::get(); let penpal_asset_owner_signer = <PenpalA as Chain>::RuntimeOrigin::signed(penpal_asset_owner); - let asset_location_on_penpal = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); - let asset_location_on_penpal_latest: Location = asset_location_on_penpal.try_into().unwrap(); - let system_asset_location_on_penpal = v3::Location::try_from(RelayLocation::get()).unwrap(); + let asset_location_on_penpal = PenpalLocalReservableFromAssetHub::get(); + let system_asset_location_on_penpal = RelayLocation::get(); let assets: Assets = vec![ (Parent, fee_amount_to_send).into(), - (asset_location_on_penpal_latest, asset_amount_to_send).into(), + (asset_location_on_penpal.clone(), asset_amount_to_send).into(), ] .into(); let fee_asset_index = assets @@ -984,9 +983,8 @@ fn reserve_transfer_assets_from_para_to_system_para() { let penpal_location_as_seen_by_ahr = AssetHubWestend::sibling_location_of(PenpalA::para_id()); let sov_penpal_on_ahr = AssetHubWestend::sovereign_account_id_of(penpal_location_as_seen_by_ahr); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); - let system_para_foreign_asset_location = - v3::Location::try_from(PenpalLocalReservableFromAssetHub::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); + let system_para_foreign_asset_location = PenpalLocalReservableFromAssetHub::get(); let ah_asset_owner = AssetHubWestendAssetOwner::get(); let ah_asset_owner_signer = <AssetHubWestend as Chain>::RuntimeOrigin::signed(ah_asset_owner); @@ -1021,11 +1019,11 @@ fn reserve_transfer_assets_from_para_to_system_para() { // Query initial balances let sender_system_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(system_para_native_asset_location.clone(), &sender) }); let sender_foreign_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(system_para_foreign_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(system_para_foreign_asset_location.clone(), &sender) }); let receiver_balance_before = test.receiver.balance; let receiver_assets_before = AssetHubWestend::execute_with(|| { @@ -1081,14 +1079,14 @@ fn reserve_transfer_native_asset_from_para_to_para_through_relay() { let amount_to_send: Balance = WESTEND_ED * 10000; let asset_owner = PenpalAssetOwner::get(); let assets = (Parent, amount_to_send).into(); - let relay_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let relay_native_asset_location = RelayLocation::get(); let sender_as_seen_by_relay = Westend::child_location_of(PenpalA::para_id()); let sov_of_sender_on_relay = Westend::sovereign_account_id_of(sender_as_seen_by_relay); // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner), - relay_native_asset_location, + relay_native_asset_location.clone(), sender.clone(), amount_to_send * 2, ); @@ -1110,11 +1108,11 @@ fn reserve_transfer_native_asset_from_para_to_para_through_relay() { // Query initial balances let sender_assets_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &sender) }); let receiver_assets_before = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &receiver) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &receiver) }); // Set assertions and dispatchables @@ -1127,7 +1125,7 @@ fn reserve_transfer_native_asset_from_para_to_para_through_relay() { // Query final balances let sender_assets_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location, &sender) + <ForeignAssets as Inspect<_>>::balance(relay_native_asset_location.clone(), &sender) }); let receiver_assets_after = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/swap.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/swap.rs index 8996893f0f120c398b91b389e40456dcb6e015de..31f763be637079292d3b1aa49bbbfe5668d86653 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/swap.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/swap.rs @@ -17,7 +17,10 @@ use crate::imports::*; #[test] fn swap_locally_on_chain_using_local_assets() { - let asset_native = Box::new(asset_hub_westend_runtime::xcm_config::WestendLocationV3::get()); + let asset_native = Box::new( + v3::Location::try_from(asset_hub_westend_runtime::xcm_config::WestendLocation::get()) + .expect("conversion works"), + ); let asset_one = Box::new(v3::Location { parents: 0, interior: [ @@ -226,11 +229,9 @@ fn swap_locally_on_chain_using_foreign_assets() { #[test] fn cannot_create_pool_from_pool_assets() { - let asset_native = Box::new(asset_hub_westend_runtime::xcm_config::WestendLocationV3::get()); - let mut asset_one = asset_hub_westend_runtime::xcm_config::PoolAssetsPalletLocationV3::get(); - asset_one - .append_with(v3::Junction::GeneralIndex(ASSET_ID.into())) - .expect("pool assets"); + let asset_native = asset_hub_westend_runtime::xcm_config::WestendLocation::get(); + let mut asset_one = asset_hub_westend_runtime::xcm_config::PoolAssetsPalletLocation::get(); + asset_one.append_with(GeneralIndex(ASSET_ID.into())).expect("pool assets"); AssetHubWestend::execute_with(|| { let pool_owner_account_id = asset_hub_westend_runtime::AssetConversionOrigin::get(); @@ -253,8 +254,8 @@ fn cannot_create_pool_from_pool_assets() { assert_matches::assert_matches!( <AssetHubWestend as AssetHubWestendPallet>::AssetConversion::create_pool( <AssetHubWestend as Chain>::RuntimeOrigin::signed(AssetHubWestendSender::get()), - asset_native, - Box::new(asset_one), + Box::new(v3::Location::try_from(asset_native).expect("conversion works")), + Box::new(v3::Location::try_from(asset_one).expect("conversion works")), ), Err(DispatchError::Module(ModuleError{index: _, error: _, message})) => assert_eq!(message, Some("Unknown")) ); @@ -263,7 +264,9 @@ fn cannot_create_pool_from_pool_assets() { #[test] fn pay_xcm_fee_with_some_asset_swapped_for_native() { - let asset_native = asset_hub_westend_runtime::xcm_config::WestendLocationV3::get(); + let asset_native = + v3::Location::try_from(asset_hub_westend_runtime::xcm_config::WestendLocation::get()) + .expect("conversion works"); let asset_one = xcm::v3::Location { parents: 0, interior: [ diff --git a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/teleport.rs b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/teleport.rs index aee2c1b4001d4ccf3db2eafa03220b48925b2e8c..a524b87b2daf3a1352af1ea33b64282c2f4a8137 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/teleport.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/assets/asset-hub-westend/src/tests/teleport.rs @@ -110,7 +110,7 @@ fn para_dest_assertions(t: RelayToSystemParaTest) { fn penpal_to_ah_foreign_assets_sender_assertions(t: ParaToSystemParaTest) { type RuntimeEvent = <PenpalA as Chain>::RuntimeEvent; - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let expected_asset_id = t.args.asset_id.unwrap(); let (_, expected_asset_amount) = non_fee_asset(&t.args.assets, t.args.fee_asset_item as usize).unwrap(); @@ -203,7 +203,7 @@ fn ah_to_penpal_foreign_assets_receiver_assertions(t: SystemParaToParaTest) { let (_, expected_asset_amount) = non_fee_asset(&t.args.assets, t.args.fee_asset_item as usize).unwrap(); let checking_account = <PenpalA as PenpalAPallet>::PolkadotXcm::check_account(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); PenpalA::assert_xcmp_queue_success(None); @@ -420,22 +420,20 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using ) { // Init values for Parachain let fee_amount_to_send: Balance = ASSET_HUB_WESTEND_ED * 100; - let asset_location_on_penpal = - v3::Location::try_from(PenpalLocalTeleportableToAssetHub::get()).unwrap(); + let asset_location_on_penpal = PenpalLocalTeleportableToAssetHub::get(); let asset_id_on_penpal = match asset_location_on_penpal.last() { - Some(v3::Junction::GeneralIndex(id)) => *id as u32, + Some(Junction::GeneralIndex(id)) => *id as u32, _ => unreachable!(), }; let asset_amount_to_send = ASSET_HUB_WESTEND_ED * 100; let asset_owner = PenpalAssetOwner::get(); - let system_para_native_asset_location = v3::Location::try_from(RelayLocation::get()).unwrap(); + let system_para_native_asset_location = RelayLocation::get(); let sender = PenpalASender::get(); let penpal_check_account = <PenpalA as PenpalAPallet>::PolkadotXcm::check_account(); let ah_as_seen_by_penpal = PenpalA::sibling_location_of(AssetHubWestend::para_id()); - let asset_location_on_penpal_latest: Location = asset_location_on_penpal.try_into().unwrap(); let penpal_assets: Assets = vec![ (Parent, fee_amount_to_send).into(), - (asset_location_on_penpal_latest, asset_amount_to_send).into(), + (asset_location_on_penpal.clone(), asset_amount_to_send).into(), ] .into(); let fee_asset_index = penpal_assets @@ -447,7 +445,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using // fund Parachain's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(asset_owner.clone()), - system_para_native_asset_location, + system_para_native_asset_location.clone(), sender.clone(), fee_amount_to_send * 2, ); @@ -474,7 +472,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using // Init values for System Parachain let foreign_asset_at_asset_hub_westend = - v3::Location::new(1, [v3::Junction::Parachain(PenpalA::para_id().into())]) + Location::new(1, [Junction::Parachain(PenpalA::para_id().into())]) .appended_with(asset_location_on_penpal) .unwrap(); let penpal_to_ah_beneficiary_id = AssetHubWestendReceiver::get(); @@ -496,7 +494,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let penpal_sender_balance_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - system_para_native_asset_location, + system_para_native_asset_location.clone(), &PenpalASender::get(), ) }); @@ -510,7 +508,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_receiver_assets_before = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; <Assets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_westend, + foreign_asset_at_asset_hub_westend.clone().try_into().unwrap(), &AssetHubWestendReceiver::get(), ) }); @@ -523,7 +521,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let penpal_sender_balance_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - system_para_native_asset_location, + system_para_native_asset_location.clone(), &PenpalASender::get(), ) }); @@ -537,7 +535,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_receiver_assets_after = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; <Assets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_westend, + foreign_asset_at_asset_hub_westend.clone().try_into().unwrap(), &AssetHubWestendReceiver::get(), ) }); @@ -565,19 +563,17 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using type ForeignAssets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; assert_ok!(ForeignAssets::transfer( <AssetHubWestend as Chain>::RuntimeOrigin::signed(AssetHubWestendReceiver::get()), - foreign_asset_at_asset_hub_westend, + foreign_asset_at_asset_hub_westend.clone().try_into().unwrap(), AssetHubWestendSender::get().into(), asset_amount_to_send, )); }); - let foreign_asset_at_asset_hub_westend_latest: Location = - foreign_asset_at_asset_hub_westend.try_into().unwrap(); let ah_to_penpal_beneficiary_id = PenpalAReceiver::get(); let penpal_as_seen_by_ah = AssetHubWestend::sibling_location_of(PenpalA::para_id()); let ah_assets: Assets = vec![ (Parent, fee_amount_to_send).into(), - (foreign_asset_at_asset_hub_westend_latest, asset_amount_to_send).into(), + (foreign_asset_at_asset_hub_westend.clone(), asset_amount_to_send).into(), ] .into(); let fee_asset_index = ah_assets @@ -605,7 +601,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let penpal_receiver_balance_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - system_para_native_asset_location, + system_para_native_asset_location.clone(), &PenpalAReceiver::get(), ) }); @@ -613,7 +609,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_sender_assets_before = AssetHubWestend::execute_with(|| { type ForeignAssets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_westend, + foreign_asset_at_asset_hub_westend.clone().try_into().unwrap(), &AssetHubWestendSender::get(), ) }); @@ -639,7 +635,7 @@ pub fn do_bidirectional_teleport_foreign_assets_between_para_and_asset_hub_using let ah_sender_assets_after = AssetHubWestend::execute_with(|| { type ForeignAssets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - foreign_asset_at_asset_hub_westend, + foreign_asset_at_asset_hub_westend.clone().try_into().unwrap(), &AssetHubWestendSender::get(), ) }); diff --git a/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/asset_transfers.rs b/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/asset_transfers.rs index 314f02b868c6c0d67c7e21e01bf4651c22d42990..69d625be280454c4368d223fb5092be8df9de39d 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/asset_transfers.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/asset_transfers.rs @@ -168,9 +168,11 @@ fn send_rocs_from_asset_hub_rococo_to_asset_hub_westend() { <Assets as Inspect<_>>::balance(roc_at_asset_hub_westend, &AssetHubWestendReceiver::get()) }); - let roc_at_asset_hub_rococo_latest: Location = roc_at_asset_hub_rococo.try_into().unwrap(); let amount = ASSET_HUB_ROCOCO_ED * 1_000_000; - send_asset_from_asset_hub_rococo_to_asset_hub_westend(roc_at_asset_hub_rococo_latest, amount); + send_asset_from_asset_hub_rococo_to_asset_hub_westend( + roc_at_asset_hub_rococo.try_into().unwrap(), + amount, + ); AssetHubWestend::execute_with(|| { type RuntimeEvent = <AssetHubWestend as Chain>::RuntimeEvent; assert_expected_events!( @@ -238,10 +240,9 @@ fn send_wnds_from_asset_hub_rococo_to_asset_hub_westend() { let receiver_wnds_before = <AssetHubWestend as Chain>::account_data_of(AssetHubWestendReceiver::get()).free; - let wnd_at_asset_hub_rococo_latest: Location = wnd_at_asset_hub_rococo.try_into().unwrap(); let amount_to_send = ASSET_HUB_WESTEND_ED * 1_000; send_asset_from_asset_hub_rococo_to_asset_hub_westend( - wnd_at_asset_hub_rococo_latest.clone(), + Location::try_from(wnd_at_asset_hub_rococo).unwrap(), amount_to_send, ); AssetHubWestend::execute_with(|| { @@ -287,13 +288,11 @@ fn send_wnds_from_asset_hub_rococo_to_asset_hub_westend() { #[test] fn send_rocs_from_penpal_rococo_through_asset_hub_rococo_to_asset_hub_westend() { - let roc_at_rococo_parachains: v3::Location = v3::Parent.into(); - let roc_at_asset_hub_westend = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Rococo)]); - let roc_at_rococo_parachains_latest: Location = roc_at_rococo_parachains.try_into().unwrap(); + let roc_at_rococo_parachains: Location = Parent.into(); + let roc_at_asset_hub_westend = Location::new(2, [Junction::GlobalConsensus(NetworkId::Rococo)]); let owner: AccountId = AssetHubWestend::account_id_of(ALICE); AssetHubWestend::force_create_foreign_asset( - roc_at_asset_hub_westend, + roc_at_asset_hub_westend.clone().try_into().unwrap(), owner, true, ASSET_MIN_BALANCE, @@ -312,7 +311,7 @@ fn send_rocs_from_penpal_rococo_through_asset_hub_rococo_to_asset_hub_westend() // fund Penpal's sender account PenpalA::mint_foreign_asset( <PenpalA as Chain>::RuntimeOrigin::signed(PenpalAssetOwner::get()), - roc_at_rococo_parachains, + roc_at_rococo_parachains.clone(), PenpalASender::get(), amount * 2, ); @@ -322,16 +321,19 @@ fn send_rocs_from_penpal_rococo_through_asset_hub_rococo_to_asset_hub_westend() let sender_rocs_before = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - roc_at_rococo_parachains.into(), + roc_at_rococo_parachains.clone(), &PenpalASender::get(), ) }); let receiver_rocs_before = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(roc_at_asset_hub_westend, &AssetHubWestendReceiver::get()) + <Assets as Inspect<_>>::balance( + roc_at_asset_hub_westend.clone().try_into().unwrap(), + &AssetHubWestendReceiver::get(), + ) }); send_asset_from_penpal_rococo_through_local_asset_hub_to_westend_asset_hub( - roc_at_rococo_parachains_latest, + roc_at_rococo_parachains.clone(), amount, ); @@ -342,7 +344,7 @@ fn send_rocs_from_penpal_rococo_through_asset_hub_rococo_to_asset_hub_westend() vec![ // issue ROCs on AHW RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, .. }) => { - asset_id: *asset_id == roc_at_rococo_parachains, + asset_id: *asset_id == roc_at_rococo_parachains.clone().try_into().unwrap(), owner: *owner == AssetHubWestendReceiver::get(), }, // message processed successfully @@ -355,14 +357,14 @@ fn send_rocs_from_penpal_rococo_through_asset_hub_rococo_to_asset_hub_westend() let sender_rocs_after = PenpalA::execute_with(|| { type ForeignAssets = <PenpalA as PenpalAPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance( - roc_at_rococo_parachains.into(), - &PenpalASender::get(), - ) + <ForeignAssets as Inspect<_>>::balance(roc_at_rococo_parachains, &PenpalASender::get()) }); let receiver_rocs_after = AssetHubWestend::execute_with(|| { type Assets = <AssetHubWestend as AssetHubWestendPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(roc_at_asset_hub_westend, &AssetHubWestendReceiver::get()) + <Assets as Inspect<_>>::balance( + roc_at_asset_hub_westend.try_into().unwrap(), + &AssetHubWestendReceiver::get(), + ) }); let rocs_in_reserve_on_ahr_after = <AssetHubRococo as Chain>::account_data_of(sov_ahw_on_ahr.clone()).free; diff --git a/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/snowbridge.rs b/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/snowbridge.rs index 695b45708460b4b2d96777cef271353539c14c3a..e332eb5bfda7c0a05f618c66e6b65cbf10e6bffc 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/snowbridge.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-rococo/src/tests/snowbridge.rs @@ -306,8 +306,6 @@ fn send_token_from_ethereum_to_penpal() { // The Weth asset location, identified by the contract address on Ethereum let weth_asset_location: Location = (Parent, Parent, EthereumNetwork::get(), AccountKey20 { network: None, key: WETH }).into(); - // Converts the Weth asset location into an asset ID - let weth_asset_id: v3::Location = weth_asset_location.try_into().unwrap(); let origin_location = (Parent, Parent, EthereumNetwork::get()).into(); @@ -321,12 +319,12 @@ fn send_token_from_ethereum_to_penpal() { PenpalA::execute_with(|| { assert_ok!(<PenpalA as PenpalAPallet>::ForeignAssets::create( <PenpalA as Chain>::RuntimeOrigin::signed(PenpalASender::get()), - weth_asset_id, + weth_asset_location.clone(), asset_hub_sovereign.into(), 1000, )); - assert!(<PenpalA as PenpalAPallet>::ForeignAssets::asset_exists(weth_asset_id)); + assert!(<PenpalA as PenpalAPallet>::ForeignAssets::asset_exists(weth_asset_location)); }); BridgeHubRococo::execute_with(|| { diff --git a/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-westend/src/tests/asset_transfers.rs b/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-westend/src/tests/asset_transfers.rs index f76a4224b90a57fc51453dbb83f0aa7b10251d31..3a8ce7d43f3e6da98fb2160a62c43c3964f0fe77 100644 --- a/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-westend/src/tests/asset_transfers.rs +++ b/cumulus/parachains/integration-tests/emulated/tests/bridges/bridge-hub-westend/src/tests/asset_transfers.rs @@ -236,10 +236,9 @@ fn send_rocs_from_asset_hub_westend_to_asset_hub_rococo() { let receiver_rocs_before = <AssetHubRococo as Chain>::account_data_of(AssetHubRococoReceiver::get()).free; - let roc_at_asset_hub_westend_latest: Location = roc_at_asset_hub_westend.try_into().unwrap(); let amount_to_send = ASSET_HUB_ROCOCO_ED * 1_000; send_asset_from_asset_hub_westend_to_asset_hub_rococo( - roc_at_asset_hub_westend_latest.clone(), + roc_at_asset_hub_westend.try_into().unwrap(), amount_to_send, ); AssetHubRococo::execute_with(|| { @@ -285,13 +284,11 @@ fn send_rocs_from_asset_hub_westend_to_asset_hub_rococo() { #[test] fn send_wnds_from_penpal_westend_through_asset_hub_westend_to_asset_hub_rococo() { - let wnd_at_westend_parachains: v3::Location = v3::Parent.into(); - let wnd_at_asset_hub_rococo = - v3::Location::new(2, [v3::Junction::GlobalConsensus(v3::NetworkId::Westend)]); - let wnd_at_westend_parachains_latest: Location = wnd_at_westend_parachains.try_into().unwrap(); + let wnd_at_westend_parachains: Location = Parent.into(); + let wnd_at_asset_hub_rococo = Location::new(2, [Junction::GlobalConsensus(NetworkId::Westend)]); let owner: AccountId = AssetHubRococo::account_id_of(ALICE); AssetHubRococo::force_create_foreign_asset( - wnd_at_asset_hub_rococo, + wnd_at_asset_hub_rococo.clone().try_into().unwrap(), owner, true, ASSET_MIN_BALANCE, @@ -310,7 +307,7 @@ fn send_wnds_from_penpal_westend_through_asset_hub_westend_to_asset_hub_rococo() // fund Penpal's sender account PenpalB::mint_foreign_asset( <PenpalB as Chain>::RuntimeOrigin::signed(PenpalAssetOwner::get()), - wnd_at_westend_parachains, + wnd_at_westend_parachains.clone(), PenpalBSender::get(), amount * 2, ); @@ -320,16 +317,19 @@ fn send_wnds_from_penpal_westend_through_asset_hub_westend_to_asset_hub_rococo() let sender_wnds_before = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; <ForeignAssets as Inspect<_>>::balance( - wnd_at_westend_parachains.into(), + wnd_at_westend_parachains.clone(), &PenpalBSender::get(), ) }); let receiver_wnds_before = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(wnd_at_asset_hub_rococo, &AssetHubRococoReceiver::get()) + <Assets as Inspect<_>>::balance( + wnd_at_asset_hub_rococo.clone().try_into().unwrap(), + &AssetHubRococoReceiver::get(), + ) }); send_asset_from_penpal_westend_through_local_asset_hub_to_rococo_asset_hub( - wnd_at_westend_parachains_latest, + wnd_at_westend_parachains.clone(), amount, ); @@ -340,7 +340,7 @@ fn send_wnds_from_penpal_westend_through_asset_hub_westend_to_asset_hub_rococo() vec![ // issue WNDs on AHR RuntimeEvent::ForeignAssets(pallet_assets::Event::Issued { asset_id, owner, .. }) => { - asset_id: *asset_id == wnd_at_westend_parachains, + asset_id: *asset_id == wnd_at_westend_parachains.clone().try_into().unwrap(), owner: *owner == AssetHubRococoReceiver::get(), }, // message processed successfully @@ -353,14 +353,14 @@ fn send_wnds_from_penpal_westend_through_asset_hub_westend_to_asset_hub_rococo() let sender_wnds_after = PenpalB::execute_with(|| { type ForeignAssets = <PenpalB as PenpalBPallet>::ForeignAssets; - <ForeignAssets as Inspect<_>>::balance( - wnd_at_westend_parachains.into(), - &PenpalBSender::get(), - ) + <ForeignAssets as Inspect<_>>::balance(wnd_at_westend_parachains, &PenpalBSender::get()) }); let receiver_wnds_after = AssetHubRococo::execute_with(|| { type Assets = <AssetHubRococo as AssetHubRococoPallet>::ForeignAssets; - <Assets as Inspect<_>>::balance(wnd_at_asset_hub_rococo, &AssetHubRococoReceiver::get()) + <Assets as Inspect<_>>::balance( + wnd_at_asset_hub_rococo.try_into().unwrap(), + &AssetHubRococoReceiver::get(), + ) }); let wnds_in_reserve_on_ahw_after = <AssetHubWestend as Chain>::account_data_of(sov_ahr_on_ahw.clone()).free; diff --git a/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/lib.rs b/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/lib.rs index 0ee98e6c22bff9c2db4a6f7d12da6085762b09cc..23d8f9b667dd86ce3de7fd2a3a2159710ab68351 100644 --- a/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/lib.rs +++ b/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/lib.rs @@ -316,7 +316,7 @@ pub type LocalAndForeignAssets = fungibles::UnionOf< Assets, ForeignAssets, LocalFromLeft< - AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3>, + AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3, xcm::v3::Location>, AssetIdForTrustBackedAssets, xcm::v3::Location, >, diff --git a/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/xcm_config.rs b/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/xcm_config.rs index 1c58abcb379e6569ecf838a047259c2e3304064e..fceb82b6b06b1ee60a439003534f2120f7333398 100644 --- a/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/xcm_config.rs +++ b/cumulus/parachains/runtimes/assets/asset-hub-rococo/src/xcm_config.rs @@ -82,8 +82,6 @@ parameter_types! { PalletInstance(<PoolAssets as PalletInfoAccess>::index() as u8).into(); pub UniquesPalletLocation: Location = PalletInstance(<Uniques as PalletInfoAccess>::index() as u8).into(); - pub PoolAssetsPalletLocationV3: xcm::v3::Location = - xcm::v3::Junction::PalletInstance(<PoolAssets as PalletInfoAccess>::index() as u8).into(); pub CheckingAccount: AccountId = PolkadotXcm::check_account(); pub const GovernanceLocation: Location = Location::parent(); pub StakingPot: AccountId = CollatorSelection::account_id(); @@ -179,6 +177,7 @@ pub type ForeignAssetsConvertedConcreteId = assets_common::ForeignAssetsConverte StartsWithExplicitGlobalConsensus<UniversalLocationNetworkId>, ), Balance, + xcm::v3::Location, >; /// Means for transacting foreign assets from different global consensus. @@ -581,7 +580,11 @@ impl xcm_executor::Config for XcmConfig { WeightToFee, crate::NativeAndAssets, ( - TrustBackedAssetsAsLocation<TrustBackedAssetsPalletLocation, Balance>, + TrustBackedAssetsAsLocation< + TrustBackedAssetsPalletLocation, + Balance, + xcm::v3::Location, + >, ForeignAssetsConvertedConcreteId, ), ResolveAssetTo<StakingPot, crate::NativeAndAssets>, diff --git a/cumulus/parachains/runtimes/assets/asset-hub-rococo/tests/tests.rs b/cumulus/parachains/runtimes/assets/asset-hub-rococo/tests/tests.rs index 5fa7455ad2a0b5620a6f6934b87acfe3b85d4f57..f670c5f424efeac0e00ddf472f1948e06d93bd68 100644 --- a/cumulus/parachains/runtimes/assets/asset-hub-rococo/tests/tests.rs +++ b/cumulus/parachains/runtimes/assets/asset-hub-rococo/tests/tests.rs @@ -22,8 +22,7 @@ use asset_hub_rococo_runtime::{ xcm_config::{ bridging, AssetFeeAsExistentialDepositMultiplierFeeCharger, CheckingAccount, ForeignAssetFeeAsExistentialDepositMultiplierFeeCharger, ForeignCreatorsSovereignAccountOf, - LocationToAccountId, StakingPot, TokenLocation, TokenLocationV3, - TrustBackedAssetsPalletLocation, TrustBackedAssetsPalletLocationV3, XcmConfig, + LocationToAccountId, StakingPot, TokenLocation, TrustBackedAssetsPalletLocation, XcmConfig, }, AllPalletsWithoutSystem, AssetConversion, AssetDeposit, Assets, Balances, CollatorSelection, ExistentialDeposit, ForeignAssets, ForeignAssetsInstance, MetadataDepositBase, @@ -53,17 +52,14 @@ use sp_std::ops::Mul; use std::convert::Into; use testnet_parachains_constants::rococo::{consensus::*, currency::UNITS, fee::WeightToFee}; use xcm::latest::prelude::{Assets as XcmAssets, *}; -use xcm_builder::V4V3LocationConverter; +use xcm_builder::WithLatestLocationConverter; use xcm_executor::traits::{JustTry, WeightTrader}; const ALICE: [u8; 32] = [1u8; 32]; const SOME_ASSET_ADMIN: [u8; 32] = [5u8; 32]; type AssetIdForTrustBackedAssetsConvert = - assets_common::AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3>; - -type AssetIdForTrustBackedAssetsConvertLatest = - assets_common::AssetIdForTrustBackedAssetsConvertLatest<TrustBackedAssetsPalletLocation>; + assets_common::AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocation>; type RuntimeHelper = asset_test_utils::RuntimeHelper<Runtime, AllPalletsWithoutSystem>; @@ -204,7 +200,7 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { let bob: AccountId = SOME_ASSET_ADMIN.into(); let staking_pot = CollatorSelection::account_id(); let asset_1: u32 = 1; - let native_location = TokenLocationV3::get(); + let native_location = TokenLocation::get(); let asset_1_location = AssetIdForTrustBackedAssetsConvert::convert_back(&asset_1).unwrap(); // bob's initial balance for native and `asset1` assets. @@ -221,14 +217,24 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { assert_ok!(AssetConversion::create_pool( RuntimeHelper::origin_of(bob.clone()), - Box::new(native_location), - Box::new(asset_1_location) + Box::new( + xcm::v3::Location::try_from(native_location.clone()).expect("conversion works") + ), + Box::new( + xcm::v3::Location::try_from(asset_1_location.clone()) + .expect("conversion works") + ) )); assert_ok!(AssetConversion::add_liquidity( RuntimeHelper::origin_of(bob.clone()), - Box::new(native_location), - Box::new(asset_1_location), + Box::new( + xcm::v3::Location::try_from(native_location.clone()).expect("conversion works") + ), + Box::new( + xcm::v3::Location::try_from(asset_1_location.clone()) + .expect("conversion works") + ), pool_liquidity, pool_liquidity, 1, @@ -240,8 +246,6 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { let asset_total_issuance = Assets::total_issuance(asset_1); let native_total_issuance = Balances::total_issuance(); - let asset_1_location_latest: Location = asset_1_location.try_into().unwrap(); - // prepare input to buy weight. let weight = Weight::from_parts(4_000_000_000, 0); let fee = WeightToFee::weight_to_fee(&weight); @@ -249,7 +253,7 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { AssetConversion::get_amount_in(&fee, &pool_liquidity, &pool_liquidity).unwrap(); let extra_amount = 100; let ctx = XcmContext { origin: None, message_id: XcmHash::default(), topic: None }; - let payment: Asset = (asset_1_location_latest.clone(), asset_fee + extra_amount).into(); + let payment: Asset = (asset_1_location.clone(), asset_fee + extra_amount).into(); // init trader and buy weight. let mut trader = <XcmConfig as xcm_executor::Config>::Trader::new(); @@ -257,24 +261,25 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { trader.buy_weight(weight, payment.into(), &ctx).expect("Expected Ok"); // assert. - let unused_amount = unused_asset - .fungible - .get(&asset_1_location_latest.clone().into()) - .map_or(0, |a| *a); + let unused_amount = + unused_asset.fungible.get(&asset_1_location.clone().into()).map_or(0, |a| *a); assert_eq!(unused_amount, extra_amount); assert_eq!(Assets::total_issuance(asset_1), asset_total_issuance + asset_fee); // prepare input to refund weight. let refund_weight = Weight::from_parts(1_000_000_000, 0); let refund = WeightToFee::weight_to_fee(&refund_weight); - let (reserve1, reserve2) = - AssetConversion::get_reserves(native_location, asset_1_location).unwrap(); + let (reserve1, reserve2) = AssetConversion::get_reserves( + xcm::v3::Location::try_from(native_location).expect("conversion works"), + xcm::v3::Location::try_from(asset_1_location.clone()).expect("conversion works"), + ) + .unwrap(); let asset_refund = AssetConversion::get_amount_out(&refund, &reserve1, &reserve2).unwrap(); // refund. let actual_refund = trader.refund_weight(refund_weight, &ctx).unwrap(); - assert_eq!(actual_refund, (asset_1_location_latest, asset_refund).into()); + assert_eq!(actual_refund, (asset_1_location, asset_refund).into()); // assert. assert_eq!(Balances::balance(&staking_pot), initial_balance); @@ -303,7 +308,8 @@ fn test_buy_and_refund_weight_with_swap_foreign_asset_xcm_trader() { .execute_with(|| { let bob: AccountId = SOME_ASSET_ADMIN.into(); let staking_pot = CollatorSelection::account_id(); - let native_location = TokenLocationV3::get(); + let native_location = + xcm::v3::Location::try_from(TokenLocation::get()).expect("conversion works"); let foreign_location = xcm::v3::Location { parents: 1, interior: ( @@ -435,7 +441,7 @@ fn test_asset_xcm_take_first_trader() { // get asset id as location let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&local_asset_id).unwrap(); + AssetIdForTrustBackedAssetsConvert::convert_back(&local_asset_id).unwrap(); // Set Alice as block author, who will receive fees RuntimeHelper::run_to_block(2, AccountId::from(ALICE)); @@ -603,9 +609,7 @@ fn test_asset_xcm_take_first_trader_with_refund() { // We are going to buy 4e9 weight let bought = Weight::from_parts(4_000_000_000u64, 0); - - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); // lets calculate amount needed let amount_bought = WeightToFee::weight_to_fee(&bought); @@ -623,7 +627,7 @@ fn test_asset_xcm_take_first_trader_with_refund() { // We actually use half of the weight let weight_used = bought / 2; - // Make sure refurnd works. + // Make sure refund works. let amount_refunded = WeightToFee::weight_to_fee(&(bought - weight_used)); assert_eq!( @@ -677,8 +681,7 @@ fn test_asset_xcm_take_first_trader_refund_not_possible_since_amount_less_than_e // We are going to buy small amount let bought = Weight::from_parts(500_000_000u64, 0); - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); let amount_bought = WeightToFee::weight_to_fee(&bought); @@ -730,8 +733,7 @@ fn test_that_buying_ed_refund_does_not_refund_for_take_first_trader() { // We are gonna buy ED let bought = Weight::from_parts(ExistentialDeposit::get().try_into().unwrap(), 0); - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); let amount_bought = WeightToFee::weight_to_fee(&bought); @@ -807,8 +809,7 @@ fn test_asset_xcm_trader_not_possible_for_non_sufficient_assets() { // lets calculate amount needed let asset_amount_needed = WeightToFee::weight_to_fee(&bought); - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); let asset: Asset = (asset_location, asset_amount_needed).into(); @@ -925,13 +926,16 @@ fn test_assets_balances_api_works() { ))); // check trusted asset assert!(result.inner().iter().any(|asset| asset.eq(&( - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&local_asset_id).unwrap(), + AssetIdForTrustBackedAssetsConvert::convert_back(&local_asset_id).unwrap(), minimum_asset_balance ) .into()))); // check foreign asset assert!(result.inner().iter().any(|asset| asset.eq(&( - V4V3LocationConverter::convert_back(&foreign_asset_id_location).unwrap(), + WithLatestLocationConverter::<xcm::v3::Location>::convert_back( + &foreign_asset_id_location + ) + .unwrap(), 6 * foreign_asset_minimum_asset_balance ) .into()))); @@ -1004,7 +1008,7 @@ asset_test_utils::include_asset_transactor_transfer_with_pallet_assets_instance_ XcmConfig, TrustBackedAssetsInstance, AssetIdForTrustBackedAssets, - AssetIdForTrustBackedAssetsConvertLatest, + AssetIdForTrustBackedAssetsConvert, collator_session_keys(), ExistentialDeposit::get(), 12345, @@ -1044,7 +1048,7 @@ asset_test_utils::include_create_and_manage_foreign_assets_for_local_consensus_p ForeignCreatorsSovereignAccountOf, ForeignAssetsInstance, xcm::v3::Location, - V4V3LocationConverter, + WithLatestLocationConverter<xcm::v3::Location>, collator_session_keys(), ExistentialDeposit::get(), AssetDeposit::get(), diff --git a/cumulus/parachains/runtimes/assets/asset-hub-westend/src/lib.rs b/cumulus/parachains/runtimes/assets/asset-hub-westend/src/lib.rs index c1fb6367312a1fd685e0e20a77f371c504d7293d..cb2f11637187dceabd05d592ffff5b24b2c0eb6e 100644 --- a/cumulus/parachains/runtimes/assets/asset-hub-westend/src/lib.rs +++ b/cumulus/parachains/runtimes/assets/asset-hub-westend/src/lib.rs @@ -298,7 +298,7 @@ pub type LocalAndForeignAssets = fungibles::UnionOf< Assets, ForeignAssets, LocalFromLeft< - AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3>, + AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3, xcm::v3::Location>, AssetIdForTrustBackedAssets, xcm::v3::Location, >, diff --git a/cumulus/parachains/runtimes/assets/asset-hub-westend/src/xcm_config.rs b/cumulus/parachains/runtimes/assets/asset-hub-westend/src/xcm_config.rs index 360b1a7055b70ab7448c6ca180207fc499fff9f8..41e941ee9a2b10f2a3e7fdbe723489e4cc6c4497 100644 --- a/cumulus/parachains/runtimes/assets/asset-hub-westend/src/xcm_config.rs +++ b/cumulus/parachains/runtimes/assets/asset-hub-westend/src/xcm_config.rs @@ -78,8 +78,6 @@ parameter_types! { PalletInstance(<PoolAssets as PalletInfoAccess>::index() as u8).into(); pub UniquesPalletLocation: Location = PalletInstance(<Uniques as PalletInfoAccess>::index() as u8).into(); - pub PoolAssetsPalletLocationV3: xcm::v3::Location = - xcm::v3::Junction::PalletInstance(<PoolAssets as PalletInfoAccess>::index() as u8).into(); pub CheckingAccount: AccountId = PolkadotXcm::check_account(); pub StakingPot: AccountId = CollatorSelection::account_id(); pub TreasuryAccount: AccountId = TREASURY_PALLET_ID.into_account_truncating(); @@ -172,6 +170,7 @@ pub type ForeignAssetsConvertedConcreteId = assets_common::ForeignAssetsConverte StartsWithExplicitGlobalConsensus<UniversalLocationNetworkId>, ), Balance, + xcm::v3::Location, >; /// Means for transacting foreign assets from different global consensus. @@ -603,7 +602,11 @@ impl xcm_executor::Config for XcmConfig { WeightToFee, crate::NativeAndAssets, ( - TrustBackedAssetsAsLocation<TrustBackedAssetsPalletLocation, Balance>, + TrustBackedAssetsAsLocation< + TrustBackedAssetsPalletLocation, + Balance, + xcm::v3::Location, + >, ForeignAssetsConvertedConcreteId, ), ResolveAssetTo<StakingPot, crate::NativeAndAssets>, diff --git a/cumulus/parachains/runtimes/assets/asset-hub-westend/tests/tests.rs b/cumulus/parachains/runtimes/assets/asset-hub-westend/tests/tests.rs index 6696cb2322391c2dbad5f6c9a0afc4d5537de68c..b5957dd5df92ff1180909535cb6e604deadd8829 100644 --- a/cumulus/parachains/runtimes/assets/asset-hub-westend/tests/tests.rs +++ b/cumulus/parachains/runtimes/assets/asset-hub-westend/tests/tests.rs @@ -22,8 +22,8 @@ use asset_hub_westend_runtime::{ xcm_config::{ bridging, AssetFeeAsExistentialDepositMultiplierFeeCharger, CheckingAccount, ForeignAssetFeeAsExistentialDepositMultiplierFeeCharger, ForeignCreatorsSovereignAccountOf, - LocationToAccountId, StakingPot, TrustBackedAssetsPalletLocation, - TrustBackedAssetsPalletLocationV3, WestendLocation, WestendLocationV3, XcmConfig, + LocationToAccountId, StakingPot, TrustBackedAssetsPalletLocation, WestendLocation, + XcmConfig, }, AllPalletsWithoutSystem, Assets, Balances, ExistentialDeposit, ForeignAssets, ForeignAssetsInstance, MetadataDepositBase, MetadataDepositPerByte, ParachainSystem, @@ -53,17 +53,14 @@ use sp_runtime::traits::MaybeEquivalence; use std::{convert::Into, ops::Mul}; use testnet_parachains_constants::westend::{consensus::*, currency::UNITS, fee::WeightToFee}; use xcm::latest::prelude::{Assets as XcmAssets, *}; -use xcm_builder::V4V3LocationConverter; +use xcm_builder::WithLatestLocationConverter; use xcm_executor::traits::{ConvertLocation, JustTry, WeightTrader}; const ALICE: [u8; 32] = [1u8; 32]; const SOME_ASSET_ADMIN: [u8; 32] = [5u8; 32]; type AssetIdForTrustBackedAssetsConvert = - assets_common::AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3>; - -type AssetIdForTrustBackedAssetsConvertLatest = - assets_common::AssetIdForTrustBackedAssetsConvertLatest<TrustBackedAssetsPalletLocation>; + assets_common::AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocation>; type RuntimeHelper = asset_test_utils::RuntimeHelper<Runtime, AllPalletsWithoutSystem>; @@ -204,7 +201,7 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { let bob: AccountId = SOME_ASSET_ADMIN.into(); let staking_pot = CollatorSelection::account_id(); let asset_1: u32 = 1; - let native_location = WestendLocationV3::get(); + let native_location = WestendLocation::get(); let asset_1_location = AssetIdForTrustBackedAssetsConvert::convert_back(&asset_1).unwrap(); // bob's initial balance for native and `asset1` assets. @@ -221,14 +218,24 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { assert_ok!(AssetConversion::create_pool( RuntimeHelper::origin_of(bob.clone()), - Box::new(native_location), - Box::new(asset_1_location) + Box::new( + xcm::v3::Location::try_from(native_location.clone()).expect("conversion works") + ), + Box::new( + xcm::v3::Location::try_from(asset_1_location.clone()) + .expect("conversion works") + ) )); assert_ok!(AssetConversion::add_liquidity( RuntimeHelper::origin_of(bob.clone()), - Box::new(native_location), - Box::new(asset_1_location), + Box::new( + xcm::v3::Location::try_from(native_location.clone()).expect("conversion works") + ), + Box::new( + xcm::v3::Location::try_from(asset_1_location.clone()) + .expect("conversion works") + ), pool_liquidity, pool_liquidity, 1, @@ -240,8 +247,6 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { let asset_total_issuance = Assets::total_issuance(asset_1); let native_total_issuance = Balances::total_issuance(); - let asset_1_location_latest: Location = asset_1_location.try_into().unwrap(); - // prepare input to buy weight. let weight = Weight::from_parts(4_000_000_000, 0); let fee = WeightToFee::weight_to_fee(&weight); @@ -249,7 +254,7 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { AssetConversion::get_amount_in(&fee, &pool_liquidity, &pool_liquidity).unwrap(); let extra_amount = 100; let ctx = XcmContext { origin: None, message_id: XcmHash::default(), topic: None }; - let payment: Asset = (asset_1_location_latest.clone(), asset_fee + extra_amount).into(); + let payment: Asset = (asset_1_location.clone(), asset_fee + extra_amount).into(); // init trader and buy weight. let mut trader = <XcmConfig as xcm_executor::Config>::Trader::new(); @@ -257,24 +262,25 @@ fn test_buy_and_refund_weight_with_swap_local_asset_xcm_trader() { trader.buy_weight(weight, payment.into(), &ctx).expect("Expected Ok"); // assert. - let unused_amount = unused_asset - .fungible - .get(&asset_1_location_latest.clone().into()) - .map_or(0, |a| *a); + let unused_amount = + unused_asset.fungible.get(&asset_1_location.clone().into()).map_or(0, |a| *a); assert_eq!(unused_amount, extra_amount); assert_eq!(Assets::total_issuance(asset_1), asset_total_issuance + asset_fee); // prepare input to refund weight. let refund_weight = Weight::from_parts(1_000_000_000, 0); let refund = WeightToFee::weight_to_fee(&refund_weight); - let (reserve1, reserve2) = - AssetConversion::get_reserves(native_location, asset_1_location).unwrap(); + let (reserve1, reserve2) = AssetConversion::get_reserves( + xcm::v3::Location::try_from(native_location).expect("conversion works"), + xcm::v3::Location::try_from(asset_1_location.clone()).expect("conversion works"), + ) + .unwrap(); let asset_refund = AssetConversion::get_amount_out(&refund, &reserve1, &reserve2).unwrap(); // refund. let actual_refund = trader.refund_weight(refund_weight, &ctx).unwrap(); - assert_eq!(actual_refund, (asset_1_location_latest, asset_refund).into()); + assert_eq!(actual_refund, (asset_1_location, asset_refund).into()); // assert. assert_eq!(Balances::balance(&staking_pot), initial_balance); @@ -303,7 +309,8 @@ fn test_buy_and_refund_weight_with_swap_foreign_asset_xcm_trader() { .execute_with(|| { let bob: AccountId = SOME_ASSET_ADMIN.into(); let staking_pot = CollatorSelection::account_id(); - let native_location = WestendLocationV3::get(); + let native_location = + xcm::v3::Location::try_from(WestendLocation::get()).expect("conversion works"); let foreign_location = xcm::v3::Location { parents: 1, interior: ( @@ -435,7 +442,7 @@ fn test_asset_xcm_take_first_trader() { // get asset id as location let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&local_asset_id).unwrap(); + AssetIdForTrustBackedAssetsConvert::convert_back(&local_asset_id).unwrap(); // Set Alice as block author, who will receive fees RuntimeHelper::run_to_block(2, AccountId::from(ALICE)); @@ -599,8 +606,7 @@ fn test_asset_xcm_take_first_trader_with_refund() { // We are going to buy 4e9 weight let bought = Weight::from_parts(4_000_000_000u64, 0); - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); // lets calculate amount needed let amount_bought = WeightToFee::weight_to_fee(&bought); @@ -672,8 +678,7 @@ fn test_asset_xcm_take_first_trader_refund_not_possible_since_amount_less_than_e // We are going to buy small amount let bought = Weight::from_parts(500_000_000u64, 0); - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); let amount_bought = WeightToFee::weight_to_fee(&bought); @@ -724,8 +729,7 @@ fn test_that_buying_ed_refund_does_not_refund_for_take_first_trader() { let bought = Weight::from_parts(500_000_000u64, 0); - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); let amount_bought = WeightToFee::weight_to_fee(&bought); @@ -801,8 +805,7 @@ fn test_asset_xcm_take_first_trader_not_possible_for_non_sufficient_assets() { // lets calculate amount needed let asset_amount_needed = WeightToFee::weight_to_fee(&bought); - let asset_location = - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&1).unwrap(); + let asset_location = AssetIdForTrustBackedAssetsConvert::convert_back(&1).unwrap(); let asset: Asset = (asset_location, asset_amount_needed).into(); @@ -923,13 +926,16 @@ fn test_assets_balances_api_works() { ))); // check trusted asset assert!(result.inner().iter().any(|asset| asset.eq(&( - AssetIdForTrustBackedAssetsConvertLatest::convert_back(&local_asset_id).unwrap(), + AssetIdForTrustBackedAssetsConvert::convert_back(&local_asset_id).unwrap(), minimum_asset_balance ) .into()))); // check foreign asset assert!(result.inner().iter().any(|asset| asset.eq(&( - V4V3LocationConverter::convert_back(&foreign_asset_id_location).unwrap(), + WithLatestLocationConverter::<xcm::v3::Location>::convert_back( + &foreign_asset_id_location + ) + .unwrap(), 6 * foreign_asset_minimum_asset_balance ) .into()))); @@ -1002,7 +1008,7 @@ asset_test_utils::include_asset_transactor_transfer_with_pallet_assets_instance_ XcmConfig, TrustBackedAssetsInstance, AssetIdForTrustBackedAssets, - AssetIdForTrustBackedAssetsConvertLatest, + AssetIdForTrustBackedAssetsConvert, collator_session_keys(), ExistentialDeposit::get(), 12345, @@ -1043,7 +1049,7 @@ asset_test_utils::include_create_and_manage_foreign_assets_for_local_consensus_p ForeignCreatorsSovereignAccountOf, ForeignAssetsInstance, xcm::v3::Location, - V4V3LocationConverter, + WithLatestLocationConverter<xcm::v3::Location>, collator_session_keys(), ExistentialDeposit::get(), AssetDeposit::get(), diff --git a/cumulus/parachains/runtimes/assets/common/src/lib.rs b/cumulus/parachains/runtimes/assets/common/src/lib.rs index fa2752179eb6fd238eb8596d8e3ebddf947680d3..431b5766147aeb8279ed2b1298691ceede856e5e 100644 --- a/cumulus/parachains/runtimes/assets/common/src/lib.rs +++ b/cumulus/parachains/runtimes/assets/common/src/lib.rs @@ -26,36 +26,37 @@ pub mod runtime_api; use crate::matching::{LocalLocationPattern, ParentLocation}; use frame_support::traits::{Equals, EverythingBut}; use parachains_common::{AssetIdForTrustBackedAssets, CollectionId, ItemId}; +use sp_runtime::traits::TryConvertInto; +use xcm::latest::Location; use xcm_builder::{ - AsPrefixedGeneralIndex, MatchedConvertedConcreteId, StartsWith, V4V3LocationConverter, + AsPrefixedGeneralIndex, MatchedConvertedConcreteId, StartsWith, WithLatestLocationConverter, }; -use xcm_executor::traits::JustTry; /// `Location` vs `AssetIdForTrustBackedAssets` converter for `TrustBackedAssets` -pub type AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocation> = +pub type AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocation, L = Location> = AsPrefixedGeneralIndex< TrustBackedAssetsPalletLocation, AssetIdForTrustBackedAssets, - JustTry, - xcm::v3::Location, + TryConvertInto, + L, >; -pub type AssetIdForTrustBackedAssetsConvertLatest<TrustBackedAssetsPalletLocation> = - AsPrefixedGeneralIndex<TrustBackedAssetsPalletLocation, AssetIdForTrustBackedAssets, JustTry>; - /// `Location` vs `CollectionId` converter for `Uniques` pub type CollectionIdForUniquesConvert<UniquesPalletLocation> = - AsPrefixedGeneralIndex<UniquesPalletLocation, CollectionId, JustTry>; + AsPrefixedGeneralIndex<UniquesPalletLocation, CollectionId, TryConvertInto>; /// [`MatchedConvertedConcreteId`] converter dedicated for `TrustBackedAssets` -pub type TrustBackedAssetsConvertedConcreteId<TrustBackedAssetsPalletLocation, Balance> = - MatchedConvertedConcreteId< - AssetIdForTrustBackedAssets, - Balance, - StartsWith<TrustBackedAssetsPalletLocation>, - AssetIdForTrustBackedAssetsConvertLatest<TrustBackedAssetsPalletLocation>, - JustTry, - >; +pub type TrustBackedAssetsConvertedConcreteId< + TrustBackedAssetsPalletLocation, + Balance, + L = Location, +> = MatchedConvertedConcreteId< + AssetIdForTrustBackedAssets, + Balance, + StartsWith<TrustBackedAssetsPalletLocation>, + AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocation, L>, + TryConvertInto, +>; /// [`MatchedConvertedConcreteId`] converter dedicated for `Uniques` pub type UniquesConvertedConcreteId<UniquesPalletLocation> = MatchedConvertedConcreteId< @@ -65,28 +66,26 @@ pub type UniquesConvertedConcreteId<UniquesPalletLocation> = MatchedConvertedCon // junction within the pallet itself. StartsWith<UniquesPalletLocation>, CollectionIdForUniquesConvert<UniquesPalletLocation>, - JustTry, + TryConvertInto, >; -/// [`MatchedConvertedConcreteId`] converter dedicated for storing `AssetId` as `Location`. -pub type LocationConvertedConcreteId<LocationFilter, Balance> = MatchedConvertedConcreteId< - xcm::v3::Location, +/// [`MatchedConvertedConcreteId`] converter dedicated for `TrustBackedAssets`, +/// it is a similar implementation to `TrustBackedAssetsConvertedConcreteId`, +/// but it converts `AssetId` to `xcm::v*::Location` type instead of `AssetIdForTrustBackedAssets = +/// u32` +pub type TrustBackedAssetsAsLocation< + TrustBackedAssetsPalletLocation, Balance, - LocationFilter, - V4V3LocationConverter, - JustTry, + L, + LocationConverter = WithLatestLocationConverter<L>, +> = MatchedConvertedConcreteId< + L, + Balance, + StartsWith<TrustBackedAssetsPalletLocation>, + LocationConverter, + TryConvertInto, >; -/// [`MatchedConvertedConcreteId`] converter dedicated for `TrustBackedAssets` -pub type TrustBackedAssetsAsLocation<TrustBackedAssetsPalletLocation, Balance> = - MatchedConvertedConcreteId< - xcm::v3::Location, - Balance, - StartsWith<TrustBackedAssetsPalletLocation>, - V4V3LocationConverter, - JustTry, - >; - /// [`MatchedConvertedConcreteId`] converter dedicated for storing `ForeignAssets` with `AssetId` as /// `Location`. /// @@ -95,26 +94,34 @@ pub type TrustBackedAssetsAsLocation<TrustBackedAssetsPalletLocation, Balance> = /// - all local Locations /// /// `AdditionalLocationExclusionFilter` can customize additional excluded Locations -pub type ForeignAssetsConvertedConcreteId<AdditionalLocationExclusionFilter, Balance> = - LocationConvertedConcreteId< - EverythingBut<( - // Excludes relay/parent chain currency - Equals<ParentLocation>, - // Here we rely on fact that something like this works: - // assert!(Location::new(1, - // [Parachain(100)]).starts_with(&Location::parent())); - // assert!([Parachain(100)].into().starts_with(&Here)); - StartsWith<LocalLocationPattern>, - // Here we can exclude more stuff or leave it as `()` - AdditionalLocationExclusionFilter, - )>, - Balance, - >; +pub type ForeignAssetsConvertedConcreteId< + AdditionalLocationExclusionFilter, + Balance, + AssetId, + LocationToAssetIdConverter = WithLatestLocationConverter<AssetId>, + BalanceConverter = TryConvertInto, +> = MatchedConvertedConcreteId< + AssetId, + Balance, + EverythingBut<( + // Excludes relay/parent chain currency + Equals<ParentLocation>, + // Here we rely on fact that something like this works: + // assert!(Location::new(1, + // [Parachain(100)]).starts_with(&Location::parent())); + // assert!([Parachain(100)].into().starts_with(&Here)); + StartsWith<LocalLocationPattern>, + // Here we can exclude more stuff or leave it as `()` + AdditionalLocationExclusionFilter, + )>, + LocationToAssetIdConverter, + BalanceConverter, +>; type AssetIdForPoolAssets = u32; /// `Location` vs `AssetIdForPoolAssets` converter for `PoolAssets`. pub type AssetIdForPoolAssetsConvert<PoolAssetsPalletLocation> = - AsPrefixedGeneralIndex<PoolAssetsPalletLocation, AssetIdForPoolAssets, JustTry>; + AsPrefixedGeneralIndex<PoolAssetsPalletLocation, AssetIdForPoolAssets, TryConvertInto>; /// [`MatchedConvertedConcreteId`] converter dedicated for `PoolAssets` pub type PoolAssetsConvertedConcreteId<PoolAssetsPalletLocation, Balance> = MatchedConvertedConcreteId< @@ -122,7 +129,7 @@ pub type PoolAssetsConvertedConcreteId<PoolAssetsPalletLocation, Balance> = Balance, StartsWith<PoolAssetsPalletLocation>, AssetIdForPoolAssetsConvert<PoolAssetsPalletLocation>, - JustTry, + TryConvertInto, >; #[cfg(test)] @@ -130,7 +137,7 @@ mod tests { use super::*; use sp_runtime::traits::MaybeEquivalence; use xcm::prelude::*; - use xcm_builder::StartsWithExplicitGlobalConsensus; + use xcm_builder::{StartsWithExplicitGlobalConsensus, WithLatestLocationConverter}; use xcm_executor::traits::{Error as MatchError, MatchesFungibles}; #[test] @@ -143,14 +150,14 @@ mod tests { Location::new(5, [PalletInstance(13), GeneralIndex(local_asset_id.into())]); assert_eq!( - AssetIdForTrustBackedAssetsConvertLatest::<TrustBackedAssetsPalletLocation>::convert_back( + AssetIdForTrustBackedAssetsConvert::<TrustBackedAssetsPalletLocation>::convert_back( &local_asset_id ) .unwrap(), expected_reverse_ref ); assert_eq!( - AssetIdForTrustBackedAssetsConvertLatest::<TrustBackedAssetsPalletLocation>::convert( + AssetIdForTrustBackedAssetsConvert::<TrustBackedAssetsPalletLocation>::convert( &expected_reverse_ref ) .unwrap(), @@ -163,7 +170,7 @@ mod tests { frame_support::parameter_types! { pub TrustBackedAssetsPalletLocation: Location = Location::new(0, [PalletInstance(13)]); } - // setup convert + // set up a converter type TrustBackedAssetsConvert = TrustBackedAssetsConvertedConcreteId<TrustBackedAssetsPalletLocation, u128>; @@ -246,19 +253,21 @@ mod tests { } #[test] - fn location_converted_concrete_id_converter_works() { + fn foreign_assets_converted_concrete_id_converter_works() { frame_support::parameter_types! { pub Parachain100Pattern: Location = Location::new(1, [Parachain(100)]); pub UniversalLocationNetworkId: NetworkId = NetworkId::ByGenesis([9; 32]); } - // setup convert + // set up a converter which uses `xcm::v3::Location` under the hood type Convert = ForeignAssetsConvertedConcreteId< ( StartsWith<Parachain100Pattern>, StartsWithExplicitGlobalConsensus<UniversalLocationNetworkId>, ), u128, + xcm::v3::Location, + WithLatestLocationConverter<xcm::v3::Location>, >; let test_data = vec![ diff --git a/cumulus/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs b/cumulus/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs index 3863ea5022f9142b230f5dba9a3840f858daa127..46fcbc6319c951efa91408ce310f3451002c8b77 100644 --- a/cumulus/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs +++ b/cumulus/parachains/runtimes/contracts/contracts-rococo/src/xcm_config.rs @@ -78,7 +78,7 @@ pub type LocationToAccountId = ( ); /// Means for transacting the native currency on this chain. -pub type CurrencyTransactor = FungibleAdapter< +pub type FungibleTransactor = FungibleAdapter< // Use this currency: Balances, // Use this currency when it is a fungible asset matching the given location or name: @@ -171,7 +171,7 @@ pub struct XcmConfig; impl xcm_executor::Config for XcmConfig { type RuntimeCall = RuntimeCall; type XcmSender = XcmRouter; - type AssetTransactor = CurrencyTransactor; + type AssetTransactor = FungibleTransactor; type OriginConverter = XcmOriginToTransactDispatchOrigin; type IsReserve = NativeAsset; type IsTeleporter = TrustedTeleporter; diff --git a/cumulus/parachains/runtimes/coretime/coretime-rococo/src/xcm_config.rs b/cumulus/parachains/runtimes/coretime/coretime-rococo/src/xcm_config.rs index b0b276128272b66f5b5866f3e40bec957d717e42..7580ab33b8d63ae7f4510e784b22e60bea3b78da 100644 --- a/cumulus/parachains/runtimes/coretime/coretime-rococo/src/xcm_config.rs +++ b/cumulus/parachains/runtimes/coretime/coretime-rococo/src/xcm_config.rs @@ -77,7 +77,7 @@ pub type LocationToAccountId = ( ); /// Means for transacting the native currency on this chain. -pub type CurrencyTransactor = FungibleAdapter< +pub type FungibleTransactor = FungibleAdapter< // Use this currency: Balances, // Use this currency when it is a fungible asset matching the given location or name: @@ -106,7 +106,7 @@ pub type RegionTransactor = NonFungibleAdapter< >; /// Means for transacting assets on this chain. -pub type AssetTransactors = (CurrencyTransactor, RegionTransactor); +pub type AssetTransactors = (FungibleTransactor, RegionTransactor); /// This is the type we use to convert an (incoming) XCM origin into a local `Origin` instance, /// ready for dispatching a transaction with XCM's `Transact`. There is an `OriginKind` that can diff --git a/cumulus/parachains/runtimes/testing/penpal/src/lib.rs b/cumulus/parachains/runtimes/testing/penpal/src/lib.rs index 919bfe83e7d7aff8d90be3af0358dd28b93581e1..89885d77378ba2c1df13116b5f2d41f547002b30 100644 --- a/cumulus/parachains/runtimes/testing/penpal/src/lib.rs +++ b/cumulus/parachains/runtimes/testing/penpal/src/lib.rs @@ -72,18 +72,14 @@ use sp_std::prelude::*; #[cfg(feature = "std")] use sp_version::NativeVersion; use sp_version::RuntimeVersion; -use xcm_config::XcmOriginToTransactDispatchOrigin; +use xcm_config::{ForeignAssetsAssetId, XcmOriginToTransactDispatchOrigin}; #[cfg(any(feature = "std", test))] pub use sp_runtime::BuildStorage; -// Polkadot imports +use parachains_common::{AccountId, Signature}; use polkadot_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate}; - use weights::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight}; - -// XCM Imports -use parachains_common::{AccountId, Signature}; use xcm::latest::prelude::{AssetId as AssetLocationId, BodyId}; /// Balance of an account. @@ -474,8 +470,8 @@ pub type ForeignAssetsInstance = pallet_assets::Instance2; impl pallet_assets::Config<ForeignAssetsInstance> for Runtime { type RuntimeEvent = RuntimeEvent; type Balance = Balance; - type AssetId = xcm::v3::Location; - type AssetIdParameter = xcm::v3::Location; + type AssetId = ForeignAssetsAssetId; + type AssetIdParameter = ForeignAssetsAssetId; type Currency = Balances; type CreateOrigin = AsEnsureOriginWithArg<EnsureSigned<AccountId>>; type ForceOrigin = EnsureRoot<AccountId>; diff --git a/cumulus/parachains/runtimes/testing/penpal/src/xcm_config.rs b/cumulus/parachains/runtimes/testing/penpal/src/xcm_config.rs index a0a007234eb75ffca06e4cb9e8ff6ee2b604d9c7..6832e2f4f4409b833cce74d691cb0442ec6a724f 100644 --- a/cumulus/parachains/runtimes/testing/penpal/src/xcm_config.rs +++ b/cumulus/parachains/runtimes/testing/penpal/src/xcm_config.rs @@ -40,7 +40,7 @@ use pallet_xcm::XcmPassthrough; use parachains_common::{xcm_config::AssetFeeAsExistentialDepositMultiplier, TREASURY_PALLET_ID}; use polkadot_parachain_primitives::primitives::Sibling; use polkadot_runtime_common::{impls::ToAuthor, xcm_sender::ExponentialPrice}; -use sp_runtime::traits::{AccountIdConversion, ConvertInto}; +use sp_runtime::traits::{AccountIdConversion, ConvertInto, Identity, TryConvertInto}; use xcm::latest::prelude::*; use xcm_builder::{ AccountId32Aliases, AllowKnownQueryResponses, AllowSubscriptionsFrom, @@ -84,7 +84,7 @@ pub type LocationToAccountId = ( ); /// Means for transacting assets on this chain. -pub type CurrencyTransactor = FungibleAdapter< +pub type FungibleTransactor = FungibleAdapter< // Use this currency: Balances, // Use this currency when it is a fungible asset matching the given location or name: @@ -131,7 +131,11 @@ pub type FungiblesTransactor = FungiblesAdapter< CheckingAccount, >; -pub type ForeignAssetsConvertedConcreteId = assets_common::LocationConvertedConcreteId< +// Using the latest `Location`, we don't need to worry about migrations for Penpal. +pub type ForeignAssetsAssetId = Location; +pub type ForeignAssetsConvertedConcreteId = xcm_builder::MatchedConvertedConcreteId< + Location, + Balance, EverythingBut<( // Here we rely on fact that something like this works: // assert!(Location::new(1, @@ -139,7 +143,8 @@ pub type ForeignAssetsConvertedConcreteId = assets_common::LocationConvertedConc // assert!([Parachain(100)].into().starts_with(&Here)); StartsWith<assets_common::matching::LocalLocationPattern>, )>, - Balance, + Identity, + TryConvertInto, >; /// Means for transacting foreign assets from different global consensus. @@ -159,7 +164,7 @@ pub type ForeignFungiblesTransactor = FungiblesAdapter< >; /// Means for transacting assets on this chain. -pub type AssetTransactors = (CurrencyTransactor, ForeignFungiblesTransactor, FungiblesTransactor); +pub type AssetTransactors = (FungibleTransactor, ForeignFungiblesTransactor, FungiblesTransactor); /// This is the type we use to convert an (incoming) XCM origin into a local `Origin` instance, /// ready for dispatching a transaction with Xcm's `Transact`. There is an `OriginKind` which can @@ -416,8 +421,8 @@ impl cumulus_pallet_xcm::Config for Runtime { /// Simple conversion of `u32` into an `AssetId` for use in benchmarking. pub struct XcmBenchmarkHelper; #[cfg(feature = "runtime-benchmarks")] -impl pallet_assets::BenchmarkHelper<xcm::v3::Location> for XcmBenchmarkHelper { - fn create_asset_id_parameter(id: u32) -> xcm::v3::Location { - xcm::v3::Location::new(1, [xcm::v3::Junction::Parachain(id)]) +impl pallet_assets::BenchmarkHelper<ForeignAssetsAssetId> for XcmBenchmarkHelper { + fn create_asset_id_parameter(id: u32) -> ForeignAssetsAssetId { + Location::new(1, [Parachain(id)]) } } diff --git a/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs b/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs index 154c2c4600043cc0ceb1b0cd61a84949dcdd9616..df335368be1ca29d40ed4c9fd32b6e385b33b66e 100644 --- a/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs +++ b/cumulus/parachains/runtimes/testing/rococo-parachain/src/lib.rs @@ -346,7 +346,7 @@ pub type LocationToAccountId = ( ); /// Means for transacting assets on this chain. -pub type CurrencyTransactor = FungibleAdapter< +pub type FungibleTransactor = FungibleAdapter< // Use this currency: Balances, // Use this currency when it is a fungible asset matching the given location or name: @@ -385,7 +385,7 @@ pub type FungiblesTransactor = FungiblesAdapter< CheckingAccount, >; /// Means for transacting assets on this chain. -pub type AssetTransactors = (CurrencyTransactor, FungiblesTransactor); +pub type AssetTransactors = (FungibleTransactor, FungiblesTransactor); /// This is the type we use to convert an (incoming) XCM origin into a local `Origin` instance, /// ready for dispatching a transaction with Xcm's `Transact`. There is an `OriginKind` which can diff --git a/polkadot/xcm/xcm-builder/src/asset_conversion.rs b/polkadot/xcm/xcm-builder/src/asset_conversion.rs index e38af149be541f3f85ed47109e979351d6569f0c..520ce87448ea4f868fbb62130a7da45353d220b6 100644 --- a/polkadot/xcm/xcm-builder/src/asset_conversion.rs +++ b/polkadot/xcm/xcm-builder/src/asset_conversion.rs @@ -107,17 +107,6 @@ impl< #[deprecated = "Use `ConvertedConcreteId` instead"] pub type ConvertedConcreteAssetId<A, B, C, O> = ConvertedConcreteId<A, B, C, O>; -pub struct V4V3LocationConverter; -impl MaybeEquivalence<xcm::v4::Location, xcm::v3::Location> for V4V3LocationConverter { - fn convert(old: &xcm::v4::Location) -> Option<xcm::v3::Location> { - (*old).clone().try_into().ok() - } - - fn convert_back(new: &xcm::v3::Location) -> Option<xcm::v4::Location> { - (*new).try_into().ok() - } -} - pub struct MatchedConvertedConcreteId<AssetId, Balance, MatchAssetId, ConvertAssetId, ConvertOther>( PhantomData<(AssetId, Balance, MatchAssetId, ConvertAssetId, ConvertOther)>, ); diff --git a/polkadot/xcm/xcm-builder/src/lib.rs b/polkadot/xcm/xcm-builder/src/lib.rs index 46d0ad227bfdf8e5e77188165fc259b0c1aec585..c3400cc72b48e97cb2cdfd85a028b21b7c032963 100644 --- a/polkadot/xcm/xcm-builder/src/lib.rs +++ b/polkadot/xcm/xcm-builder/src/lib.rs @@ -30,7 +30,7 @@ mod asset_conversion; #[allow(deprecated)] pub use asset_conversion::ConvertedConcreteAssetId; pub use asset_conversion::{ - AsPrefixedGeneralIndex, ConvertedConcreteId, MatchedConvertedConcreteId, V4V3LocationConverter, + AsPrefixedGeneralIndex, ConvertedConcreteId, MatchedConvertedConcreteId, }; mod barriers; @@ -81,7 +81,9 @@ pub use location_conversion::{ }; mod matches_location; -pub use matches_location::{StartsWith, StartsWithExplicitGlobalConsensus}; +pub use matches_location::{ + StartsWith, StartsWithExplicitGlobalConsensus, WithLatestLocationConverter, +}; mod matches_token; pub use matches_token::IsConcrete; diff --git a/polkadot/xcm/xcm-builder/src/matches_location.rs b/polkadot/xcm/xcm-builder/src/matches_location.rs index 1664c24772909a8a287cf620da308b07158270bb..b6c2807e6b29db302e2d1182729c5acb4426b24b 100644 --- a/polkadot/xcm/xcm-builder/src/matches_location.rs +++ b/polkadot/xcm/xcm-builder/src/matches_location.rs @@ -18,6 +18,8 @@ //! `InteriorLocation` types. use frame_support::traits::{Contains, Get}; +use sp_runtime::traits::MaybeEquivalence; +use sp_std::marker::PhantomData; use xcm::latest::{InteriorLocation, Location, NetworkId}; /// An implementation of `Contains` that checks for `Location` or @@ -51,3 +53,18 @@ impl<T: Get<NetworkId>> Contains<InteriorLocation> for StartsWithExplicitGlobalC matches!(location.global_consensus(), Ok(requested_network) if requested_network.eq(&T::get())) } } + +/// An adapter implementation of `MaybeEquivalence` which can convert between the latest `Location` +/// and other versions that implement `TryInto<Location>` and `TryFrom<Location>`. +pub struct WithLatestLocationConverter<Target>(PhantomData<Target>); +impl<Target: TryInto<Location> + TryFrom<Location> + Clone> MaybeEquivalence<Location, Target> + for WithLatestLocationConverter<Target> +{ + fn convert(old: &Location) -> Option<Target> { + (*old).clone().try_into().ok() + } + + fn convert_back(new: &Target) -> Option<Location> { + new.clone().try_into().ok() + } +} diff --git a/prdoc/pr_4037.prdoc b/prdoc/pr_4037.prdoc new file mode 100644 index 0000000000000000000000000000000000000000..7071875a7e370fdf11a0e88df1f6c0c5bb0a35a7 --- /dev/null +++ b/prdoc/pr_4037.prdoc @@ -0,0 +1,26 @@ +# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0 +# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json + +title: "Remove `xcm::v3` from `assets-common` nits" + +doc: + - audience: Runtime Dev + description: | + Remove `xcm::v3` imports from `assets-common` to make it more generic and facilitate the transition to newer XCM versions. + The implementations `AssetIdForTrustBackedAssetsConvert`, `ForeignAssetsConvertedConcreteId`, or `TrustBackedAssetsAsLocation` + used hard-coded `xcm::v3::Location`, which has been changed to use `xcm::latest::Location` by default. + Alternatively, the providing runtime can configure them according to its needs, such as with a lower XCM version. + + Example: + ```patch + - AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3>, + + AssetIdForTrustBackedAssetsConvert<TrustBackedAssetsPalletLocationV3, xcm::v3::Location>, + ``` + + Another change is that the removed `xcm_builder::V4V3LocationConverter` can be replaced with `WithLatestLocationConverter`. + +crates: +- name: assets-common + bump: patch +- name: staging-xcm-builder + bump: patch