mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-14 13:15:43 +00:00
8428f678fe
# Note for reviewer
Most changes are just syntax changes necessary for the new version.
Most important files should be the ones under the `xcm` folder.
# Description
Added XCMv4.
## Removed `Multi` prefix
The following types have been renamed:
- MultiLocation -> Location
- MultiAsset -> Asset
- MultiAssets -> Assets
- InteriorMultiLocation -> InteriorLocation
- MultiAssetFilter -> AssetFilter
- VersionedMultiAsset -> VersionedAsset
- WildMultiAsset -> WildAsset
- VersionedMultiLocation -> VersionedLocation
In order to fix a name conflict, the `Assets` in `xcm-executor` were
renamed to `HoldingAssets`, as they represent assets in holding.
## Removed `Abstract` asset id
It was not being used anywhere and this simplifies the code.
Now assets are just constructed as follows:
```rust
let asset: Asset = (AssetId(Location::new(1, Here)), 100u128).into();
```
No need for specifying `Concrete` anymore.
## Outcome is now a named fields struct
Instead of
```rust
pub enum Outcome {
Complete(Weight),
Incomplete(Weight, Error),
Error(Error),
}
```
we now have
```rust
pub enum Outcome {
Complete { used: Weight },
Incomplete { used: Weight, error: Error },
Error { error: Error },
}
```
## Added Reanchorable trait
Now both locations and assets implement this trait, making it easier to
reanchor both.
## New syntax for building locations and junctions
Now junctions are built using the following methods:
```rust
let location = Location {
parents: 1,
interior: [Parachain(1000), PalletInstance(50), GeneralIndex(1984)].into()
};
```
or
```rust
let location = Location::new(1, [Parachain(1000), PalletInstance(50), GeneralIndex(1984)]);
```
And they are matched like so:
```rust
match location.unpack() {
(1, [Parachain(id)]) => ...
(0, Here) => ...,
(1, [_]) => ...,
}
```
This syntax is mandatory in v4, and has been also implemented for v2 and
v3 for easier migration.
This was needed to make all sizes smaller.
# TODO
- [x] Scaffold v4
- [x] Port github.com/paritytech/polkadot/pull/7236
- [x] Remove `Multi` prefix
- [x] Remove `Abstract` asset id
---------
Co-authored-by: command-bot <>
Co-authored-by: Keith Yeung <kungfukeith11@gmail.com>
653 lines
18 KiB
Rust
653 lines
18 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
mod parachain;
|
|
mod relay_chain;
|
|
|
|
use sp_runtime::BuildStorage;
|
|
use sp_tracing;
|
|
use xcm::prelude::*;
|
|
use xcm_executor::traits::ConvertLocation;
|
|
use xcm_simulator::{decl_test_network, decl_test_parachain, decl_test_relay_chain, TestExt};
|
|
|
|
pub const ALICE: sp_runtime::AccountId32 = sp_runtime::AccountId32::new([0u8; 32]);
|
|
pub const INITIAL_BALANCE: u128 = 1_000_000_000;
|
|
|
|
decl_test_parachain! {
|
|
pub struct ParaA {
|
|
Runtime = parachain::Runtime,
|
|
XcmpMessageHandler = parachain::MsgQueue,
|
|
DmpMessageHandler = parachain::MsgQueue,
|
|
new_ext = para_ext(1),
|
|
}
|
|
}
|
|
|
|
decl_test_parachain! {
|
|
pub struct ParaB {
|
|
Runtime = parachain::Runtime,
|
|
XcmpMessageHandler = parachain::MsgQueue,
|
|
DmpMessageHandler = parachain::MsgQueue,
|
|
new_ext = para_ext(2),
|
|
}
|
|
}
|
|
|
|
decl_test_relay_chain! {
|
|
pub struct Relay {
|
|
Runtime = relay_chain::Runtime,
|
|
RuntimeCall = relay_chain::RuntimeCall,
|
|
RuntimeEvent = relay_chain::RuntimeEvent,
|
|
XcmConfig = relay_chain::XcmConfig,
|
|
MessageQueue = relay_chain::MessageQueue,
|
|
System = relay_chain::System,
|
|
new_ext = relay_ext(),
|
|
}
|
|
}
|
|
|
|
decl_test_network! {
|
|
pub struct MockNet {
|
|
relay_chain = Relay,
|
|
parachains = vec![
|
|
(1, ParaA),
|
|
(2, ParaB),
|
|
],
|
|
}
|
|
}
|
|
|
|
pub fn parent_account_id() -> parachain::AccountId {
|
|
let location = (Parent,);
|
|
parachain::LocationToAccountId::convert_location(&location.into()).unwrap()
|
|
}
|
|
|
|
pub fn child_account_id(para: u32) -> relay_chain::AccountId {
|
|
let location = (Parachain(para),);
|
|
relay_chain::LocationToAccountId::convert_location(&location.into()).unwrap()
|
|
}
|
|
|
|
pub fn child_account_account_id(para: u32, who: sp_runtime::AccountId32) -> relay_chain::AccountId {
|
|
let location = (Parachain(para), AccountId32 { network: None, id: who.into() });
|
|
relay_chain::LocationToAccountId::convert_location(&location.into()).unwrap()
|
|
}
|
|
|
|
pub fn sibling_account_account_id(para: u32, who: sp_runtime::AccountId32) -> parachain::AccountId {
|
|
let location = (Parent, Parachain(para), AccountId32 { network: None, id: who.into() });
|
|
parachain::LocationToAccountId::convert_location(&location.into()).unwrap()
|
|
}
|
|
|
|
pub fn parent_account_account_id(who: sp_runtime::AccountId32) -> parachain::AccountId {
|
|
let location = (Parent, AccountId32 { network: None, id: who.into() });
|
|
parachain::LocationToAccountId::convert_location(&location.into()).unwrap()
|
|
}
|
|
|
|
pub fn para_ext(para_id: u32) -> sp_io::TestExternalities {
|
|
use parachain::{MsgQueue, Runtime, System};
|
|
|
|
let mut t = frame_system::GenesisConfig::<Runtime>::default().build_storage().unwrap();
|
|
|
|
pallet_balances::GenesisConfig::<Runtime> {
|
|
balances: vec![(ALICE, INITIAL_BALANCE), (parent_account_id(), INITIAL_BALANCE)],
|
|
}
|
|
.assimilate_storage(&mut t)
|
|
.unwrap();
|
|
|
|
let mut ext = sp_io::TestExternalities::new(t);
|
|
ext.execute_with(|| {
|
|
sp_tracing::try_init_simple();
|
|
System::set_block_number(1);
|
|
MsgQueue::set_para_id(para_id.into());
|
|
});
|
|
ext
|
|
}
|
|
|
|
pub fn relay_ext() -> sp_io::TestExternalities {
|
|
use relay_chain::{Runtime, RuntimeOrigin, System, Uniques};
|
|
|
|
let mut t = frame_system::GenesisConfig::<Runtime>::default().build_storage().unwrap();
|
|
|
|
pallet_balances::GenesisConfig::<Runtime> {
|
|
balances: vec![
|
|
(ALICE, INITIAL_BALANCE),
|
|
(child_account_id(1), INITIAL_BALANCE),
|
|
(child_account_id(2), INITIAL_BALANCE),
|
|
],
|
|
}
|
|
.assimilate_storage(&mut t)
|
|
.unwrap();
|
|
|
|
let mut ext = sp_io::TestExternalities::new(t);
|
|
ext.execute_with(|| {
|
|
System::set_block_number(1);
|
|
assert_eq!(Uniques::force_create(RuntimeOrigin::root(), 1, ALICE, true), Ok(()));
|
|
assert_eq!(Uniques::mint(RuntimeOrigin::signed(ALICE), 1, 42, child_account_id(1)), Ok(()));
|
|
});
|
|
ext
|
|
}
|
|
|
|
pub type RelayChainPalletXcm = pallet_xcm::Pallet<relay_chain::Runtime>;
|
|
pub type ParachainPalletXcm = pallet_xcm::Pallet<parachain::Runtime>;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
use codec::Encode;
|
|
use frame_support::{assert_ok, weights::Weight};
|
|
use xcm::latest::QueryResponseInfo;
|
|
use xcm_simulator::TestExt;
|
|
|
|
// Helper function for forming buy execution message
|
|
fn buy_execution<C>(fees: impl Into<Asset>) -> Instruction<C> {
|
|
BuyExecution { fees: fees.into(), weight_limit: Unlimited }
|
|
}
|
|
|
|
#[test]
|
|
fn remote_account_ids_work() {
|
|
child_account_account_id(1, ALICE);
|
|
sibling_account_account_id(1, ALICE);
|
|
parent_account_account_id(ALICE);
|
|
}
|
|
|
|
#[test]
|
|
fn dmp() {
|
|
MockNet::reset();
|
|
|
|
let remark = parachain::RuntimeCall::System(
|
|
frame_system::Call::<parachain::Runtime>::remark_with_event { remark: vec![1, 2, 3] },
|
|
);
|
|
Relay::execute_with(|| {
|
|
assert_ok!(RelayChainPalletXcm::send_xcm(
|
|
Here,
|
|
Parachain(1),
|
|
Xcm(vec![Transact {
|
|
origin_kind: OriginKind::SovereignAccount,
|
|
require_weight_at_most: Weight::from_parts(INITIAL_BALANCE as u64, 1024 * 1024),
|
|
call: remark.encode().into(),
|
|
}]),
|
|
));
|
|
});
|
|
|
|
ParaA::execute_with(|| {
|
|
use parachain::{RuntimeEvent, System};
|
|
assert!(System::events().iter().any(|r| matches!(
|
|
r.event,
|
|
RuntimeEvent::System(frame_system::Event::Remarked { .. })
|
|
)));
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn ump() {
|
|
MockNet::reset();
|
|
|
|
let remark = relay_chain::RuntimeCall::System(
|
|
frame_system::Call::<relay_chain::Runtime>::remark_with_event { remark: vec![1, 2, 3] },
|
|
);
|
|
ParaA::execute_with(|| {
|
|
assert_ok!(ParachainPalletXcm::send_xcm(
|
|
Here,
|
|
Parent,
|
|
Xcm(vec![Transact {
|
|
origin_kind: OriginKind::SovereignAccount,
|
|
require_weight_at_most: Weight::from_parts(INITIAL_BALANCE as u64, 1024 * 1024),
|
|
call: remark.encode().into(),
|
|
}]),
|
|
));
|
|
});
|
|
|
|
Relay::execute_with(|| {
|
|
use relay_chain::{RuntimeEvent, System};
|
|
assert!(System::events().iter().any(|r| matches!(
|
|
r.event,
|
|
RuntimeEvent::System(frame_system::Event::Remarked { .. })
|
|
)));
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn xcmp() {
|
|
MockNet::reset();
|
|
|
|
let remark = parachain::RuntimeCall::System(
|
|
frame_system::Call::<parachain::Runtime>::remark_with_event { remark: vec![1, 2, 3] },
|
|
);
|
|
ParaA::execute_with(|| {
|
|
assert_ok!(ParachainPalletXcm::send_xcm(
|
|
Here,
|
|
(Parent, Parachain(2)),
|
|
Xcm(vec![Transact {
|
|
origin_kind: OriginKind::SovereignAccount,
|
|
require_weight_at_most: Weight::from_parts(INITIAL_BALANCE as u64, 1024 * 1024),
|
|
call: remark.encode().into(),
|
|
}]),
|
|
));
|
|
});
|
|
|
|
ParaB::execute_with(|| {
|
|
use parachain::{RuntimeEvent, System};
|
|
assert!(System::events().iter().any(|r| matches!(
|
|
r.event,
|
|
RuntimeEvent::System(frame_system::Event::Remarked { .. })
|
|
)));
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn reserve_transfer() {
|
|
MockNet::reset();
|
|
|
|
let withdraw_amount = 123;
|
|
|
|
Relay::execute_with(|| {
|
|
assert_ok!(RelayChainPalletXcm::reserve_transfer_assets(
|
|
relay_chain::RuntimeOrigin::signed(ALICE),
|
|
Box::new(Parachain(1).into()),
|
|
Box::new(AccountId32 { network: None, id: ALICE.into() }.into()),
|
|
Box::new((Here, withdraw_amount).into()),
|
|
0,
|
|
));
|
|
assert_eq!(
|
|
relay_chain::Balances::free_balance(&child_account_id(1)),
|
|
INITIAL_BALANCE + withdraw_amount
|
|
);
|
|
});
|
|
|
|
ParaA::execute_with(|| {
|
|
// free execution, full amount received
|
|
assert_eq!(
|
|
pallet_balances::Pallet::<parachain::Runtime>::free_balance(&ALICE),
|
|
INITIAL_BALANCE + withdraw_amount
|
|
);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn remote_locking_and_unlocking() {
|
|
MockNet::reset();
|
|
|
|
let locked_amount = 100;
|
|
|
|
ParaB::execute_with(|| {
|
|
let message = Xcm(vec![LockAsset {
|
|
asset: (Here, locked_amount).into(),
|
|
unlocker: Parachain(1).into(),
|
|
}]);
|
|
assert_ok!(ParachainPalletXcm::send_xcm(Here, Parent, message.clone()));
|
|
});
|
|
|
|
Relay::execute_with(|| {
|
|
use pallet_balances::{BalanceLock, Reasons};
|
|
assert_eq!(
|
|
relay_chain::Balances::locks(&child_account_id(2)),
|
|
vec![BalanceLock {
|
|
id: *b"py/xcmlk",
|
|
amount: locked_amount,
|
|
reasons: Reasons::All
|
|
}]
|
|
);
|
|
});
|
|
|
|
ParaA::execute_with(|| {
|
|
assert_eq!(
|
|
parachain::MsgQueue::received_dmp(),
|
|
vec![Xcm(vec![NoteUnlockable {
|
|
owner: (Parent, Parachain(2)).into(),
|
|
asset: (Parent, locked_amount).into()
|
|
}])]
|
|
);
|
|
});
|
|
|
|
ParaB::execute_with(|| {
|
|
// Request unlocking part of the funds on the relay chain
|
|
let message = Xcm(vec![RequestUnlock {
|
|
asset: (Parent, locked_amount - 50).into(),
|
|
locker: Parent.into(),
|
|
}]);
|
|
assert_ok!(ParachainPalletXcm::send_xcm(Here, (Parent, Parachain(1)), message));
|
|
});
|
|
|
|
Relay::execute_with(|| {
|
|
use pallet_balances::{BalanceLock, Reasons};
|
|
// Lock is reduced
|
|
assert_eq!(
|
|
relay_chain::Balances::locks(&child_account_id(2)),
|
|
vec![BalanceLock {
|
|
id: *b"py/xcmlk",
|
|
amount: locked_amount - 50,
|
|
reasons: Reasons::All
|
|
}]
|
|
);
|
|
});
|
|
}
|
|
|
|
/// Scenario:
|
|
/// A parachain transfers an NFT resident on the relay chain to another parachain account.
|
|
///
|
|
/// Asserts that the parachain accounts are updated as expected.
|
|
#[test]
|
|
fn withdraw_and_deposit_nft() {
|
|
MockNet::reset();
|
|
|
|
Relay::execute_with(|| {
|
|
assert_eq!(relay_chain::Uniques::owner(1, 42), Some(child_account_id(1)));
|
|
});
|
|
|
|
ParaA::execute_with(|| {
|
|
let message = Xcm(vec![TransferAsset {
|
|
assets: (GeneralIndex(1), 42u32).into(),
|
|
beneficiary: Parachain(2).into(),
|
|
}]);
|
|
// Send withdraw and deposit
|
|
assert_ok!(ParachainPalletXcm::send_xcm(Here, Parent, message));
|
|
});
|
|
|
|
Relay::execute_with(|| {
|
|
assert_eq!(relay_chain::Uniques::owner(1, 42), Some(child_account_id(2)));
|
|
});
|
|
}
|
|
|
|
/// Scenario:
|
|
/// The relay-chain teleports an NFT to a parachain.
|
|
///
|
|
/// Asserts that the parachain accounts are updated as expected.
|
|
#[test]
|
|
fn teleport_nft() {
|
|
MockNet::reset();
|
|
|
|
Relay::execute_with(|| {
|
|
// Mint the NFT (1, 69) and give it to our "parachain#1 alias".
|
|
assert_ok!(relay_chain::Uniques::mint(
|
|
relay_chain::RuntimeOrigin::signed(ALICE),
|
|
1,
|
|
69,
|
|
child_account_account_id(1, ALICE),
|
|
));
|
|
// The parachain#1 alias of Alice is what must hold it on the Relay-chain for it to be
|
|
// withdrawable by Alice on the parachain.
|
|
assert_eq!(
|
|
relay_chain::Uniques::owner(1, 69),
|
|
Some(child_account_account_id(1, ALICE))
|
|
);
|
|
});
|
|
ParaA::execute_with(|| {
|
|
assert_ok!(parachain::ForeignUniques::force_create(
|
|
parachain::RuntimeOrigin::root(),
|
|
(Parent, GeneralIndex(1)).into(),
|
|
ALICE,
|
|
false,
|
|
));
|
|
assert_eq!(
|
|
parachain::ForeignUniques::owner((Parent, GeneralIndex(1)).into(), 69u32.into()),
|
|
None,
|
|
);
|
|
assert_eq!(parachain::Balances::reserved_balance(&ALICE), 0);
|
|
|
|
// IRL Alice would probably just execute this locally on the Relay-chain, but we can't
|
|
// easily do that here since we only send between chains.
|
|
let message = Xcm(vec![
|
|
WithdrawAsset((GeneralIndex(1), 69u32).into()),
|
|
InitiateTeleport {
|
|
assets: AllCounted(1).into(),
|
|
dest: Parachain(1).into(),
|
|
xcm: Xcm(vec![DepositAsset {
|
|
assets: AllCounted(1).into(),
|
|
beneficiary: (AccountId32 { id: ALICE.into(), network: None },).into(),
|
|
}]),
|
|
},
|
|
]);
|
|
// Send teleport
|
|
let alice = AccountId32 { id: ALICE.into(), network: None };
|
|
assert_ok!(ParachainPalletXcm::send_xcm(alice, Parent, message));
|
|
});
|
|
ParaA::execute_with(|| {
|
|
assert_eq!(
|
|
parachain::ForeignUniques::owner((Parent, GeneralIndex(1)).into(), 69u32.into()),
|
|
Some(ALICE),
|
|
);
|
|
assert_eq!(parachain::Balances::reserved_balance(&ALICE), 1000);
|
|
});
|
|
Relay::execute_with(|| {
|
|
assert_eq!(relay_chain::Uniques::owner(1, 69), None);
|
|
});
|
|
}
|
|
|
|
/// Scenario:
|
|
/// The relay-chain transfers an NFT into a parachain's sovereign account, who then mints a
|
|
/// trustless-backed-derivated locally.
|
|
///
|
|
/// Asserts that the parachain accounts are updated as expected.
|
|
#[test]
|
|
fn reserve_asset_transfer_nft() {
|
|
sp_tracing::init_for_tests();
|
|
MockNet::reset();
|
|
|
|
Relay::execute_with(|| {
|
|
assert_ok!(relay_chain::Uniques::force_create(
|
|
relay_chain::RuntimeOrigin::root(),
|
|
2,
|
|
ALICE,
|
|
false
|
|
));
|
|
assert_ok!(relay_chain::Uniques::mint(
|
|
relay_chain::RuntimeOrigin::signed(ALICE),
|
|
2,
|
|
69,
|
|
child_account_account_id(1, ALICE)
|
|
));
|
|
assert_eq!(
|
|
relay_chain::Uniques::owner(2, 69),
|
|
Some(child_account_account_id(1, ALICE))
|
|
);
|
|
});
|
|
ParaA::execute_with(|| {
|
|
assert_ok!(parachain::ForeignUniques::force_create(
|
|
parachain::RuntimeOrigin::root(),
|
|
(Parent, GeneralIndex(2)).into(),
|
|
ALICE,
|
|
false,
|
|
));
|
|
assert_eq!(
|
|
parachain::ForeignUniques::owner((Parent, GeneralIndex(2)).into(), 69u32.into()),
|
|
None,
|
|
);
|
|
assert_eq!(parachain::Balances::reserved_balance(&ALICE), 0);
|
|
|
|
let message = Xcm(vec![
|
|
WithdrawAsset((GeneralIndex(2), 69u32).into()),
|
|
DepositReserveAsset {
|
|
assets: AllCounted(1).into(),
|
|
dest: Parachain(1).into(),
|
|
xcm: Xcm(vec![DepositAsset {
|
|
assets: AllCounted(1).into(),
|
|
beneficiary: (AccountId32 { id: ALICE.into(), network: None },).into(),
|
|
}]),
|
|
},
|
|
]);
|
|
// Send transfer
|
|
let alice = AccountId32 { id: ALICE.into(), network: None };
|
|
assert_ok!(ParachainPalletXcm::send_xcm(alice, Parent, message));
|
|
});
|
|
ParaA::execute_with(|| {
|
|
log::debug!(target: "xcm-exceutor", "Hello");
|
|
assert_eq!(
|
|
parachain::ForeignUniques::owner((Parent, GeneralIndex(2)).into(), 69u32.into()),
|
|
Some(ALICE),
|
|
);
|
|
assert_eq!(parachain::Balances::reserved_balance(&ALICE), 1000);
|
|
});
|
|
|
|
Relay::execute_with(|| {
|
|
assert_eq!(relay_chain::Uniques::owner(2, 69), Some(child_account_id(1)));
|
|
});
|
|
}
|
|
|
|
/// Scenario:
|
|
/// The relay-chain creates an asset class on a parachain and then Alice transfers her NFT into
|
|
/// that parachain's sovereign account, who then mints a trustless-backed-derivative locally.
|
|
///
|
|
/// Asserts that the parachain accounts are updated as expected.
|
|
#[test]
|
|
fn reserve_asset_class_create_and_reserve_transfer() {
|
|
MockNet::reset();
|
|
|
|
Relay::execute_with(|| {
|
|
assert_ok!(relay_chain::Uniques::force_create(
|
|
relay_chain::RuntimeOrigin::root(),
|
|
2,
|
|
ALICE,
|
|
false
|
|
));
|
|
assert_ok!(relay_chain::Uniques::mint(
|
|
relay_chain::RuntimeOrigin::signed(ALICE),
|
|
2,
|
|
69,
|
|
child_account_account_id(1, ALICE)
|
|
));
|
|
assert_eq!(
|
|
relay_chain::Uniques::owner(2, 69),
|
|
Some(child_account_account_id(1, ALICE))
|
|
);
|
|
|
|
let message = Xcm(vec![Transact {
|
|
origin_kind: OriginKind::Xcm,
|
|
require_weight_at_most: Weight::from_parts(1_000_000_000, 1024 * 1024),
|
|
call: parachain::RuntimeCall::from(
|
|
pallet_uniques::Call::<parachain::Runtime>::create {
|
|
collection: (Parent, 2u64).into(),
|
|
admin: parent_account_id(),
|
|
},
|
|
)
|
|
.encode()
|
|
.into(),
|
|
}]);
|
|
// Send creation.
|
|
assert_ok!(RelayChainPalletXcm::send_xcm(Here, Parachain(1), message));
|
|
});
|
|
ParaA::execute_with(|| {
|
|
// Then transfer
|
|
let message = Xcm(vec![
|
|
WithdrawAsset((GeneralIndex(2), 69u32).into()),
|
|
DepositReserveAsset {
|
|
assets: AllCounted(1).into(),
|
|
dest: Parachain(1).into(),
|
|
xcm: Xcm(vec![DepositAsset {
|
|
assets: AllCounted(1).into(),
|
|
beneficiary: (AccountId32 { id: ALICE.into(), network: None },).into(),
|
|
}]),
|
|
},
|
|
]);
|
|
let alice = AccountId32 { id: ALICE.into(), network: None };
|
|
assert_ok!(ParachainPalletXcm::send_xcm(alice, Parent, message));
|
|
});
|
|
ParaA::execute_with(|| {
|
|
assert_eq!(parachain::Balances::reserved_balance(&parent_account_id()), 1000);
|
|
assert_eq!(
|
|
parachain::ForeignUniques::collection_owner((Parent, 2u64).into()),
|
|
Some(parent_account_id())
|
|
);
|
|
});
|
|
}
|
|
|
|
/// Scenario:
|
|
/// A parachain transfers funds on the relay chain to another parachain account.
|
|
///
|
|
/// Asserts that the parachain accounts are updated as expected.
|
|
#[test]
|
|
fn withdraw_and_deposit() {
|
|
MockNet::reset();
|
|
|
|
let send_amount = 10;
|
|
|
|
ParaA::execute_with(|| {
|
|
let message = Xcm(vec![
|
|
WithdrawAsset((Here, send_amount).into()),
|
|
buy_execution((Here, send_amount)),
|
|
DepositAsset { assets: AllCounted(1).into(), beneficiary: Parachain(2).into() },
|
|
]);
|
|
// Send withdraw and deposit
|
|
assert_ok!(ParachainPalletXcm::send_xcm(Here, Parent, message.clone()));
|
|
});
|
|
|
|
Relay::execute_with(|| {
|
|
assert_eq!(
|
|
relay_chain::Balances::free_balance(child_account_id(1)),
|
|
INITIAL_BALANCE - send_amount
|
|
);
|
|
assert_eq!(
|
|
relay_chain::Balances::free_balance(child_account_id(2)),
|
|
INITIAL_BALANCE + send_amount
|
|
);
|
|
});
|
|
}
|
|
|
|
/// Scenario:
|
|
/// A parachain wants to be notified that a transfer worked correctly.
|
|
/// It sends a `QueryHolding` after the deposit to get notified on success.
|
|
///
|
|
/// Asserts that the balances are updated correctly and the expected XCM is sent.
|
|
#[test]
|
|
fn query_holding() {
|
|
MockNet::reset();
|
|
|
|
let send_amount = 10;
|
|
let query_id_set = 1234;
|
|
|
|
// Send a message which fully succeeds on the relay chain
|
|
ParaA::execute_with(|| {
|
|
let message = Xcm(vec![
|
|
WithdrawAsset((Here, send_amount).into()),
|
|
buy_execution((Here, send_amount)),
|
|
DepositAsset { assets: AllCounted(1).into(), beneficiary: Parachain(2).into() },
|
|
ReportHolding {
|
|
response_info: QueryResponseInfo {
|
|
destination: Parachain(1).into(),
|
|
query_id: query_id_set,
|
|
max_weight: Weight::from_parts(1_000_000_000, 1024 * 1024),
|
|
},
|
|
assets: All.into(),
|
|
},
|
|
]);
|
|
// Send withdraw and deposit with query holding
|
|
assert_ok!(ParachainPalletXcm::send_xcm(Here, Parent, message.clone(),));
|
|
});
|
|
|
|
// Check that transfer was executed
|
|
Relay::execute_with(|| {
|
|
// Withdraw executed
|
|
assert_eq!(
|
|
relay_chain::Balances::free_balance(child_account_id(1)),
|
|
INITIAL_BALANCE - send_amount
|
|
);
|
|
// Deposit executed
|
|
assert_eq!(
|
|
relay_chain::Balances::free_balance(child_account_id(2)),
|
|
INITIAL_BALANCE + send_amount
|
|
);
|
|
});
|
|
|
|
// Check that QueryResponse message was received
|
|
ParaA::execute_with(|| {
|
|
assert_eq!(
|
|
parachain::MsgQueue::received_dmp(),
|
|
vec![Xcm(vec![QueryResponse {
|
|
query_id: query_id_set,
|
|
response: Response::Assets(Assets::new()),
|
|
max_weight: Weight::from_parts(1_000_000_000, 1024 * 1024),
|
|
querier: Some(Here.into()),
|
|
}])],
|
|
);
|
|
});
|
|
}
|
|
}
|