mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 20:21:03 +00:00
8428f678fe
# Note for reviewer
Most changes are just syntax changes necessary for the new version.
Most important files should be the ones under the `xcm` folder.
# Description
Added XCMv4.
## Removed `Multi` prefix
The following types have been renamed:
- MultiLocation -> Location
- MultiAsset -> Asset
- MultiAssets -> Assets
- InteriorMultiLocation -> InteriorLocation
- MultiAssetFilter -> AssetFilter
- VersionedMultiAsset -> VersionedAsset
- WildMultiAsset -> WildAsset
- VersionedMultiLocation -> VersionedLocation
In order to fix a name conflict, the `Assets` in `xcm-executor` were
renamed to `HoldingAssets`, as they represent assets in holding.
## Removed `Abstract` asset id
It was not being used anywhere and this simplifies the code.
Now assets are just constructed as follows:
```rust
let asset: Asset = (AssetId(Location::new(1, Here)), 100u128).into();
```
No need for specifying `Concrete` anymore.
## Outcome is now a named fields struct
Instead of
```rust
pub enum Outcome {
Complete(Weight),
Incomplete(Weight, Error),
Error(Error),
}
```
we now have
```rust
pub enum Outcome {
Complete { used: Weight },
Incomplete { used: Weight, error: Error },
Error { error: Error },
}
```
## Added Reanchorable trait
Now both locations and assets implement this trait, making it easier to
reanchor both.
## New syntax for building locations and junctions
Now junctions are built using the following methods:
```rust
let location = Location {
parents: 1,
interior: [Parachain(1000), PalletInstance(50), GeneralIndex(1984)].into()
};
```
or
```rust
let location = Location::new(1, [Parachain(1000), PalletInstance(50), GeneralIndex(1984)]);
```
And they are matched like so:
```rust
match location.unpack() {
(1, [Parachain(id)]) => ...
(0, Here) => ...,
(1, [_]) => ...,
}
```
This syntax is mandatory in v4, and has been also implemented for v2 and
v3 for easier migration.
This was needed to make all sizes smaller.
# TODO
- [x] Scaffold v4
- [x] Port github.com/paritytech/polkadot/pull/7236
- [x] Remove `Multi` prefix
- [x] Remove `Abstract` asset id
---------
Co-authored-by: command-bot <>
Co-authored-by: Keith Yeung <kungfukeith11@gmail.com>
241 lines
7.6 KiB
Rust
241 lines
7.6 KiB
Rust
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! A mock runtime for XCM benchmarking.
|
|
|
|
use crate::{generic, mock::*, *};
|
|
use codec::Decode;
|
|
use frame_support::{
|
|
derive_impl, parameter_types,
|
|
traits::{Contains, Everything, OriginTrait},
|
|
weights::Weight,
|
|
};
|
|
use sp_core::H256;
|
|
use sp_runtime::traits::{BlakeTwo256, IdentityLookup, TrailingZeroInput};
|
|
use xcm_builder::{
|
|
test_utils::{
|
|
AssetsInHolding, TestAssetExchanger, TestAssetLocker, TestAssetTrap,
|
|
TestSubscriptionService, TestUniversalAliases,
|
|
},
|
|
AliasForeignAccountId32, AllowUnpaidExecutionFrom,
|
|
};
|
|
use xcm_executor::traits::ConvertOrigin;
|
|
|
|
type Block = frame_system::mocking::MockBlock<Test>;
|
|
|
|
frame_support::construct_runtime!(
|
|
pub enum Test
|
|
{
|
|
System: frame_system::{Pallet, Call, Config<T>, Storage, Event<T>},
|
|
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
|
|
XcmGenericBenchmarks: generic::{Pallet},
|
|
}
|
|
);
|
|
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub BlockWeights: frame_system::limits::BlockWeights =
|
|
frame_system::limits::BlockWeights::simple_max(Weight::from_parts(1024, u64::MAX));
|
|
}
|
|
|
|
#[derive_impl(frame_system::config_preludes::TestDefaultConfig as frame_system::DefaultConfig)]
|
|
impl frame_system::Config for Test {
|
|
type BaseCallFilter = Everything;
|
|
type BlockWeights = ();
|
|
type BlockLength = ();
|
|
type DbWeight = ();
|
|
type RuntimeOrigin = RuntimeOrigin;
|
|
type Nonce = u64;
|
|
type Hash = H256;
|
|
type RuntimeCall = RuntimeCall;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Block = Block;
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type BlockHashCount = BlockHashCount;
|
|
type Version = ();
|
|
type PalletInfo = PalletInfo;
|
|
type AccountData = pallet_balances::AccountData<u64>;
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type SystemWeightInfo = ();
|
|
type SS58Prefix = ();
|
|
type OnSetCode = ();
|
|
type MaxConsumers = frame_support::traits::ConstU32<16>;
|
|
}
|
|
|
|
/// The benchmarks in this pallet should never need an asset transactor to begin with.
|
|
pub struct NoAssetTransactor;
|
|
impl xcm_executor::traits::TransactAsset for NoAssetTransactor {
|
|
fn deposit_asset(_: &Asset, _: &Location, _: Option<&XcmContext>) -> Result<(), XcmError> {
|
|
unreachable!();
|
|
}
|
|
|
|
fn withdraw_asset(
|
|
_: &Asset,
|
|
_: &Location,
|
|
_: Option<&XcmContext>,
|
|
) -> Result<AssetsInHolding, XcmError> {
|
|
unreachable!();
|
|
}
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const MaxInstructions: u32 = 100;
|
|
pub const MaxAssetsIntoHolding: u32 = 64;
|
|
}
|
|
|
|
pub struct OnlyParachains;
|
|
impl Contains<Location> for OnlyParachains {
|
|
fn contains(location: &Location) -> bool {
|
|
matches!(location.unpack(), (0, [Parachain(_)]))
|
|
}
|
|
}
|
|
|
|
type Aliasers = AliasForeignAccountId32<OnlyParachains>;
|
|
pub struct XcmConfig;
|
|
impl xcm_executor::Config for XcmConfig {
|
|
type RuntimeCall = RuntimeCall;
|
|
type XcmSender = DevNull;
|
|
type AssetTransactor = NoAssetTransactor;
|
|
type OriginConverter = AlwaysSignedByDefault<RuntimeOrigin>;
|
|
type IsReserve = AllAssetLocationsPass;
|
|
type IsTeleporter = ();
|
|
type UniversalLocation = UniversalLocation;
|
|
type Barrier = AllowUnpaidExecutionFrom<Everything>;
|
|
type Weigher = xcm_builder::FixedWeightBounds<UnitWeightCost, RuntimeCall, MaxInstructions>;
|
|
type Trader = xcm_builder::FixedRateOfFungible<WeightPrice, ()>;
|
|
type ResponseHandler = DevNull;
|
|
type AssetTrap = TestAssetTrap;
|
|
type AssetLocker = TestAssetLocker;
|
|
type AssetExchanger = TestAssetExchanger;
|
|
type AssetClaims = TestAssetTrap;
|
|
type SubscriptionService = TestSubscriptionService;
|
|
type PalletInstancesInfo = AllPalletsWithSystem;
|
|
type MaxAssetsIntoHolding = MaxAssetsIntoHolding;
|
|
type FeeManager = ();
|
|
// No bridges yet...
|
|
type MessageExporter = ();
|
|
type UniversalAliases = TestUniversalAliases;
|
|
type CallDispatcher = RuntimeCall;
|
|
type SafeCallFilter = Everything;
|
|
type Aliasers = Aliasers;
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const ExistentialDeposit: u64 = 7;
|
|
}
|
|
|
|
#[derive_impl(pallet_balances::config_preludes::TestDefaultConfig as pallet_balances::DefaultConfig)]
|
|
impl pallet_balances::Config for Test {
|
|
type ReserveIdentifier = [u8; 8];
|
|
type AccountStore = System;
|
|
}
|
|
|
|
impl crate::Config for Test {
|
|
type XcmConfig = XcmConfig;
|
|
type AccountIdConverter = AccountIdConverter;
|
|
type DeliveryHelper = ();
|
|
fn valid_destination() -> Result<Location, BenchmarkError> {
|
|
let valid_destination: Location =
|
|
Junction::AccountId32 { network: None, id: [0u8; 32] }.into();
|
|
|
|
Ok(valid_destination)
|
|
}
|
|
fn worst_case_holding(depositable_count: u32) -> Assets {
|
|
crate::mock_worst_case_holding(
|
|
depositable_count,
|
|
<XcmConfig as xcm_executor::Config>::MaxAssetsIntoHolding::get(),
|
|
)
|
|
}
|
|
}
|
|
|
|
impl generic::Config for Test {
|
|
type TransactAsset = Balances;
|
|
type RuntimeCall = RuntimeCall;
|
|
|
|
fn worst_case_response() -> (u64, Response) {
|
|
let assets: Assets = (AssetId(Here.into()), 100).into();
|
|
(0, Response::Assets(assets))
|
|
}
|
|
|
|
fn worst_case_asset_exchange() -> Result<(Assets, Assets), BenchmarkError> {
|
|
Ok(Default::default())
|
|
}
|
|
|
|
fn universal_alias() -> Result<(Location, Junction), BenchmarkError> {
|
|
Ok((Here.into(), GlobalConsensus(ByGenesis([0; 32]))))
|
|
}
|
|
|
|
fn transact_origin_and_runtime_call(
|
|
) -> Result<(Location, <Self as generic::Config>::RuntimeCall), BenchmarkError> {
|
|
Ok((Default::default(), frame_system::Call::remark_with_event { remark: vec![] }.into()))
|
|
}
|
|
|
|
fn subscribe_origin() -> Result<Location, BenchmarkError> {
|
|
Ok(Default::default())
|
|
}
|
|
|
|
fn claimable_asset() -> Result<(Location, Location, Assets), BenchmarkError> {
|
|
let assets: Assets = (AssetId(Here.into()), 100).into();
|
|
let ticket = Location { parents: 0, interior: [GeneralIndex(0)].into() };
|
|
Ok((Default::default(), ticket, assets))
|
|
}
|
|
|
|
fn unlockable_asset() -> Result<(Location, Location, Asset), BenchmarkError> {
|
|
let assets: Asset = (AssetId(Here.into()), 100).into();
|
|
Ok((Default::default(), account_id_junction::<Test>(1).into(), assets))
|
|
}
|
|
|
|
fn export_message_origin_and_destination(
|
|
) -> Result<(Location, NetworkId, InteriorLocation), BenchmarkError> {
|
|
// No MessageExporter in tests
|
|
Err(BenchmarkError::Skip)
|
|
}
|
|
|
|
fn alias_origin() -> Result<(Location, Location), BenchmarkError> {
|
|
let origin: Location = (Parachain(1), AccountId32 { network: None, id: [0; 32] }).into();
|
|
let target: Location = AccountId32 { network: None, id: [0; 32] }.into();
|
|
Ok((origin, target))
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "runtime-benchmarks")]
|
|
pub fn new_test_ext() -> sp_io::TestExternalities {
|
|
use sp_runtime::BuildStorage;
|
|
let t = RuntimeGenesisConfig { ..Default::default() }.build_storage().unwrap();
|
|
sp_tracing::try_init_simple();
|
|
t.into()
|
|
}
|
|
|
|
pub struct AlwaysSignedByDefault<RuntimeOrigin>(core::marker::PhantomData<RuntimeOrigin>);
|
|
impl<RuntimeOrigin> ConvertOrigin<RuntimeOrigin> for AlwaysSignedByDefault<RuntimeOrigin>
|
|
where
|
|
RuntimeOrigin: OriginTrait,
|
|
<RuntimeOrigin as OriginTrait>::AccountId: Decode,
|
|
{
|
|
fn convert_origin(
|
|
_origin: impl Into<Location>,
|
|
_kind: OriginKind,
|
|
) -> Result<RuntimeOrigin, Location> {
|
|
Ok(RuntimeOrigin::signed(
|
|
<RuntimeOrigin as OriginTrait>::AccountId::decode(&mut TrailingZeroInput::zeroes())
|
|
.expect("infinite length input; no invalid inputs for type; qed"),
|
|
))
|
|
}
|
|
}
|