1
// Copyright 2019-2025 PureStake Inc.
2
// This file is part of Moonbeam.
3

            
4
// Moonbeam is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8

            
9
// Moonbeam is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13

            
14
// You should have received a copy of the GNU General Public License
15
// along with Moonbeam.  If not, see <http://www.gnu.org/licenses/>.
16

            
17
//! Moonriver Runtime Xcm Tests
18

            
19
mod xcm_mock;
20
use frame_support::{
21
	assert_ok,
22
	traits::{PalletInfo, PalletInfoAccess},
23
	weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight},
24
	BoundedVec,
25
};
26
use moonriver_runtime::xcm_config::AssetType;
27
use sp_core::ConstU32;
28
use sp_runtime::traits::Convert;
29
use xcm::{
30
	latest::prelude::{
31
		AccountId32, AccountKey20, All, Asset, AssetId, Assets as XcmAssets, BuyExecution,
32
		ClearOrigin, DepositAsset, Fungibility, GeneralIndex, Junction, Junctions, Limited,
33
		Location, OriginKind, PalletInstance, Parachain, QueryResponse, Reanchorable, Response,
34
		WeightLimit, WithdrawAsset, Xcm,
35
	},
36
	IntoVersion, VersionedAssets, VersionedLocation, WrapVersion,
37
};
38
use xcm_executor::traits::ConvertLocation;
39
use xcm_mock::parachain::{self, PolkadotXcm};
40
use xcm_mock::relay_chain;
41
use xcm_mock::*;
42
use xcm_simulator::TestExt;
43
mod common;
44
use cumulus_primitives_core::relay_chain::HrmpChannelId;
45
use pallet_xcm_transactor::{
46
	Currency, CurrencyPayment, HrmpInitParams, HrmpOperation, TransactWeights,
47
};
48
use xcm_primitives::{
49
	split_location_into_chain_part_and_beneficiary, UtilityEncodeCall, DEFAULT_PROOF_SIZE,
50
};
51

            
52
28
fn add_supported_asset(asset_type: parachain::AssetType, units_per_second: u128) -> Result<(), ()> {
53
28
	let parachain::AssetType::Xcm(location_v3) = asset_type;
54
28
	let VersionedLocation::V5(location_v5) = VersionedLocation::V3(location_v3)
55
28
		.into_version(xcm::latest::VERSION)
56
28
		.map_err(|_| ())?
57
	else {
58
		return Err(());
59
	};
60
	use frame_support::weights::WeightToFee as _;
61
28
	let native_amount_per_second: u128 =
62
28
		<parachain::Runtime as pallet_xcm_weight_trader::Config>::WeightToFee::weight_to_fee(
63
28
			&Weight::from_parts(
64
28
				frame_support::weights::constants::WEIGHT_REF_TIME_PER_SECOND,
65
28
				0,
66
28
			),
67
28
		)
68
28
		.try_into()
69
28
		.map_err(|_| ())?;
70
28
	let precision_factor = 10u128.pow(pallet_xcm_weight_trader::RELATIVE_PRICE_DECIMALS);
71
28
	let relative_price: u128 = if units_per_second > 0u128 {
72
10
		native_amount_per_second
73
10
			.saturating_mul(precision_factor)
74
10
			.saturating_div(units_per_second)
75
	} else {
76
18
		0u128
77
	};
78
28
	pallet_xcm_weight_trader::SupportedAssets::<parachain::Runtime>::insert(
79
28
		location_v5,
80
28
		(true, relative_price),
81
28
	);
82
28
	Ok(())
83
28
}
84

            
85
25
fn currency_to_asset(currency_id: parachain::CurrencyId, amount: u128) -> Asset {
86
25
	Asset {
87
25
		id: AssetId(
88
25
			<parachain::Runtime as pallet_xcm_transactor::Config>::CurrencyIdToLocation::convert(
89
25
				currency_id,
90
25
			)
91
25
			.unwrap(),
92
25
		),
93
25
		fun: Fungibility::Fungible(amount),
94
25
	}
95
25
}
96

            
97
// Send a relay asset (like DOT) to a parachain A
98
#[test]
99
1
fn receive_relay_asset_from_relay() {
100
1
	MockNet::reset();
101
1

            
102
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
103
1
	let source_id: parachain::AssetId = source_location.clone().into();
104
1
	let asset_metadata = parachain::AssetMetadata {
105
1
		name: b"RelayToken".to_vec(),
106
1
		symbol: b"Relay".to_vec(),
107
1
		decimals: 12,
108
1
	};
109
1
	// Register relay asset in parachain A
110
1
	ParaA::execute_with(|| {
111
1
		assert_ok!(AssetManager::register_foreign_asset(
112
1
			parachain::RuntimeOrigin::root(),
113
1
			source_location.clone(),
114
1
			asset_metadata,
115
1
			1u128,
116
1
			true
117
1
		));
118
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
119
1
	});
120
1

            
121
1
	// Actually send relay asset to parachain
122
1
	let dest: Location = AccountKey20 {
123
1
		network: None,
124
1
		key: PARAALICE,
125
1
	}
126
1
	.into();
127
1
	Relay::execute_with(|| {
128
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
129
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
130
1
			Box::new(Parachain(1).into()),
131
1
			Box::new(VersionedLocation::from(dest).clone()),
132
1
			Box::new(([] /* Here */, 123).into()),
133
1
			0,
134
1
			WeightLimit::Unlimited
135
1
		));
136
1
	});
137
1

            
138
1
	// Verify that parachain received the asset
139
1
	ParaA::execute_with(|| {
140
1
		// free execution, full amount received
141
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 123);
142
1
	});
143
1
}
144

            
145
// Send relay asset (like DOT) back from Parachain A to relaychain
146
#[test]
147
1
fn send_relay_asset_to_relay() {
148
1
	MockNet::reset();
149
1

            
150
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
151
1
	let source_id: parachain::AssetId = source_location.clone().into();
152
1

            
153
1
	let asset_metadata = parachain::AssetMetadata {
154
1
		name: b"RelayToken".to_vec(),
155
1
		symbol: b"Relay".to_vec(),
156
1
		decimals: 12,
157
1
	};
158
1

            
159
1
	// Register relay asset in paraA
160
1
	ParaA::execute_with(|| {
161
1
		assert_ok!(AssetManager::register_foreign_asset(
162
1
			parachain::RuntimeOrigin::root(),
163
1
			source_location.clone(),
164
1
			asset_metadata,
165
1
			1u128,
166
1
			true
167
1
		));
168
		// free execution
169
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
170
1
	});
171
1

            
172
1
	let dest: Location = Junction::AccountKey20 {
173
1
		network: None,
174
1
		key: PARAALICE,
175
1
	}
176
1
	.into();
177
1

            
178
1
	// First send relay chain asset to Parachain like in previous test
179
1
	Relay::execute_with(|| {
180
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
181
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
182
1
			Box::new(Parachain(1).into()),
183
1
			Box::new(VersionedLocation::from(dest).clone()),
184
1
			Box::new(([] /* Here */, 123).into()),
185
1
			0,
186
1
			WeightLimit::Unlimited
187
1
		));
188
1
	});
189
1

            
190
1
	ParaA::execute_with(|| {
191
1
		// Free execution, full amount received
192
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 123);
193
1
	});
194
1

            
195
1
	// Lets gather the balance before sending back money
196
1
	let mut balance_before_sending = 0;
197
1
	Relay::execute_with(|| {
198
1
		balance_before_sending = RelayBalances::free_balance(&RELAYALICE);
199
1
	});
200
1

            
201
1
	// We now send back some money to the relay
202
1
	let dest = Location {
203
1
		parents: 1,
204
1
		interior: [AccountId32 {
205
1
			network: None,
206
1
			id: RELAYALICE.into(),
207
1
		}]
208
1
		.into(),
209
1
	};
210
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
211
1

            
212
1
	ParaA::execute_with(|| {
213
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 123);
214
1
		assert_ok!(PolkadotXcm::transfer_assets(
215
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
216
1
			Box::new(VersionedLocation::from(chain_part)),
217
1
			Box::new(VersionedLocation::from(beneficiary)),
218
1
			Box::new(VersionedAssets::from(vec![asset])),
219
1
			0,
220
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
221
1
		));
222
1
	});
223
1

            
224
1
	// The balances in paraAlice should have been substracted
225
1
	ParaA::execute_with(|| {
226
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 0);
227
1
	});
228
1

            
229
1
	// Balances in the relay should have been received
230
1
	Relay::execute_with(|| {
231
1
		assert!(RelayBalances::free_balance(&RELAYALICE) > balance_before_sending);
232
1
	});
233
1
}
234

            
235
#[test]
236
1
fn send_relay_asset_to_para_b() {
237
1
	MockNet::reset();
238
1

            
239
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
240
1
	let source_id: parachain::AssetId = source_location.clone().into();
241
1

            
242
1
	let asset_metadata = parachain::AssetMetadata {
243
1
		name: b"RelayToken".to_vec(),
244
1
		symbol: b"Relay".to_vec(),
245
1
		decimals: 12,
246
1
	};
247
1

            
248
1
	// Register asset in paraA. Free execution
249
1
	ParaA::execute_with(|| {
250
1
		assert_ok!(AssetManager::register_foreign_asset(
251
1
			parachain::RuntimeOrigin::root(),
252
1
			source_location.clone(),
253
1
			asset_metadata.clone(),
254
1
			1u128,
255
1
			true
256
1
		));
257
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
258
1
	});
259
1

            
260
1
	// Register asset in paraB. Free execution
261
1
	ParaB::execute_with(|| {
262
1
		assert_ok!(AssetManager::register_foreign_asset(
263
1
			parachain::RuntimeOrigin::root(),
264
1
			source_location.clone(),
265
1
			asset_metadata,
266
1
			1u128,
267
1
			true
268
1
		));
269
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
270
1
	});
271
1

            
272
1
	// First send relay chain asset to Parachain A like in previous test
273
1
	let dest: Location = Junction::AccountKey20 {
274
1
		network: None,
275
1
		key: PARAALICE,
276
1
	}
277
1
	.into();
278
1
	Relay::execute_with(|| {
279
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
280
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
281
1
			Box::new(Parachain(1).into()),
282
1
			Box::new(VersionedLocation::from(dest).clone()),
283
1
			Box::new(([] /* Here */, 123).into()),
284
1
			0,
285
1
			WeightLimit::Unlimited
286
1
		));
287
1
	});
288
1

            
289
1
	ParaA::execute_with(|| {
290
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 123);
291
1
	});
292
1

            
293
1
	// Now send relay asset from para A to para B
294
1
	let dest = Location {
295
1
		parents: 1,
296
1
		interior: [
297
1
			Parachain(2),
298
1
			AccountKey20 {
299
1
				network: None,
300
1
				key: PARAALICE.into(),
301
1
			},
302
1
		]
303
1
		.into(),
304
1
	};
305
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
306
1

            
307
1
	ParaA::execute_with(|| {
308
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
309
1
		assert_ok!(PolkadotXcm::transfer_assets(
310
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
311
1
			Box::new(VersionedLocation::from(chain_part)),
312
1
			Box::new(VersionedLocation::from(beneficiary)),
313
1
			Box::new(VersionedAssets::from(vec![asset])),
314
1
			0,
315
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
316
1
		));
317
1
	});
318
1

            
319
1
	// Para A balances should have been substracted
320
1
	ParaA::execute_with(|| {
321
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 23);
322
1
	});
323
1

            
324
1
	// Para B balances should have been credited
325
1
	ParaB::execute_with(|| {
326
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 100);
327
1
	});
328
1
}
329

            
330
#[test]
331
1
fn send_para_a_asset_to_para_b() {
332
1
	MockNet::reset();
333
1

            
334
1
	// This represents the asset in paraA
335
1
	let para_a_balances = Location::new(1, [Parachain(1), PalletInstance(1u8)]);
336
1
	let source_location: AssetType = para_a_balances
337
1
		.try_into()
338
1
		.expect("Location convertion to AssetType should succeed");
339
1
	let source_id: parachain::AssetId = source_location.clone().into();
340
1

            
341
1
	let asset_metadata = parachain::AssetMetadata {
342
1
		name: b"ParaAToken".to_vec(),
343
1
		symbol: b"ParaA".to_vec(),
344
1
		decimals: 18,
345
1
	};
346
1

            
347
1
	// Register asset in paraB. Free execution
348
1
	ParaB::execute_with(|| {
349
1
		assert_ok!(AssetManager::register_foreign_asset(
350
1
			parachain::RuntimeOrigin::root(),
351
1
			source_location.clone(),
352
1
			asset_metadata,
353
1
			1u128,
354
1
			true
355
1
		));
356
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
357
1
	});
358
1

            
359
1
	// Send para A asset from para A to para B
360
1
	let dest = Location {
361
1
		parents: 1,
362
1
		interior: [
363
1
			Parachain(2),
364
1
			AccountKey20 {
365
1
				network: None,
366
1
				key: PARAALICE.into(),
367
1
			},
368
1
		]
369
1
		.into(),
370
1
	};
371
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
372
1

            
373
1
	ParaA::execute_with(|| {
374
1
		let asset = currency_to_asset(parachain::CurrencyId::SelfReserve, 100);
375
1
		assert_ok!(PolkadotXcm::transfer_assets(
376
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
377
1
			Box::new(VersionedLocation::from(chain_part)),
378
1
			Box::new(VersionedLocation::from(beneficiary)),
379
1
			Box::new(VersionedAssets::from(vec![asset])),
380
1
			0,
381
1
			WeightLimit::Limited(Weight::from_parts(800000u64, DEFAULT_PROOF_SIZE))
382
1
		));
383
1
	});
384
1

            
385
1
	// Native token is substracted in paraA
386
1
	ParaA::execute_with(|| {
387
1
		// free execution, full amount received
388
1
		assert_eq!(
389
1
			ParaBalances::free_balance(&PARAALICE.into()),
390
1
			INITIAL_BALANCE - 100
391
1
		);
392
1
	});
393
1

            
394
1
	// Asset is minted in paraB
395
1
	ParaB::execute_with(|| {
396
1
		// free execution, full amount received
397
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 100);
398
1
	});
399
1
}
400

            
401
#[test]
402
1
fn send_para_a_asset_from_para_b_to_para_c() {
403
1
	MockNet::reset();
404
1

            
405
1
	// Represents para A asset
406
1
	let para_a_balances = Location::new(1, [Parachain(1), PalletInstance(1u8)]);
407
1
	let source_location: AssetType = para_a_balances
408
1
		.try_into()
409
1
		.expect("Location convertion to AssetType should succeed");
410
1
	let source_id: parachain::AssetId = source_location.clone().into();
411
1

            
412
1
	let asset_metadata = parachain::AssetMetadata {
413
1
		name: b"ParaAToken".to_vec(),
414
1
		symbol: b"ParaA".to_vec(),
415
1
		decimals: 18,
416
1
	};
417
1

            
418
1
	// Register para A asset in parachain B. Free execution
419
1
	ParaB::execute_with(|| {
420
1
		assert_ok!(AssetManager::register_foreign_asset(
421
1
			parachain::RuntimeOrigin::root(),
422
1
			source_location.clone(),
423
1
			asset_metadata.clone(),
424
1
			1u128,
425
1
			true
426
1
		));
427
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
428
1
	});
429
1

            
430
1
	// Register para A asset in parachain C. Free execution
431
1
	ParaC::execute_with(|| {
432
1
		assert_ok!(AssetManager::register_foreign_asset(
433
1
			parachain::RuntimeOrigin::root(),
434
1
			source_location.clone(),
435
1
			asset_metadata,
436
1
			1u128,
437
1
			true
438
1
		));
439
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
440
1
	});
441
1

            
442
1
	// Send para A asset to para B
443
1
	let dest = Location {
444
1
		parents: 1,
445
1
		interior: [
446
1
			Parachain(2),
447
1
			AccountKey20 {
448
1
				network: None,
449
1
				key: PARAALICE.into(),
450
1
			},
451
1
		]
452
1
		.into(),
453
1
	};
454
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
455
1

            
456
1
	ParaA::execute_with(|| {
457
1
		let asset = currency_to_asset(parachain::CurrencyId::SelfReserve, 100);
458
1
		assert_ok!(PolkadotXcm::transfer_assets(
459
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
460
1
			Box::new(VersionedLocation::from(chain_part)),
461
1
			Box::new(VersionedLocation::from(beneficiary)),
462
1
			Box::new(VersionedAssets::from(vec![asset])),
463
1
			0,
464
1
			WeightLimit::Limited(Weight::from_parts(80u64, DEFAULT_PROOF_SIZE))
465
1
		));
466
1
	});
467
1

            
468
1
	// Para A balances have been substracted
469
1
	ParaA::execute_with(|| {
470
1
		assert_eq!(
471
1
			ParaBalances::free_balance(&PARAALICE.into()),
472
1
			INITIAL_BALANCE - 100
473
1
		);
474
1
	});
475
1

            
476
1
	// Para B balances have been credited
477
1
	ParaB::execute_with(|| {
478
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 100);
479
1
	});
480
1

            
481
1
	// Send para A asset from para B to para C
482
1
	let dest = Location {
483
1
		parents: 1,
484
1
		interior: [
485
1
			Parachain(3),
486
1
			AccountKey20 {
487
1
				network: None,
488
1
				key: PARAALICE.into(),
489
1
			},
490
1
		]
491
1
		.into(),
492
1
	};
493
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
494
1

            
495
1
	ParaB::execute_with(|| {
496
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
497
1
		assert_ok!(PolkadotXcm::transfer_assets(
498
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
499
1
			Box::new(VersionedLocation::from(chain_part)),
500
1
			Box::new(VersionedLocation::from(beneficiary)),
501
1
			Box::new(VersionedAssets::from(vec![asset])),
502
1
			0,
503
1
			WeightLimit::Limited(Weight::from_parts(80u64, DEFAULT_PROOF_SIZE))
504
1
		));
505
1
	});
506
1

            
507
1
	// The message passed through parachainA so we needed to pay since its the native token
508
1
	ParaC::execute_with(|| {
509
1
		// free execution, full amount received
510
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 96);
511
1
	});
512
1
}
513

            
514
#[test]
515
1
fn send_para_a_asset_to_para_b_and_back_to_para_a() {
516
1
	MockNet::reset();
517
1

            
518
1
	// Para A asset
519
1
	let para_a_balances = Location::new(1, [Parachain(1), PalletInstance(1u8)]);
520
1
	let source_location: AssetType = para_a_balances
521
1
		.try_into()
522
1
		.expect("Location convertion to AssetType should succeed");
523
1
	let source_id: parachain::AssetId = source_location.clone().into();
524
1

            
525
1
	let asset_metadata = parachain::AssetMetadata {
526
1
		name: b"ParaAToken".to_vec(),
527
1
		symbol: b"ParaA".to_vec(),
528
1
		decimals: 18,
529
1
	};
530
1

            
531
1
	// Register para A asset in para B
532
1
	ParaB::execute_with(|| {
533
1
		assert_ok!(AssetManager::register_foreign_asset(
534
1
			parachain::RuntimeOrigin::root(),
535
1
			source_location.clone(),
536
1
			asset_metadata,
537
1
			1u128,
538
1
			true
539
1
		));
540
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
541
1
	});
542
1

            
543
1
	// Send para A asset to para B
544
1
	let dest = Location {
545
1
		parents: 1,
546
1
		interior: [
547
1
			Parachain(2),
548
1
			AccountKey20 {
549
1
				network: None,
550
1
				key: PARAALICE.into(),
551
1
			},
552
1
		]
553
1
		.into(),
554
1
	};
555
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
556
1

            
557
1
	ParaA::execute_with(|| {
558
1
		let asset = currency_to_asset(parachain::CurrencyId::SelfReserve, 100);
559
1
		assert_ok!(PolkadotXcm::transfer_assets(
560
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
561
1
			Box::new(VersionedLocation::from(chain_part)),
562
1
			Box::new(VersionedLocation::from(beneficiary)),
563
1
			Box::new(VersionedAssets::from(vec![asset])),
564
1
			0,
565
1
			WeightLimit::Limited(Weight::from_parts(80u64, DEFAULT_PROOF_SIZE))
566
1
		));
567
1
	});
568
1

            
569
1
	// Balances have been substracted
570
1
	ParaA::execute_with(|| {
571
1
		assert_eq!(
572
1
			ParaBalances::free_balance(&PARAALICE.into()),
573
1
			INITIAL_BALANCE - 100
574
1
		);
575
1
	});
576
1

            
577
1
	// Para B balances have been credited
578
1
	ParaB::execute_with(|| {
579
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 100);
580
1
	});
581
1

            
582
1
	// Send back para A asset to para A
583
1
	let dest = Location {
584
1
		parents: 1,
585
1
		interior: [
586
1
			Parachain(1),
587
1
			AccountKey20 {
588
1
				network: None,
589
1
				key: PARAALICE.into(),
590
1
			},
591
1
		]
592
1
		.into(),
593
1
	};
594
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
595
1

            
596
1
	ParaB::execute_with(|| {
597
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
598
1
		assert_ok!(PolkadotXcm::transfer_assets(
599
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
600
1
			Box::new(VersionedLocation::from(chain_part)),
601
1
			Box::new(VersionedLocation::from(beneficiary)),
602
1
			Box::new(VersionedAssets::from(vec![asset])),
603
1
			0,
604
1
			WeightLimit::Limited(Weight::from_parts(80u64, DEFAULT_PROOF_SIZE))
605
1
		));
606
1
	});
607
1

            
608
1
	// Para A asset has been credited
609
1
	ParaA::execute_with(|| {
610
1
		// Weight used is 4
611
1
		assert_eq!(
612
1
			ParaBalances::free_balance(&PARAALICE.into()),
613
1
			INITIAL_BALANCE - 4
614
1
		);
615
1
	});
616
1
}
617

            
618
#[test]
619
1
fn send_para_a_asset_to_para_b_and_back_to_para_a_with_new_reanchoring() {
620
1
	MockNet::reset();
621
1

            
622
1
	let para_a_balances = Location::new(1, [Parachain(1), PalletInstance(1u8)]);
623
1
	let source_location: AssetType = para_a_balances
624
1
		.try_into()
625
1
		.expect("Location convertion to AssetType should succeed");
626
1
	let source_id: parachain::AssetId = source_location.clone().into();
627
1

            
628
1
	let asset_metadata = parachain::AssetMetadata {
629
1
		name: b"ParaAToken".to_vec(),
630
1
		symbol: b"ParaA".to_vec(),
631
1
		decimals: 18,
632
1
	};
633
1

            
634
1
	ParaB::execute_with(|| {
635
1
		assert_ok!(AssetManager::register_foreign_asset(
636
1
			parachain::RuntimeOrigin::root(),
637
1
			source_location.clone(),
638
1
			asset_metadata,
639
1
			1u128,
640
1
			true
641
1
		));
642
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
643
1
	});
644
1

            
645
1
	let dest = Location {
646
1
		parents: 1,
647
1
		interior: [
648
1
			Parachain(2),
649
1
			AccountKey20 {
650
1
				network: None,
651
1
				key: PARAALICE.into(),
652
1
			},
653
1
		]
654
1
		.into(),
655
1
	};
656
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
657
1

            
658
1
	ParaA::execute_with(|| {
659
1
		let asset = currency_to_asset(parachain::CurrencyId::SelfReserve, 100);
660
1
		assert_ok!(PolkadotXcm::transfer_assets(
661
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
662
1
			Box::new(VersionedLocation::from(chain_part)),
663
1
			Box::new(VersionedLocation::from(beneficiary)),
664
1
			Box::new(VersionedAssets::from(vec![asset])),
665
1
			0,
666
1
			WeightLimit::Limited(Weight::from_parts(80u64, DEFAULT_PROOF_SIZE))
667
1
		));
668
1
	});
669
1

            
670
1
	ParaA::execute_with(|| {
671
1
		// Free execution, full amount received
672
1
		assert_eq!(
673
1
			ParaBalances::free_balance(&PARAALICE.into()),
674
1
			INITIAL_BALANCE - 100
675
1
		);
676
1
	});
677
1

            
678
1
	ParaB::execute_with(|| {
679
1
		// Free execution, full amount received
680
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 100);
681
1
	});
682
1

            
683
1
	// This time we will force the new reanchoring by manually sending the
684
1
	// Message through polkadotXCM pallet
685
1

            
686
1
	let dest = Location {
687
1
		parents: 1,
688
1
		interior: [Parachain(1)].into(),
689
1
	};
690
1

            
691
1
	let reanchored_para_a_balances = Location::new(0, [PalletInstance(1u8)]);
692
1

            
693
1
	let message = xcm::VersionedXcm::<()>::V5(Xcm(vec![
694
1
		WithdrawAsset((reanchored_para_a_balances.clone(), 100).into()),
695
1
		ClearOrigin,
696
1
		BuyExecution {
697
1
			fees: (reanchored_para_a_balances, 100).into(),
698
1
			weight_limit: Limited(80.into()),
699
1
		},
700
1
		DepositAsset {
701
1
			assets: All.into(),
702
1
			beneficiary: Location::new(
703
1
				0,
704
1
				[AccountKey20 {
705
1
					network: None,
706
1
					key: PARAALICE,
707
1
				}],
708
1
			),
709
1
		},
710
1
	]));
711
1
	ParaB::execute_with(|| {
712
1
		// Send a message to the sovereign account in ParaA to withdraw
713
1
		// and deposit asset
714
1
		assert_ok!(ParachainPalletXcm::send(
715
1
			parachain::RuntimeOrigin::root(),
716
1
			Box::new(dest.into()),
717
1
			Box::new(message),
718
1
		));
719
1
	});
720
1

            
721
1
	ParaB::execute_with(|| {
722
1
		// free execution, full amount received
723
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 100);
724
1
	});
725
1

            
726
1
	// This time we will force the new reanchoring by manually sending the
727
1
	// Message through polkadotXCM pallet
728
1

            
729
1
	let dest = Location {
730
1
		parents: 1,
731
1
		interior: [Parachain(1)].into(),
732
1
	};
733
1

            
734
1
	let reanchored_para_a_balances = Location::new(0, [PalletInstance(1u8)]);
735
1

            
736
1
	let message = xcm::VersionedXcm::<()>::V5(Xcm(vec![
737
1
		WithdrawAsset((reanchored_para_a_balances.clone(), 100).into()),
738
1
		ClearOrigin,
739
1
		BuyExecution {
740
1
			fees: (reanchored_para_a_balances, 100).into(),
741
1
			weight_limit: Limited(80.into()),
742
1
		},
743
1
		DepositAsset {
744
1
			assets: All.into(),
745
1
			beneficiary: Location::new(
746
1
				0,
747
1
				[AccountKey20 {
748
1
					network: None,
749
1
					key: PARAALICE,
750
1
				}],
751
1
			),
752
1
		},
753
1
	]));
754
1
	ParaB::execute_with(|| {
755
1
		// Send a message to the sovereign account in ParaA to withdraw
756
1
		// and deposit asset
757
1
		assert_ok!(ParachainPalletXcm::send(
758
1
			parachain::RuntimeOrigin::root(),
759
1
			Box::new(dest.into()),
760
1
			Box::new(message),
761
1
		));
762
1
	});
763
1

            
764
1
	ParaA::execute_with(|| {
765
1
		// Weight used is 4
766
1
		assert_eq!(
767
1
			ParaBalances::free_balance(&PARAALICE.into()),
768
1
			INITIAL_BALANCE - 4
769
1
		);
770
1
	});
771
1
}
772

            
773
#[test]
774
1
fn receive_relay_asset_with_trader() {
775
1
	MockNet::reset();
776
1

            
777
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
778
1
	let source_id: parachain::AssetId = source_location.clone().into();
779
1

            
780
1
	let asset_metadata = parachain::AssetMetadata {
781
1
		name: b"RelayToken".to_vec(),
782
1
		symbol: b"Relay".to_vec(),
783
1
		decimals: 12,
784
1
	};
785
1

            
786
1
	// This time we are gonna put a rather high number of units per second
787
1
	// we know later we will divide by 1e12
788
1
	// Lets put 1e6 as units per second
789
1
	ParaA::execute_with(|| {
790
1
		assert_ok!(AssetManager::register_foreign_asset(
791
1
			parachain::RuntimeOrigin::root(),
792
1
			source_location.clone(),
793
1
			asset_metadata,
794
1
			1u128,
795
1
			true
796
1
		));
797
1
		assert_ok!(add_supported_asset(
798
1
			source_location.clone(),
799
1
			2500000000000u128
800
1
		));
801
1
	});
802
1

            
803
1
	let dest: Location = Junction::AccountKey20 {
804
1
		network: None,
805
1
		key: PARAALICE,
806
1
	}
807
1
	.into();
808
1
	// We are sending 100 tokens from relay.
809
1
	// Amount spent in fees is Units per second * weight / 1_000_000_000_000 (weight per second)
810
1
	// weight is 4 since we are executing 4 instructions with a unitweightcost of 1.
811
1
	// Units per second should be 2_500_000_000_000_000
812
1
	// Therefore with no refund, we should receive 10 tokens less
813
1
	// Native trader fails for this, and we use the asset trader
814
1
	Relay::execute_with(|| {
815
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
816
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
817
1
			Box::new(Parachain(1).into()),
818
1
			Box::new(VersionedLocation::from(dest).clone()),
819
1
			Box::new(([] /* Here */, 100).into()),
820
1
			0,
821
1
			WeightLimit::Unlimited
822
1
		));
823
1
	});
824
1

            
825
1
	ParaA::execute_with(|| {
826
1
		// non-free execution, not full amount received
827
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 90);
828
		// Fee should have been received by treasury
829
1
		assert_eq!(Assets::balance(source_id, &Treasury::account_id()), 10);
830
1
	});
831
1
}
832

            
833
#[test]
834
1
fn send_para_a_asset_to_para_b_with_trader() {
835
1
	MockNet::reset();
836
1

            
837
1
	let para_a_balances = Location::new(1, [Parachain(1), PalletInstance(1u8)]);
838
1
	let source_location: AssetType = para_a_balances
839
1
		.try_into()
840
1
		.expect("Location convertion to AssetType should succeed");
841
1
	let source_id: parachain::AssetId = source_location.clone().into();
842
1

            
843
1
	let asset_metadata = parachain::AssetMetadata {
844
1
		name: b"ParaAToken".to_vec(),
845
1
		symbol: b"ParaA".to_vec(),
846
1
		decimals: 18,
847
1
	};
848
1

            
849
1
	ParaB::execute_with(|| {
850
1
		assert_ok!(AssetManager::register_foreign_asset(
851
1
			parachain::RuntimeOrigin::root(),
852
1
			source_location.clone(),
853
1
			asset_metadata,
854
1
			1u128,
855
1
			true
856
1
		));
857
1
		assert_ok!(add_supported_asset(
858
1
			source_location.clone(),
859
1
			2500000000000u128
860
1
		));
861
1
	});
862
1

            
863
1
	let dest = Location {
864
1
		parents: 1,
865
1
		interior: [
866
1
			Parachain(2),
867
1
			AccountKey20 {
868
1
				network: None,
869
1
				key: PARAALICE.into(),
870
1
			},
871
1
		]
872
1
		.into(),
873
1
	};
874
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
875
1

            
876
1
	// In destination chain, we only need 4 weight
877
1
	// We put 10 weight, 6 of which should be refunded and 4 of which should go to treasury
878
1
	ParaA::execute_with(|| {
879
1
		let asset = currency_to_asset(parachain::CurrencyId::SelfReserve, 100);
880
1
		assert_ok!(PolkadotXcm::transfer_assets(
881
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
882
1
			Box::new(VersionedLocation::from(chain_part)),
883
1
			Box::new(VersionedLocation::from(beneficiary)),
884
1
			Box::new(VersionedAssets::from(vec![asset])),
885
1
			0,
886
1
			WeightLimit::Limited(Weight::from_parts(10u64, DEFAULT_PROOF_SIZE))
887
1
		));
888
1
	});
889
1
	ParaA::execute_with(|| {
890
1
		// free execution, full amount received
891
1
		assert_eq!(
892
1
			ParaBalances::free_balance(&PARAALICE.into()),
893
1
			INITIAL_BALANCE - 100
894
1
		);
895
1
	});
896
1

            
897
1
	// We are sending 100 tokens from para A.
898
1
	// Amount spent in fees is Units per second * weight / 1_000_000_000_000 (weight per second)
899
1
	// weight is 4 since we are executing 4 instructions with a unitweightcost of 1.
900
1
	// Units per second should be 2_500_000_000_000_000
901
1
	// Since we set 10 weight in destination chain, 25 will be charged upfront
902
1
	// 15 of those will be refunded, while 10 will go to treasury as the true weight used
903
1
	// will be 4
904
1
	ParaB::execute_with(|| {
905
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 90);
906
		// Fee should have been received by treasury
907
1
		assert_eq!(Assets::balance(source_id, &Treasury::account_id()), 10);
908
1
	});
909
1
}
910

            
911
#[test]
912
1
fn send_para_a_asset_to_para_b_with_trader_and_fee() {
913
1
	MockNet::reset();
914
1

            
915
1
	let para_a_balances = Location::new(1, [Parachain(1), PalletInstance(1u8)]);
916
1
	let source_location: AssetType = para_a_balances
917
1
		.try_into()
918
1
		.expect("Location convertion to AssetType should succeed");
919
1
	let source_id: parachain::AssetId = source_location.clone().into();
920
1

            
921
1
	let asset_metadata = parachain::AssetMetadata {
922
1
		name: b"ParaAToken".to_vec(),
923
1
		symbol: b"ParaA".to_vec(),
924
1
		decimals: 18,
925
1
	};
926
1

            
927
1
	ParaB::execute_with(|| {
928
1
		assert_ok!(AssetManager::register_foreign_asset(
929
1
			parachain::RuntimeOrigin::root(),
930
1
			source_location.clone(),
931
1
			asset_metadata,
932
1
			1u128,
933
1
			true
934
1
		));
935
		// With these units per second, 80K weight convrets to 1 asset unit
936
1
		assert_ok!(add_supported_asset(source_location.clone(), 12500000u128));
937
1
	});
938
1

            
939
1
	let dest = Location {
940
1
		parents: 1,
941
1
		interior: [
942
1
			Parachain(2),
943
1
			AccountKey20 {
944
1
				network: None,
945
1
				key: PARAALICE.into(),
946
1
			},
947
1
		]
948
1
		.into(),
949
1
	};
950
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
951
1

            
952
1
	// we use transfer_with_fee
953
1
	ParaA::execute_with(|| {
954
1
		let asset = currency_to_asset(parachain::CurrencyId::SelfReserve, 100);
955
1
		let asset_fee = currency_to_asset(parachain::CurrencyId::SelfReserve, 1);
956
1
		assert_ok!(PolkadotXcm::transfer_assets(
957
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
958
1
			Box::new(VersionedLocation::from(chain_part)),
959
1
			Box::new(VersionedLocation::from(beneficiary)),
960
1
			Box::new(VersionedAssets::from(vec![asset_fee, asset])),
961
1
			0,
962
1
			WeightLimit::Limited(Weight::from_parts(800000u64, DEFAULT_PROOF_SIZE))
963
1
		));
964
1
	});
965
1
	ParaA::execute_with(|| {
966
1
		// 100 tokens transferred plus 1 taken from fees
967
1
		assert_eq!(
968
1
			ParaBalances::free_balance(&PARAALICE.into()),
969
1
			INITIAL_BALANCE - 100 - 1
970
1
		);
971
1
	});
972
1

            
973
1
	ParaB::execute_with(|| {
974
1
		// free execution, full amount received because trully the xcm instruction does not cost
975
1
		// what it is specified
976
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 101);
977
1
	});
978
1
}
979

            
980
#[test]
981
1
fn error_when_not_paying_enough() {
982
1
	MockNet::reset();
983
1

            
984
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
985
1
	let source_id: parachain::AssetId = source_location.clone().into();
986
1

            
987
1
	let asset_metadata = parachain::AssetMetadata {
988
1
		name: b"RelayToken".to_vec(),
989
1
		symbol: b"Relay".to_vec(),
990
1
		decimals: 12,
991
1
	};
992
1

            
993
1
	let dest: Location = Junction::AccountKey20 {
994
1
		network: None,
995
1
		key: PARAALICE,
996
1
	}
997
1
	.into();
998
1
	// This time we are gonna put a rather high number of units per second
999
1
	// we know later we will divide by 1e12
1
	// Lets put 1e6 as units per second
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(
1
			source_location.clone(),
1
			2500000000000u128
1
		));
1
	});
1

            
1
	// We are sending 100 tokens from relay.
1
	// If we set the dest weight to be 1e7, we know the buy_execution will spend 1e7*1e6/1e12 = 10
1
	// Therefore with no refund, we should receive 10 tokens less
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 5).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// amount not received as it is not paying enough
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 0);
1
	});
1
}
#[test]
1
fn transact_through_derivative_multilocation() {
1
	MockNet::reset();
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 1u128));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			// Relay charges 1000 for every instruction, and we have 3, so 3000
1
			3000.into(),
1
			20000000000.into(),
1
			None
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			WEIGHT_REF_TIME_PER_SECOND as u128,
1
		));
1
	});
1

            
1
	// Let's construct the call to know how much weight it is going to require
1

            
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		// 4000000000 transact + 3000 correspond to 4000003000 tokens. 100 more for the transfer call
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 4000003100u128).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003100);
1
	});
1

            
1
	// Register address
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::register(
1
			parachain::RuntimeOrigin::root(),
1
			PARAALICE.into(),
1
			0,
1
		));
1
	});
1

            
1
	// Send to registered address
1

            
1
	let registered_address = derivative_account_id(para_a_account(), 0);
1
	let dest = Location {
1
		parents: 1,
1
		interior: [AccountId32 {
1
			network: None,
1
			id: registered_address.clone().into(),
1
		}]
1
		.into(),
1
	};
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
1
		// free execution, full amount received
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003000);
1
	});
1

            
1
	// What we will do now is transfer this relay tokens from the derived account to the sovereign
1
	// again
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 4000003000);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_derivative(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			parachain::MockTransactors::Relay,
1
			0,
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: None
1
			},
1
			encoded,
1
			// 4000000000 + 3000 we should have taken out 4000003000 tokens from the caller
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 100);
1
		assert!(RelayBalances::free_balance(&registered_address) == 0);
1
	});
1
}
#[test]
1
fn transact_through_derivative_with_custom_fee_weight() {
1
	MockNet::reset();
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 1u128));
1
	});
1

            
1
	// Let's construct the call to know how much weight it is going to require
1

            
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		// 4000000000 transact + 3000 correspond to 4000003000 tokens. 100 more for the transfer call
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 4000003100u128).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003100);
1
	});
1

            
1
	// Register address
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::register(
1
			parachain::RuntimeOrigin::root(),
1
			PARAALICE.into(),
1
			0,
1
		));
1
	});
1

            
1
	// Send to registered address
1

            
1
	let registered_address = derivative_account_id(para_a_account(), 0);
1
	let dest = Location {
1
		parents: 1,
1
		interior: [AccountId32 {
1
			network: None,
1
			id: registered_address.clone().into(),
1
		}]
1
		.into(),
1
	};
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
1
		// free execution, full amount received
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003000);
1
	});
1

            
1
	// What we will do now is transfer this relay tokens from the derived account to the sovereign
1
	// again
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 4000003000);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let overall_weight = 4000003000u64;
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_derivative(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			parachain::MockTransactors::Relay,
1
			0,
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				// 1-1 fee weight mapping
1
				fee_amount: Some(overall_weight as u128)
1
			},
1
			// 4000000000 + 3000 we should have taken out 4000003000 tokens from the caller
1
			encoded,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: Some(Limited(overall_weight.into()))
1
			},
1
			false
1
		));
1
		let event_found: Option<parachain::RuntimeEvent> = parachain::para_events()
1
			.iter()
12
			.find_map(|event| match event.clone() {
				parachain::RuntimeEvent::PolkadotXcm(pallet_xcm::Event::AssetsTrapped {
					..
				}) => Some(event.clone()),
12
				_ => None,
12
			});
1
		// Assert that the events do not contain the assets being trapped
1
		assert!(event_found.is_none());
1
	});
1

            
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 100);
1
		assert!(RelayBalances::free_balance(&registered_address) == 0);
1
	});
1
}
#[test]
1
fn transact_through_derivative_with_custom_fee_weight_refund() {
1
	MockNet::reset();
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 1u128));
1
	});
1

            
1
	// Let's construct the call to know how much weight it is going to require
1

            
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		// 4000000000 transact + 9000 correspond to 4000009000 tokens. 100 more for the transfer call
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 4000009100u128).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000009100);
1
	});
1

            
1
	// Register address
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::register(
1
			parachain::RuntimeOrigin::root(),
1
			PARAALICE.into(),
1
			0,
1
		));
1
	});
1

            
1
	// Send to registered address
1

            
1
	let registered_address = derivative_account_id(para_a_account(), 0);
1
	let dest = Location {
1
		parents: 1,
1
		interior: [AccountId32 {
1
			network: None,
1
			id: registered_address.clone().into(),
1
		}]
1
		.into(),
1
	};
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
1
		// free execution, full amount received
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000009000);
1
	});
1

            
1
	// What we will do now is transfer this relay tokens from the derived account to the sovereign
1
	// again
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 4000009000);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let overall_weight = 4000009000u64;
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_derivative(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			parachain::MockTransactors::Relay,
1
			0,
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				// 1-1 fee weight mapping
1
				fee_amount: Some(overall_weight as u128)
1
			},
1
			encoded,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: Some(Limited(overall_weight.into()))
1
			},
1
			true
1
		));
1
		let event_found: Option<parachain::RuntimeEvent> = parachain::para_events()
1
			.iter()
12
			.find_map(|event| match event.clone() {
				parachain::RuntimeEvent::PolkadotXcm(pallet_xcm::Event::AssetsTrapped {
					..
				}) => Some(event.clone()),
12
				_ => None,
12
			});
1
		// Assert that the events do not contain the assets being trapped
1
		assert!(event_found.is_none());
1
	});
1

            
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		// 4000009000 refunded + 100 transferred = 4000009100
1
		assert_eq!(RelayBalances::free_balance(&para_a_account()), 4000009100);
1
		assert_eq!(RelayBalances::free_balance(&registered_address), 0);
1
	});
1
}
#[test]
1
fn transact_through_sovereign() {
1
	MockNet::reset();
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 1u128));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			// Relay charges 1000 for every instruction, and we have 3, so 3000
1
			3000.into(),
1
			20000000000.into(),
1
			None
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			WEIGHT_REF_TIME_PER_SECOND as u128,
1
		));
1
	});
1

            
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 4000003100u128).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003100);
1
	});
1

            
1
	// Register address
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::register(
1
			parachain::RuntimeOrigin::root(),
1
			PARAALICE.into(),
1
			0,
1
		));
1
	});
1

            
1
	// Send to registered address
1
	let registered_address = derivative_account_id(para_a_account(), 0);
1
	let dest = Location {
1
		parents: 1,
1
		interior: [AccountId32 {
1
			network: None,
1
			id: registered_address.clone().into(),
1
		}]
1
		.into(),
1
	};
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
1
		// free execution, full amount received
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003000);
1
	});
1

            
1
	// What we will do now is transfer this relay tokens from the derived account to the sovereign
1
	// again
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 4000003000);
1
		0
1
	});
1

            
1
	// We send the xcm transact operation to parent
1
	let dest = Location {
1
		parents: 1,
1
		interior: /* Here */ [].into(),
1
	};
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let utility_bytes = parachain::MockTransactors::Relay.encode_call(
1
		xcm_primitives::UtilityAvailableCalls::AsDerivative(0, encoded),
1
	);
1

            
1
	// Root can directly pass the execution byes to the sovereign
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_sovereign(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(dest)),
1
			Some(PARAALICE.into()),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: None
1
			},
1
			utility_bytes,
1
			OriginKind::SovereignAccount,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 100);
1
		assert!(RelayBalances::free_balance(&registered_address) == 0);
1
	});
1
}
#[test]
1
fn transact_through_sovereign_fee_payer_none() {
1
	MockNet::reset();
1

            
1
	ParaA::execute_with(|| {
1
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			// Relay charges 1000 for every instruction, and we have 3, so 3000
1
			3000.into(),
1
			20000000000.into(),
1
			None
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			WEIGHT_REF_TIME_PER_SECOND as u128,
1
		));
1
	});
1

            
1
	let derivative_address = derivative_account_id(para_a_account(), 0);
1

            
1
	Relay::execute_with(|| {
1
		// Transfer 100 tokens to derivative_address on the relay
1
		assert_ok!(RelayBalances::transfer_keep_alive(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			derivative_address.clone(),
1
			100u128
1
		));
		// Transfer the XCM execution fee amount to ParaA's sovereign account
1
		assert_ok!(RelayBalances::transfer_keep_alive(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			para_a_account(),
1
			4000003000u128
1
		));
1
	});
1

            
1
	// Check balances before the transact call
1
	Relay::execute_with(|| {
1
		assert_eq!(RelayBalances::free_balance(&para_a_account()), 4000003000);
1
		assert_eq!(RelayBalances::free_balance(&derivative_address), 100);
1
		assert_eq!(RelayBalances::free_balance(&RELAYBOB), 0);
1
	});
1

            
1
	// Encode the call. Balances transfer of 100 relay tokens to RELAYBOB
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		dest: RELAYBOB,
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	// The final call will be an AsDerivative using index 0
1
	let utility_bytes = parachain::MockTransactors::Relay.encode_call(
1
		xcm_primitives::UtilityAvailableCalls::AsDerivative(0, encoded),
1
	);
1

            
1
	// We send the xcm transact operation to parent
1
	let dest = Location {
1
		parents: 1,
1
		interior: /* Here */ [].into(),
1
	};
1

            
1
	// Root can directly pass the execution byes to the sovereign
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_sovereign(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(dest)),
1
			// No fee_payer here. The sovereign account will pay the fees on destination.
1
			None,
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: None
1
			},
1
			utility_bytes,
1
			OriginKind::SovereignAccount,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	// Check balances after the transact call are correct
1
	Relay::execute_with(|| {
1
		assert_eq!(RelayBalances::free_balance(&para_a_account()), 0);
1
		assert_eq!(RelayBalances::free_balance(&derivative_address), 0);
1
		assert_eq!(RelayBalances::free_balance(&RELAYBOB), 100);
1
	});
1
}
#[test]
1
fn transact_through_sovereign_with_custom_fee_weight() {
1
	MockNet::reset();
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 1u128));
1
	});
1

            
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 4000003100u128).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003100);
1
	});
1

            
1
	// Register address
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::register(
1
			parachain::RuntimeOrigin::root(),
1
			PARAALICE.into(),
1
			0,
1
		));
1
	});
1

            
1
	// Send to registered address
1
	let registered_address = derivative_account_id(para_a_account(), 0);
1
	let dest = Location {
1
		parents: 1,
1
		interior: [AccountId32 {
1
			network: None,
1
			id: registered_address.clone().into(),
1
		}]
1
		.into(),
1
	};
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
1
		// free execution, full amount received
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000003000);
1
	});
1

            
1
	// What we will do now is transfer this relay tokens from the derived account to the sovereign
1
	// again
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 4000003000);
1
		0
1
	});
1

            
1
	// We send the xcm transact operation to parent
1
	let dest = Location {
1
		parents: 1,
1
		interior: /* Here */ [].into(),
1
	};
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let utility_bytes = parachain::MockTransactors::Relay.encode_call(
1
		xcm_primitives::UtilityAvailableCalls::AsDerivative(0, encoded),
1
	);
1

            
1
	let total_weight = 4000003000u64;
1
	// Root can directly pass the execution byes to the sovereign
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_sovereign(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(dest)),
1
			Some(PARAALICE.into()),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				// 1-1 fee-weight mapping
1
				fee_amount: Some(total_weight as u128)
1
			},
1
			utility_bytes,
1
			OriginKind::SovereignAccount,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: Some(Limited(total_weight.into()))
1
			},
1
			false
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 100);
1
		assert!(RelayBalances::free_balance(&registered_address) == 0);
1
	});
1
}
#[test]
1
fn transact_through_sovereign_with_custom_fee_weight_refund() {
1
	MockNet::reset();
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 1u128));
1
	});
1

            
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 4000009100u128).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000009100);
1
	});
1

            
1
	// Register address
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::register(
1
			parachain::RuntimeOrigin::root(),
1
			PARAALICE.into(),
1
			0,
1
		));
1
	});
1

            
1
	// Send to registered address
1
	let registered_address = derivative_account_id(para_a_account(), 0);
1
	let dest = Location {
1
		parents: 1,
1
		interior: [AccountId32 {
1
			network: None,
1
			id: registered_address.clone().into(),
1
		}]
1
		.into(),
1
	};
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_id), 100);
1
		// free execution, full amount received
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 4000009000);
1
	});
1

            
1
	// What we will do now is transfer this relay tokens from the derived account to the sovereign
1
	// again
1
	Relay::execute_with(|| {
1
		// free execution,x	 full amount received
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 4000009000);
1
		0
1
	});
1

            
1
	// We send the xcm transact operation to parent
1
	let dest = Location {
1
		parents: 1,
1
		interior: /* Here */ [].into(),
1
	};
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let utility_bytes = parachain::MockTransactors::Relay.encode_call(
1
		xcm_primitives::UtilityAvailableCalls::AsDerivative(0, encoded),
1
	);
1

            
1
	let total_weight = 4000009000u64;
1
	// Root can directly pass the execution byes to the sovereign
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_sovereign(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(dest)),
1
			Some(PARAALICE.into()),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				// 1-1 fee-weight mapping
1
				fee_amount: Some(total_weight as u128)
1
			},
1
			utility_bytes,
1
			OriginKind::SovereignAccount,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: Some(Limited(total_weight.into()))
1
			},
1
			true
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		// free execution, full amount received
1
		// 4000009000 refunded + 100 transferred = 4000009100
1
		assert_eq!(RelayBalances::free_balance(&para_a_account()), 4000009100);
1
		assert_eq!(RelayBalances::free_balance(&registered_address), 0);
1
	});
1
}
#[test]
1
fn test_automatic_versioning_on_runtime_upgrade_with_relay() {
1
	MockNet::reset();
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1
	// register relay asset in parachain A and set XCM version to 1
1
	ParaA::execute_with(|| {
1
		parachain::XcmVersioner::set_version(1);
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
1
	});
1

            
1
	let response = Response::Version(2);
1
	let querier: Location = ([]/* Here */).into();
1

            
1
	// This is irrelevant, nothing will be done with this message,
1
	// but we need to pass a message as an argument to trigger the storage change
1
	let mock_message: Xcm<()> = Xcm(vec![QueryResponse {
1
		query_id: 0,
1
		response,
1
		max_weight: Weight::zero(),
1
		querier: Some(querier),
1
	}]);
1
	// The router is mocked, and we cannot use WrapVersion in ChildParachainRouter. So we will force
1
	// it directly here
1
	// Actually send relay asset to parachain
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1

            
1
	Relay::execute_with(|| {
1
		// This sets the default version, for not known destinations
1
		assert_ok!(RelayChainPalletXcm::force_default_xcm_version(
1
			relay_chain::RuntimeOrigin::root(),
1
			Some(3)
1
		));
		// Wrap version, which sets VersionedStorage
		// This is necessary because the mock router does not use wrap_version, but
		// this is not necessary in prod
1
		assert_ok!(<RelayChainPalletXcm as WrapVersion>::wrap_version(
1
			&Parachain(1).into(),
1
			mock_message
1
		));
		// Transfer assets. Since it is an unknown destination, it will query for version
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 123).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// Let's advance the relay. This should trigger the subscription message
1
		relay_chain::relay_roll_to(2);
1

            
1
		// queries should have been updated
1
		assert!(RelayChainPalletXcm::query(0).is_some());
1
	});
1

            
1
	let expected_supported_version: relay_chain::RuntimeEvent =
1
		pallet_xcm::Event::SupportedVersionChanged {
1
			location: Location {
1
				parents: 0,
1
				interior: [Parachain(1)].into(),
1
			},
1
			version: 1,
1
		}
1
		.into();
1

            
1
	Relay::execute_with(|| {
1
		// Assert that the events vector contains the version change
1
		assert!(relay_chain::relay_events().contains(&expected_supported_version));
1
	});
1

            
1
	// ParaA changes version to 2, and calls on_runtime_upgrade. This should notify the targets
1
	// of the new version change
1
	ParaA::execute_with(|| {
1
		// Set version
1
		parachain::XcmVersioner::set_version(2);
1
		// Do runtime upgrade
1
		parachain::on_runtime_upgrade();
1
		// Initialize block, to call on_initialize and notify targets
1
		parachain::para_roll_to(2);
1
		// Expect the event in the parachain
10
		assert!(parachain::para_events().iter().any(|e| matches!(
2
			e,
			parachain::RuntimeEvent::PolkadotXcm(pallet_xcm::Event::VersionChangeNotified {
				result: 2,
				..
			})
10
		)));
1
	});
1

            
1
	// This event should have been seen in the relay
1
	let expected_supported_version_2: relay_chain::RuntimeEvent =
1
		pallet_xcm::Event::SupportedVersionChanged {
1
			location: Location {
1
				parents: 0,
1
				interior: [Parachain(1)].into(),
1
			},
1
			version: 2,
1
		}
1
		.into();
1

            
1
	Relay::execute_with(|| {
1
		// Assert that the events vector contains the new version change
1
		assert!(relay_chain::relay_events().contains(&expected_supported_version_2));
1
	});
1
}
#[test]
1
fn test_automatic_versioning_on_runtime_upgrade_with_para_b() {
1
	MockNet::reset();
1

            
1
	let para_a_balances = Location::new(1, [Parachain(1), PalletInstance(1u8)]);
1
	let source_location: AssetType = para_a_balances
1
		.try_into()
1
		.expect("Location convertion to AssetType should succeed");
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"ParaAToken".to_vec(),
1
		symbol: b"ParaA".to_vec(),
1
		decimals: 18,
1
	};
1
	let response = Response::Version(2);
1
	let querier: Location = [] /* Here */
1
		.into();
1

            
1
	// This is irrelevant, nothing will be done with this message,
1
	// but we need to pass a message as an argument to trigger the storage change
1
	let mock_message: Xcm<()> = Xcm(vec![QueryResponse {
1
		query_id: 0,
1
		response,
1
		max_weight: Weight::zero(),
1
		querier: Some(querier),
1
	}]);
1

            
1
	ParaA::execute_with(|| {
1
		// advertised version
1
		parachain::XcmVersioner::set_version(2);
1
	});
1

            
1
	ParaB::execute_with(|| {
1
		// Let's try with v0
1
		parachain::XcmVersioner::set_version(0);
1

            
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// This sets the default version, for not known destinations
1
		assert_ok!(ParachainPalletXcm::force_default_xcm_version(
1
			parachain::RuntimeOrigin::root(),
1
			Some(3)
1
		));
		// Wrap version, which sets VersionedStorage
1
		assert_ok!(<ParachainPalletXcm as WrapVersion>::wrap_version(
1
			&Location::new(1, [Parachain(2)]).into(),
1
			mock_message
1
		));
1
		parachain::para_roll_to(2);
1

            
1
		// queries should have been updated
1
		assert!(ParachainPalletXcm::query(0).is_some());
1
	});
1

            
1
	let expected_supported_version: parachain::RuntimeEvent =
1
		pallet_xcm::Event::SupportedVersionChanged {
1
			location: Location {
1
				parents: 1,
1
				interior: [Parachain(2)].into(),
1
			},
1
			version: 0,
1
		}
1
		.into();
1

            
1
	ParaA::execute_with(|| {
1
		// Assert that the events vector contains the version change
1
		assert!(parachain::para_events().contains(&expected_supported_version));
1
	});
1

            
1
	// Let's ensure talking in v0 works
1
	let dest = Location {
1
		parents: 1,
1
		interior: [
1
			Parachain(2),
1
			AccountKey20 {
1
				network: None,
1
				key: PARAALICE.into(),
1
			},
1
		]
1
		.into(),
1
	};
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::SelfReserve, 100);
1
		// free execution, full amount received
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(80u64, DEFAULT_PROOF_SIZE))
1
		));
		// free execution, full amount received
1
		assert_eq!(
1
			ParaBalances::free_balance(&PARAALICE.into()),
1
			INITIAL_BALANCE - 100
1
		);
1
	});
1

            
1
	ParaB::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 100);
1
	});
1

            
1
	// ParaB changes version to 2, and calls on_runtime_upgrade. This should notify the targets
1
	// of the new version change
1
	ParaB::execute_with(|| {
1
		// Set version
1
		parachain::XcmVersioner::set_version(2);
1
		// Do runtime upgrade
1
		parachain::on_runtime_upgrade();
1
		// Initialize block, to call on_initialize and notify targets
1
		parachain::para_roll_to(2);
1
		// Expect the event in the parachain
10
		assert!(parachain::para_events().iter().any(|e| matches!(
2
			e,
			parachain::RuntimeEvent::PolkadotXcm(pallet_xcm::Event::VersionChangeNotified {
				result: 2,
				..
			})
10
		)));
1
	});
1

            
1
	// This event should have been seen in para A
1
	let expected_supported_version_2: parachain::RuntimeEvent =
1
		pallet_xcm::Event::SupportedVersionChanged {
1
			location: Location {
1
				parents: 1,
1
				interior: [Parachain(2)].into(),
1
			},
1
			version: 2,
1
		}
1
		.into();
1

            
1
	// Para A should have received the version change
1
	ParaA::execute_with(|| {
1
		// Assert that the events vector contains the new version change
1
		assert!(parachain::para_events().contains(&expected_supported_version_2));
1
	});
1
}
#[test]
1
fn receive_asset_with_no_sufficients_not_possible_if_non_existent_account() {
1
	MockNet::reset();
1

            
1
	let fresh_account = [2u8; 20];
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1
	// register relay asset in parachain A
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			false
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
1
	});
1

            
1
	// Actually send relay asset to parachain
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: fresh_account,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest.clone()).clone().into()),
1
			Box::new(([] /* Here */, 123).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// parachain should not have received assets
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &fresh_account.into()), 0);
1
	});
1

            
1
	// Send native token to fresh_account
1
	ParaA::execute_with(|| {
1
		assert_ok!(ParaBalances::transfer_allow_death(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			fresh_account.into(),
1
			100
1
		));
1
	});
1

            
1
	// Re-send tokens
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(([] /* Here */, 123).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// parachain should have received assets
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &fresh_account.into()), 123);
1
	});
1
}
#[test]
1
fn receive_assets_with_sufficients_true_allows_non_funded_account_to_receive_assets() {
1
	MockNet::reset();
1

            
1
	let fresh_account = [2u8; 20];
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1
	// register relay asset in parachain A
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
1
	});
1

            
1
	// Actually send relay asset to parachain
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: fresh_account,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest.clone()).clone().into()),
1
			Box::new(([] /* Here */, 123).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// parachain should have received assets
1
	ParaA::execute_with(|| {
1
		// free execution, full amount received
1
		assert_eq!(Assets::balance(source_id, &fresh_account.into()), 123);
1
	});
1
}
#[test]
1
fn evm_account_receiving_assets_should_handle_sufficients_ref_count() {
1
	MockNet::reset();
1

            
1
	let mut sufficient_account = [0u8; 20];
1
	sufficient_account[0..20].copy_from_slice(&evm_account()[..]);
1

            
1
	let evm_account_id = parachain::AccountId::from(sufficient_account);
1

            
1
	// Evm account is self sufficient
1
	ParaA::execute_with(|| {
1
		assert_eq!(parachain::System::account(evm_account_id).sufficients, 1);
1
	});
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1
	// register relay asset in parachain A
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
1
	});
1

            
1
	// Actually send relay asset to parachain
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: sufficient_account,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest.clone()).clone().into()),
1
			Box::new(([] /* Here */, 123).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// Evm account sufficient ref count increased by 1.
1
	ParaA::execute_with(|| {
1
		// TODO: since the suicided logic was introduced an smart contract account
1
		// is not deleted completely until it's data is deleted. Data deletion
1
		// will be implemented in a future release
1
		// assert_eq!(parachain::System::account(evm_account_id).sufficients, 2);
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Remove the account from the evm context.
1
		parachain::EVM::remove_account(&evm_account());
1
		// Evm account sufficient ref count decreased by 1.
1
		// TODO: since the suicided logic was introduced an smart contract account
1
		// is not deleted completely until it's data is deleted. Data deletion
1
		// will be implemented in a future release
1
		// assert_eq!(parachain::System::account(evm_account_id).sufficients, 1);
1
	});
1
}
#[test]
1
fn empty_account_should_not_be_reset() {
1
	MockNet::reset();
1

            
1
	// Test account has nonce 1 on genesis.
1
	let mut sufficient_account = [0u8; 20];
1
	sufficient_account[0..20].copy_from_slice(&evm_account()[..]);
1

            
1
	let evm_account_id = parachain::AccountId::from(sufficient_account);
1

            
1
	let source_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_id: parachain::AssetId = source_location.clone().into();
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1
	// register relay asset in parachain A
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata,
1
			1u128,
1
			false
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
1
	});
1

            
1
	// Send native token to evm_account
1
	ParaA::execute_with(|| {
1
		assert_ok!(ParaBalances::transfer_allow_death(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			evm_account_id,
1
			100
1
		));
1
	});
1

            
1
	// Actually send relay asset to parachain
1
	let dest: Location = AccountKey20 {
1
		network: None,
1
		key: sufficient_account,
1
	}
1
	.into();
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(VersionedLocation::from(dest.clone()).clone().into()),
1
			Box::new(([] /* Here */, 123).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Empty the assets from the account.
1
		// As this makes the account go below the `min_balance`, the account is considered dead
1
		// at eyes of pallet-assets, and the consumer reference is decreased by 1 and is now Zero.
1
		assert_ok!(parachain::Assets::transfer(
1
			parachain::RuntimeOrigin::signed(evm_account_id),
1
			source_id,
1
			PARAALICE.into(),
1
			123
1
		));
		// Verify account asset balance is Zero.
1
		assert_eq!(
1
			parachain::Assets::balance(source_id, &evm_account_id.into()),
1
			0
1
		);
		// Because we no longer have consumer references, we can set the balance to Zero.
		// This would reset the account if our ED were to be > than Zero.
1
		assert_ok!(ParaBalances::force_set_balance(
1
			parachain::RuntimeOrigin::root(),
1
			evm_account_id,
1
			0,
1
		));
		// Verify account native balance is Zero.
1
		assert_eq!(ParaBalances::free_balance(&evm_account_id), 0);
		// Remove the account from the evm context.
		// This decreases the sufficients reference by 1 and now is Zero.
1
		parachain::EVM::remove_account(&evm_account());
1
		// Verify reference count.
1
		let account = parachain::System::account(evm_account_id);
1
		assert_eq!(account.sufficients, 0);
1
		assert_eq!(account.consumers, 0);
1
		assert_eq!(account.providers, 1);
		// We expect the account to be alive in a Zero ED context.
1
		assert_eq!(parachain::System::account_nonce(evm_account_id), 1);
1
	});
1
}
#[test]
1
fn test_statemine_like() {
1
	MockNet::reset();
1

            
1
	let dest_para = Location::new(1, [Parachain(1)]);
1

            
1
	let sov = xcm_builder::SiblingParachainConvertsVia::<
1
		polkadot_parachain::primitives::Sibling,
1
		statemine_like::AccountId,
1
	>::convert_location(&dest_para)
1
	.unwrap();
1

            
1
	let statemine_asset_a_balances = Location::new(
1
		1,
1
		[
1
			Parachain(1000),
1
			PalletInstance(5),
1
			xcm::latest::prelude::GeneralIndex(0u128),
1
		],
1
	);
1
	let source_location: AssetType = statemine_asset_a_balances
1
		.try_into()
1
		.expect("Location convertion to AssetType should succeed");
1
	let source_id: parachain::AssetId = source_location.clone().into();
1

            
1
	let asset_metadata = parachain::AssetMetadata {
1
		name: b"StatemineToken".to_vec(),
1
		symbol: b"StatemineToken".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			source_location.clone(),
1
			asset_metadata.clone(),
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(source_location.clone(), 0u128));
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Set new prefix
1
		statemine_like::PrefixChanger::set_prefix(
1
			PalletInstance(<StatemineAssets as PalletInfoAccess>::index() as u8).into(),
1
		);
1
		assert_ok!(StatemineAssets::create(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			0,
1
			RELAYALICE,
1
			1
1
		));
1
		assert_ok!(StatemineAssets::mint(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			0,
1
			RELAYALICE,
1
			300000000000000
1
		));
		// This is needed, since the asset is created as non-sufficient
1
		assert_ok!(StatemineBalances::transfer_allow_death(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			sov,
1
			100000000000000
1
		));
		// Actually send relay asset to parachain
1
		let dest: Location = AccountKey20 {
1
			network: None,
1
			key: PARAALICE,
1
		}
1
		.into();
1

            
1
		// Send with new prefix
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(VersionedLocation::from(dest).clone()),
1
			Box::new(
1
				(
1
					[
1
						xcm::latest::prelude::PalletInstance(
1
							<StatemineAssets as PalletInfoAccess>::index() as u8
1
						),
1
						xcm::latest::prelude::GeneralIndex(0),
1
					],
1
					123
1
				)
1
					.into()
1
			),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		assert_eq!(Assets::balance(source_id, &PARAALICE.into()), 123);
1
	});
1
}
#[test]
1
fn send_statemine_asset_from_para_a_to_statemine_with_relay_fee() {
1
	MockNet::reset();
1

            
1
	// Relay asset
1
	let relay_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_relay_id: parachain::AssetId = relay_location.clone().into();
1

            
1
	let relay_asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	// Statemine asset
1
	let statemine_asset = Location::new(
1
		1,
1
		[
1
			Parachain(1000u32),
1
			PalletInstance(5u8),
1
			GeneralIndex(10u128),
1
		],
1
	);
1
	let statemine_location_asset: AssetType = statemine_asset
1
		.clone()
1
		.try_into()
1
		.expect("Location convertion to AssetType should succeed");
1
	let source_statemine_asset_id: parachain::AssetId = statemine_location_asset.clone().into();
1

            
1
	let asset_metadata_statemine_asset = parachain::AssetMetadata {
1
		name: b"USDC".to_vec(),
1
		symbol: b"USDC".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	let dest_para = Location::new(1, [Parachain(1)]);
1

            
1
	let sov = xcm_builder::SiblingParachainConvertsVia::<
1
		polkadot_parachain::primitives::Sibling,
1
		statemine_like::AccountId,
1
	>::convert_location(&dest_para)
1
	.unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			relay_location.clone(),
1
			relay_asset_metadata,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(relay_location.clone(), 0u128));
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			statemine_location_asset.clone(),
1
			asset_metadata_statemine_asset,
1
			1u128,
1
			true
1
		));
1
		assert_ok!(add_supported_asset(statemine_location_asset.clone(), 0u128));
1
	});
1

            
1
	let parachain_beneficiary_from_relay: Location = Junction::AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1

            
1
	// Send relay chain asset to Alice in Parachain A
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_reserve_transfer_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_from_relay)
1
					.clone()
1
					.into()
1
			),
1
			Box::new(([] /* Here */, 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Set new prefix
1
		statemine_like::PrefixChanger::set_prefix(
1
			PalletInstance(<StatemineAssets as PalletInfoAccess>::index() as u8).into(),
1
		);
1

            
1
		assert_ok!(StatemineAssets::create(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			10,
1
			RELAYALICE,
1
			1
1
		));
1
		assert_ok!(StatemineAssets::mint(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			10,
1
			RELAYALICE,
1
			300000000000000
1
		));
		// Send some native statemine tokens to sovereign for fees.
		// We can't pay fees with USDC as the asset is minted as non-sufficient.
1
		assert_ok!(StatemineBalances::transfer_allow_death(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			sov,
1
			100000000000000
1
		));
		// Send statemine USDC asset to Alice in Parachain A
1
		let parachain_beneficiary_from_statemine: Location = AccountKey20 {
1
			network: None,
1
			key: PARAALICE,
1
		}
1
		.into();
1

            
1
		// Send with new prefix
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_from_statemine)
1
					.clone()
1
					.into()
1
			),
1
			Box::new(
1
				(
1
					[
1
						xcm::latest::prelude::PalletInstance(
1
							<StatemineAssets as PalletInfoAccess>::index() as u8
1
						),
1
						GeneralIndex(10),
1
					],
1
					125
1
				)
1
					.into()
1
			),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	let statemine_beneficiary = Location {
1
		parents: 1,
1
		interior: [
1
			Parachain(1000),
1
			AccountId32 {
1
				network: None,
1
				id: RELAYBOB.into(),
1
			},
1
		]
1
		.into(),
1
	};
1

            
1
	ParaA::execute_with(|| {
1
		// Alice has received 125 USDC
1
		assert_eq!(
1
			Assets::balance(source_statemine_asset_id, &PARAALICE.into()),
1
			125
1
		);
		// Alice has received 200 Relay assets
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Check that BOB's balance is empty before the transfer
1
		assert_eq!(StatemineAssets::account_balances(RELAYBOB), vec![]);
1
	});
1
	let (chain_part, beneficiary) =
1
		split_location_into_chain_part_and_beneficiary(statemine_beneficiary).unwrap();
1

            
1
	// Transfer USDC from Parachain A to Statemine using Relay asset as fee
1
	ParaA::execute_with(|| {
1
		let asset_1 = currency_to_asset(
1
			parachain::CurrencyId::ForeignAsset(source_statemine_asset_id),
1
			100,
1
		);
1
		let asset_2 = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_relay_id), 100);
1
		let assets_to_send = vec![asset_1, asset_2];
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(assets_to_send)),
1
			1,
1
			WeightLimit::Limited(Weight::from_parts(80_000_000u64, 100_000u64))
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice has 100 USDC less
1
		assert_eq!(
1
			Assets::balance(source_statemine_asset_id, &PARAALICE.into()),
1
			25
1
		);
		// Alice has 100 relay asset less
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 100);
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Check that BOB received 100 USDC on statemine
1
		assert_eq!(StatemineAssets::account_balances(RELAYBOB), vec![(10, 100)]);
1
	});
1
}
#[test]
1
fn send_dot_from_moonbeam_to_statemine_via_xtokens_transfer() {
1
	MockNet::reset();
1

            
1
	// Relay asset
1
	let relay_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_relay_id: parachain::AssetId = relay_location.clone().into();
1

            
1
	let relay_asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	let dest_para = Location::new(1, [Parachain(1)]);
1

            
1
	let sov = xcm_builder::SiblingParachainConvertsVia::<
1
		polkadot_parachain::primitives::Sibling,
1
		statemine_like::AccountId,
1
	>::convert_location(&dest_para)
1
	.unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			relay_location.clone(),
1
			relay_asset_metadata,
1
			1u128,
1
			true
1
		));
1
		XcmWeightTrader::set_asset_price(Location::parent(), 0u128);
1
	});
1

            
1
	let parachain_beneficiary_absolute: Location = Junction::AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1

            
1
	let statemine_beneficiary_absolute: Location = Junction::AccountId32 {
1
		network: None,
1
		id: RELAYALICE.into(),
1
	}
1
	.into();
1

            
1
	// First we send relay chain asset to Alice in AssetHub (via teleport)
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_teleport_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1000).into()),
1
			Box::new(
1
				VersionedLocation::from(statemine_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new(([], 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// Send DOTs from AssetHub to ParaA (Moonbeam)
1
	Statemine::execute_with(|| {
1
		// Check Alice received 200 tokens on AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYALICE),
1
			INITIAL_BALANCE + 200
1
		);
1
		assert_ok!(StatemineBalances::transfer_allow_death(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			sov,
1
			110000000000000
1
		));
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute.clone())
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received the DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1

            
1
	let dest = Location::new(
1
		1,
1
		[
1
			Parachain(1000),
1
			AccountId32 {
1
				network: None,
1
				id: RELAYBOB.into(),
1
			},
1
		],
1
	);
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1
	// Finally we test that we are able to send back the DOTs to AssetHub from the ParaA
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_relay_id), 100);
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 100);
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Check that Bob received the tokens back in AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			INITIAL_BALANCE + 100
1
		);
1
	});
1

            
1
	// Send back tokens from AH to ParaA from Bob's account
1
	Statemine::execute_with(|| {
1
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYBOB),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 100).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// 100 DOTs were deducted from Bob's account
1
		assert_eq!(StatemineBalances::free_balance(RELAYBOB), INITIAL_BALANCE);
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received 100 DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1
}
#[test]
1
fn send_dot_from_moonbeam_to_statemine_via_xtokens_transfer_with_fee() {
1
	MockNet::reset();
1

            
1
	// Relay asset
1
	let relay_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_relay_id: parachain::AssetId = relay_location.clone().into();
1

            
1
	let relay_asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	let dest_para = Location::new(1, [Parachain(1)]);
1

            
1
	let sov = xcm_builder::SiblingParachainConvertsVia::<
1
		polkadot_parachain::primitives::Sibling,
1
		statemine_like::AccountId,
1
	>::convert_location(&dest_para)
1
	.unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			relay_location.clone(),
1
			relay_asset_metadata,
1
			1u128,
1
			true
1
		));
1
		XcmWeightTrader::set_asset_price(Location::parent(), 0u128);
1
	});
1

            
1
	let parachain_beneficiary_absolute: Location = Junction::AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1

            
1
	let statemine_beneficiary_absolute: Location = Junction::AccountId32 {
1
		network: None,
1
		id: RELAYALICE.into(),
1
	}
1
	.into();
1

            
1
	// First we send relay chain asset to Alice in AssetHub (via teleport)
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_teleport_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1000).into()),
1
			Box::new(
1
				VersionedLocation::from(statemine_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new(([], 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// Send DOTs from AssetHub to ParaA (Moonbeam)
1
	Statemine::execute_with(|| {
1
		// Check Alice received 200 tokens on AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYALICE),
1
			INITIAL_BALANCE + 200
1
		);
1
		assert_ok!(StatemineBalances::transfer_allow_death(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			sov,
1
			110000000000000
1
		));
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute.clone())
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received the DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1

            
1
	let dest = Location::new(
1
		1,
1
		[
1
			Parachain(1000),
1
			AccountId32 {
1
				network: None,
1
				id: RELAYBOB.into(),
1
			},
1
		],
1
	);
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1
	// Finally we test that we are able to send back the DOTs to AssetHub from the ParaA
1
	ParaA::execute_with(|| {
1
		let asset = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_relay_id), 100);
1
		let asset_fee = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_relay_id), 10);
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset_fee, asset])),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 90);
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Free execution: check that Bob received the tokens back in AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			INITIAL_BALANCE + 110
1
		);
1
	});
1

            
1
	// Send back tokens from AH to ParaA from Bob's account
1
	Statemine::execute_with(|| {
1
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYBOB),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 100).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// 100 DOTs were deducted from Bob's account
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			INITIAL_BALANCE + 10
1
		);
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received 100 DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 190);
1
	});
1
}
#[test]
1
fn send_dot_from_moonbeam_to_statemine_via_xtokens_transfer_multiasset() {
1
	MockNet::reset();
1

            
1
	// Relay asset
1
	let relay_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_relay_id: parachain::AssetId = relay_location.clone().into();
1

            
1
	let relay_asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	let dest_para = Location::new(1, [Parachain(1)]);
1

            
1
	let sov = xcm_builder::SiblingParachainConvertsVia::<
1
		polkadot_parachain::primitives::Sibling,
1
		statemine_like::AccountId,
1
	>::convert_location(&dest_para)
1
	.unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			relay_location.clone(),
1
			relay_asset_metadata,
1
			1u128,
1
			true
1
		));
1
		XcmWeightTrader::set_asset_price(Location::parent(), 0u128);
1
	});
1

            
1
	let parachain_beneficiary_absolute: Location = Junction::AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1

            
1
	let statemine_beneficiary_absolute: Location = Junction::AccountId32 {
1
		network: None,
1
		id: RELAYALICE.into(),
1
	}
1
	.into();
1

            
1
	// First we send relay chain asset to Alice in AssetHub (via teleport)
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_teleport_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1000).into()),
1
			Box::new(
1
				VersionedLocation::from(statemine_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new(([], 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// Send DOTs from AssetHub to ParaA (Moonbeam)
1
	Statemine::execute_with(|| {
1
		// Check Alice received 200 tokens on AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYALICE),
1
			INITIAL_BALANCE + 200
1
		);
1
		assert_ok!(StatemineBalances::transfer_allow_death(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			sov,
1
			110000000000000
1
		));
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute.clone())
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received the DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1

            
1
	let dest = Location::new(
1
		1,
1
		[
1
			Parachain(1000),
1
			AccountId32 {
1
				network: None,
1
				id: RELAYBOB.into(),
1
			},
1
		],
1
	);
1

            
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	// Finally we test that we are able to send back the DOTs to AssetHub from the ParaA
1
	ParaA::execute_with(|| {
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(
1
				vec![(Location::parent(), 100).into()]
1
			)),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(40000u64, DEFAULT_PROOF_SIZE))
1
		));
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 100);
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Check that Bob received the tokens back in AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			INITIAL_BALANCE + 100
1
		);
1
	});
1

            
1
	// Send back tokens from AH to ParaA from Bob's account
1
	Statemine::execute_with(|| {
1
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYBOB),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 100).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// 100 DOTs were deducted from Bob's account
1
		assert_eq!(StatemineBalances::free_balance(RELAYBOB), INITIAL_BALANCE);
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received 100 DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1
}
#[test]
1
fn send_dot_from_moonbeam_to_statemine_via_xtokens_transfer_multicurrencies() {
1
	MockNet::reset();
1

            
1
	// Relay asset
1
	let relay_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_relay_id: parachain::AssetId = relay_location.clone().into();
1

            
1
	let relay_asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	// Statemine asset
1
	let statemine_asset = Location::new(
1
		1,
1
		[
1
			Parachain(1000u32),
1
			PalletInstance(5u8),
1
			GeneralIndex(10u128),
1
		],
1
	);
1
	let statemine_location_asset: AssetType = statemine_asset
1
		.clone()
1
		.try_into()
1
		.expect("Location convertion to AssetType should succeed");
1
	let source_statemine_asset_id: parachain::AssetId = statemine_location_asset.clone().into();
1

            
1
	let asset_metadata_statemine_asset = parachain::AssetMetadata {
1
		name: b"USDC".to_vec(),
1
		symbol: b"USDC".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	let dest_para = Location::new(1, [Parachain(1)]);
1

            
1
	let sov = xcm_builder::SiblingParachainConvertsVia::<
1
		polkadot_parachain::primitives::Sibling,
1
		statemine_like::AccountId,
1
	>::convert_location(&dest_para)
1
	.unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			relay_location.clone(),
1
			relay_asset_metadata,
1
			1u128,
1
			true
1
		));
1
		XcmWeightTrader::set_asset_price(Location::parent(), 0u128);
1

            
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			statemine_location_asset.clone(),
1
			asset_metadata_statemine_asset,
1
			1u128,
1
			true
1
		));
1
		XcmWeightTrader::set_asset_price(statemine_asset.clone(), 0u128);
1
	});
1

            
1
	let parachain_beneficiary_absolute: Location = Junction::AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1

            
1
	let statemine_beneficiary_absolute: Location = Junction::AccountId32 {
1
		network: None,
1
		id: RELAYALICE.into(),
1
	}
1
	.into();
1

            
1
	// First we send relay chain asset to Alice in AssetHub (via teleport)
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_teleport_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1000).into()),
1
			Box::new(
1
				VersionedLocation::from(statemine_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new(([], 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// Send DOTs and USDC from AssetHub to ParaA (Moonbeam)
1
	Statemine::execute_with(|| {
1
		// Check Alice received 200 tokens on AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYALICE),
1
			INITIAL_BALANCE + 200
1
		);
1
		assert_ok!(StatemineBalances::transfer_allow_death(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			sov,
1
			110000000000000
1
		));
1
		statemine_like::PrefixChanger::set_prefix(
1
			PalletInstance(<StatemineAssets as PalletInfoAccess>::index() as u8).into(),
1
		);
1

            
1
		assert_ok!(StatemineAssets::create(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			10,
1
			RELAYALICE,
1
			1
1
		));
1
		assert_ok!(StatemineAssets::mint(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			10,
1
			RELAYALICE,
1
			300000000000000
1
		));
		// Now send relay tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute.clone())
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// Send USDC
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute.clone())
1
					.clone()
1
					.into()
1
			),
1
			Box::new(
1
				(
1
					[
1
						xcm::latest::prelude::PalletInstance(
1
							<StatemineAssets as PalletInfoAccess>::index() as u8
1
						),
1
						GeneralIndex(10),
1
					],
1
					125
1
				)
1
					.into()
1
			),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received the DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
		// Alice has received 125 USDC
1
		assert_eq!(
1
			Assets::balance(source_statemine_asset_id, &PARAALICE.into()),
1
			125
1
		);
1
	});
1

            
1
	let dest = Location::new(
1
		1,
1
		[
1
			Parachain(1000),
1
			AccountId32 {
1
				network: None,
1
				id: RELAYBOB.into(),
1
			},
1
		],
1
	);
1

            
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1

            
1
	// Finally we test that we are able to send back the DOTs to AssetHub from the ParaA
1
	ParaA::execute_with(|| {
1
		let asset_1 = currency_to_asset(
1
			parachain::CurrencyId::ForeignAsset(source_statemine_asset_id),
1
			100,
1
		);
1
		let asset_2 = currency_to_asset(parachain::CurrencyId::ForeignAsset(source_relay_id), 100);
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(vec![asset_1, asset_2])),
1
			1,
1
			WeightLimit::Limited(Weight::from_parts(80_000_000u64, 100_000u64))
1
		));
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 100);
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Check that Bob received relay tokens back in AssetHub
1
		// (100 - MinXcmFee)
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			INITIAL_BALANCE + 100
1
		);
		// Check that BOB received 100 USDC on AssetHub
1
		assert_eq!(StatemineAssets::account_balances(RELAYBOB), vec![(10, 100)]);
1
	});
1

            
1
	// Send back tokens from AH to ParaA from Bob's account
1
	Statemine::execute_with(|| {
1
		let bob_previous_balance = StatemineBalances::free_balance(RELAYBOB);
1

            
1
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYBOB),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 100).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// 100 DOTs were deducted from Bob's account
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			bob_previous_balance - 100
1
		);
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received 100 DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1
}
#[test]
1
fn send_dot_from_moonbeam_to_statemine_via_xtokens_transfer_multiassets() {
1
	MockNet::reset();
1

            
1
	// Relay asset
1
	let relay_location = parachain::AssetType::Xcm(xcm::v3::Location::parent());
1
	let source_relay_id: parachain::AssetId = relay_location.clone().into();
1

            
1
	let relay_asset_metadata = parachain::AssetMetadata {
1
		name: b"RelayToken".to_vec(),
1
		symbol: b"Relay".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	// Statemine asset
1
	let statemine_asset = Location::new(
1
		1,
1
		[
1
			Parachain(1000u32),
1
			PalletInstance(5u8),
1
			GeneralIndex(10u128),
1
		],
1
	);
1
	let statemine_location_asset: AssetType = statemine_asset
1
		.clone()
1
		.try_into()
1
		.expect("Location convertion to AssetType should succeed");
1
	let source_statemine_asset_id: parachain::AssetId = statemine_location_asset.clone().into();
1

            
1
	let asset_metadata_statemine_asset = parachain::AssetMetadata {
1
		name: b"USDC".to_vec(),
1
		symbol: b"USDC".to_vec(),
1
		decimals: 12,
1
	};
1

            
1
	let dest_para = Location::new(1, [Parachain(1)]);
1

            
1
	let sov = xcm_builder::SiblingParachainConvertsVia::<
1
		polkadot_parachain::primitives::Sibling,
1
		statemine_like::AccountId,
1
	>::convert_location(&dest_para)
1
	.unwrap();
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			relay_location.clone(),
1
			relay_asset_metadata,
1
			1u128,
1
			true
1
		));
1
		XcmWeightTrader::set_asset_price(Location::parent(), 0u128);
1

            
1
		assert_ok!(AssetManager::register_foreign_asset(
1
			parachain::RuntimeOrigin::root(),
1
			statemine_location_asset.clone(),
1
			asset_metadata_statemine_asset,
1
			1u128,
1
			true
1
		));
1
		XcmWeightTrader::set_asset_price(statemine_asset.clone(), 0u128);
1
	});
1

            
1
	let parachain_beneficiary_absolute: Location = Junction::AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}
1
	.into();
1

            
1
	let statemine_beneficiary_absolute: Location = Junction::AccountId32 {
1
		network: None,
1
		id: RELAYALICE.into(),
1
	}
1
	.into();
1

            
1
	// First we send relay chain asset to Alice in AssetHub (via teleport)
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayChainPalletXcm::limited_teleport_assets(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Parachain(1000).into()),
1
			Box::new(
1
				VersionedLocation::from(statemine_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new(([], 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	// Send DOTs and USDC from AssetHub to ParaA (Moonbeam)
1
	Statemine::execute_with(|| {
1
		// Check Alice received 200 tokens on AssetHub
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYALICE),
1
			INITIAL_BALANCE + 200
1
		);
1
		assert_ok!(StatemineBalances::transfer_allow_death(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			sov,
1
			110000000000000
1
		));
1
		statemine_like::PrefixChanger::set_prefix(
1
			PalletInstance(<StatemineAssets as PalletInfoAccess>::index() as u8).into(),
1
		);
1

            
1
		assert_ok!(StatemineAssets::create(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			10,
1
			RELAYALICE,
1
			1
1
		));
1
		assert_ok!(StatemineAssets::mint(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			10,
1
			RELAYALICE,
1
			300000000000000
1
		));
		// Now send relay tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute.clone())
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 200).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// Send USDC
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYALICE),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute.clone())
1
					.clone()
1
					.into()
1
			),
1
			Box::new(
1
				(
1
					[
1
						xcm::latest::prelude::PalletInstance(
1
							<StatemineAssets as PalletInfoAccess>::index() as u8
1
						),
1
						GeneralIndex(10),
1
					],
1
					125
1
				)
1
					.into()
1
			),
1
			0,
1
			WeightLimit::Unlimited
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received the DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
		// Alice has received 125 USDC
1
		assert_eq!(
1
			Assets::balance(source_statemine_asset_id, &PARAALICE.into()),
1
			125
1
		);
1
	});
1

            
1
	let dest = Location::new(
1
		1,
1
		[
1
			Parachain(1000),
1
			AccountId32 {
1
				network: None,
1
				id: RELAYBOB.into(),
1
			},
1
		],
1
	);
1

            
1
	let statemine_asset_to_send = Asset {
1
		id: AssetId(statemine_asset),
1
		fun: Fungibility::Fungible(100),
1
	};
1

            
1
	let relay_asset_to_send = Asset {
1
		id: AssetId(Location::parent()),
1
		fun: Fungibility::Fungible(100),
1
	};
1

            
1
	let (chain_part, beneficiary) = split_location_into_chain_part_and_beneficiary(dest).unwrap();
1
	let assets_to_send: XcmAssets =
1
		XcmAssets::from(vec![statemine_asset_to_send, relay_asset_to_send.clone()]);
1
	// For some reason the order of the assets is inverted when creating the array above.
1
	// We need to use relay asset for fees, so we pick index 0.
1
	assert_eq!(assets_to_send.get(0).unwrap(), &relay_asset_to_send);
	// Finally we test that we are able to send back the DOTs to AssetHub from the ParaA
1
	ParaA::execute_with(|| {
1
		assert_ok!(PolkadotXcm::transfer_assets(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(VersionedLocation::from(chain_part)),
1
			Box::new(VersionedLocation::from(beneficiary)),
1
			Box::new(VersionedAssets::from(assets_to_send)),
1
			0,
1
			WeightLimit::Limited(Weight::from_parts(80_000_000u64, 100_000u64))
1
		));
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 100);
1
	});
1

            
1
	Statemine::execute_with(|| {
1
		// Check that Bob received relay tokens back in AssetHub
1
		// (100 - MinXcmFee)
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			INITIAL_BALANCE + 100
1
		);
		// Check that BOB received 100 USDC on AssetHub
1
		assert_eq!(StatemineAssets::account_balances(RELAYBOB), vec![(10, 100)]);
1
	});
1

            
1
	// Send back tokens from AH to ParaA from Bob's account
1
	Statemine::execute_with(|| {
1
		let bob_previous_balance = StatemineBalances::free_balance(RELAYBOB);
1

            
1
		// Now send those tokens to ParaA
1
		assert_ok!(StatemineChainPalletXcm::limited_reserve_transfer_assets(
1
			statemine_like::RuntimeOrigin::signed(RELAYBOB),
1
			Box::new(Location::new(1, [Parachain(1)]).into()),
1
			Box::new(
1
				VersionedLocation::from(parachain_beneficiary_absolute)
1
					.clone()
1
					.into()
1
			),
1
			Box::new((Location::parent(), 100).into()),
1
			0,
1
			WeightLimit::Unlimited
1
		));
		// 100 DOTs were deducted from Bob's account
1
		assert_eq!(
1
			StatemineBalances::free_balance(RELAYBOB),
1
			bob_previous_balance - 100
1
		);
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		// Alice should have received 100 DOTs
1
		assert_eq!(Assets::balance(source_relay_id, &PARAALICE.into()), 200);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	ParaA::execute_with(|| {
1
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			// Relay charges 1000 for every instruction, and we have 3, so 3000
1
			3000.into(),
1
			20000000000.into(),
1
			// 4 instructions in transact through signed
1
			Some(4000.into())
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			WEIGHT_REF_TIME_PER_SECOND as u128,
1
		));
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_multilocation = parachain::SelfLocation::get();
1
	descend_origin_multilocation
1
		.append_with(signed_origin)
1
		.unwrap();
1

            
1
	// To convert it to what the relay will see instead of us
1
	descend_origin_multilocation
1
		.reanchor(&Location::parent(), &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::Account32Hash::<
1
		relay_chain::KusamaNetwork,
1
		relay_chain::AccountId,
1
	>::convert_location(&descend_origin_multilocation)
1
	.unwrap();
1

            
1
	Relay::execute_with(|| {
1
		// free execution, full amount received
1
		assert_ok!(RelayBalances::transfer_allow_death(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			derived.clone(),
1
			4000004100u128,
1
		));
		// derived account has all funds
1
		assert!(RelayBalances::free_balance(&derived) == 4000004100);
		// sovereign account has 0 funds
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 0);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		// 100 to sovereign
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: None
1
			},
1
			encoded,
1
			// 4000000000 for transfer + 4000 for XCM
1
			// 1-1 to fee
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 100);
1
		assert!(RelayBalances::free_balance(&derived) == 0);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation_custom_fee_and_weight() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	ParaA::execute_with(|| {
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_multilocation = parachain::SelfLocation::get();
1
	descend_origin_multilocation
1
		.append_with(signed_origin)
1
		.unwrap();
1

            
1
	// To convert it to what the relay will see instead of us
1
	descend_origin_multilocation
1
		.reanchor(&Location::parent(), &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::Account32Hash::<
1
		relay_chain::KusamaNetwork,
1
		relay_chain::AccountId,
1
	>::convert_location(&descend_origin_multilocation)
1
	.unwrap();
1

            
1
	Relay::execute_with(|| {
1
		// free execution, full amount received
1
		assert_ok!(RelayBalances::transfer_allow_death(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			derived.clone(),
1
			4000004100u128,
1
		));
		// derived account has all funds
1
		assert!(RelayBalances::free_balance(&derived) == 4000004100);
		// sovereign account has 0 funds
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 0);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		// 100 to sovereign
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let total_weight = 4000004000u64;
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: Some(total_weight as u128)
1
			},
1
			encoded,
1
			// 4000000000 for transfer + 4000 for XCM
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: Some(Limited(total_weight.into()))
1
			},
1
			false
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 100);
1
		assert!(RelayBalances::free_balance(&derived) == 0);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation_custom_fee_and_weight_refund() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	ParaA::execute_with(|| {
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_multilocation = parachain::SelfLocation::get();
1
	descend_origin_multilocation
1
		.append_with(signed_origin)
1
		.unwrap();
1

            
1
	// To convert it to what the relay will see instead of us
1
	descend_origin_multilocation
1
		.reanchor(&Location::parent(), &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::Account32Hash::<
1
		relay_chain::KusamaNetwork,
1
		relay_chain::AccountId,
1
	>::convert_location(&descend_origin_multilocation)
1
	.unwrap();
1

            
1
	Relay::execute_with(|| {
1
		// free execution, full amount received
1
		assert_ok!(RelayBalances::transfer_allow_death(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			derived.clone(),
1
			4000009100u128,
1
		));
		// derived account has all funds
1
		assert!(RelayBalances::free_balance(&derived) == 4000009100);
		// sovereign account has 0 funds
1
		assert!(RelayBalances::free_balance(&para_a_account()) == 0);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index = <relay_chain::Runtime as frame_system::Config>::PalletInfo::index::<
1
		relay_chain::Balances,
1
	>()
1
	.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<relay_chain::Runtime>::transfer_allow_death {
1
		// 100 to sovereign
1
		dest: para_a_account(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let total_weight = 4000009000u64;
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(Location::parent())),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: Some(total_weight as u128)
1
			},
1
			encoded,
1
			// 4000000000 for transfer + 9000 for XCM
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: Some(Limited(total_weight.into()))
1
			},
1
			true
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		// 100 transferred
1
		assert_eq!(RelayBalances::free_balance(&para_a_account()), 100);
		// 4000009000 refunded
1
		assert_eq!(RelayBalances::free_balance(&derived), 4000009000);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation_para_to_para() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	let para_b_location = Location::new(1, [Parachain(2)]);
1

            
1
	let para_b_balances = Location::new(1, [Parachain(2), PalletInstance(1u8)]);
1

            
1
	ParaA::execute_with(|| {
1
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			// ParaB
1
			Box::new(xcm::VersionedLocation::from(para_b_location.clone())),
1
			// Para charges 1000 for every instruction, and we have 3, so 3
1
			3.into(),
1
			20000000000.into(),
1
			// 4 instructions in transact through signed
1
			Some(4.into())
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(para_b_balances.clone())),
1
			parachain::ParaTokensPerSecond::get(),
1
		));
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_location = parachain::SelfLocation::get();
1
	descend_origin_location.append_with(signed_origin).unwrap();
1

            
1
	// To convert it to what the paraB will see instead of us
1
	descend_origin_location
1
		.reanchor(&para_b_location, &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::HashedDescription::<
1
		parachain::AccountId,
1
		xcm_builder::DescribeFamily<xcm_builder::DescribeAllTerminal>,
1
	>::convert_location(&descend_origin_location)
1
	.unwrap();
1

            
1
	ParaB::execute_with(|| {
1
		// free execution, full amount received
1
		assert_ok!(ParaBalances::transfer_allow_death(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			derived.clone(),
1
			4000000104u128,
1
		));
		// derived account has all funds
1
		assert!(ParaBalances::free_balance(&derived) == 4000000104);
		// sovereign account has 0 funds
1
		assert!(ParaBalances::free_balance(&para_a_account_20()) == 0);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index =
1
		<parachain::Runtime as frame_system::Config>::PalletInfo::index::<parachain::Balances>()
1
			.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<parachain::Runtime>::transfer_allow_death {
1
		// 100 to sovereign
1
		dest: para_a_account_20(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(para_b_location)),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					para_b_balances
1
				))),
1
				fee_amount: None
1
			},
1
			encoded,
1
			// 4000000000 for transfer + 4000 for XCM
1
			// 1-1 to fee
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	ParaB::execute_with(|| {
1
		assert!(ParaBalances::free_balance(&derived) == 0);
1
		assert!(ParaBalances::free_balance(&para_a_account_20()) == 100);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation_para_to_para_refund() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	let para_b_location = Location::new(1, [Parachain(2)]);
1

            
1
	let para_b_balances = Location::new(1, [Parachain(2), PalletInstance(1u8)]);
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(para_b_balances.clone())),
1
			parachain::ParaTokensPerSecond::get(),
1
		));
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_location = parachain::SelfLocation::get();
1
	descend_origin_location.append_with(signed_origin).unwrap();
1

            
1
	// To convert it to what the paraB will see instead of us
1
	descend_origin_location
1
		.reanchor(&para_b_location, &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::HashedDescription::<
1
		parachain::AccountId,
1
		xcm_builder::DescribeFamily<xcm_builder::DescribeAllTerminal>,
1
	>::convert_location(&descend_origin_location)
1
	.unwrap();
1

            
1
	ParaB::execute_with(|| {
1
		// free execution, full amount received
1
		assert_ok!(ParaBalances::transfer_allow_death(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			derived.clone(),
1
			4000009100u128,
1
		));
		// derived account has all funds
1
		assert!(ParaBalances::free_balance(&derived) == 4000009100);
		// sovereign account has 0 funds
1
		assert!(ParaBalances::free_balance(&para_a_account_20()) == 0);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index =
1
		<parachain::Runtime as frame_system::Config>::PalletInfo::index::<parachain::Balances>()
1
			.unwrap() as u8;
1

            
1
	encoded.push(index);
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_balances::Call::<parachain::Runtime>::transfer_allow_death {
1
		// 100 to sovereign
1
		dest: para_a_account_20(),
1
		value: 100u32.into(),
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	let overall_weight = 4000009000u64;
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(para_b_location)),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					para_b_balances
1
				))),
1
				fee_amount: Some(overall_weight as u128)
1
			},
1
			encoded,
1
			// 4000000000 for transfer + 9000 for XCM
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: Some(Limited(overall_weight.into()))
1
			},
1
			true
1
		));
1
	});
1

            
1
	ParaB::execute_with(|| {
1
		// Check the derived account was refunded
1
		assert_eq!(ParaBalances::free_balance(&derived), 3823903993);
		// Check the transfer was executed
1
		assert_eq!(ParaBalances::free_balance(&para_a_account_20()), 100);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation_para_to_para_ethereum() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	let para_b_location = Location::new(1, [Parachain(2)]);
1

            
1
	let para_b_balances = Location::new(1, [Parachain(2), PalletInstance(1u8)]);
1

            
1
	ParaA::execute_with(|| {
1
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			// ParaB
1
			Box::new(xcm::VersionedLocation::from(para_b_location.clone())),
1
			// Para charges 1000 for every instruction, and we have 3, so 3
1
			3.into(),
1
			20000000000.into(),
1
			// 4 instructions in transact through signed
1
			Some(4.into())
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(para_b_balances.clone())),
1
			parachain::ParaTokensPerSecond::get(),
1
		));
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_location = parachain::SelfLocation::get();
1
	descend_origin_location.append_with(signed_origin).unwrap();
1

            
1
	// To convert it to what the paraB will see instead of us
1
	descend_origin_location
1
		.reanchor(&para_b_location, &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::HashedDescription::<
1
		parachain::AccountId,
1
		xcm_builder::DescribeFamily<xcm_builder::DescribeAllTerminal>,
1
	>::convert_location(&descend_origin_location)
1
	.unwrap();
1

            
1
	let mut parachain_b_alice_balances_before = 0;
1
	ParaB::execute_with(|| {
1
		assert_ok!(ParaBalances::transfer_allow_death(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			derived.clone(),
1
			4000000104u128,
1
		));
		// derived account has all funds
1
		assert!(ParaBalances::free_balance(&derived) == 4000000104);
		// sovereign account has 0 funds
1
		assert!(ParaBalances::free_balance(&para_a_account_20()) == 0);
1
		parachain_b_alice_balances_before = ParaBalances::free_balance(&PARAALICE.into())
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index =
1
		<parachain::Runtime as frame_system::Config>::PalletInfo::index::<parachain::EthereumXcm>()
1
			.unwrap() as u8;
1

            
1
	encoded.push(index);
	use sp_core::U256;
	// Let's do a EVM transfer
1
	let eth_tx =
1
		xcm_primitives::EthereumXcmTransaction::V1(xcm_primitives::EthereumXcmTransactionV1 {
1
			gas_limit: U256::from(21000),
1
			fee_payment: xcm_primitives::EthereumXcmFee::Auto,
1
			action: pallet_ethereum::TransactionAction::Call(PARAALICE.into()),
1
			value: U256::from(100),
1
			input: BoundedVec::<
1
				u8,
1
				ConstU32<{ xcm_primitives::MAX_ETHEREUM_XCM_INPUT_SIZE }>
1
			>::try_from(vec![]).unwrap(),
1
			access_list: None,
1
		});
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_ethereum_xcm::Call::<parachain::Runtime>::transact {
1
		xcm_transaction: eth_tx,
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(para_b_location)),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					para_b_balances
1
				))),
1
				fee_amount: None
1
			},
1
			encoded,
1
			// 4000000000 for transfer + 4000 for XCM
1
			// 1-1 to fee
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	ParaB::execute_with(|| {
1
		// Make sure the EVM transfer went through
1
		assert!(
1
			ParaBalances::free_balance(&PARAALICE.into())
1
				== parachain_b_alice_balances_before + 100
1
		);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation_para_to_para_ethereum_no_proxy_fails() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	let para_b_location = Location::new(1, [Parachain(2)]);
1

            
1
	let para_b_balances = Location::new(1, [Parachain(2), PalletInstance(1u8)]);
1

            
1
	ParaA::execute_with(|| {
1
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			// ParaB
1
			Box::new(xcm::VersionedLocation::from(para_b_location.clone())),
1
			// Para charges 1000 for every instruction, and we have 3, so 3
1
			3.into(),
1
			20000000000.into(),
1
			// 4 instructions in transact through signed
1
			Some(4.into())
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(para_b_balances.clone())),
1
			parachain::ParaTokensPerSecond::get(),
1
		));
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_location = parachain::SelfLocation::get();
1
	descend_origin_location.append_with(signed_origin).unwrap();
1

            
1
	// To convert it to what the paraB will see instead of us
1
	descend_origin_location
1
		.reanchor(&para_b_location, &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::HashedDescription::<
1
		parachain::AccountId,
1
		xcm_builder::DescribeFamily<xcm_builder::DescribeAllTerminal>,
1
	>::convert_location(&descend_origin_location)
1
	.unwrap();
1

            
1
	let mut parachain_b_alice_balances_before = 0;
1
	ParaB::execute_with(|| {
1
		assert_ok!(ParaBalances::transfer_allow_death(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			derived.clone(),
1
			4000000104u128,
1
		));
		// derived account has all funds
1
		assert!(ParaBalances::free_balance(&derived) == 4000000104);
		// sovereign account has 0 funds
1
		assert!(ParaBalances::free_balance(&para_a_account_20()) == 0);
1
		parachain_b_alice_balances_before = ParaBalances::free_balance(&PARAALICE.into())
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index =
1
		<parachain::Runtime as frame_system::Config>::PalletInfo::index::<parachain::EthereumXcm>()
1
			.unwrap() as u8;
1

            
1
	encoded.push(index);
	use sp_core::U256;
	// Let's do a EVM transfer
1
	let eth_tx =
1
		xcm_primitives::EthereumXcmTransaction::V1(xcm_primitives::EthereumXcmTransactionV1 {
1
			gas_limit: U256::from(21000),
1
			fee_payment: xcm_primitives::EthereumXcmFee::Auto,
1
			action: pallet_ethereum::TransactionAction::Call(PARAALICE.into()),
1
			value: U256::from(100),
1
			input: BoundedVec::<
1
				u8,
1
				ConstU32<{ xcm_primitives::MAX_ETHEREUM_XCM_INPUT_SIZE }>
1
			>::try_from(vec![]).unwrap(),
1
			access_list: None,
1
		});
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_ethereum_xcm::Call::<parachain::Runtime>::transact_through_proxy {
1
		transact_as: PARAALICE.into(),
1
		xcm_transaction: eth_tx,
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(para_b_location)),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					para_b_balances
1
				))),
1
				fee_amount: None
1
			},
1
			encoded,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	ParaB::execute_with(|| {
1
		// Make sure the EVM transfer wasn't executed
1
		assert!(ParaBalances::free_balance(&PARAALICE.into()) == parachain_b_alice_balances_before);
1
	});
1
}
#[test]
1
fn transact_through_signed_multilocation_para_to_para_ethereum_proxy_succeeds() {
1
	MockNet::reset();
1
	let mut ancestry = Location::parent();
1

            
1
	let para_b_location = Location::new(1, [Parachain(2)]);
1

            
1
	let para_b_balances = Location::new(1, [Parachain(2), PalletInstance(1u8)]);
1

            
1
	ParaA::execute_with(|| {
1
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_transact_info(
1
			parachain::RuntimeOrigin::root(),
1
			// ParaB
1
			Box::new(xcm::VersionedLocation::from(para_b_location.clone())),
1
			// Para charges 1000 for every instruction, and we have 3, so 3
1
			3.into(),
1
			20000000000.into(),
1
			// 4 instructions in transact through signed
1
			Some(4.into())
1
		));
		// Root can set transact info
1
		assert_ok!(XcmTransactor::set_fee_per_second(
1
			parachain::RuntimeOrigin::root(),
1
			Box::new(xcm::VersionedLocation::from(para_b_balances.clone())),
1
			parachain::ParaTokensPerSecond::get(),
1
		));
1
		ancestry = parachain::UniversalLocation::get().into();
1
	});
1

            
1
	// Let's construct the Junction that we will append with DescendOrigin
1
	let signed_origin: Junctions = [AccountKey20 {
1
		network: None,
1
		key: PARAALICE,
1
	}]
1
	.into();
1

            
1
	let mut descend_origin_location = parachain::SelfLocation::get();
1
	descend_origin_location.append_with(signed_origin).unwrap();
1

            
1
	// To convert it to what the paraB will see instead of us
1
	descend_origin_location
1
		.reanchor(&para_b_location, &ancestry.interior)
1
		.unwrap();
1

            
1
	let derived = xcm_builder::HashedDescription::<
1
		parachain::AccountId,
1
		xcm_builder::DescribeFamily<xcm_builder::DescribeAllTerminal>,
1
	>::convert_location(&descend_origin_location)
1
	.unwrap();
1

            
1
	let transfer_recipient = evm_account();
1
	let mut transfer_recipient_balance_before = 0;
1
	ParaB::execute_with(|| {
1
		assert_ok!(ParaBalances::transfer_allow_death(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			derived.clone(),
1
			4000000104u128,
1
		));
		// derived account has all funds
1
		assert!(ParaBalances::free_balance(&derived) == 4000000104);
		// sovereign account has 0 funds
1
		assert!(ParaBalances::free_balance(&para_a_account_20()) == 0);
1
		transfer_recipient_balance_before = ParaBalances::free_balance(&transfer_recipient.into());
1

            
1
		// Add proxy ALICE  -> derived
1
		let _ = parachain::Proxy::add_proxy_delegate(
1
			&PARAALICE.into(),
1
			derived,
1
			parachain::ProxyType::Any,
1
			0,
1
		);
1
	});
1

            
1
	// Encode the call. Balances transact to para_a_account
1
	// First index
1
	let mut encoded: Vec<u8> = Vec::new();
1
	let index =
1
		<parachain::Runtime as frame_system::Config>::PalletInfo::index::<parachain::EthereumXcm>()
1
			.unwrap() as u8;
1

            
1
	encoded.push(index);
	use sp_core::U256;
	// Let's do a EVM transfer
1
	let eth_tx =
1
		xcm_primitives::EthereumXcmTransaction::V2(xcm_primitives::EthereumXcmTransactionV2 {
1
			gas_limit: U256::from(21000),
1
			action: pallet_ethereum::TransactionAction::Call(transfer_recipient.into()),
1
			value: U256::from(100),
1
			input: BoundedVec::<
1
				u8,
1
				ConstU32<{ xcm_primitives::MAX_ETHEREUM_XCM_INPUT_SIZE }>
1
			>::try_from(vec![]).unwrap(),
1
			access_list: None,
1
		});
1

            
1
	// Then call bytes
1
	let mut call_bytes = pallet_ethereum_xcm::Call::<parachain::Runtime>::transact_through_proxy {
1
		transact_as: PARAALICE.into(),
1
		xcm_transaction: eth_tx,
1
	}
1
	.encode();
1
	encoded.append(&mut call_bytes);
1

            
1
	ParaA::execute_with(|| {
1
		assert_ok!(XcmTransactor::transact_through_signed(
1
			parachain::RuntimeOrigin::signed(PARAALICE.into()),
1
			Box::new(xcm::VersionedLocation::from(para_b_location)),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					para_b_balances
1
				))),
1
				fee_amount: None
1
			},
1
			encoded,
1
			TransactWeights {
1
				transact_required_weight_at_most: 4000000000.into(),
1
				overall_weight: None
1
			},
1
			false
1
		));
1
	});
1

            
1
	ParaB::execute_with(|| {
1
		// Make sure the EVM transfer was executed
1
		assert!(
1
			ParaBalances::free_balance(&transfer_recipient.into())
1
				== transfer_recipient_balance_before + 100
1
		);
1
	});
1
}
#[test]
1
fn hrmp_init_accept_through_root() {
1
	MockNet::reset();
1

            
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayBalances::transfer_allow_death(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			para_a_account(),
1
			1000u128
1
		));
1
		assert_ok!(RelayBalances::transfer_allow_death(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			para_b_account(),
1
			1000u128
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		let total_fee = 1_000u128;
1
		let total_weight: u64 = 1_000_000_000;
1
		let tx_weight: u64 = 500_000_000;
1
		// Root can send hrmp init channel
1
		assert_ok!(XcmTransactor::hrmp_manage(
1
			parachain::RuntimeOrigin::root(),
1
			HrmpOperation::InitOpen(HrmpInitParams {
1
				para_id: 2u32.into(),
1
				proposed_max_capacity: 1,
1
				proposed_max_message_size: 1
1
			}),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: Some(total_fee)
1
			},
1
			TransactWeights {
1
				transact_required_weight_at_most: tx_weight.into(),
1
				overall_weight: Some(Limited(total_weight.into()))
1
			}
1
		));
1
	});
1
	Relay::execute_with(|| {
1
		let expected_event: relay_chain::RuntimeEvent =
1
			polkadot_runtime_parachains::hrmp::Event::OpenChannelRequested {
1
				sender: 1u32.into(),
1
				recipient: 2u32.into(),
1
				proposed_max_capacity: 1u32,
1
				proposed_max_message_size: 1u32,
1
			}
1
			.into();
1
		assert!(relay_chain::relay_events().contains(&expected_event));
1
	});
1
	ParaB::execute_with(|| {
1
		let total_fee = 1_000u128;
1
		let total_weight: u64 = 1_000_000_000;
1
		let tx_weight: u64 = 500_000_000;
1
		// Root can send hrmp accept channel
1
		assert_ok!(XcmTransactor::hrmp_manage(
1
			parachain::RuntimeOrigin::root(),
1
			HrmpOperation::Accept {
1
				para_id: 1u32.into()
1
			},
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: Some(total_fee)
1
			},
1
			TransactWeights {
1
				transact_required_weight_at_most: tx_weight.into(),
1
				overall_weight: Some(Limited(total_weight.into()))
1
			}
1
		));
1
	});
1

            
1
	Relay::execute_with(|| {
1
		let expected_event: relay_chain::RuntimeEvent =
1
			polkadot_runtime_parachains::hrmp::Event::OpenChannelAccepted {
1
				sender: 1u32.into(),
1
				recipient: 2u32.into(),
1
			}
1
			.into();
1
		assert!(relay_chain::relay_events().contains(&expected_event));
1
	});
1
}
#[test]
1
fn hrmp_close_works() {
1
	MockNet::reset();
1

            
1
	Relay::execute_with(|| {
1
		assert_ok!(RelayBalances::transfer_allow_death(
1
			relay_chain::RuntimeOrigin::signed(RELAYALICE),
1
			para_a_account(),
1
			1000u128
1
		));
1
		assert_ok!(Hrmp::force_open_hrmp_channel(
1
			relay_chain::RuntimeOrigin::root(),
1
			1u32.into(),
1
			2u32.into(),
1
			1u32,
1
			1u32
1
		));
1
		assert_ok!(Hrmp::force_process_hrmp_open(
1
			relay_chain::RuntimeOrigin::root(),
1
			1u32
1
		));
1
	});
1

            
1
	ParaA::execute_with(|| {
1
		let total_fee = 1_000u128;
1
		let total_weight: u64 = 1_000_000_000;
1
		let tx_weight: u64 = 500_000_000;
1
		// Root can send hrmp close
1
		assert_ok!(XcmTransactor::hrmp_manage(
1
			parachain::RuntimeOrigin::root(),
1
			HrmpOperation::Close(HrmpChannelId {
1
				sender: 1u32.into(),
1
				recipient: 2u32.into()
1
			}),
1
			CurrencyPayment {
1
				currency: Currency::AsMultiLocation(Box::new(xcm::VersionedLocation::from(
1
					Location::parent()
1
				))),
1
				fee_amount: Some(total_fee)
1
			},
1
			TransactWeights {
1
				transact_required_weight_at_most: tx_weight.into(),
1
				overall_weight: Some(Limited(total_weight.into()))
1
			}
1
		));
1
	});
1
	Relay::execute_with(|| {
1
		let expected_event: relay_chain::RuntimeEvent =
1
			polkadot_runtime_parachains::hrmp::Event::ChannelClosed {
1
				by_parachain: 1u32.into(),
1
				channel_id: HrmpChannelId {
1
					sender: 1u32.into(),
1
					recipient: 2u32.into(),
1
				},
1
			}
1
			.into();
1
		assert!(relay_chain::relay_events().contains(&expected_event));
1
	});
1
}
use parity_scale_codec::{Decode, Encode};
use sp_io::hashing::blake2_256;
// Helper to derive accountIds
7
pub fn derivative_account_id(who: sp_runtime::AccountId32, index: u16) -> sp_runtime::AccountId32 {
7
	let entropy = (b"modlpy/utilisuba", who, index).using_encoded(blake2_256);
7
	sp_runtime::AccountId32::decode(&mut &entropy[..]).expect("valid account id")
7
}