git.delta.rocks / unique-network / refs/commits / 308db1642565

difftreelog

feat(identity) add pallet + rename evm-migration to data-management

Fahrrader2022-12-27parent: #896d7c6.patch.diff
in: master

43 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5336,15 +5336,16 @@
  "pallet-collator-selection",
  "pallet-common",
  "pallet-configuration",
+ "pallet-data-management",
  "pallet-ethereum",
  "pallet-evm",
  "pallet-evm-coder-substrate",
  "pallet-evm-contract-helpers",
- "pallet-evm-migration",
  "pallet-evm-precompile-simple",
  "pallet-evm-transaction-payment",
  "pallet-foreign-assets",
  "pallet-fungible",
+ "pallet-identity",
  "pallet-inflation",
  "pallet-maintenance",
  "pallet-nonfungible",
@@ -5577,9 +5578,9 @@
  "pallet-balances",
  "pallet-common",
  "pallet-configuration",
+ "pallet-data-management",
  "pallet-evm",
  "pallet-evm-contract-helpers",
- "pallet-evm-migration",
  "pallet-randomness-collective-flip",
  "pallet-timestamp",
  "pallet-unique",
@@ -5801,6 +5802,7 @@
  "pallet-aura",
  "pallet-authorship",
  "pallet-balances",
+ "pallet-configuration",
  "pallet-session",
  "pallet-timestamp",
  "parity-scale-codec 3.2.1",
@@ -5889,6 +5891,24 @@
 ]
 
 [[package]]
+name = "pallet-data-management"
+version = "0.1.1"
+dependencies = [
+ "ethereum 0.14.0",
+ "fp-evm",
+ "frame-benchmarking",
+ "frame-support",
+ "frame-system",
+ "pallet-evm",
+ "parity-scale-codec 3.2.1",
+ "scale-info",
+ "sp-core",
+ "sp-io",
+ "sp-runtime",
+ "sp-std",
+]
+
+[[package]]
 name = "pallet-democracy"
 version = "4.0.0-dev"
 source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.33#2dff067e9f7f6f3cc4dbfdaaa97753eccc407689"
@@ -6058,24 +6078,6 @@
 ]
 
 [[package]]
-name = "pallet-evm-migration"
-version = "0.1.1"
-dependencies = [
- "ethereum 0.14.0",
- "fp-evm",
- "frame-benchmarking",
- "frame-support",
- "frame-system",
- "pallet-evm",
- "parity-scale-codec 3.2.1",
- "scale-info",
- "sp-core",
- "sp-io",
- "sp-runtime",
- "sp-std",
-]
-
-[[package]]
 name = "pallet-evm-precompile-simple"
 version = "2.0.0-dev"
 source = "git+https://github.com/uniquenetwork/frontier?branch=unique-polkadot-v0.9.33#c37ced433a29baad45899d6ab364fe437f97570e"
@@ -8976,15 +8978,16 @@
  "pallet-collator-selection",
  "pallet-common",
  "pallet-configuration",
+ "pallet-data-management",
  "pallet-ethereum",
  "pallet-evm",
  "pallet-evm-coder-substrate",
  "pallet-evm-contract-helpers",
- "pallet-evm-migration",
  "pallet-evm-precompile-simple",
  "pallet-evm-transaction-payment",
  "pallet-foreign-assets",
  "pallet-fungible",
+ "pallet-identity",
  "pallet-inflation",
  "pallet-maintenance",
  "pallet-nonfungible",
@@ -13180,15 +13183,16 @@
  "pallet-collator-selection",
  "pallet-common",
  "pallet-configuration",
+ "pallet-data-management",
  "pallet-ethereum",
  "pallet-evm",
  "pallet-evm-coder-substrate",
  "pallet-evm-contract-helpers",
- "pallet-evm-migration",
  "pallet-evm-precompile-simple",
  "pallet-evm-transaction-payment",
  "pallet-foreign-assets",
  "pallet-fungible",
+ "pallet-identity",
  "pallet-inflation",
  "pallet-maintenance",
  "pallet-nonfungible",
modifiedMakefilediffbeforeafterboth
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 	@echo "regenerate_solidity - generate stubs/interfaces for contracts defined in native (via evm-coder)"
 	@echo "evm_stubs - recompile contract stubs and ABI"
 	@echo "bench - run frame-benchmarking"
-	@echo "  bench-evm-migration"
+	@echo "  bench-data-management"
 	@echo "  bench-unique"
 
 FUNGIBLE_EVM_STUBS=./pallets/fungible/src/stubs
@@ -85,9 +85,9 @@
 	--template .maintain/frame-weight-template.hbs --steps=50 --repeat=80 --heap-pages=4096 \
 	--output=./pallets/$(if $(PALLET_DIR),$(PALLET_DIR),$(PALLET))/src/weights.rs
 
-.PHONY: bench-evm-migration
-bench-evm-migration:
-	make _bench PALLET=evm-migration
+.PHONY: bench-data-management
+bench-data-management:
+	make _bench PALLET=data-management
 
 .PHONY: bench-common
 bench-common:
@@ -134,4 +134,4 @@
 	make _bench PALLET=app-promotion PALLET_DIR=app-promotion
 	
 .PHONY: bench
-bench: bench-evm-migration bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-scheduler bench-rmrk-core bench-rmrk-equip bench-foreign-assets
+bench: bench-data-management bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-scheduler bench-rmrk-core bench-rmrk-equip bench-foreign-assets
modifiedpallets/app-promotion/Cargo.tomldiffbeforeafterboth
--- a/pallets/app-promotion/Cargo.toml
+++ b/pallets/app-promotion/Cargo.toml
@@ -71,7 +71,7 @@
 pallet-configuration = { default-features = false, path = "../configuration" }
 pallet-unique = { default-features = false, path = "../unique" }
 pallet-evm-contract-helpers = { default-features = false, path = "../evm-contract-helpers" }
-pallet-evm-migration = { default-features = false, path = "../evm-migration" }
+pallet-data-management = { default-features = false, path = "../data-management" }
 
 # [dev-dependencies]
 
modifiedpallets/app-promotion/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/app-promotion/src/benchmarking.rs
+++ b/pallets/app-promotion/src/benchmarking.rs
@@ -25,13 +25,13 @@
 use frame_support::traits::OnInitialize;
 use frame_system::RawOrigin;
 use pallet_unique::benchmarking::create_nft_collection;
-use pallet_evm_migration::Pallet as EvmMigrationPallet;
+use pallet_data_management::Pallet as DataManagementPallet;
 
 const SEED: u32 = 0;
 
 fn set_admin<T>() -> Result<T::AccountId, sp_runtime::DispatchError>
 where
-	T: Config + pallet_unique::Config + pallet_evm_migration::Config,
+	T: Config + pallet_unique::Config + pallet_data_management::Config,
 	T::BlockNumber: From<u32> + Into<u32>,
 	<<T as Config>::Currency as Currency<T::AccountId>>::Balance: Sum + From<u128>,
 {
@@ -52,7 +52,7 @@
 
 benchmarks! {
 	where_clause{
-		where T:  Config + pallet_unique::Config + pallet_evm_migration::Config ,
+		where T:  Config + pallet_unique::Config + pallet_data_management::Config ,
 		T::BlockNumber: From<u32> + Into<u32>,
 		<<T as Config>::Currency as Currency<T::AccountId>>::Balance: Sum + From<u128>
 	}
@@ -144,8 +144,8 @@
 		let _ = <T as Config>::Currency::make_free_balance_be(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		let address = H160::from_low_u64_be(SEED as u64);
 		let data: Vec<u8> = (0..20 as u8).collect();
-		<EvmMigrationPallet<T>>::begin(RawOrigin::Root.into(), address)?;
-		<EvmMigrationPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
+		<DataManagementPallet<T>>::begin(RawOrigin::Root.into(), address)?;
+		<DataManagementPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
 	} : _(RawOrigin::Signed(pallet_admin.clone()), address)
 
 	stop_sponsoring_contract {
@@ -155,8 +155,8 @@
 		let _ = <T as Config>::Currency::make_free_balance_be(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		let address = H160::from_low_u64_be(SEED as u64);
 		let data: Vec<u8> = (0..20 as u8).collect();
-		<EvmMigrationPallet<T>>::begin(RawOrigin::Root.into(), address)?;
-		<EvmMigrationPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
+		<DataManagementPallet<T>>::begin(RawOrigin::Root.into(), address)?;
+		<DataManagementPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
 		PromototionPallet::<T>::sponsor_contract(RawOrigin::Signed(pallet_admin.clone()).into(), address)?;
 	} : _(RawOrigin::Signed(pallet_admin.clone()), address)
 }
addedpallets/data-management/CHANGELOG.mddiffbeforeafterboth
--- /dev/null
+++ b/pallets/data-management/CHANGELOG.md
@@ -0,0 +1,17 @@
+<!-- bureaucrate goes here -->
+## [v0.1.1] 2022-08-16
+
+### Other changes
+
+- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
+
+- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
+
+- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
+
+Every extrinsic now runs in transaction implicitly, and
+`#[transactional]` on pallet dispatchable is now meaningless
+
+Upstream-Change: https://github.com/paritytech/substrate/issues/10806
+
+- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
addedpallets/data-management/Cargo.tomldiffbeforeafterboth
--- /dev/null
+++ b/pallets/data-management/Cargo.toml
@@ -0,0 +1,42 @@
+[package]
+name = "pallet-data-management"
+version = "0.1.1"
+license = "GPLv3"
+edition = "2021"
+
+[dependencies]
+scale-info = { version = "2.0.1", default-features = false, features = [
+    "derive",
+] }
+ethereum = { version = "0.14.0", default-features = false }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
+frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
+sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
+pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }
+
+[dependencies.codec]
+default-features = false
+features = ['derive']
+package = 'parity-scale-codec'
+version = '3.1.2'
+
+[features]
+default = ["std", "runtime-benchmarks"]
+std = [
+    "frame-support/std",
+    "frame-system/std",
+    "frame-benchmarking/std",
+    "sp-runtime/std",
+    "sp-std/std",
+    "sp-io/std",
+    "sp-core/std",
+    "pallet-evm/std",
+    "fp-evm/std",
+]
+runtime-benchmarks = ["frame-benchmarking"]
+try-runtime = ["frame-support/try-runtime"]
addedpallets/data-management/README.mddiffbeforeafterboth
--- /dev/null
+++ b/pallets/data-management/README.md
@@ -0,0 +1,18 @@
+# EVM contract migration pallet
+
+This pallet is only callable by root, it has functionality to migrate contract
+from other ethereum chain to pallet-evm
+
+Contract data includes contract code, and contract storage,
+where contract storage is a mapping from evm word to evm word (evm word = 32 byte)
+
+To import contract data into pallet-evm admin should call this pallet multiple times:
+1. Start migration via `begin`
+2. Insert all contract data using single or
+   multiple (If data can't be fit into single extrinsic) calls
+   to `set_data`
+3. Finish migration using `finish`, providing contract code
+
+During migration no one can insert code at address of this contract,
+as [`pallet::OnMethodCall`] prevents this, and no one can call this contract,
+as code is only supplied at final stage of contract deployment
\ No newline at end of file
addedpallets/data-management/src/benchmarking.rsdiffbeforeafterboth
--- /dev/null
+++ b/pallets/data-management/src/benchmarking.rs
@@ -0,0 +1,66 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network 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.
+
+// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+#![allow(missing_docs)]
+
+use super::{Call, Config, Pallet};
+use frame_benchmarking::benchmarks;
+use frame_system::RawOrigin;
+use sp_core::{H160, H256};
+use sp_std::{vec::Vec, vec};
+
+// todo:collator
+benchmarks! {
+	where_clause { where <T as Config>::RuntimeEvent: codec::Encode }
+
+	begin {
+	}: _(RawOrigin::Root, H160::default())
+
+	set_data {
+		let b in 0..80;
+		let address = H160::from_low_u64_be(b as u64);
+		let mut data = Vec::new();
+		for i in 0..b {
+			data.push((
+				H256::from_low_u64_be(i as u64),
+				H256::from_low_u64_be(i as u64),
+			));
+		}
+		<Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
+	}: _(RawOrigin::Root, address, data)
+
+	finish {
+		let b in 0..80;
+		let address = H160::from_low_u64_be(b as u64);
+		let data: Vec<u8> = (0..b as u8).collect();
+		<Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
+	}: _(RawOrigin::Root, address, data)
+
+	insert_eth_logs {
+		let b in 0..200;
+		let logs = (0..b).map(|_| ethereum::Log {
+			address: H160([b as u8; 20]),
+			data: vec![b as u8; 128],
+			topics: vec![H256([b as u8; 32]); 6],
+		}).collect::<Vec<_>>();
+	}: _(RawOrigin::Root, logs)
+
+	insert_events {
+		let b in 0..200;
+		use codec::Encode;
+		let logs = (0..b).map(|_| <T as Config>::RuntimeEvent::from(crate::Event::<T>::TestEvent).encode()).collect::<Vec<_>>();
+	}: _(RawOrigin::Root, logs)
+}
addedpallets/data-management/src/lib.rsdiffbeforeafterboth
--- /dev/null
+++ b/pallets/data-management/src/lib.rs
@@ -0,0 +1,168 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network 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.
+
+// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+#![doc = include_str!("../README.md")]
+#![cfg_attr(not(feature = "std"), no_std)]
+#![deny(missing_docs)]
+
+pub use pallet::*;
+#[cfg(feature = "runtime-benchmarks")]
+pub mod benchmarking;
+pub mod weights;
+
+#[frame_support::pallet]
+pub mod pallet {
+	use frame_support::{
+		pallet_prelude::{*, DispatchResult},
+		traits::IsType,
+	};
+	use frame_system::pallet_prelude::{*, OriginFor};
+	use sp_core::{H160, H256};
+	use sp_std::vec::Vec;
+	use super::weights::WeightInfo;
+	use pallet_evm::{PrecompileHandle, Pallet as PalletEvm};
+
+	#[pallet::config]
+	pub trait Config: frame_system::Config + pallet_evm::Config {
+		/// Weights
+		type WeightInfo: WeightInfo;
+		/// The overarching event type.
+		type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
+	}
+
+	type SelfWeightOf<T> = <T as Config>::WeightInfo;
+
+	#[pallet::pallet]
+	#[pallet::generate_store(pub(super) trait Store)]
+	pub struct Pallet<T>(_);
+
+	#[pallet::event]
+	pub enum Event<T: Config> {
+		/// This event is used in benchmarking and can be used for tests
+		TestEvent,
+	}
+
+	#[pallet::error]
+	pub enum Error<T> {
+		/// Can only migrate to empty address.
+		AccountNotEmpty,
+		/// Migration of this account is not yet started, or already finished.
+		AccountIsNotMigrating,
+		/// Failed to decode event bytes
+		BadEvent,
+	}
+
+	#[pallet::storage]
+	pub(super) type MigrationPending<T: Config> =
+		StorageMap<Hasher = Twox64Concat, Key = H160, Value = bool, QueryKind = ValueQuery>;
+
+	#[pallet::call]
+	impl<T: Config> Pallet<T> {
+		/// Start contract migration, inserts contract stub at target address,
+		/// and marks account as pending, allowing to insert storage
+		#[pallet::weight(<SelfWeightOf<T>>::begin())]
+		pub fn begin(origin: OriginFor<T>, address: H160) -> DispatchResult {
+			ensure_root(origin)?;
+			ensure!(
+				<PalletEvm<T>>::is_account_empty(&address) && !<MigrationPending<T>>::get(&address),
+				<Error<T>>::AccountNotEmpty,
+			);
+
+			<MigrationPending<T>>::insert(address, true);
+			Ok(())
+		}
+
+		/// Insert items into contract storage, this method can be called
+		/// multiple times
+		#[pallet::weight(<SelfWeightOf<T>>::set_data(data.len() as u32))]
+		pub fn set_data(
+			origin: OriginFor<T>,
+			address: H160,
+			data: Vec<(H256, H256)>,
+		) -> DispatchResult {
+			ensure_root(origin)?;
+			ensure!(
+				<MigrationPending<T>>::get(&address),
+				<Error<T>>::AccountIsNotMigrating,
+			);
+
+			for (k, v) in data {
+				<pallet_evm::AccountStorages<T>>::insert(&address, k, v);
+			}
+			Ok(())
+		}
+
+		/// Finish contract migration, allows it to be called.
+		/// It is not possible to alter contract storage via [`Self::set_data`]
+		/// after this call.
+		#[pallet::weight(<SelfWeightOf<T>>::finish(code.len() as u32))]
+		pub fn finish(origin: OriginFor<T>, address: H160, code: Vec<u8>) -> DispatchResult {
+			ensure_root(origin)?;
+			ensure!(
+				<MigrationPending<T>>::get(&address),
+				<Error<T>>::AccountIsNotMigrating,
+			);
+
+			<pallet_evm::AccountCodes<T>>::insert(&address, code);
+			<MigrationPending<T>>::remove(address);
+			Ok(())
+		}
+
+		/// Create ethereum events attached to the fake transaction
+		#[pallet::weight(<SelfWeightOf<T>>::insert_eth_logs(logs.len() as u32))]
+		pub fn insert_eth_logs(origin: OriginFor<T>, logs: Vec<ethereum::Log>) -> DispatchResult {
+			ensure_root(origin)?;
+			for log in logs {
+				<pallet_evm::Pallet<T>>::deposit_log(log);
+			}
+			// Transactions is created by FakeTransactionFinalizer
+			Ok(())
+		}
+
+		/// Create substrate events
+		#[pallet::weight(<SelfWeightOf<T>>::insert_events(events.len() as u32))]
+		pub fn insert_events(origin: OriginFor<T>, events: Vec<Vec<u8>>) -> DispatchResult {
+			ensure_root(origin)?;
+			for event in events {
+				<frame_system::Pallet<T>>::deposit_event(
+					<T as frame_system::Config>::RuntimeEvent::decode(&mut event.as_slice())
+						.map_err(|_| <Error<T>>::BadEvent)?,
+				);
+			}
+			Ok(())
+		}
+	}
+
+	/// Implements [`pallet_evm::OnMethodCall`], which reserves accounts with pending migration
+	pub struct OnMethodCall<T>(PhantomData<T>);
+	impl<T: Config> pallet_evm::OnMethodCall<T> for OnMethodCall<T> {
+		fn is_reserved(contract: &H160) -> bool {
+			<MigrationPending<T>>::get(&contract)
+		}
+
+		fn is_used(_contract: &H160) -> bool {
+			false
+		}
+
+		fn call(_handle: &mut impl PrecompileHandle) -> Option<pallet_evm::PrecompileResult> {
+			None
+		}
+
+		fn get_code(_contract: &H160) -> Option<Vec<u8>> {
+			None
+		}
+	}
+}
addedpallets/data-management/src/weights.rsdiffbeforeafterboth
--- /dev/null
+++ b/pallets/data-management/src/weights.rs
@@ -0,0 +1,123 @@
+// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs
+
+//! Autogenerated weights for pallet_data_management
+//!
+//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
+//! DATE: 2022-11-23, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
+
+// Executed Command:
+// target/release/unique-collator
+// benchmark
+// pallet
+// --pallet
+// pallet-data-management
+// --wasm-execution
+// compiled
+// --extrinsic
+// *
+// --template
+// .maintain/frame-weight-template.hbs
+// --steps=50
+// --repeat=80
+// --heap-pages=4096
+// --output=./pallets/data-management/src/weights.rs
+
+#![cfg_attr(rustfmt, rustfmt_skip)]
+#![allow(unused_parens)]
+#![allow(unused_imports)]
+#![allow(missing_docs)]
+#![allow(clippy::unnecessary_cast)]
+
+use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
+use sp_std::marker::PhantomData;
+
+/// Weight functions needed for pallet_data_management.
+pub trait WeightInfo {
+	fn begin() -> Weight;
+	fn set_data(b: u32, ) -> Weight;
+	fn finish(b: u32, ) -> Weight;
+	fn insert_eth_logs(b: u32, ) -> Weight;
+	fn insert_events(b: u32, ) -> Weight;
+}
+
+/// Weights for pallet_data_management using the Substrate node and recommended hardware.
+pub struct SubstrateWeight<T>(PhantomData<T>);
+impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
+	// Storage: DataManagement MigrationPending (r:1 w:1)
+	// Storage: System Account (r:1 w:0)
+	// Storage: EVM AccountCodes (r:1 w:0)
+	fn begin() -> Weight {
+		Weight::from_ref_time(16_080_000 as u64)
+			.saturating_add(T::DbWeight::get().reads(3 as u64))
+			.saturating_add(T::DbWeight::get().writes(1 as u64))
+	}
+	// Storage: DataManagement MigrationPending (r:1 w:0)
+	// Storage: EVM AccountStorages (r:0 w:1)
+	fn set_data(b: u32, ) -> Weight {
+		Weight::from_ref_time(7_945_000 as u64)
+			// Standard Error: 1_272
+			.saturating_add(Weight::from_ref_time(1_056_832 as u64).saturating_mul(b as u64))
+			.saturating_add(T::DbWeight::get().reads(1 as u64))
+			.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
+	}
+	// Storage: DataManagement MigrationPending (r:1 w:1)
+	// Storage: EVM AccountCodes (r:0 w:1)
+	fn finish(b: u32, ) -> Weight {
+		Weight::from_ref_time(8_336_000 as u64)
+			// Standard Error: 89
+			.saturating_add(Weight::from_ref_time(6_411 as u64).saturating_mul(b as u64))
+			.saturating_add(T::DbWeight::get().reads(1 as u64))
+			.saturating_add(T::DbWeight::get().writes(2 as u64))
+	}
+	fn insert_eth_logs(b: u32, ) -> Weight {
+		Weight::from_ref_time(3_447_000 as u64)
+			// Standard Error: 843
+			.saturating_add(Weight::from_ref_time(901_039 as u64).saturating_mul(b as u64))
+	}
+	fn insert_events(b: u32, ) -> Weight {
+		Weight::from_ref_time(3_457_000 as u64)
+			// Standard Error: 1_460
+			.saturating_add(Weight::from_ref_time(1_491_611 as u64).saturating_mul(b as u64))
+	}
+}
+
+// For backwards compatibility and tests
+impl WeightInfo for () {
+	// Storage: DataManagement MigrationPending (r:1 w:1)
+	// Storage: System Account (r:1 w:0)
+	// Storage: EVM AccountCodes (r:1 w:0)
+	fn begin() -> Weight {
+		Weight::from_ref_time(16_080_000 as u64)
+			.saturating_add(RocksDbWeight::get().reads(3 as u64))
+			.saturating_add(RocksDbWeight::get().writes(1 as u64))
+	}
+	// Storage: DataManagement MigrationPending (r:1 w:0)
+	// Storage: EVM AccountStorages (r:0 w:1)
+	fn set_data(b: u32, ) -> Weight {
+		Weight::from_ref_time(7_945_000 as u64)
+			// Standard Error: 1_272
+			.saturating_add(Weight::from_ref_time(1_056_832 as u64).saturating_mul(b as u64))
+			.saturating_add(RocksDbWeight::get().reads(1 as u64))
+			.saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
+	}
+	// Storage: DataManagement MigrationPending (r:1 w:1)
+	// Storage: EVM AccountCodes (r:0 w:1)
+	fn finish(b: u32, ) -> Weight {
+		Weight::from_ref_time(8_336_000 as u64)
+			// Standard Error: 89
+			.saturating_add(Weight::from_ref_time(6_411 as u64).saturating_mul(b as u64))
+			.saturating_add(RocksDbWeight::get().reads(1 as u64))
+			.saturating_add(RocksDbWeight::get().writes(2 as u64))
+	}
+	fn insert_eth_logs(b: u32, ) -> Weight {
+		Weight::from_ref_time(3_447_000 as u64)
+			// Standard Error: 843
+			.saturating_add(Weight::from_ref_time(901_039 as u64).saturating_mul(b as u64))
+	}
+	fn insert_events(b: u32, ) -> Weight {
+		Weight::from_ref_time(3_457_000 as u64)
+			// Standard Error: 1_460
+			.saturating_add(Weight::from_ref_time(1_491_611 as u64).saturating_mul(b as u64))
+	}
+}
modifiedpallets/evm-contract-helpers/src/eth.rsdiffbeforeafterboth
--- a/pallets/evm-contract-helpers/src/eth.rs
+++ b/pallets/evm-contract-helpers/src/eth.rs
@@ -91,7 +91,7 @@
 {
 	/// Get user, which deployed specified contract
 	/// @dev May return zero address in case if contract is deployed
-	///  using uniquenetwork evm-migration pallet, or using other terms not
+	///  using uniquenetwork data-management pallet, or using other terms not
 	///  intended by pallet-evm
 	/// @dev Returns zero address if contract does not exists
 	/// @param contractAddress Contract to get owner of
modifiedpallets/evm-contract-helpers/src/stubs/ContractHelpers.soldiffbeforeafterboth
--- a/pallets/evm-contract-helpers/src/stubs/ContractHelpers.sol
+++ b/pallets/evm-contract-helpers/src/stubs/ContractHelpers.sol
@@ -29,7 +29,7 @@
 contract ContractHelpers is Dummy, ERC165, ContractHelpersEvents {
 	/// Get user, which deployed specified contract
 	/// @dev May return zero address in case if contract is deployed
-	///  using uniquenetwork evm-migration pallet, or using other terms not
+	///  using uniquenetwork data-management pallet, or using other terms not
 	///  intended by pallet-evm
 	/// @dev Returns zero address if contract does not exists
 	/// @param contractAddress Contract to get owner of
deletedpallets/evm-migration/CHANGELOG.mddiffbeforeafterboth
--- a/pallets/evm-migration/CHANGELOG.md
+++ /dev/null
@@ -1,17 +0,0 @@
-<!-- bureaucrate goes here -->
-## [v0.1.1] 2022-08-16
-
-### Other changes
-
-- build: Upgrade polkadot to v0.9.27 2c498572636f2b34d53b1c51b7283a761a7dc90a
-
-- build: Upgrade polkadot to v0.9.26 85515e54c4ca1b82a2630034e55dcc804c643bf8
-
-- refactor: Remove `#[transactional]` from extrinsics 7fd36cea2f6e00c02c67ccc1de9649ae404efd31
-
-Every extrinsic now runs in transaction implicitly, and
-`#[transactional]` on pallet dispatchable is now meaningless
-
-Upstream-Change: https://github.com/paritytech/substrate/issues/10806
-
-- build: Upgrade polkadot to v0.9.25 cdfb9bdc7b205ff1b5134f034ef9973d769e5e6b
\ No newline at end of file
deletedpallets/evm-migration/Cargo.tomldiffbeforeafterboth
--- a/pallets/evm-migration/Cargo.toml
+++ /dev/null
@@ -1,42 +0,0 @@
-[package]
-name = "pallet-evm-migration"
-version = "0.1.1"
-license = "GPLv3"
-edition = "2021"
-
-[dependencies]
-scale-info = { version = "2.0.1", default-features = false, features = [
-    "derive",
-] }
-ethereum = { version = "0.14.0", default-features = false }
-frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
-frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
-frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
-sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
-sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
-sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
-sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }
-pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }
-fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.33" }
-
-[dependencies.codec]
-default-features = false
-features = ['derive']
-package = 'parity-scale-codec'
-version = '3.1.2'
-
-[features]
-default = ["std", "runtime-benchmarks"]
-std = [
-    "frame-support/std",
-    "frame-system/std",
-    "frame-benchmarking/std",
-    "sp-runtime/std",
-    "sp-std/std",
-    "sp-io/std",
-    "sp-core/std",
-    "pallet-evm/std",
-    "fp-evm/std",
-]
-runtime-benchmarks = ["frame-benchmarking"]
-try-runtime = ["frame-support/try-runtime"]
deletedpallets/evm-migration/README.mddiffbeforeafterboth
--- a/pallets/evm-migration/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# EVM contract migration pallet
-
-This pallet is only callable by root, it has functionality to migrate contract
-from other ethereum chain to pallet-evm
-
-Contract data includes contract code, and contract storage,
-where contract storage is a mapping from evm word to evm word (evm word = 32 byte)
-
-To import contract data into pallet-evm admin should call this pallet multiple times:
-1. Start migration via `begin`
-2. Insert all contract data using single or
-   multiple (If data can't be fit into single extrinsic) calls
-   to `set_data`
-3. Finish migration using `finish`, providing contract code
-
-During migration no one can insert code at address of this contract,
-as [`pallet::OnMethodCall`] prevents this, and no one can call this contract,
-as code is only supplied at final stage of contract deployment
\ No newline at end of file
deletedpallets/evm-migration/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/evm-migration/src/benchmarking.rs
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
-// This file is part of Unique Network.
-
-// Unique Network 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.
-
-// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
-
-#![allow(missing_docs)]
-
-use super::{Call, Config, Pallet};
-use frame_benchmarking::benchmarks;
-use frame_system::RawOrigin;
-use sp_core::{H160, H256};
-use sp_std::{vec::Vec, vec};
-
-benchmarks! {
-	where_clause { where <T as Config>::RuntimeEvent: codec::Encode }
-
-	begin {
-	}: _(RawOrigin::Root, H160::default())
-
-	set_data {
-		let b in 0..80;
-		let address = H160::from_low_u64_be(b as u64);
-		let mut data = Vec::new();
-		for i in 0..b {
-			data.push((
-				H256::from_low_u64_be(i as u64),
-				H256::from_low_u64_be(i as u64),
-			));
-		}
-		<Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
-	}: _(RawOrigin::Root, address, data)
-
-	finish {
-		let b in 0..80;
-		let address = H160::from_low_u64_be(b as u64);
-		let data: Vec<u8> = (0..b as u8).collect();
-		<Pallet<T>>::begin(RawOrigin::Root.into(), address)?;
-	}: _(RawOrigin::Root, address, data)
-
-	insert_eth_logs {
-		let b in 0..200;
-		let logs = (0..b).map(|_| ethereum::Log {
-			address: H160([b as u8; 20]),
-			data: vec![b as u8; 128],
-			topics: vec![H256([b as u8; 32]); 6],
-		}).collect::<Vec<_>>();
-	}: _(RawOrigin::Root, logs)
-
-	insert_events {
-		let b in 0..200;
-		use codec::Encode;
-		let logs = (0..b).map(|_| <T as Config>::RuntimeEvent::from(crate::Event::<T>::TestEvent).encode()).collect::<Vec<_>>();
-	}: _(RawOrigin::Root, logs)
-}
deletedpallets/evm-migration/src/lib.rsdiffbeforeafterboth
--- a/pallets/evm-migration/src/lib.rs
+++ /dev/null
@@ -1,168 +0,0 @@
-// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
-// This file is part of Unique Network.
-
-// Unique Network 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.
-
-// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
-
-#![doc = include_str!("../README.md")]
-#![cfg_attr(not(feature = "std"), no_std)]
-#![deny(missing_docs)]
-
-pub use pallet::*;
-#[cfg(feature = "runtime-benchmarks")]
-pub mod benchmarking;
-pub mod weights;
-
-#[frame_support::pallet]
-pub mod pallet {
-	use frame_support::{
-		pallet_prelude::{*, DispatchResult},
-		traits::IsType,
-	};
-	use frame_system::pallet_prelude::{*, OriginFor};
-	use sp_core::{H160, H256};
-	use sp_std::vec::Vec;
-	use super::weights::WeightInfo;
-	use pallet_evm::{PrecompileHandle, Pallet as PalletEvm};
-
-	#[pallet::config]
-	pub trait Config: frame_system::Config + pallet_evm::Config {
-		/// Weights
-		type WeightInfo: WeightInfo;
-		/// The overarching event type.
-		type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
-	}
-
-	type SelfWeightOf<T> = <T as Config>::WeightInfo;
-
-	#[pallet::pallet]
-	#[pallet::generate_store(pub(super) trait Store)]
-	pub struct Pallet<T>(_);
-
-	#[pallet::event]
-	pub enum Event<T: Config> {
-		/// This event is used in benchmarking and can be used for tests
-		TestEvent,
-	}
-
-	#[pallet::error]
-	pub enum Error<T> {
-		/// Can only migrate to empty address.
-		AccountNotEmpty,
-		/// Migration of this account is not yet started, or already finished.
-		AccountIsNotMigrating,
-		/// Failed to decode event bytes
-		BadEvent,
-	}
-
-	#[pallet::storage]
-	pub(super) type MigrationPending<T: Config> =
-		StorageMap<Hasher = Twox64Concat, Key = H160, Value = bool, QueryKind = ValueQuery>;
-
-	#[pallet::call]
-	impl<T: Config> Pallet<T> {
-		/// Start contract migration, inserts contract stub at target address,
-		/// and marks account as pending, allowing to insert storage
-		#[pallet::weight(<SelfWeightOf<T>>::begin())]
-		pub fn begin(origin: OriginFor<T>, address: H160) -> DispatchResult {
-			ensure_root(origin)?;
-			ensure!(
-				<PalletEvm<T>>::is_account_empty(&address) && !<MigrationPending<T>>::get(&address),
-				<Error<T>>::AccountNotEmpty,
-			);
-
-			<MigrationPending<T>>::insert(address, true);
-			Ok(())
-		}
-
-		/// Insert items into contract storage, this method can be called
-		/// multiple times
-		#[pallet::weight(<SelfWeightOf<T>>::set_data(data.len() as u32))]
-		pub fn set_data(
-			origin: OriginFor<T>,
-			address: H160,
-			data: Vec<(H256, H256)>,
-		) -> DispatchResult {
-			ensure_root(origin)?;
-			ensure!(
-				<MigrationPending<T>>::get(&address),
-				<Error<T>>::AccountIsNotMigrating,
-			);
-
-			for (k, v) in data {
-				<pallet_evm::AccountStorages<T>>::insert(&address, k, v);
-			}
-			Ok(())
-		}
-
-		/// Finish contract migration, allows it to be called.
-		/// It is not possible to alter contract storage via [`Self::set_data`]
-		/// after this call.
-		#[pallet::weight(<SelfWeightOf<T>>::finish(code.len() as u32))]
-		pub fn finish(origin: OriginFor<T>, address: H160, code: Vec<u8>) -> DispatchResult {
-			ensure_root(origin)?;
-			ensure!(
-				<MigrationPending<T>>::get(&address),
-				<Error<T>>::AccountIsNotMigrating,
-			);
-
-			<pallet_evm::AccountCodes<T>>::insert(&address, code);
-			<MigrationPending<T>>::remove(address);
-			Ok(())
-		}
-
-		/// Create ethereum events attached to the fake transaction
-		#[pallet::weight(<SelfWeightOf<T>>::insert_eth_logs(logs.len() as u32))]
-		pub fn insert_eth_logs(origin: OriginFor<T>, logs: Vec<ethereum::Log>) -> DispatchResult {
-			ensure_root(origin)?;
-			for log in logs {
-				<pallet_evm::Pallet<T>>::deposit_log(log);
-			}
-			// Transactions is created by FakeTransactionFinalizer
-			Ok(())
-		}
-
-		/// Create substrate events
-		#[pallet::weight(<SelfWeightOf<T>>::insert_events(events.len() as u32))]
-		pub fn insert_events(origin: OriginFor<T>, events: Vec<Vec<u8>>) -> DispatchResult {
-			ensure_root(origin)?;
-			for event in events {
-				<frame_system::Pallet<T>>::deposit_event(
-					<T as frame_system::Config>::RuntimeEvent::decode(&mut event.as_slice())
-						.map_err(|_| <Error<T>>::BadEvent)?,
-				);
-			}
-			Ok(())
-		}
-	}
-
-	/// Implements [`pallet_evm::OnMethodCall`], which reserves accounts with pending migration
-	pub struct OnMethodCall<T>(PhantomData<T>);
-	impl<T: Config> pallet_evm::OnMethodCall<T> for OnMethodCall<T> {
-		fn is_reserved(contract: &H160) -> bool {
-			<MigrationPending<T>>::get(&contract)
-		}
-
-		fn is_used(_contract: &H160) -> bool {
-			false
-		}
-
-		fn call(_handle: &mut impl PrecompileHandle) -> Option<pallet_evm::PrecompileResult> {
-			None
-		}
-
-		fn get_code(_contract: &H160) -> Option<Vec<u8>> {
-			None
-		}
-	}
-}
deletedpallets/evm-migration/src/weights.rsdiffbeforeafterboth
--- a/pallets/evm-migration/src/weights.rs
+++ /dev/null
@@ -1,123 +0,0 @@
-// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs
-
-//! Autogenerated weights for pallet_evm_migration
-//!
-//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-11-23, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
-//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
-
-// Executed Command:
-// target/release/unique-collator
-// benchmark
-// pallet
-// --pallet
-// pallet-evm-migration
-// --wasm-execution
-// compiled
-// --extrinsic
-// *
-// --template
-// .maintain/frame-weight-template.hbs
-// --steps=50
-// --repeat=80
-// --heap-pages=4096
-// --output=./pallets/evm-migration/src/weights.rs
-
-#![cfg_attr(rustfmt, rustfmt_skip)]
-#![allow(unused_parens)]
-#![allow(unused_imports)]
-#![allow(missing_docs)]
-#![allow(clippy::unnecessary_cast)]
-
-use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
-use sp_std::marker::PhantomData;
-
-/// Weight functions needed for pallet_evm_migration.
-pub trait WeightInfo {
-	fn begin() -> Weight;
-	fn set_data(b: u32, ) -> Weight;
-	fn finish(b: u32, ) -> Weight;
-	fn insert_eth_logs(b: u32, ) -> Weight;
-	fn insert_events(b: u32, ) -> Weight;
-}
-
-/// Weights for pallet_evm_migration using the Substrate node and recommended hardware.
-pub struct SubstrateWeight<T>(PhantomData<T>);
-impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
-	// Storage: EvmMigration MigrationPending (r:1 w:1)
-	// Storage: System Account (r:1 w:0)
-	// Storage: EVM AccountCodes (r:1 w:0)
-	fn begin() -> Weight {
-		Weight::from_ref_time(16_080_000 as u64)
-			.saturating_add(T::DbWeight::get().reads(3 as u64))
-			.saturating_add(T::DbWeight::get().writes(1 as u64))
-	}
-	// Storage: EvmMigration MigrationPending (r:1 w:0)
-	// Storage: EVM AccountStorages (r:0 w:1)
-	fn set_data(b: u32, ) -> Weight {
-		Weight::from_ref_time(7_945_000 as u64)
-			// Standard Error: 1_272
-			.saturating_add(Weight::from_ref_time(1_056_832 as u64).saturating_mul(b as u64))
-			.saturating_add(T::DbWeight::get().reads(1 as u64))
-			.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
-	}
-	// Storage: EvmMigration MigrationPending (r:1 w:1)
-	// Storage: EVM AccountCodes (r:0 w:1)
-	fn finish(b: u32, ) -> Weight {
-		Weight::from_ref_time(8_336_000 as u64)
-			// Standard Error: 89
-			.saturating_add(Weight::from_ref_time(6_411 as u64).saturating_mul(b as u64))
-			.saturating_add(T::DbWeight::get().reads(1 as u64))
-			.saturating_add(T::DbWeight::get().writes(2 as u64))
-	}
-	fn insert_eth_logs(b: u32, ) -> Weight {
-		Weight::from_ref_time(3_447_000 as u64)
-			// Standard Error: 843
-			.saturating_add(Weight::from_ref_time(901_039 as u64).saturating_mul(b as u64))
-	}
-	fn insert_events(b: u32, ) -> Weight {
-		Weight::from_ref_time(3_457_000 as u64)
-			// Standard Error: 1_460
-			.saturating_add(Weight::from_ref_time(1_491_611 as u64).saturating_mul(b as u64))
-	}
-}
-
-// For backwards compatibility and tests
-impl WeightInfo for () {
-	// Storage: EvmMigration MigrationPending (r:1 w:1)
-	// Storage: System Account (r:1 w:0)
-	// Storage: EVM AccountCodes (r:1 w:0)
-	fn begin() -> Weight {
-		Weight::from_ref_time(16_080_000 as u64)
-			.saturating_add(RocksDbWeight::get().reads(3 as u64))
-			.saturating_add(RocksDbWeight::get().writes(1 as u64))
-	}
-	// Storage: EvmMigration MigrationPending (r:1 w:0)
-	// Storage: EVM AccountStorages (r:0 w:1)
-	fn set_data(b: u32, ) -> Weight {
-		Weight::from_ref_time(7_945_000 as u64)
-			// Standard Error: 1_272
-			.saturating_add(Weight::from_ref_time(1_056_832 as u64).saturating_mul(b as u64))
-			.saturating_add(RocksDbWeight::get().reads(1 as u64))
-			.saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
-	}
-	// Storage: EvmMigration MigrationPending (r:1 w:1)
-	// Storage: EVM AccountCodes (r:0 w:1)
-	fn finish(b: u32, ) -> Weight {
-		Weight::from_ref_time(8_336_000 as u64)
-			// Standard Error: 89
-			.saturating_add(Weight::from_ref_time(6_411 as u64).saturating_mul(b as u64))
-			.saturating_add(RocksDbWeight::get().reads(1 as u64))
-			.saturating_add(RocksDbWeight::get().writes(2 as u64))
-	}
-	fn insert_eth_logs(b: u32, ) -> Weight {
-		Weight::from_ref_time(3_447_000 as u64)
-			// Standard Error: 843
-			.saturating_add(Weight::from_ref_time(901_039 as u64).saturating_mul(b as u64))
-	}
-	fn insert_events(b: u32, ) -> Weight {
-		Weight::from_ref_time(3_457_000 as u64)
-			// Standard Error: 1_460
-			.saturating_add(Weight::from_ref_time(1_491_611 as u64).saturating_mul(b as u64))
-	}
-}
modifiedruntime/common/config/ethereum.rsdiffbeforeafterboth
--- a/runtime/common/config/ethereum.rs
+++ b/runtime/common/config/ethereum.rs
@@ -70,7 +70,7 @@
 	type Currency = Balances;
 	type RuntimeEvent = RuntimeEvent;
 	type OnMethodCall = (
-		pallet_evm_migration::OnMethodCall<Self>,
+		pallet_data_management::OnMethodCall<Self>,
 		pallet_evm_contract_helpers::HelpersOnMethodCall<Self>,
 		CollectionDispatchT<Self>,
 		pallet_unique::eth::CollectionHelpersOnMethodCall<Self>,
@@ -83,9 +83,9 @@
 	type FindAuthor = EthereumFindAuthor<Aura>;
 }
 
-impl pallet_evm_migration::Config for Runtime {
+impl pallet_data_management::Config for Runtime {
 	type RuntimeEvent = RuntimeEvent;
-	type WeightInfo = pallet_evm_migration::weights::SubstrateWeight<Self>;
+	type WeightInfo = pallet_data_management::weights::SubstrateWeight<Self>;
 }
 
 impl pallet_ethereum::Config for Runtime {
modifiedruntime/common/config/pallets/collator_selection.rsdiffbeforeafterboth
--- a/runtime/common/config/pallets/collator_selection.rs
+++ b/runtime/common/config/pallets/collator_selection.rs
@@ -54,6 +54,30 @@
 }
 
 parameter_types! {
+	pub const BasicDeposit: Balance = 10 * UNIQUE; // todo:collator
+	pub const FieldDeposit: Balance = 25 * MILLIUNIQUE;
+	pub const SubAccountDeposit: Balance = 2 * UNIQUE; // end todo
+	pub const MaxSubAccounts: u32 = 100;
+	pub const MaxAdditionalFields: u32 = 100;
+	pub const MaxRegistrars: u32 = 20;
+}
+
+impl pallet_identity::Config for Runtime {
+	type RuntimeEvent = RuntimeEvent;
+	type Currency = Balances;
+	type BasicDeposit = BasicDeposit;
+	type FieldDeposit = FieldDeposit;
+	type MaxAdditionalFields = MaxAdditionalFields;
+	type MaxRegistrars = MaxRegistrars;
+	type MaxSubAccounts = MaxSubAccounts;
+	type SubAccountDeposit = SubAccountDeposit;
+	type RegistrarOrigin = EnsureRoot<<Self as frame_system::Config>::AccountId>;
+	type ForceOrigin = EnsureRoot<<Self as frame_system::Config>::AccountId>;
+	type Slashed = Treasury;
+	type WeightInfo = pallet_identity::weights::SubstrateWeight<Runtime>;
+}
+
+parameter_types! {
 	pub const PotId: PalletId = PalletId(*b"PotStake");
 	pub const SlashRatio: Perbill = Perbill::from_percent(100);
 }
modifiedruntime/common/construct_runtime/mod.rsdiffbeforeafterboth
--- a/runtime/common/construct_runtime/mod.rs
+++ b/runtime/common/construct_runtime/mod.rs
@@ -44,6 +44,9 @@
                 Aura: pallet_aura::{Pallet, Config<T>} = 25,
                 AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 26,
 
+                #[runtimes(opal)]
+                Identity: pallet_identity::{Pallet, Call, Storage, Event<T>} = 27,
+
                 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,
                 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,
                 Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 32,
@@ -101,7 +104,7 @@
                 EvmCoderSubstrate: pallet_evm_coder_substrate::{Pallet, Storage} = 150,
                 EvmContractHelpers: pallet_evm_contract_helpers::{Pallet, Storage, Event<T>} = 151,
                 EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,
-                EvmMigration: pallet_evm_migration::{Pallet, Call, Storage, Event<T>} = 153,
+                DataManagement: pallet_data_management::{Pallet, Call, Storage, Event<T>} = 153,
 
                 Maintenance: pallet_maintenance::{Pallet, Call, Storage, Event<T>} = 154,
 
addedruntime/common/data_management.rsdiffbeforeafterboth
--- /dev/null
+++ b/runtime/common/data_management.rs
@@ -0,0 +1,67 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network 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.
+
+// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+use scale_info::TypeInfo;
+use codec::{Encode, Decode};
+use up_common::types::AccountId;
+use crate::RuntimeCall;
+
+use sp_runtime::{
+	traits::{DispatchInfoOf, SignedExtension},
+	transaction_validity::{
+		TransactionValidity, ValidTransaction, InvalidTransaction, TransactionValidityError,
+	},
+};
+
+#[derive(Debug, Encode, Decode, PartialEq, Eq, Clone, TypeInfo)]
+pub struct FilterIdentity;
+
+impl SignedExtension for FilterIdentity {
+	type AccountId = AccountId;
+	type Call = RuntimeCall;
+	type AdditionalSigned = ();
+	type Pre = ();
+
+	const IDENTIFIER: &'static str = "FilterIdentity";
+
+	fn additional_signed(&self) -> Result<Self::AdditionalSigned, TransactionValidityError> {
+		Ok(())
+	}
+
+	fn pre_dispatch(
+		self,
+		who: &Self::AccountId,
+		call: &Self::Call,
+		info: &DispatchInfoOf<Self::Call>,
+		len: usize,
+	) -> Result<Self::Pre, TransactionValidityError> {
+		self.validate(who, call, info, len).map(|_| ())
+	}
+
+	fn validate(
+		&self,
+		_who: &Self::AccountId,
+		call: &Self::Call,
+		_info: &DispatchInfoOf<Self::Call>,
+		_len: usize,
+	) -> TransactionValidity {
+        match call {
+            #[cfg(feature = "collator-selection")]
+            RuntimeCall::Identity(_) => Err(TransactionValidityError::Invalid(InvalidTransaction::Call)),
+            _ => Ok(ValidTransaction::default()),
+        }
+	}
+}
modifiedruntime/common/maintenance.rsdiffbeforeafterboth
--- a/runtime/common/maintenance.rs
+++ b/runtime/common/maintenance.rs
@@ -60,7 +60,7 @@
 	) -> TransactionValidity {
 		if Maintenance::is_enabled() {
 			match call {
-				RuntimeCall::EvmMigration(_)
+				RuntimeCall::DataManagement(_)
 				| RuntimeCall::EVM(_)
 				| RuntimeCall::Ethereum(_)
 				| RuntimeCall::Inflation(_)
modifiedruntime/common/mod.rsdiffbeforeafterboth
--- a/runtime/common/mod.rs
+++ b/runtime/common/mod.rs
@@ -20,6 +20,7 @@
 pub mod ethereum;
 pub mod instance;
 pub mod maintenance;
+pub mod data_management;
 pub mod runtime_apis;
 pub mod xcm;
 
@@ -96,6 +97,7 @@
 	frame_system::CheckNonce<Runtime>,
 	frame_system::CheckWeight<Runtime>,
 	maintenance::CheckMaintenance,
+	data_management::FilterIdentity,
 	ChargeTransactionPayment,
 	//pallet_contract_helpers::ContractHelpersExtension<Runtime>,
 	pallet_ethereum::FakeTransactionFinalizer<Runtime>,
modifiedruntime/common/runtime_apis.rsdiffbeforeafterboth
--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -679,7 +679,7 @@
 
                     let mut list = Vec::<BenchmarkList>::new();
 
-                    list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);
+                    list_benchmark!(list, extra, pallet_data_management, DataManagement);
                     list_benchmark!(list, extra, pallet_common, Common);
                     list_benchmark!(list, extra, pallet_unique, Unique);
                     list_benchmark!(list, extra, pallet_structure, Structure);
@@ -746,7 +746,7 @@
                     let mut batches = Vec::<BenchmarkBatch>::new();
                     let params = (&config, &allowlist);
 
-                    add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);
+                    add_benchmark!(params, batches, pallet_data_management, DataManagement);
                     add_benchmark!(params, batches, pallet_common, Common);
                     add_benchmark!(params, batches, pallet_unique, Unique);
                     add_benchmark!(params, batches, pallet_structure, Structure);
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -26,7 +26,7 @@
     'frame-system-benchmarking',
     'frame-system/runtime-benchmarks',
     'pallet-ethereum/runtime-benchmarks',
-    'pallet-evm-migration/runtime-benchmarks',
+    'pallet-data-management/runtime-benchmarks',
     'pallet-evm-coder-substrate/runtime-benchmarks',
     'pallet-balances/runtime-benchmarks',
     'pallet-timestamp/runtime-benchmarks',
@@ -73,6 +73,7 @@
 	"pallet-authorship/try-runtime",
 	"pallet-collator-selection/try-runtime",
 	"pallet-session/try-runtime",
+	"pallet-identity/try-runtime",
     'pallet-inflation/try-runtime',
     'pallet-unique/try-runtime',
     'pallet-configuration/try-runtime',
@@ -91,7 +92,7 @@
     'pallet-evm-coder-substrate/try-runtime',
     'pallet-evm-contract-helpers/try-runtime',
     'pallet-evm-transaction-payment/try-runtime',
-    'pallet-evm-migration/try-runtime',
+    'pallet-data-management/try-runtime',
     'pallet-base-fee/try-runtime',
     'pallet-unique-scheduler-v2/try-runtime',
     'pallet-maintenance/try-runtime',
@@ -119,6 +120,7 @@
 	"pallet-authorship/std",
 	'pallet-collator-selection/std',
 	"pallet-session/std",
+	'pallet-identity/std',
     'pallet-randomness-collective-flip/std',
     'pallet-sudo/std',
     'pallet-timestamp/std',
@@ -126,7 +128,7 @@
     'pallet-transaction-payment-rpc-runtime-api/std',
     'pallet-treasury/std',
     'pallet-evm/std',
-    'pallet-evm-migration/std',
+    'pallet-data-management/std',
     'pallet-evm-contract-helpers/std',
     'pallet-evm-transaction-payment/std',
     'pallet-evm-coder-substrate/std',
@@ -272,6 +274,11 @@
 git = 'https://github.com/paritytech/substrate'
 branch = 'polkadot-v0.9.33'
 
+[dependencies.pallet-identity]
+default-features = false
+git = 'https://github.com/paritytech/substrate'
+branch = 'polkadot-v0.9.33'
+
 [dependencies.pallet-balances]
 default-features = false
 git = "https://github.com/paritytech/substrate"
@@ -505,7 +512,7 @@
 pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }
 pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.33", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
 pallet-unique-scheduler-v2 = { path = '../../pallets/scheduler-v2', default-features = false }
-pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }
+pallet-data-management = { path = '../../pallets/data-management', default-features = false }
 pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }
 pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -26,7 +26,7 @@
     'frame-system-benchmarking',
     'frame-system/runtime-benchmarks',
     'pallet-ethereum/runtime-benchmarks',
-    'pallet-evm-migration/runtime-benchmarks',
+    'pallet-data-management/runtime-benchmarks',
     'pallet-evm-coder-substrate/runtime-benchmarks',
     'pallet-balances/runtime-benchmarks',
     'pallet-timestamp/runtime-benchmarks',
@@ -71,6 +71,7 @@
 	"pallet-authorship/try-runtime",
 	"pallet-collator-selection/try-runtime",
 	"pallet-session/try-runtime",
+	"pallet-identity/try-runtime",
     'pallet-inflation/try-runtime',
     'pallet-unique/try-runtime',
     'pallet-configuration/try-runtime',
@@ -89,7 +90,7 @@
     'pallet-evm-coder-substrate/try-runtime',
     'pallet-evm-contract-helpers/try-runtime',
     'pallet-evm-transaction-payment/try-runtime',
-    'pallet-evm-migration/try-runtime',
+    'pallet-data-management/try-runtime',
     'pallet-maintenance/try-runtime',
 ]
 std = [
@@ -114,6 +115,7 @@
 	"pallet-authorship/std",
 	'pallet-collator-selection/std',
 	"pallet-session/std",
+	"pallet-identity/std",
     'pallet-randomness-collective-flip/std',
     'pallet-sudo/std',
     'pallet-timestamp/std',
@@ -121,7 +123,7 @@
     'pallet-transaction-payment-rpc-runtime-api/std',
     'pallet-treasury/std',
     'pallet-evm/std',
-    'pallet-evm-migration/std',
+    'pallet-data-management/std',
     'pallet-evm-contract-helpers/std',
     'pallet-evm-transaction-payment/std',
     'pallet-evm-coder-substrate/std',
@@ -256,6 +258,11 @@
 git = 'https://github.com/paritytech/substrate'
 branch = 'polkadot-v0.9.33'
 
+[dependencies.pallet-identity]
+default-features = false
+git = 'https://github.com/paritytech/substrate'
+branch = 'polkadot-v0.9.33'
+
 [dependencies.pallet-balances]
 default-features = false
 git = "https://github.com/paritytech/substrate"
@@ -496,7 +503,7 @@
 pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }
 # pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
 pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.33", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
-pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }
+pallet-data-management = { path = '../../pallets/data-management', default-features = false }
 pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }
 pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -26,7 +26,7 @@
     'frame-system-benchmarking',
     'frame-system/runtime-benchmarks',
     'pallet-ethereum/runtime-benchmarks',
-    'pallet-evm-migration/runtime-benchmarks',
+    'pallet-data-management/runtime-benchmarks',
     'pallet-evm-coder-substrate/runtime-benchmarks',
     'pallet-balances/runtime-benchmarks',
     'pallet-timestamp/runtime-benchmarks',
@@ -72,6 +72,7 @@
 	"pallet-authorship/try-runtime",
 	"pallet-collator-selection/try-runtime",
 	"pallet-session/try-runtime",
+	"pallet-identity/try-runtime",
     'pallet-inflation/try-runtime',
     'pallet-unique/try-runtime',
     'pallet-configuration/try-runtime',
@@ -90,7 +91,7 @@
     'pallet-evm-coder-substrate/try-runtime',
     'pallet-evm-contract-helpers/try-runtime',
     'pallet-evm-transaction-payment/try-runtime',
-    'pallet-evm-migration/try-runtime',
+    'pallet-data-management/try-runtime',
     'pallet-maintenance/try-runtime',
 ]
 std = [
@@ -115,6 +116,7 @@
 	"pallet-authorship/std",
 	'pallet-collator-selection/std',
 	"pallet-session/std",
+	"pallet-identity/std",
     'pallet-randomness-collective-flip/std',
     'pallet-sudo/std',
     'pallet-timestamp/std',
@@ -122,7 +124,7 @@
     'pallet-transaction-payment-rpc-runtime-api/std',
     'pallet-treasury/std',
     'pallet-evm/std',
-    'pallet-evm-migration/std',
+    'pallet-data-management/std',
     'pallet-evm-contract-helpers/std',
     'pallet-evm-transaction-payment/std',
     'pallet-evm-coder-substrate/std',
@@ -257,6 +259,11 @@
 git = 'https://github.com/paritytech/substrate'
 branch = 'polkadot-v0.9.33'
 
+[dependencies.pallet-identity]
+default-features = false
+git = 'https://github.com/paritytech/substrate'
+branch = 'polkadot-v0.9.33'
+
 [dependencies.pallet-balances]
 default-features = false
 git = "https://github.com/paritytech/substrate"
@@ -488,7 +495,7 @@
 pallet-proxy-rmrk-equip = { default-features = false, path = "../../pallets/proxy-rmrk-equip", package = "pallet-rmrk-equip" }
 # pallet-contract-helpers = { path = '../pallets/contract-helpers', default-features = false, version = '0.1.0' }
 pallet-charge-transaction = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.33", package = "pallet-template-transaction-payment", default-features = false, version = "3.0.0" }
-pallet-evm-migration = { path = '../../pallets/evm-migration', default-features = false }
+pallet-data-management = { path = '../../pallets/data-management', default-features = false }
 pallet-evm-contract-helpers = { path = '../../pallets/evm-contract-helpers', default-features = false }
 pallet-evm-transaction-payment = { path = '../../pallets/evm-transaction-payment', default-features = false }
 pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }
modifiedtests/src/.outdated/substrate/substrate-api.tsdiffbeforeafterboth
--- a/tests/src/.outdated/substrate/substrate-api.ts
+++ b/tests/src/.outdated/substrate/substrate-api.ts
@@ -41,6 +41,10 @@
         extrinsic: {},
         payload: {},
       },
+      FilterIdentity: {
+        extrinsic: {},
+        payload: {},
+      },
       FakeTransactionFinalizer: {
         extrinsic: {},
         payload: {},
modifiedtests/src/eth/api/ContractHelpers.soldiffbeforeafterboth
--- a/tests/src/eth/api/ContractHelpers.sol
+++ b/tests/src/eth/api/ContractHelpers.sol
@@ -24,7 +24,7 @@
 interface ContractHelpers is Dummy, ERC165, ContractHelpersEvents {
 	/// Get user, which deployed specified contract
 	/// @dev May return zero address in case if contract is deployed
-	///  using uniquenetwork evm-migration pallet, or using other terms not
+	///  using uniquenetwork data-management pallet, or using other terms not
 	///  intended by pallet-evm
 	/// @dev Returns zero address if contract does not exists
 	/// @param contractAddress Contract to get owner of
modifiedtests/src/eth/migration.seqtest.tsdiffbeforeafterboth
--- a/tests/src/eth/migration.seqtest.ts
+++ b/tests/src/eth/migration.seqtest.ts
@@ -83,9 +83,9 @@
 
     const caller = await helper.eth.createAccountWithBalance(superuser);
 
-    const txBegin = helper.constructApiCall('api.tx.evmMigration.begin', [ADDRESS]);
-    const txSetData = helper.constructApiCall('api.tx.evmMigration.setData', [ADDRESS, DATA]);
-    const txFinish = helper.constructApiCall('api.tx.evmMigration.finish', [ADDRESS, CODE]);
+    const txBegin = helper.constructApiCall('api.tx.dataManagement.begin', [ADDRESS]);
+    const txSetData = helper.constructApiCall('api.tx.dataManagement.setData', [ADDRESS, DATA]);
+    const txFinish = helper.constructApiCall('api.tx.dataManagement.finish', [ADDRESS, CODE]);
     await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txBegin])).to.be.fulfilled;
     await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txSetData])).to.be.fulfilled;
     await expect(helper.executeExtrinsic(superuser, 'api.tx.sudo.sudo', [txFinish])).to.be.fulfilled;
@@ -126,7 +126,7 @@
     }
   });
   itEth('Fake collection creation on substrate side', async ({helper}) => {
-    const txInsertEvents = helper.constructApiCall('api.tx.evmMigration.insertEvents', [[
+    const txInsertEvents = helper.constructApiCall('api.tx.dataManagement.insertEvents', [[
       encodeEvent(helper.getApi(), 'Common', 'common', 'CollectionCreated', [
         // Collection Id
         9999,
@@ -143,7 +143,7 @@
     expect(eventStrings).to.contain('common.CollectionCreated');
   });
   itEth('Fake token creation on substrate side', async ({helper}) => {
-    const txInsertEvents = helper.constructApiCall('api.tx.evmMigration.insertEvents', [[
+    const txInsertEvents = helper.constructApiCall('api.tx.dataManagement.insertEvents', [[
       encodeEvent(helper.getApi(), 'Common', 'common', 'ItemCreated', [
         // Collection Id
         9999,
@@ -173,7 +173,7 @@
     });
 
     {
-      const txInsertEthLogs = helper.constructApiCall('api.tx.evmMigration.insertEthLogs', [[
+      const txInsertEthLogs = helper.constructApiCall('api.tx.dataManagement.insertEthLogs', [[
         {
         // Contract, which has emitted this log
           address: collectionAddress,
modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -93,6 +93,9 @@
     configuration: {
       appPromotionDailyRate: Perbill & AugmentedConst<ApiType>;
       dayRelayBlocks: u32 & AugmentedConst<ApiType>;
+      defaultCollatorSelectionKickThreshold: u32 & AugmentedConst<ApiType>;
+      defaultCollatorSelectionLicenseBond: u128 & AugmentedConst<ApiType>;
+      defaultCollatorSelectionMaxCollators: u32 & AugmentedConst<ApiType>;
       defaultMinGasPrice: u64 & AugmentedConst<ApiType>;
       defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;
       maxXcmAllowedLocations: u32 & AugmentedConst<ApiType>;
@@ -111,6 +114,40 @@
        **/
       [key: string]: Codec;
     };
+    identity: {
+      /**
+       * The amount held on deposit for a registered identity
+       **/
+      basicDeposit: u128 & AugmentedConst<ApiType>;
+      /**
+       * The amount held on deposit per additional field for a registered identity.
+       **/
+      fieldDeposit: u128 & AugmentedConst<ApiType>;
+      /**
+       * Maximum number of additional fields that may be stored in an ID. Needed to bound the I/O
+       * required to access an identity, but can be pretty high.
+       **/
+      maxAdditionalFields: u32 & AugmentedConst<ApiType>;
+      /**
+       * Maxmimum number of registrars allowed in the system. Needed to bound the complexity
+       * of, e.g., updating judgements.
+       **/
+      maxRegistrars: u32 & AugmentedConst<ApiType>;
+      /**
+       * The maximum number of sub-accounts allowed per identified account.
+       **/
+      maxSubAccounts: u32 & AugmentedConst<ApiType>;
+      /**
+       * The amount held on deposit for a registered subaccount. This should account for the fact
+       * that one storage item's value will increase by the size of an account ID, and there will
+       * be another trie item whose value is the size of an account ID plus 32 bytes.
+       **/
+      subAccountDeposit: u128 & AugmentedConst<ApiType>;
+      /**
+       * Generic const
+       **/
+      [key: string]: Codec;
+    };
     inflation: {
       /**
        * Number of blocks that pass between treasury balance updates due to inflation
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -334,6 +334,24 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    dataManagement: {
+      /**
+       * Migration of this account is not yet started, or already finished.
+       **/
+      AccountIsNotMigrating: AugmentedError<ApiType>;
+      /**
+       * Can only migrate to empty address.
+       **/
+      AccountNotEmpty: AugmentedError<ApiType>;
+      /**
+       * Failed to decode event bytes
+       **/
+      BadEvent: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     dmpQueue: {
       /**
        * The amount of weight given is possibly not enough for executing the message.
@@ -434,24 +452,6 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
-    evmMigration: {
-      /**
-       * Migration of this account is not yet started, or already finished.
-       **/
-      AccountIsNotMigrating: AugmentedError<ApiType>;
-      /**
-       * Can only migrate to empty address.
-       **/
-      AccountNotEmpty: AugmentedError<ApiType>;
-      /**
-       * Failed to decode event bytes
-       **/
-      BadEvent: AugmentedError<ApiType>;
-      /**
-       * Generic error
-       **/
-      [key: string]: AugmentedError<ApiType>;
-    };
     foreignAssets: {
       /**
        * AssetId exists
@@ -509,6 +509,84 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    identity: {
+      /**
+       * Account ID is already named.
+       **/
+      AlreadyClaimed: AugmentedError<ApiType>;
+      /**
+       * Empty index.
+       **/
+      EmptyIndex: AugmentedError<ApiType>;
+      /**
+       * Fee is changed.
+       **/
+      FeeChanged: AugmentedError<ApiType>;
+      /**
+       * The index is invalid.
+       **/
+      InvalidIndex: AugmentedError<ApiType>;
+      /**
+       * Invalid judgement.
+       **/
+      InvalidJudgement: AugmentedError<ApiType>;
+      /**
+       * The target is invalid.
+       **/
+      InvalidTarget: AugmentedError<ApiType>;
+      /**
+       * The provided judgement was for a different identity.
+       **/
+      JudgementForDifferentIdentity: AugmentedError<ApiType>;
+      /**
+       * Judgement given.
+       **/
+      JudgementGiven: AugmentedError<ApiType>;
+      /**
+       * Error that occurs when there is an issue paying for judgement.
+       **/
+      JudgementPaymentFailed: AugmentedError<ApiType>;
+      /**
+       * No identity found.
+       **/
+      NoIdentity: AugmentedError<ApiType>;
+      /**
+       * Account isn't found.
+       **/
+      NotFound: AugmentedError<ApiType>;
+      /**
+       * Account isn't named.
+       **/
+      NotNamed: AugmentedError<ApiType>;
+      /**
+       * Sub-account isn't owned by sender.
+       **/
+      NotOwned: AugmentedError<ApiType>;
+      /**
+       * Sender is not a sub-account.
+       **/
+      NotSub: AugmentedError<ApiType>;
+      /**
+       * Sticky judgement.
+       **/
+      StickyJudgement: AugmentedError<ApiType>;
+      /**
+       * Too many additional fields.
+       **/
+      TooManyFields: AugmentedError<ApiType>;
+      /**
+       * Maximum amount of registrars reached. Cannot add any more.
+       **/
+      TooManyRegistrars: AugmentedError<ApiType>;
+      /**
+       * Too many subs-accounts.
+       **/
+      TooManySubAccounts: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     maintenance: {
       /**
        * Generic error
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -107,9 +107,6 @@
       InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;
       LicenseForfeited: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;
       LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;
-      NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: u32], { desiredCollators: u32 }>;
-      NewKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: u32], { lengthInBlocks: u32 }>;
-      NewLicenseBond: AugmentedEvent<ApiType, [bondAmount: u128], { bondAmount: u128 }>;
       /**
        * Generic event
        **/
@@ -209,6 +206,15 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
+    configuration: {
+      NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;
+      NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;
+      NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;
+      /**
+       * Generic event
+       **/
+      [key: string]: AugmentedEvent<ApiType>;
+    };
     cumulusXcm: {
       /**
        * Downward message executed with the given outcome.
@@ -230,6 +236,16 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
+    dataManagement: {
+      /**
+       * This event is used in benchmarking and can be used for tests
+       **/
+      TestEvent: AugmentedEvent<ApiType, []>;
+      /**
+       * Generic event
+       **/
+      [key: string]: AugmentedEvent<ApiType>;
+    };
     dmpQueue: {
       /**
        * Downward message executed with the given outcome.
@@ -309,16 +325,6 @@
        * New sponsor was confirm.
        **/
       ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;
-      /**
-       * Generic event
-       **/
-      [key: string]: AugmentedEvent<ApiType>;
-    };
-    evmMigration: {
-      /**
-       * This event is used in benchmarking and can be used for tests
-       **/
-      TestEvent: AugmentedEvent<ApiType, []>;
       /**
        * Generic event
        **/
@@ -346,6 +352,53 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
+    identity: {
+      /**
+       * A name was cleared, and the given balance returned.
+       **/
+      IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;
+      /**
+       * A name was removed and the given balance slashed.
+       **/
+      IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;
+      /**
+       * A name was set or reset (which will remove all judgements).
+       **/
+      IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
+      /**
+       * A judgement was given by a registrar.
+       **/
+      JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;
+      /**
+       * A judgement was asked from a registrar.
+       **/
+      JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;
+      /**
+       * A judgement request was retracted.
+       **/
+      JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;
+      /**
+       * A registrar was added.
+       **/
+      RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;
+      /**
+       * A sub-identity was added to an identity and the deposit paid.
+       **/
+      SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
+      /**
+       * A sub-identity was removed from an identity and the deposit freed.
+       **/
+      SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
+      /**
+       * A sub-identity was cleared, and the given deposit repatriated from the
+       * main identity account to the sub-identity account.
+       **/
+      SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
+      /**
+       * Generic event
+       **/
+      [key: string]: AugmentedEvent<ApiType>;
+    };
     maintenance: {
       MaintenanceDisabled: AugmentedEvent<ApiType, []>;
       MaintenanceEnabled: AugmentedEvent<ApiType, []>;
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -6,10 +6,11 @@
 import '@polkadot/api-base/types/storage';
 
 import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
+import type { Data } from '@polkadot/types';
 import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
 import type { Observable } from '@polkadot/types/types';
 
 export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -140,36 +141,18 @@
        * The (community, limited) collation candidates.
        **/
       candidates: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
-      /**
-       * Desired number of candidates.
-       * 
-       * This should ideally always be less than [`Config::MaxCollators`] for weights to be correct.
-       **/
-      desiredCollators: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * The invulnerable, fixed collators.
        **/
       invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
-       * Collator will be kicked if it does not produce a block within the threshold (does not apply to invulnerables).
-       * 
-       * Should be a multiple of session or things will get inconsistent. todo:collator reword?
-       **/
-      kickThreshold: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
-      /**
        * Last block authored by collator.
        **/
       lastAuthoredBlock: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
-      /**
-       * Fixed amount to deposit to become a collator.
-       * 
-       * When a collator calls `leave_intent` they immediately receive the deposit back.
-       **/
-      licenseBond: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * The (community) collation license holders.
        **/
-      licenses: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u128>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      licenseDepositOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u128>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
       /**
        * Generic query
        **/
@@ -219,6 +202,9 @@
     };
     configuration: {
       appPromomotionConfigurationOverride: AugmentedQuery<ApiType, () => Observable<PalletConfigurationAppPromotionConfiguration>, []> & QueryableStorageEntry<ApiType, []>;
+      collatorSelectionDesiredCollatorsOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      collatorSelectionKickThresholdOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      collatorSelectionLicenseBondOverride: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
       minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
       weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
       xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
@@ -227,6 +213,13 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
+    dataManagement: {
+      migrationPending: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     dmpQueue: {
       /**
        * The configuration.
@@ -358,13 +351,6 @@
        * * **Value** - amount of sponsored blocks.
        **/
       sponsoringRateLimit: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<u32>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
-      /**
-       * Generic query
-       **/
-      [key: string]: QueryableStorageEntry<ApiType>;
-    };
-    evmMigration: {
-      migrationPending: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
       /**
        * Generic query
        **/
@@ -423,6 +409,38 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
+    identity: {
+      /**
+       * Information that is pertinent to identify the entity behind an account.
+       * 
+       * TWOX-NOTE: OK ― `AccountId` is a secure hash.
+       **/
+      identityOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PalletIdentityRegistration>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * The set of registrars. Not expected to get very big as can only be added through a
+       * special origin (likely a council motion).
+       * 
+       * The index into this can be cast to `RegistrarIndex` to get a valid value.
+       **/
+      registrars: AugmentedQuery<ApiType, () => Observable<Vec<Option<PalletIdentityRegistrarInfo>>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Alternative "sub" identities of this account.
+       * 
+       * The first item is the deposit, the second is a vector of the accounts.
+       * 
+       * TWOX-NOTE: OK ― `AccountId` is a secure hash.
+       **/
+      subsOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[u128, Vec<AccountId32>]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * The super-identity of an alternative "sub" identity together with its name, within that
+       * context. If the account is not some other account's sub-identity, then just `None`.
+       **/
+      superOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[AccountId32, Data]>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     inflation: {
       /**
        * Current inflation for `InflationBlockInterval` number of blocks
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -6,10 +6,11 @@
 import '@polkadot/api-base/types/submittable';
 
 import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
+import type { Data } from '@polkadot/types';
 import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
 export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -234,7 +235,7 @@
        * Note that the collator can only leave on session change.
        * The `LicenseBond` will be unreserved and returned immediately.
        * 
-       * This call is not available to `Invulnerable` collators.
+       * This call is, of course, not applicable to `Invulnerable` collators.
        **/
       forceRevokeLicense: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
       /**
@@ -248,8 +249,6 @@
       /**
        * Deregister `origin` as a collator candidate. Note that the collator can only leave on
        * session change. The license to `onboard` later at any other time will remain.
-       * 
-       * This call will fail if the total number of candidates would drop below `MinCandidates`. todo:collator maybe not
        **/
       offboard: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       /**
@@ -269,21 +268,6 @@
        * Remove a collator from the list of invulnerable (fixed) collators.
        **/
       removeInvulnerable: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
-      /**
-       * Set the ideal number of collators. If lowering this number,
-       * then the number of running collators could be higher than this figure.
-       * Aside from that edge case, there should be no other way to have more collators than the desired number.
-       **/
-      setDesiredCollators: AugmentedSubmittable<(max: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
-      /**
-       * Set the length of the kick threshold.
-       * Note that if the length is not a multiple of the session period, it might get inconsistent.
-       **/
-      setKickThreshold: AugmentedSubmittable<(kickThreshold: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
-      /**
-       * Set the candidacy bond amount.
-       **/
-      setLicenseBond: AugmentedSubmittable<(bond: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u128]>;
       /**
        * Generic tx
        **/
@@ -291,6 +275,9 @@
     };
     configuration: {
       setAppPromotionConfigurationOverride: AugmentedSubmittable<(configuration: PalletConfigurationAppPromotionConfiguration | { recalculationInterval?: any; pendingInterval?: any; intervalIncome?: any; maxStakersPerCalculation?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletConfigurationAppPromotionConfiguration]>;
+      setCollatorSelectionDesiredCollators: AugmentedSubmittable<(max: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
+      setCollatorSelectionKickThreshold: AugmentedSubmittable<(threshold: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
+      setCollatorSelectionLicenseBond: AugmentedSubmittable<(amount: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u128>]>;
       setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
       setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
       setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
@@ -305,6 +292,36 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    dataManagement: {
+      /**
+       * Start contract migration, inserts contract stub at target address,
+       * and marks account as pending, allowing to insert storage
+       **/
+      begin: AugmentedSubmittable<(address: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;
+      /**
+       * Finish contract migration, allows it to be called.
+       * It is not possible to alter contract storage via [`Self::set_data`]
+       * after this call.
+       **/
+      finish: AugmentedSubmittable<(address: H160 | string | Uint8Array, code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160, Bytes]>;
+      /**
+       * Create ethereum events attached to the fake transaction
+       **/
+      insertEthLogs: AugmentedSubmittable<(logs: Vec<EthereumLog> | (EthereumLog | { address?: any; topics?: any; data?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<EthereumLog>]>;
+      /**
+       * Create substrate events
+       **/
+      insertEvents: AugmentedSubmittable<(events: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
+      /**
+       * Insert items into contract storage, this method can be called
+       * multiple times
+       **/
+      setData: AugmentedSubmittable<(address: H160 | string | Uint8Array, data: Vec<ITuple<[H256, H256]>> | ([H256 | string | Uint8Array, H256 | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [H160, Vec<ITuple<[H256, H256]>>]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     dmpQueue: {
       /**
        * Service a single overweight message.
@@ -359,39 +376,277 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
-    evmMigration: {
+    foreignAssets: {
+      registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
+      updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
       /**
-       * Start contract migration, inserts contract stub at target address,
-       * and marks account as pending, allowing to insert storage
+       * Generic tx
        **/
-      begin: AugmentedSubmittable<(address: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
+    identity: {
       /**
-       * Finish contract migration, allows it to be called.
-       * It is not possible to alter contract storage via [`Self::set_data`]
-       * after this call.
+       * Add a registrar to the system.
+       * 
+       * The dispatch origin for this call must be `T::RegistrarOrigin`.
+       * 
+       * - `account`: the account of the registrar.
+       * 
+       * Emits `RegistrarAdded` if successful.
+       * 
+       * # <weight>
+       * - `O(R)` where `R` registrar-count (governance-bounded and code-bounded).
+       * - One storage mutation (codec `O(R)`).
+       * - One event.
+       * # </weight>
        **/
-      finish: AugmentedSubmittable<(address: H160 | string | Uint8Array, code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160, Bytes]>;
+      addRegistrar: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
       /**
-       * Create ethereum events attached to the fake transaction
+       * Add the given account to the sender's subs.
+       * 
+       * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
+       * to the sender.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a registered
+       * sub identity of `sub`.
        **/
-      insertEthLogs: AugmentedSubmittable<(logs: Vec<EthereumLog> | (EthereumLog | { address?: any; topics?: any; data?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<EthereumLog>]>;
+      addSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, data: Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Data]>;
       /**
-       * Create substrate events
+       * Cancel a previous request.
+       * 
+       * Payment: A previously reserved deposit is returned on success.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a
+       * registered identity.
+       * 
+       * - `reg_index`: The index of the registrar whose judgement is no longer requested.
+       * 
+       * Emits `JudgementUnrequested` if successful.
+       * 
+       * # <weight>
+       * - `O(R + X)`.
+       * - One balance-reserve operation.
+       * - One storage mutation `O(R + X)`.
+       * - One event
+       * # </weight>
        **/
-      insertEvents: AugmentedSubmittable<(events: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
+      cancelRequest: AugmentedSubmittable<(regIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
       /**
-       * Insert items into contract storage, this method can be called
-       * multiple times
+       * Clear an account's identity info and all sub-accounts and return all deposits.
+       * 
+       * Payment: All reserved balances on the account are returned.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a registered
+       * identity.
+       * 
+       * Emits `IdentityCleared` if successful.
+       * 
+       * # <weight>
+       * - `O(R + S + X)`
+       * - where `R` registrar-count (governance-bounded).
+       * - where `S` subs-count (hard- and deposit-bounded).
+       * - where `X` additional-field-count (deposit-bounded and code-bounded).
+       * - One balance-unreserve operation.
+       * - `2` storage reads and `S + 2` storage deletions.
+       * - One event.
+       * # </weight>
        **/
-      setData: AugmentedSubmittable<(address: H160 | string | Uint8Array, data: Vec<ITuple<[H256, H256]>> | ([H256 | string | Uint8Array, H256 | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [H160, Vec<ITuple<[H256, H256]>>]>;
+      clearIdentity: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       /**
-       * Generic tx
+       * Remove an account's identity and sub-account information and slash the deposits.
+       * 
+       * Payment: Reserved balances from `set_subs` and `set_identity` are slashed and handled by
+       * `Slash`. Verification request deposits are not returned; they should be cancelled
+       * manually using `cancel_request`.
+       * 
+       * The dispatch origin for this call must match `T::ForceOrigin`.
+       * 
+       * - `target`: the account whose identity the judgement is upon. This must be an account
+       * with a registered identity.
+       * 
+       * Emits `IdentityKilled` if successful.
+       * 
+       * # <weight>
+       * - `O(R + S + X)`.
+       * - One balance-reserve operation.
+       * - `S + 2` storage mutations.
+       * - One event.
+       * # </weight>
        **/
-      [key: string]: SubmittableExtrinsicFunction<ApiType>;
-    };
-    foreignAssets: {
-      registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
-      updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
+      killIdentity: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
+      /**
+       * Provide a judgement for an account's identity.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must be the account
+       * of the registrar whose index is `reg_index`.
+       * 
+       * - `reg_index`: the index of the registrar whose judgement is being made.
+       * - `target`: the account whose identity the judgement is upon. This must be an account
+       * with a registered identity.
+       * - `judgement`: the judgement of the registrar of index `reg_index` about `target`.
+       * - `identity`: The hash of the [`IdentityInfo`] for that the judgement is provided.
+       * 
+       * Emits `JudgementGiven` if successful.
+       * 
+       * # <weight>
+       * - `O(R + X)`.
+       * - One balance-transfer operation.
+       * - Up to one account-lookup operation.
+       * - Storage: 1 read `O(R)`, 1 mutate `O(R + X)`.
+       * - One event.
+       * # </weight>
+       **/
+      provideJudgement: AugmentedSubmittable<(regIndex: Compact<u32> | AnyNumber | Uint8Array, target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, judgement: PalletIdentityJudgement | { Unknown: any } | { FeePaid: any } | { Reasonable: any } | { KnownGood: any } | { OutOfDate: any } | { LowQuality: any } | { Erroneous: any } | string | Uint8Array, identity: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress, PalletIdentityJudgement, H256]>;
+      /**
+       * Remove the sender as a sub-account.
+       * 
+       * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
+       * to the sender (*not* the original depositor).
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a registered
+       * super-identity.
+       * 
+       * NOTE: This should not normally be used, but is provided in the case that the non-
+       * controller of an account is maliciously registered as a sub-account.
+       **/
+      quitSub: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * Remove the given account from the sender's subs.
+       * 
+       * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
+       * to the sender.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a registered
+       * sub identity of `sub`.
+       **/
+      removeSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
+      /**
+       * Alter the associated name of the given sub-account.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a registered
+       * sub identity of `sub`.
+       **/
+      renameSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, data: Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Data]>;
+      /**
+       * Request a judgement from a registrar.
+       * 
+       * Payment: At most `max_fee` will be reserved for payment to the registrar if judgement
+       * given.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a
+       * registered identity.
+       * 
+       * - `reg_index`: The index of the registrar whose judgement is requested.
+       * - `max_fee`: The maximum fee that may be paid. This should just be auto-populated as:
+       * 
+       * ```nocompile
+       * Self::registrars().get(reg_index).unwrap().fee
+       * ```
+       * 
+       * Emits `JudgementRequested` if successful.
+       * 
+       * # <weight>
+       * - `O(R + X)`.
+       * - One balance-reserve operation.
+       * - Storage: 1 read `O(R)`, 1 mutate `O(X + R)`.
+       * - One event.
+       * # </weight>
+       **/
+      requestJudgement: AugmentedSubmittable<(regIndex: Compact<u32> | AnyNumber | Uint8Array, maxFee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u128>]>;
+      /**
+       * Change the account associated with a registrar.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must be the account
+       * of the registrar whose index is `index`.
+       * 
+       * - `index`: the index of the registrar whose fee is to be set.
+       * - `new`: the new account ID.
+       * 
+       * # <weight>
+       * - `O(R)`.
+       * - One storage mutation `O(R)`.
+       * - Benchmark: 8.823 + R * 0.32 µs (min squares analysis)
+       * # </weight>
+       **/
+      setAccountId: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress]>;
+      /**
+       * Set the fee required for a judgement to be requested from a registrar.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must be the account
+       * of the registrar whose index is `index`.
+       * 
+       * - `index`: the index of the registrar whose fee is to be set.
+       * - `fee`: the new fee.
+       * 
+       * # <weight>
+       * - `O(R)`.
+       * - One storage mutation `O(R)`.
+       * - Benchmark: 7.315 + R * 0.329 µs (min squares analysis)
+       * # </weight>
+       **/
+      setFee: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u128>]>;
+      /**
+       * Set the field information for a registrar.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must be the account
+       * of the registrar whose index is `index`.
+       * 
+       * - `index`: the index of the registrar whose fee is to be set.
+       * - `fields`: the fields that the registrar concerns themselves with.
+       * 
+       * # <weight>
+       * - `O(R)`.
+       * - One storage mutation `O(R)`.
+       * - Benchmark: 7.464 + R * 0.325 µs (min squares analysis)
+       * # </weight>
+       **/
+      setFields: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, fields: PalletIdentityBitFlags) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PalletIdentityBitFlags]>;
+      /**
+       * Set an account's identity information and reserve the appropriate deposit.
+       * 
+       * If the account already has identity information, the deposit is taken as part payment
+       * for the new deposit.
+       * 
+       * The dispatch origin for this call must be _Signed_.
+       * 
+       * - `info`: The identity information.
+       * 
+       * Emits `IdentitySet` if successful.
+       * 
+       * # <weight>
+       * - `O(X + X' + R)`
+       * - where `X` additional-field-count (deposit-bounded and code-bounded)
+       * - where `R` judgements-count (registrar-count-bounded)
+       * - One balance reserve operation.
+       * - One storage mutation (codec-read `O(X' + R)`, codec-write `O(X + R)`).
+       * - One event.
+       * # </weight>
+       **/
+      setIdentity: AugmentedSubmittable<(info: PalletIdentityIdentityInfo | { additional?: any; display?: any; legal?: any; web?: any; riot?: any; email?: any; pgpFingerprint?: any; image?: any; twitter?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletIdentityIdentityInfo]>;
+      /**
+       * Set the sub-accounts of the sender.
+       * 
+       * Payment: Any aggregate balance reserved by previous `set_subs` calls will be returned
+       * and an amount `SubAccountDeposit` will be reserved for each item in `subs`.
+       * 
+       * The dispatch origin for this call must be _Signed_ and the sender must have a registered
+       * identity.
+       * 
+       * - `subs`: The identity's (new) sub-accounts.
+       * 
+       * # <weight>
+       * - `O(P + S)`
+       * - where `P` old-subs-count (hard- and deposit-bounded).
+       * - where `S` subs-count (hard- and deposit-bounded).
+       * - At most one balance operations.
+       * - DB:
+       * - `P + S` storage mutations (codec complexity `O(1)`)
+       * - One storage read (codec complexity `O(P)`).
+       * - One storage write (codec complexity `O(S)`).
+       * - One storage-exists (`IdentityOf::contains_key`).
+       * # </weight>
+       **/
+      setSubs: AugmentedSubmittable<(subs: Vec<ITuple<[AccountId32, Data]>> | ([AccountId32 | string | Uint8Array, Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, Data]>>]>;
       /**
        * Generic tx
        **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDataManagementCall, PalletDataManagementError, PalletDataManagementEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
 import type { Data, StorageKey } from '@polkadot/types';
 import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
 import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -772,6 +772,7 @@
     Offender: Offender;
     OldV1SessionInfo: OldV1SessionInfo;
     OpalRuntimeRuntime: OpalRuntimeRuntime;
+    OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;
     OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
     OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
     OpaqueCall: OpaqueCall;
@@ -839,8 +840,12 @@
     PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
     PalletConfigurationCall: PalletConfigurationCall;
     PalletConfigurationError: PalletConfigurationError;
+    PalletConfigurationEvent: PalletConfigurationEvent;
     PalletConstantMetadataLatest: PalletConstantMetadataLatest;
     PalletConstantMetadataV14: PalletConstantMetadataV14;
+    PalletDataManagementCall: PalletDataManagementCall;
+    PalletDataManagementError: PalletDataManagementError;
+    PalletDataManagementEvent: PalletDataManagementEvent;
     PalletErrorMetadataLatest: PalletErrorMetadataLatest;
     PalletErrorMetadataV14: PalletErrorMetadataV14;
     PalletEthereumCall: PalletEthereumCall;
@@ -857,9 +862,6 @@
     PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
     PalletEvmError: PalletEvmError;
     PalletEvmEvent: PalletEvmEvent;
-    PalletEvmMigrationCall: PalletEvmMigrationCall;
-    PalletEvmMigrationError: PalletEvmMigrationError;
-    PalletEvmMigrationEvent: PalletEvmMigrationEvent;
     PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;
     PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;
     PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;
@@ -868,6 +870,15 @@
     PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
     PalletFungibleError: PalletFungibleError;
     PalletId: PalletId;
+    PalletIdentityBitFlags: PalletIdentityBitFlags;
+    PalletIdentityCall: PalletIdentityCall;
+    PalletIdentityError: PalletIdentityError;
+    PalletIdentityEvent: PalletIdentityEvent;
+    PalletIdentityIdentityField: PalletIdentityIdentityField;
+    PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;
+    PalletIdentityJudgement: PalletIdentityJudgement;
+    PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;
+    PalletIdentityRegistration: PalletIdentityRegistration;
     PalletInflationCall: PalletInflationCall;
     PalletMaintenanceCall: PalletMaintenanceCall;
     PalletMaintenanceError: PalletMaintenanceError;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1,6 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
+import type { Data } from '@polkadot/types';
 import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
@@ -696,6 +697,9 @@
 /** @name OpalRuntimeRuntime */
 export interface OpalRuntimeRuntime extends Null {}
 
+/** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity */
+export interface OpalRuntimeRuntimeCommonDataManagementFilterIdentity extends Null {}
+
 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
 export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
 
@@ -1245,19 +1249,7 @@
   readonly isRemoveInvulnerable: boolean;
   readonly asRemoveInvulnerable: {
     readonly who: AccountId32;
-  } & Struct;
-  readonly isSetDesiredCollators: boolean;
-  readonly asSetDesiredCollators: {
-    readonly max: u32;
-  } & Struct;
-  readonly isSetLicenseBond: boolean;
-  readonly asSetLicenseBond: {
-    readonly bond: u128;
   } & Struct;
-  readonly isSetKickThreshold: boolean;
-  readonly asSetKickThreshold: {
-    readonly kickThreshold: u32;
-  } & Struct;
   readonly isGetLicense: boolean;
   readonly isOnboard: boolean;
   readonly isOffboard: boolean;
@@ -1266,7 +1258,7 @@
   readonly asForceRevokeLicense: {
     readonly who: AccountId32;
   } & Struct;
-  readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'SetDesiredCollators' | 'SetLicenseBond' | 'SetKickThreshold' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceRevokeLicense';
+  readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceRevokeLicense';
 }
 
 /** @name PalletCollatorSelectionError */
@@ -1289,18 +1281,6 @@
 
 /** @name PalletCollatorSelectionEvent */
 export interface PalletCollatorSelectionEvent extends Enum {
-  readonly isNewDesiredCollators: boolean;
-  readonly asNewDesiredCollators: {
-    readonly desiredCollators: u32;
-  } & Struct;
-  readonly isNewLicenseBond: boolean;
-  readonly asNewLicenseBond: {
-    readonly bondAmount: u128;
-  } & Struct;
-  readonly isNewKickThreshold: boolean;
-  readonly asNewKickThreshold: {
-    readonly lengthInBlocks: u32;
-  } & Struct;
   readonly isInvulnerableAdded: boolean;
   readonly asInvulnerableAdded: {
     readonly invulnerable: AccountId32;
@@ -1327,7 +1307,7 @@
   readonly asCandidateRemoved: {
     readonly accountId: AccountId32;
   } & Struct;
-  readonly type: 'NewDesiredCollators' | 'NewLicenseBond' | 'NewKickThreshold' | 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseForfeited' | 'CandidateAdded' | 'CandidateRemoved';
+  readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseForfeited' | 'CandidateAdded' | 'CandidateRemoved';
 }
 
 /** @name PalletCommonError */
@@ -1446,7 +1426,19 @@
   readonly asSetAppPromotionConfigurationOverride: {
     readonly configuration: PalletConfigurationAppPromotionConfiguration;
   } & Struct;
-  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';
+  readonly isSetCollatorSelectionDesiredCollators: boolean;
+  readonly asSetCollatorSelectionDesiredCollators: {
+    readonly max: Option<u32>;
+  } & Struct;
+  readonly isSetCollatorSelectionLicenseBond: boolean;
+  readonly asSetCollatorSelectionLicenseBond: {
+    readonly amount: Option<u128>;
+  } & Struct;
+  readonly isSetCollatorSelectionKickThreshold: boolean;
+  readonly asSetCollatorSelectionKickThreshold: {
+    readonly threshold: Option<u32>;
+  } & Struct;
+  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
 }
 
 /** @name PalletConfigurationError */
@@ -1455,6 +1447,64 @@
   readonly type: 'InconsistentConfiguration';
 }
 
+/** @name PalletConfigurationEvent */
+export interface PalletConfigurationEvent extends Enum {
+  readonly isNewDesiredCollators: boolean;
+  readonly asNewDesiredCollators: {
+    readonly desiredCollators: Option<u32>;
+  } & Struct;
+  readonly isNewCollatorLicenseBond: boolean;
+  readonly asNewCollatorLicenseBond: {
+    readonly bondCost: Option<u128>;
+  } & Struct;
+  readonly isNewCollatorKickThreshold: boolean;
+  readonly asNewCollatorKickThreshold: {
+    readonly lengthInBlocks: Option<u32>;
+  } & Struct;
+  readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
+}
+
+/** @name PalletDataManagementCall */
+export interface PalletDataManagementCall extends Enum {
+  readonly isBegin: boolean;
+  readonly asBegin: {
+    readonly address: H160;
+  } & Struct;
+  readonly isSetData: boolean;
+  readonly asSetData: {
+    readonly address: H160;
+    readonly data: Vec<ITuple<[H256, H256]>>;
+  } & Struct;
+  readonly isFinish: boolean;
+  readonly asFinish: {
+    readonly address: H160;
+    readonly code: Bytes;
+  } & Struct;
+  readonly isInsertEthLogs: boolean;
+  readonly asInsertEthLogs: {
+    readonly logs: Vec<EthereumLog>;
+  } & Struct;
+  readonly isInsertEvents: boolean;
+  readonly asInsertEvents: {
+    readonly events: Vec<Bytes>;
+  } & Struct;
+  readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
+}
+
+/** @name PalletDataManagementError */
+export interface PalletDataManagementError extends Enum {
+  readonly isAccountNotEmpty: boolean;
+  readonly isAccountIsNotMigrating: boolean;
+  readonly isBadEvent: boolean;
+  readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
+}
+
+/** @name PalletDataManagementEvent */
+export interface PalletDataManagementEvent extends Enum {
+  readonly isTestEvent: boolean;
+  readonly type: 'TestEvent';
+}
+
 /** @name PalletEthereumCall */
 export interface PalletEthereumCall extends Enum {
   readonly isTransact: boolean;
@@ -1614,47 +1664,6 @@
   readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
 }
 
-/** @name PalletEvmMigrationCall */
-export interface PalletEvmMigrationCall extends Enum {
-  readonly isBegin: boolean;
-  readonly asBegin: {
-    readonly address: H160;
-  } & Struct;
-  readonly isSetData: boolean;
-  readonly asSetData: {
-    readonly address: H160;
-    readonly data: Vec<ITuple<[H256, H256]>>;
-  } & Struct;
-  readonly isFinish: boolean;
-  readonly asFinish: {
-    readonly address: H160;
-    readonly code: Bytes;
-  } & Struct;
-  readonly isInsertEthLogs: boolean;
-  readonly asInsertEthLogs: {
-    readonly logs: Vec<EthereumLog>;
-  } & Struct;
-  readonly isInsertEvents: boolean;
-  readonly asInsertEvents: {
-    readonly events: Vec<Bytes>;
-  } & Struct;
-  readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
-}
-
-/** @name PalletEvmMigrationError */
-export interface PalletEvmMigrationError extends Enum {
-  readonly isAccountNotEmpty: boolean;
-  readonly isAccountIsNotMigrating: boolean;
-  readonly isBadEvent: boolean;
-  readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
-}
-
-/** @name PalletEvmMigrationEvent */
-export interface PalletEvmMigrationEvent extends Enum {
-  readonly isTestEvent: boolean;
-  readonly type: 'TestEvent';
-}
-
 /** @name PalletForeignAssetsAssetIds */
 export interface PalletForeignAssetsAssetIds extends Enum {
   readonly isForeignAssetId: boolean;
@@ -1744,6 +1753,219 @@
   readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
 }
 
+/** @name PalletIdentityBitFlags */
+export interface PalletIdentityBitFlags extends Struct {
+  readonly _bitLength: 64;
+  readonly Display: 1;
+  readonly Legal: 2;
+  readonly Web: 4;
+  readonly Riot: 8;
+  readonly Email: 16;
+  readonly PgpFingerprint: 32;
+  readonly Image: 64;
+  readonly Twitter: 128;
+}
+
+/** @name PalletIdentityCall */
+export interface PalletIdentityCall extends Enum {
+  readonly isAddRegistrar: boolean;
+  readonly asAddRegistrar: {
+    readonly account: MultiAddress;
+  } & Struct;
+  readonly isSetIdentity: boolean;
+  readonly asSetIdentity: {
+    readonly info: PalletIdentityIdentityInfo;
+  } & Struct;
+  readonly isSetSubs: boolean;
+  readonly asSetSubs: {
+    readonly subs: Vec<ITuple<[AccountId32, Data]>>;
+  } & Struct;
+  readonly isClearIdentity: boolean;
+  readonly isRequestJudgement: boolean;
+  readonly asRequestJudgement: {
+    readonly regIndex: Compact<u32>;
+    readonly maxFee: Compact<u128>;
+  } & Struct;
+  readonly isCancelRequest: boolean;
+  readonly asCancelRequest: {
+    readonly regIndex: u32;
+  } & Struct;
+  readonly isSetFee: boolean;
+  readonly asSetFee: {
+    readonly index: Compact<u32>;
+    readonly fee: Compact<u128>;
+  } & Struct;
+  readonly isSetAccountId: boolean;
+  readonly asSetAccountId: {
+    readonly index: Compact<u32>;
+    readonly new_: MultiAddress;
+  } & Struct;
+  readonly isSetFields: boolean;
+  readonly asSetFields: {
+    readonly index: Compact<u32>;
+    readonly fields: PalletIdentityBitFlags;
+  } & Struct;
+  readonly isProvideJudgement: boolean;
+  readonly asProvideJudgement: {
+    readonly regIndex: Compact<u32>;
+    readonly target: MultiAddress;
+    readonly judgement: PalletIdentityJudgement;
+    readonly identity: H256;
+  } & Struct;
+  readonly isKillIdentity: boolean;
+  readonly asKillIdentity: {
+    readonly target: MultiAddress;
+  } & Struct;
+  readonly isAddSub: boolean;
+  readonly asAddSub: {
+    readonly sub: MultiAddress;
+    readonly data: Data;
+  } & Struct;
+  readonly isRenameSub: boolean;
+  readonly asRenameSub: {
+    readonly sub: MultiAddress;
+    readonly data: Data;
+  } & Struct;
+  readonly isRemoveSub: boolean;
+  readonly asRemoveSub: {
+    readonly sub: MultiAddress;
+  } & Struct;
+  readonly isQuitSub: boolean;
+  readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub';
+}
+
+/** @name PalletIdentityError */
+export interface PalletIdentityError extends Enum {
+  readonly isTooManySubAccounts: boolean;
+  readonly isNotFound: boolean;
+  readonly isNotNamed: boolean;
+  readonly isEmptyIndex: boolean;
+  readonly isFeeChanged: boolean;
+  readonly isNoIdentity: boolean;
+  readonly isStickyJudgement: boolean;
+  readonly isJudgementGiven: boolean;
+  readonly isInvalidJudgement: boolean;
+  readonly isInvalidIndex: boolean;
+  readonly isInvalidTarget: boolean;
+  readonly isTooManyFields: boolean;
+  readonly isTooManyRegistrars: boolean;
+  readonly isAlreadyClaimed: boolean;
+  readonly isNotSub: boolean;
+  readonly isNotOwned: boolean;
+  readonly isJudgementForDifferentIdentity: boolean;
+  readonly isJudgementPaymentFailed: boolean;
+  readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
+}
+
+/** @name PalletIdentityEvent */
+export interface PalletIdentityEvent extends Enum {
+  readonly isIdentitySet: boolean;
+  readonly asIdentitySet: {
+    readonly who: AccountId32;
+  } & Struct;
+  readonly isIdentityCleared: boolean;
+  readonly asIdentityCleared: {
+    readonly who: AccountId32;
+    readonly deposit: u128;
+  } & Struct;
+  readonly isIdentityKilled: boolean;
+  readonly asIdentityKilled: {
+    readonly who: AccountId32;
+    readonly deposit: u128;
+  } & Struct;
+  readonly isJudgementRequested: boolean;
+  readonly asJudgementRequested: {
+    readonly who: AccountId32;
+    readonly registrarIndex: u32;
+  } & Struct;
+  readonly isJudgementUnrequested: boolean;
+  readonly asJudgementUnrequested: {
+    readonly who: AccountId32;
+    readonly registrarIndex: u32;
+  } & Struct;
+  readonly isJudgementGiven: boolean;
+  readonly asJudgementGiven: {
+    readonly target: AccountId32;
+    readonly registrarIndex: u32;
+  } & Struct;
+  readonly isRegistrarAdded: boolean;
+  readonly asRegistrarAdded: {
+    readonly registrarIndex: u32;
+  } & Struct;
+  readonly isSubIdentityAdded: boolean;
+  readonly asSubIdentityAdded: {
+    readonly sub: AccountId32;
+    readonly main: AccountId32;
+    readonly deposit: u128;
+  } & Struct;
+  readonly isSubIdentityRemoved: boolean;
+  readonly asSubIdentityRemoved: {
+    readonly sub: AccountId32;
+    readonly main: AccountId32;
+    readonly deposit: u128;
+  } & Struct;
+  readonly isSubIdentityRevoked: boolean;
+  readonly asSubIdentityRevoked: {
+    readonly sub: AccountId32;
+    readonly main: AccountId32;
+    readonly deposit: u128;
+  } & Struct;
+  readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';
+}
+
+/** @name PalletIdentityIdentityField */
+export interface PalletIdentityIdentityField extends Enum {
+  readonly isDisplay: boolean;
+  readonly isLegal: boolean;
+  readonly isWeb: boolean;
+  readonly isRiot: boolean;
+  readonly isEmail: boolean;
+  readonly isPgpFingerprint: boolean;
+  readonly isImage: boolean;
+  readonly isTwitter: boolean;
+  readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
+}
+
+/** @name PalletIdentityIdentityInfo */
+export interface PalletIdentityIdentityInfo extends Struct {
+  readonly additional: Vec<ITuple<[Data, Data]>>;
+  readonly display: Data;
+  readonly legal: Data;
+  readonly web: Data;
+  readonly riot: Data;
+  readonly email: Data;
+  readonly pgpFingerprint: Option<U8aFixed>;
+  readonly image: Data;
+  readonly twitter: Data;
+}
+
+/** @name PalletIdentityJudgement */
+export interface PalletIdentityJudgement extends Enum {
+  readonly isUnknown: boolean;
+  readonly isFeePaid: boolean;
+  readonly asFeePaid: u128;
+  readonly isReasonable: boolean;
+  readonly isKnownGood: boolean;
+  readonly isOutOfDate: boolean;
+  readonly isLowQuality: boolean;
+  readonly isErroneous: boolean;
+  readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
+}
+
+/** @name PalletIdentityRegistrarInfo */
+export interface PalletIdentityRegistrarInfo extends Struct {
+  readonly account: AccountId32;
+  readonly fee: u128;
+  readonly fields: PalletIdentityBitFlags;
+}
+
+/** @name PalletIdentityRegistration */
+export interface PalletIdentityRegistration extends Struct {
+  readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
+  readonly deposit: u128;
+  readonly info: PalletIdentityIdentityInfo;
+}
+
 /** @name PalletInflationCall */
 export interface PalletInflationCall extends Enum {
   readonly isStartInflation: boolean;
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
before · tests/src/interfaces/lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7  /**8   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9   **/10  FrameSystemAccountInfo: {11    nonce: 'u32',12    consumers: 'u32',13    providers: 'u32',14    sufficients: 'u32',15    data: 'PalletBalancesAccountData'16  },17  /**18   * Lookup5: pallet_balances::AccountData<Balance>19   **/20  PalletBalancesAccountData: {21    free: 'u128',22    reserved: 'u128',23    miscFrozen: 'u128',24    feeFrozen: 'u128'25  },26  /**27   * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28   **/29  FrameSupportDispatchPerDispatchClassWeight: {30    normal: 'SpWeightsWeightV2Weight',31    operational: 'SpWeightsWeightV2Weight',32    mandatory: 'SpWeightsWeightV2Weight'33  },34  /**35   * Lookup8: sp_weights::weight_v2::Weight36   **/37  SpWeightsWeightV2Weight: {38    refTime: 'Compact<u64>',39    proofSize: 'Compact<u64>'40  },41  /**42   * Lookup13: sp_runtime::generic::digest::Digest43   **/44  SpRuntimeDigest: {45    logs: 'Vec<SpRuntimeDigestDigestItem>'46  },47  /**48   * Lookup15: sp_runtime::generic::digest::DigestItem49   **/50  SpRuntimeDigestDigestItem: {51    _enum: {52      Other: 'Bytes',53      __Unused1: 'Null',54      __Unused2: 'Null',55      __Unused3: 'Null',56      Consensus: '([u8;4],Bytes)',57      Seal: '([u8;4],Bytes)',58      PreRuntime: '([u8;4],Bytes)',59      __Unused7: 'Null',60      RuntimeEnvironmentUpdated: 'Null'61    }62  },63  /**64   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65   **/66  FrameSystemEventRecord: {67    phase: 'FrameSystemPhase',68    event: 'Event',69    topics: 'Vec<H256>'70  },71  /**72   * Lookup20: frame_system::pallet::Event<T>73   **/74  FrameSystemEvent: {75    _enum: {76      ExtrinsicSuccess: {77        dispatchInfo: 'FrameSupportDispatchDispatchInfo',78      },79      ExtrinsicFailed: {80        dispatchError: 'SpRuntimeDispatchError',81        dispatchInfo: 'FrameSupportDispatchDispatchInfo',82      },83      CodeUpdated: 'Null',84      NewAccount: {85        account: 'AccountId32',86      },87      KilledAccount: {88        account: 'AccountId32',89      },90      Remarked: {91        _alias: {92          hash_: 'hash',93        },94        sender: 'AccountId32',95        hash_: 'H256'96      }97    }98  },99  /**100   * Lookup21: frame_support::dispatch::DispatchInfo101   **/102  FrameSupportDispatchDispatchInfo: {103    weight: 'SpWeightsWeightV2Weight',104    class: 'FrameSupportDispatchDispatchClass',105    paysFee: 'FrameSupportDispatchPays'106  },107  /**108   * Lookup22: frame_support::dispatch::DispatchClass109   **/110  FrameSupportDispatchDispatchClass: {111    _enum: ['Normal', 'Operational', 'Mandatory']112  },113  /**114   * Lookup23: frame_support::dispatch::Pays115   **/116  FrameSupportDispatchPays: {117    _enum: ['Yes', 'No']118  },119  /**120   * Lookup24: sp_runtime::DispatchError121   **/122  SpRuntimeDispatchError: {123    _enum: {124      Other: 'Null',125      CannotLookup: 'Null',126      BadOrigin: 'Null',127      Module: 'SpRuntimeModuleError',128      ConsumerRemaining: 'Null',129      NoProviders: 'Null',130      TooManyConsumers: 'Null',131      Token: 'SpRuntimeTokenError',132      Arithmetic: 'SpRuntimeArithmeticError',133      Transactional: 'SpRuntimeTransactionalError',134      Exhausted: 'Null',135      Corruption: 'Null',136      Unavailable: 'Null'137    }138  },139  /**140   * Lookup25: sp_runtime::ModuleError141   **/142  SpRuntimeModuleError: {143    index: 'u8',144    error: '[u8;4]'145  },146  /**147   * Lookup26: sp_runtime::TokenError148   **/149  SpRuntimeTokenError: {150    _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151  },152  /**153   * Lookup27: sp_runtime::ArithmeticError154   **/155  SpRuntimeArithmeticError: {156    _enum: ['Underflow', 'Overflow', 'DivisionByZero']157  },158  /**159   * Lookup28: sp_runtime::TransactionalError160   **/161  SpRuntimeTransactionalError: {162    _enum: ['LimitReached', 'NoLayer']163  },164  /**165   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166   **/167  CumulusPalletParachainSystemEvent: {168    _enum: {169      ValidationFunctionStored: 'Null',170      ValidationFunctionApplied: {171        relayChainBlockNum: 'u32',172      },173      ValidationFunctionDiscarded: 'Null',174      UpgradeAuthorized: {175        codeHash: 'H256',176      },177      DownwardMessagesReceived: {178        count: 'u32',179      },180      DownwardMessagesProcessed: {181        weightUsed: 'SpWeightsWeightV2Weight',182        dmqHead: 'H256'183      }184    }185  },186  /**187   * Lookup30: pallet_collator_selection::pallet::Event<T>188   **/189  PalletCollatorSelectionEvent: {190    _enum: {191      NewDesiredCollators: {192        desiredCollators: 'u32',193      },194      NewLicenseBond: {195        bondAmount: 'u128',196      },197      NewKickThreshold: {198        lengthInBlocks: 'u32',199      },200      InvulnerableAdded: {201        invulnerable: 'AccountId32',202      },203      InvulnerableRemoved: {204        invulnerable: 'AccountId32',205      },206      LicenseObtained: {207        accountId: 'AccountId32',208        deposit: 'u128',209      },210      LicenseForfeited: {211        accountId: 'AccountId32',212        depositReturned: 'u128',213      },214      CandidateAdded: {215        accountId: 'AccountId32',216      },217      CandidateRemoved: {218        accountId: 'AccountId32'219      }220    }221  },222  /**223   * Lookup31: pallet_session::pallet::Event224   **/225  PalletSessionEvent: {226    _enum: {227      NewSession: {228        sessionIndex: 'u32'229      }230    }231  },232  /**233   * Lookup32: pallet_balances::pallet::Event<T, I>234   **/235  PalletBalancesEvent: {236    _enum: {237      Endowed: {238        account: 'AccountId32',239        freeBalance: 'u128',240      },241      DustLost: {242        account: 'AccountId32',243        amount: 'u128',244      },245      Transfer: {246        from: 'AccountId32',247        to: 'AccountId32',248        amount: 'u128',249      },250      BalanceSet: {251        who: 'AccountId32',252        free: 'u128',253        reserved: 'u128',254      },255      Reserved: {256        who: 'AccountId32',257        amount: 'u128',258      },259      Unreserved: {260        who: 'AccountId32',261        amount: 'u128',262      },263      ReserveRepatriated: {264        from: 'AccountId32',265        to: 'AccountId32',266        amount: 'u128',267        destinationStatus: 'FrameSupportTokensMiscBalanceStatus',268      },269      Deposit: {270        who: 'AccountId32',271        amount: 'u128',272      },273      Withdraw: {274        who: 'AccountId32',275        amount: 'u128',276      },277      Slashed: {278        who: 'AccountId32',279        amount: 'u128'280      }281    }282  },283  /**284   * Lookup33: frame_support::traits::tokens::misc::BalanceStatus285   **/286  FrameSupportTokensMiscBalanceStatus: {287    _enum: ['Free', 'Reserved']288  },289  /**290   * Lookup34: pallet_transaction_payment::pallet::Event<T>291   **/292  PalletTransactionPaymentEvent: {293    _enum: {294      TransactionFeePaid: {295        who: 'AccountId32',296        actualFee: 'u128',297        tip: 'u128'298      }299    }300  },301  /**302   * Lookup35: pallet_treasury::pallet::Event<T, I>303   **/304  PalletTreasuryEvent: {305    _enum: {306      Proposed: {307        proposalIndex: 'u32',308      },309      Spending: {310        budgetRemaining: 'u128',311      },312      Awarded: {313        proposalIndex: 'u32',314        award: 'u128',315        account: 'AccountId32',316      },317      Rejected: {318        proposalIndex: 'u32',319        slashed: 'u128',320      },321      Burnt: {322        burntFunds: 'u128',323      },324      Rollover: {325        rolloverBalance: 'u128',326      },327      Deposit: {328        value: 'u128',329      },330      SpendApproved: {331        proposalIndex: 'u32',332        amount: 'u128',333        beneficiary: 'AccountId32'334      }335    }336  },337  /**338   * Lookup36: pallet_sudo::pallet::Event<T>339   **/340  PalletSudoEvent: {341    _enum: {342      Sudid: {343        sudoResult: 'Result<Null, SpRuntimeDispatchError>',344      },345      KeyChanged: {346        oldSudoer: 'Option<AccountId32>',347      },348      SudoAsDone: {349        sudoResult: 'Result<Null, SpRuntimeDispatchError>'350      }351    }352  },353  /**354   * Lookup40: orml_vesting::module::Event<T>355   **/356  OrmlVestingModuleEvent: {357    _enum: {358      VestingScheduleAdded: {359        from: 'AccountId32',360        to: 'AccountId32',361        vestingSchedule: 'OrmlVestingVestingSchedule',362      },363      Claimed: {364        who: 'AccountId32',365        amount: 'u128',366      },367      VestingSchedulesUpdated: {368        who: 'AccountId32'369      }370    }371  },372  /**373   * Lookup41: orml_vesting::VestingSchedule<BlockNumber, Balance>374   **/375  OrmlVestingVestingSchedule: {376    start: 'u32',377    period: 'u32',378    periodCount: 'u32',379    perPeriod: 'Compact<u128>'380  },381  /**382   * Lookup43: orml_xtokens::module::Event<T>383   **/384  OrmlXtokensModuleEvent: {385    _enum: {386      TransferredMultiAssets: {387        sender: 'AccountId32',388        assets: 'XcmV1MultiassetMultiAssets',389        fee: 'XcmV1MultiAsset',390        dest: 'XcmV1MultiLocation'391      }392    }393  },394  /**395   * Lookup44: xcm::v1::multiasset::MultiAssets396   **/397  XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',398  /**399   * Lookup46: xcm::v1::multiasset::MultiAsset400   **/401  XcmV1MultiAsset: {402    id: 'XcmV1MultiassetAssetId',403    fun: 'XcmV1MultiassetFungibility'404  },405  /**406   * Lookup47: xcm::v1::multiasset::AssetId407   **/408  XcmV1MultiassetAssetId: {409    _enum: {410      Concrete: 'XcmV1MultiLocation',411      Abstract: 'Bytes'412    }413  },414  /**415   * Lookup48: xcm::v1::multilocation::MultiLocation416   **/417  XcmV1MultiLocation: {418    parents: 'u8',419    interior: 'XcmV1MultilocationJunctions'420  },421  /**422   * Lookup49: xcm::v1::multilocation::Junctions423   **/424  XcmV1MultilocationJunctions: {425    _enum: {426      Here: 'Null',427      X1: 'XcmV1Junction',428      X2: '(XcmV1Junction,XcmV1Junction)',429      X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',430      X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',431      X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',432      X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',433      X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',434      X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'435    }436  },437  /**438   * Lookup50: xcm::v1::junction::Junction439   **/440  XcmV1Junction: {441    _enum: {442      Parachain: 'Compact<u32>',443      AccountId32: {444        network: 'XcmV0JunctionNetworkId',445        id: '[u8;32]',446      },447      AccountIndex64: {448        network: 'XcmV0JunctionNetworkId',449        index: 'Compact<u64>',450      },451      AccountKey20: {452        network: 'XcmV0JunctionNetworkId',453        key: '[u8;20]',454      },455      PalletInstance: 'u8',456      GeneralIndex: 'Compact<u128>',457      GeneralKey: 'Bytes',458      OnlyChild: 'Null',459      Plurality: {460        id: 'XcmV0JunctionBodyId',461        part: 'XcmV0JunctionBodyPart'462      }463    }464  },465  /**466   * Lookup52: xcm::v0::junction::NetworkId467   **/468  XcmV0JunctionNetworkId: {469    _enum: {470      Any: 'Null',471      Named: 'Bytes',472      Polkadot: 'Null',473      Kusama: 'Null'474    }475  },476  /**477   * Lookup55: xcm::v0::junction::BodyId478   **/479  XcmV0JunctionBodyId: {480    _enum: {481      Unit: 'Null',482      Named: 'Bytes',483      Index: 'Compact<u32>',484      Executive: 'Null',485      Technical: 'Null',486      Legislative: 'Null',487      Judicial: 'Null'488    }489  },490  /**491   * Lookup56: xcm::v0::junction::BodyPart492   **/493  XcmV0JunctionBodyPart: {494    _enum: {495      Voice: 'Null',496      Members: {497        count: 'Compact<u32>',498      },499      Fraction: {500        nom: 'Compact<u32>',501        denom: 'Compact<u32>',502      },503      AtLeastProportion: {504        nom: 'Compact<u32>',505        denom: 'Compact<u32>',506      },507      MoreThanProportion: {508        nom: 'Compact<u32>',509        denom: 'Compact<u32>'510      }511    }512  },513  /**514   * Lookup57: xcm::v1::multiasset::Fungibility515   **/516  XcmV1MultiassetFungibility: {517    _enum: {518      Fungible: 'Compact<u128>',519      NonFungible: 'XcmV1MultiassetAssetInstance'520    }521  },522  /**523   * Lookup58: xcm::v1::multiasset::AssetInstance524   **/525  XcmV1MultiassetAssetInstance: {526    _enum: {527      Undefined: 'Null',528      Index: 'Compact<u128>',529      Array4: '[u8;4]',530      Array8: '[u8;8]',531      Array16: '[u8;16]',532      Array32: '[u8;32]',533      Blob: 'Bytes'534    }535  },536  /**537   * Lookup61: orml_tokens::module::Event<T>538   **/539  OrmlTokensModuleEvent: {540    _enum: {541      Endowed: {542        currencyId: 'PalletForeignAssetsAssetIds',543        who: 'AccountId32',544        amount: 'u128',545      },546      DustLost: {547        currencyId: 'PalletForeignAssetsAssetIds',548        who: 'AccountId32',549        amount: 'u128',550      },551      Transfer: {552        currencyId: 'PalletForeignAssetsAssetIds',553        from: 'AccountId32',554        to: 'AccountId32',555        amount: 'u128',556      },557      Reserved: {558        currencyId: 'PalletForeignAssetsAssetIds',559        who: 'AccountId32',560        amount: 'u128',561      },562      Unreserved: {563        currencyId: 'PalletForeignAssetsAssetIds',564        who: 'AccountId32',565        amount: 'u128',566      },567      ReserveRepatriated: {568        currencyId: 'PalletForeignAssetsAssetIds',569        from: 'AccountId32',570        to: 'AccountId32',571        amount: 'u128',572        status: 'FrameSupportTokensMiscBalanceStatus',573      },574      BalanceSet: {575        currencyId: 'PalletForeignAssetsAssetIds',576        who: 'AccountId32',577        free: 'u128',578        reserved: 'u128',579      },580      TotalIssuanceSet: {581        currencyId: 'PalletForeignAssetsAssetIds',582        amount: 'u128',583      },584      Withdrawn: {585        currencyId: 'PalletForeignAssetsAssetIds',586        who: 'AccountId32',587        amount: 'u128',588      },589      Slashed: {590        currencyId: 'PalletForeignAssetsAssetIds',591        who: 'AccountId32',592        freeAmount: 'u128',593        reservedAmount: 'u128',594      },595      Deposited: {596        currencyId: 'PalletForeignAssetsAssetIds',597        who: 'AccountId32',598        amount: 'u128',599      },600      LockSet: {601        lockId: '[u8;8]',602        currencyId: 'PalletForeignAssetsAssetIds',603        who: 'AccountId32',604        amount: 'u128',605      },606      LockRemoved: {607        lockId: '[u8;8]',608        currencyId: 'PalletForeignAssetsAssetIds',609        who: 'AccountId32'610      }611    }612  },613  /**614   * Lookup62: pallet_foreign_assets::AssetIds615   **/616  PalletForeignAssetsAssetIds: {617    _enum: {618      ForeignAssetId: 'u32',619      NativeAssetId: 'PalletForeignAssetsNativeCurrency'620    }621  },622  /**623   * Lookup63: pallet_foreign_assets::NativeCurrency624   **/625  PalletForeignAssetsNativeCurrency: {626    _enum: ['Here', 'Parent']627  },628  /**629   * Lookup64: cumulus_pallet_xcmp_queue::pallet::Event<T>630   **/631  CumulusPalletXcmpQueueEvent: {632    _enum: {633      Success: {634        messageHash: 'Option<H256>',635        weight: 'SpWeightsWeightV2Weight',636      },637      Fail: {638        messageHash: 'Option<H256>',639        error: 'XcmV2TraitsError',640        weight: 'SpWeightsWeightV2Weight',641      },642      BadVersion: {643        messageHash: 'Option<H256>',644      },645      BadFormat: {646        messageHash: 'Option<H256>',647      },648      UpwardMessageSent: {649        messageHash: 'Option<H256>',650      },651      XcmpMessageSent: {652        messageHash: 'Option<H256>',653      },654      OverweightEnqueued: {655        sender: 'u32',656        sentAt: 'u32',657        index: 'u64',658        required: 'SpWeightsWeightV2Weight',659      },660      OverweightServiced: {661        index: 'u64',662        used: 'SpWeightsWeightV2Weight'663      }664    }665  },666  /**667   * Lookup66: xcm::v2::traits::Error668   **/669  XcmV2TraitsError: {670    _enum: {671      Overflow: 'Null',672      Unimplemented: 'Null',673      UntrustedReserveLocation: 'Null',674      UntrustedTeleportLocation: 'Null',675      MultiLocationFull: 'Null',676      MultiLocationNotInvertible: 'Null',677      BadOrigin: 'Null',678      InvalidLocation: 'Null',679      AssetNotFound: 'Null',680      FailedToTransactAsset: 'Null',681      NotWithdrawable: 'Null',682      LocationCannotHold: 'Null',683      ExceedsMaxMessageSize: 'Null',684      DestinationUnsupported: 'Null',685      Transport: 'Null',686      Unroutable: 'Null',687      UnknownClaim: 'Null',688      FailedToDecode: 'Null',689      MaxWeightInvalid: 'Null',690      NotHoldingFees: 'Null',691      TooExpensive: 'Null',692      Trap: 'u64',693      UnhandledXcmVersion: 'Null',694      WeightLimitReached: 'u64',695      Barrier: 'Null',696      WeightNotComputable: 'Null'697    }698  },699  /**700   * Lookup68: pallet_xcm::pallet::Event<T>701   **/702  PalletXcmEvent: {703    _enum: {704      Attempted: 'XcmV2TraitsOutcome',705      Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',706      UnexpectedResponse: '(XcmV1MultiLocation,u64)',707      ResponseReady: '(u64,XcmV2Response)',708      Notified: '(u64,u8,u8)',709      NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',710      NotifyDispatchError: '(u64,u8,u8)',711      NotifyDecodeFailed: '(u64,u8,u8)',712      InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',713      InvalidResponderVersion: '(XcmV1MultiLocation,u64)',714      ResponseTaken: 'u64',715      AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',716      VersionChangeNotified: '(XcmV1MultiLocation,u32)',717      SupportedVersionChanged: '(XcmV1MultiLocation,u32)',718      NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',719      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',720      AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'721    }722  },723  /**724   * Lookup69: xcm::v2::traits::Outcome725   **/726  XcmV2TraitsOutcome: {727    _enum: {728      Complete: 'u64',729      Incomplete: '(u64,XcmV2TraitsError)',730      Error: 'XcmV2TraitsError'731    }732  },733  /**734   * Lookup70: xcm::v2::Xcm<RuntimeCall>735   **/736  XcmV2Xcm: 'Vec<XcmV2Instruction>',737  /**738   * Lookup72: xcm::v2::Instruction<RuntimeCall>739   **/740  XcmV2Instruction: {741    _enum: {742      WithdrawAsset: 'XcmV1MultiassetMultiAssets',743      ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',744      ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',745      QueryResponse: {746        queryId: 'Compact<u64>',747        response: 'XcmV2Response',748        maxWeight: 'Compact<u64>',749      },750      TransferAsset: {751        assets: 'XcmV1MultiassetMultiAssets',752        beneficiary: 'XcmV1MultiLocation',753      },754      TransferReserveAsset: {755        assets: 'XcmV1MultiassetMultiAssets',756        dest: 'XcmV1MultiLocation',757        xcm: 'XcmV2Xcm',758      },759      Transact: {760        originType: 'XcmV0OriginKind',761        requireWeightAtMost: 'Compact<u64>',762        call: 'XcmDoubleEncoded',763      },764      HrmpNewChannelOpenRequest: {765        sender: 'Compact<u32>',766        maxMessageSize: 'Compact<u32>',767        maxCapacity: 'Compact<u32>',768      },769      HrmpChannelAccepted: {770        recipient: 'Compact<u32>',771      },772      HrmpChannelClosing: {773        initiator: 'Compact<u32>',774        sender: 'Compact<u32>',775        recipient: 'Compact<u32>',776      },777      ClearOrigin: 'Null',778      DescendOrigin: 'XcmV1MultilocationJunctions',779      ReportError: {780        queryId: 'Compact<u64>',781        dest: 'XcmV1MultiLocation',782        maxResponseWeight: 'Compact<u64>',783      },784      DepositAsset: {785        assets: 'XcmV1MultiassetMultiAssetFilter',786        maxAssets: 'Compact<u32>',787        beneficiary: 'XcmV1MultiLocation',788      },789      DepositReserveAsset: {790        assets: 'XcmV1MultiassetMultiAssetFilter',791        maxAssets: 'Compact<u32>',792        dest: 'XcmV1MultiLocation',793        xcm: 'XcmV2Xcm',794      },795      ExchangeAsset: {796        give: 'XcmV1MultiassetMultiAssetFilter',797        receive: 'XcmV1MultiassetMultiAssets',798      },799      InitiateReserveWithdraw: {800        assets: 'XcmV1MultiassetMultiAssetFilter',801        reserve: 'XcmV1MultiLocation',802        xcm: 'XcmV2Xcm',803      },804      InitiateTeleport: {805        assets: 'XcmV1MultiassetMultiAssetFilter',806        dest: 'XcmV1MultiLocation',807        xcm: 'XcmV2Xcm',808      },809      QueryHolding: {810        queryId: 'Compact<u64>',811        dest: 'XcmV1MultiLocation',812        assets: 'XcmV1MultiassetMultiAssetFilter',813        maxResponseWeight: 'Compact<u64>',814      },815      BuyExecution: {816        fees: 'XcmV1MultiAsset',817        weightLimit: 'XcmV2WeightLimit',818      },819      RefundSurplus: 'Null',820      SetErrorHandler: 'XcmV2Xcm',821      SetAppendix: 'XcmV2Xcm',822      ClearError: 'Null',823      ClaimAsset: {824        assets: 'XcmV1MultiassetMultiAssets',825        ticket: 'XcmV1MultiLocation',826      },827      Trap: 'Compact<u64>',828      SubscribeVersion: {829        queryId: 'Compact<u64>',830        maxResponseWeight: 'Compact<u64>',831      },832      UnsubscribeVersion: 'Null'833    }834  },835  /**836   * Lookup73: xcm::v2::Response837   **/838  XcmV2Response: {839    _enum: {840      Null: 'Null',841      Assets: 'XcmV1MultiassetMultiAssets',842      ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',843      Version: 'u32'844    }845  },846  /**847   * Lookup76: xcm::v0::OriginKind848   **/849  XcmV0OriginKind: {850    _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']851  },852  /**853   * Lookup77: xcm::double_encoded::DoubleEncoded<T>854   **/855  XcmDoubleEncoded: {856    encoded: 'Bytes'857  },858  /**859   * Lookup78: xcm::v1::multiasset::MultiAssetFilter860   **/861  XcmV1MultiassetMultiAssetFilter: {862    _enum: {863      Definite: 'XcmV1MultiassetMultiAssets',864      Wild: 'XcmV1MultiassetWildMultiAsset'865    }866  },867  /**868   * Lookup79: xcm::v1::multiasset::WildMultiAsset869   **/870  XcmV1MultiassetWildMultiAsset: {871    _enum: {872      All: 'Null',873      AllOf: {874        id: 'XcmV1MultiassetAssetId',875        fun: 'XcmV1MultiassetWildFungibility'876      }877    }878  },879  /**880   * Lookup80: xcm::v1::multiasset::WildFungibility881   **/882  XcmV1MultiassetWildFungibility: {883    _enum: ['Fungible', 'NonFungible']884  },885  /**886   * Lookup81: xcm::v2::WeightLimit887   **/888  XcmV2WeightLimit: {889    _enum: {890      Unlimited: 'Null',891      Limited: 'Compact<u64>'892    }893  },894  /**895   * Lookup83: xcm::VersionedMultiAssets896   **/897  XcmVersionedMultiAssets: {898    _enum: {899      V0: 'Vec<XcmV0MultiAsset>',900      V1: 'XcmV1MultiassetMultiAssets'901    }902  },903  /**904   * Lookup85: xcm::v0::multi_asset::MultiAsset905   **/906  XcmV0MultiAsset: {907    _enum: {908      None: 'Null',909      All: 'Null',910      AllFungible: 'Null',911      AllNonFungible: 'Null',912      AllAbstractFungible: {913        id: 'Bytes',914      },915      AllAbstractNonFungible: {916        class: 'Bytes',917      },918      AllConcreteFungible: {919        id: 'XcmV0MultiLocation',920      },921      AllConcreteNonFungible: {922        class: 'XcmV0MultiLocation',923      },924      AbstractFungible: {925        id: 'Bytes',926        amount: 'Compact<u128>',927      },928      AbstractNonFungible: {929        class: 'Bytes',930        instance: 'XcmV1MultiassetAssetInstance',931      },932      ConcreteFungible: {933        id: 'XcmV0MultiLocation',934        amount: 'Compact<u128>',935      },936      ConcreteNonFungible: {937        class: 'XcmV0MultiLocation',938        instance: 'XcmV1MultiassetAssetInstance'939      }940    }941  },942  /**943   * Lookup86: xcm::v0::multi_location::MultiLocation944   **/945  XcmV0MultiLocation: {946    _enum: {947      Null: 'Null',948      X1: 'XcmV0Junction',949      X2: '(XcmV0Junction,XcmV0Junction)',950      X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',951      X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',952      X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',953      X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',954      X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',955      X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'956    }957  },958  /**959   * Lookup87: xcm::v0::junction::Junction960   **/961  XcmV0Junction: {962    _enum: {963      Parent: 'Null',964      Parachain: 'Compact<u32>',965      AccountId32: {966        network: 'XcmV0JunctionNetworkId',967        id: '[u8;32]',968      },969      AccountIndex64: {970        network: 'XcmV0JunctionNetworkId',971        index: 'Compact<u64>',972      },973      AccountKey20: {974        network: 'XcmV0JunctionNetworkId',975        key: '[u8;20]',976      },977      PalletInstance: 'u8',978      GeneralIndex: 'Compact<u128>',979      GeneralKey: 'Bytes',980      OnlyChild: 'Null',981      Plurality: {982        id: 'XcmV0JunctionBodyId',983        part: 'XcmV0JunctionBodyPart'984      }985    }986  },987  /**988   * Lookup88: xcm::VersionedMultiLocation989   **/990  XcmVersionedMultiLocation: {991    _enum: {992      V0: 'XcmV0MultiLocation',993      V1: 'XcmV1MultiLocation'994    }995  },996  /**997   * Lookup89: cumulus_pallet_xcm::pallet::Event<T>998   **/999  CumulusPalletXcmEvent: {1000    _enum: {1001      InvalidFormat: '[u8;8]',1002      UnsupportedVersion: '[u8;8]',1003      ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1004    }1005  },1006  /**1007   * Lookup90: cumulus_pallet_dmp_queue::pallet::Event<T>1008   **/1009  CumulusPalletDmpQueueEvent: {1010    _enum: {1011      InvalidFormat: {1012        messageId: '[u8;32]',1013      },1014      UnsupportedVersion: {1015        messageId: '[u8;32]',1016      },1017      ExecutedDownward: {1018        messageId: '[u8;32]',1019        outcome: 'XcmV2TraitsOutcome',1020      },1021      WeightExhausted: {1022        messageId: '[u8;32]',1023        remainingWeight: 'SpWeightsWeightV2Weight',1024        requiredWeight: 'SpWeightsWeightV2Weight',1025      },1026      OverweightEnqueued: {1027        messageId: '[u8;32]',1028        overweightIndex: 'u64',1029        requiredWeight: 'SpWeightsWeightV2Weight',1030      },1031      OverweightServiced: {1032        overweightIndex: 'u64',1033        weightUsed: 'SpWeightsWeightV2Weight'1034      }1035    }1036  },1037  /**1038   * Lookup91: pallet_common::pallet::Event<T>1039   **/1040  PalletCommonEvent: {1041    _enum: {1042      CollectionCreated: '(u32,u8,AccountId32)',1043      CollectionDestroyed: 'u32',1044      ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1045      ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1046      Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1047      Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1048      ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1049      CollectionPropertySet: '(u32,Bytes)',1050      CollectionPropertyDeleted: '(u32,Bytes)',1051      TokenPropertySet: '(u32,u32,Bytes)',1052      TokenPropertyDeleted: '(u32,u32,Bytes)',1053      PropertyPermissionSet: '(u32,Bytes)',1054      AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1055      AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1056      CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1057      CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1058      CollectionLimitSet: 'u32',1059      CollectionOwnerChanged: '(u32,AccountId32)',1060      CollectionPermissionSet: 'u32',1061      CollectionSponsorSet: '(u32,AccountId32)',1062      SponsorshipConfirmed: '(u32,AccountId32)',1063      CollectionSponsorRemoved: 'u32'1064    }1065  },1066  /**1067   * Lookup94: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1068   **/1069  PalletEvmAccountBasicCrossAccountIdRepr: {1070    _enum: {1071      Substrate: 'AccountId32',1072      Ethereum: 'H160'1073    }1074  },1075  /**1076   * Lookup98: pallet_structure::pallet::Event<T>1077   **/1078  PalletStructureEvent: {1079    _enum: {1080      Executed: 'Result<Null, SpRuntimeDispatchError>'1081    }1082  },1083  /**1084   * Lookup99: pallet_rmrk_core::pallet::Event<T>1085   **/1086  PalletRmrkCoreEvent: {1087    _enum: {1088      CollectionCreated: {1089        issuer: 'AccountId32',1090        collectionId: 'u32',1091      },1092      CollectionDestroyed: {1093        issuer: 'AccountId32',1094        collectionId: 'u32',1095      },1096      IssuerChanged: {1097        oldIssuer: 'AccountId32',1098        newIssuer: 'AccountId32',1099        collectionId: 'u32',1100      },1101      CollectionLocked: {1102        issuer: 'AccountId32',1103        collectionId: 'u32',1104      },1105      NftMinted: {1106        owner: 'AccountId32',1107        collectionId: 'u32',1108        nftId: 'u32',1109      },1110      NFTBurned: {1111        owner: 'AccountId32',1112        nftId: 'u32',1113      },1114      NFTSent: {1115        sender: 'AccountId32',1116        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1117        collectionId: 'u32',1118        nftId: 'u32',1119        approvalRequired: 'bool',1120      },1121      NFTAccepted: {1122        sender: 'AccountId32',1123        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1124        collectionId: 'u32',1125        nftId: 'u32',1126      },1127      NFTRejected: {1128        sender: 'AccountId32',1129        collectionId: 'u32',1130        nftId: 'u32',1131      },1132      PropertySet: {1133        collectionId: 'u32',1134        maybeNftId: 'Option<u32>',1135        key: 'Bytes',1136        value: 'Bytes',1137      },1138      ResourceAdded: {1139        nftId: 'u32',1140        resourceId: 'u32',1141      },1142      ResourceRemoval: {1143        nftId: 'u32',1144        resourceId: 'u32',1145      },1146      ResourceAccepted: {1147        nftId: 'u32',1148        resourceId: 'u32',1149      },1150      ResourceRemovalAccepted: {1151        nftId: 'u32',1152        resourceId: 'u32',1153      },1154      PrioritySet: {1155        collectionId: 'u32',1156        nftId: 'u32'1157      }1158    }1159  },1160  /**1161   * Lookup100: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1162   **/1163  RmrkTraitsNftAccountIdOrCollectionNftTuple: {1164    _enum: {1165      AccountId: 'AccountId32',1166      CollectionAndNftTuple: '(u32,u32)'1167    }1168  },1169  /**1170   * Lookup104: pallet_rmrk_equip::pallet::Event<T>1171   **/1172  PalletRmrkEquipEvent: {1173    _enum: {1174      BaseCreated: {1175        issuer: 'AccountId32',1176        baseId: 'u32',1177      },1178      EquippablesUpdated: {1179        baseId: 'u32',1180        slotId: 'u32'1181      }1182    }1183  },1184  /**1185   * Lookup105: pallet_app_promotion::pallet::Event<T>1186   **/1187  PalletAppPromotionEvent: {1188    _enum: {1189      StakingRecalculation: '(AccountId32,u128,u128)',1190      Stake: '(AccountId32,u128)',1191      Unstake: '(AccountId32,u128)',1192      SetAdmin: 'AccountId32'1193    }1194  },1195  /**1196   * Lookup106: pallet_foreign_assets::module::Event<T>1197   **/1198  PalletForeignAssetsModuleEvent: {1199    _enum: {1200      ForeignAssetRegistered: {1201        assetId: 'u32',1202        assetAddress: 'XcmV1MultiLocation',1203        metadata: 'PalletForeignAssetsModuleAssetMetadata',1204      },1205      ForeignAssetUpdated: {1206        assetId: 'u32',1207        assetAddress: 'XcmV1MultiLocation',1208        metadata: 'PalletForeignAssetsModuleAssetMetadata',1209      },1210      AssetRegistered: {1211        assetId: 'PalletForeignAssetsAssetIds',1212        metadata: 'PalletForeignAssetsModuleAssetMetadata',1213      },1214      AssetUpdated: {1215        assetId: 'PalletForeignAssetsAssetIds',1216        metadata: 'PalletForeignAssetsModuleAssetMetadata'1217      }1218    }1219  },1220  /**1221   * Lookup107: pallet_foreign_assets::module::AssetMetadata<Balance>1222   **/1223  PalletForeignAssetsModuleAssetMetadata: {1224    name: 'Bytes',1225    symbol: 'Bytes',1226    decimals: 'u8',1227    minimalBalance: 'u128'1228  },1229  /**1230   * Lookup108: pallet_evm::pallet::Event<T>1231   **/1232  PalletEvmEvent: {1233    _enum: {1234      Log: {1235        log: 'EthereumLog',1236      },1237      Created: {1238        address: 'H160',1239      },1240      CreatedFailed: {1241        address: 'H160',1242      },1243      Executed: {1244        address: 'H160',1245      },1246      ExecutedFailed: {1247        address: 'H160'1248      }1249    }1250  },1251  /**1252   * Lookup109: ethereum::log::Log1253   **/1254  EthereumLog: {1255    address: 'H160',1256    topics: 'Vec<H256>',1257    data: 'Bytes'1258  },1259  /**1260   * Lookup111: pallet_ethereum::pallet::Event1261   **/1262  PalletEthereumEvent: {1263    _enum: {1264      Executed: {1265        from: 'H160',1266        to: 'H160',1267        transactionHash: 'H256',1268        exitReason: 'EvmCoreErrorExitReason'1269      }1270    }1271  },1272  /**1273   * Lookup112: evm_core::error::ExitReason1274   **/1275  EvmCoreErrorExitReason: {1276    _enum: {1277      Succeed: 'EvmCoreErrorExitSucceed',1278      Error: 'EvmCoreErrorExitError',1279      Revert: 'EvmCoreErrorExitRevert',1280      Fatal: 'EvmCoreErrorExitFatal'1281    }1282  },1283  /**1284   * Lookup113: evm_core::error::ExitSucceed1285   **/1286  EvmCoreErrorExitSucceed: {1287    _enum: ['Stopped', 'Returned', 'Suicided']1288  },1289  /**1290   * Lookup114: evm_core::error::ExitError1291   **/1292  EvmCoreErrorExitError: {1293    _enum: {1294      StackUnderflow: 'Null',1295      StackOverflow: 'Null',1296      InvalidJump: 'Null',1297      InvalidRange: 'Null',1298      DesignatedInvalid: 'Null',1299      CallTooDeep: 'Null',1300      CreateCollision: 'Null',1301      CreateContractLimit: 'Null',1302      OutOfOffset: 'Null',1303      OutOfGas: 'Null',1304      OutOfFund: 'Null',1305      PCUnderflow: 'Null',1306      CreateEmpty: 'Null',1307      Other: 'Text',1308      InvalidCode: 'Null'1309    }1310  },1311  /**1312   * Lookup117: evm_core::error::ExitRevert1313   **/1314  EvmCoreErrorExitRevert: {1315    _enum: ['Reverted']1316  },1317  /**1318   * Lookup118: evm_core::error::ExitFatal1319   **/1320  EvmCoreErrorExitFatal: {1321    _enum: {1322      NotSupported: 'Null',1323      UnhandledInterrupt: 'Null',1324      CallErrorAsFatal: 'EvmCoreErrorExitError',1325      Other: 'Text'1326    }1327  },1328  /**1329   * Lookup119: pallet_evm_contract_helpers::pallet::Event<T>1330   **/1331  PalletEvmContractHelpersEvent: {1332    _enum: {1333      ContractSponsorSet: '(H160,AccountId32)',1334      ContractSponsorshipConfirmed: '(H160,AccountId32)',1335      ContractSponsorRemoved: 'H160'1336    }1337  },1338  /**1339   * Lookup120: pallet_evm_migration::pallet::Event<T>1340   **/1341  PalletEvmMigrationEvent: {1342    _enum: ['TestEvent']1343  },1344  /**1345   * Lookup121: pallet_maintenance::pallet::Event<T>1346   **/1347  PalletMaintenanceEvent: {1348    _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1349  },1350  /**1351   * Lookup122: pallet_test_utils::pallet::Event<T>1352   **/1353  PalletTestUtilsEvent: {1354    _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1355  },1356  /**1357   * Lookup123: frame_system::Phase1358   **/1359  FrameSystemPhase: {1360    _enum: {1361      ApplyExtrinsic: 'u32',1362      Finalization: 'Null',1363      Initialization: 'Null'1364    }1365  },1366  /**1367   * Lookup126: frame_system::LastRuntimeUpgradeInfo1368   **/1369  FrameSystemLastRuntimeUpgradeInfo: {1370    specVersion: 'Compact<u32>',1371    specName: 'Text'1372  },1373  /**1374   * Lookup127: frame_system::pallet::Call<T>1375   **/1376  FrameSystemCall: {1377    _enum: {1378      fill_block: {1379        ratio: 'Perbill',1380      },1381      remark: {1382        remark: 'Bytes',1383      },1384      set_heap_pages: {1385        pages: 'u64',1386      },1387      set_code: {1388        code: 'Bytes',1389      },1390      set_code_without_checks: {1391        code: 'Bytes',1392      },1393      set_storage: {1394        items: 'Vec<(Bytes,Bytes)>',1395      },1396      kill_storage: {1397        _alias: {1398          keys_: 'keys',1399        },1400        keys_: 'Vec<Bytes>',1401      },1402      kill_prefix: {1403        prefix: 'Bytes',1404        subkeys: 'u32',1405      },1406      remark_with_event: {1407        remark: 'Bytes'1408      }1409    }1410  },1411  /**1412   * Lookup132: frame_system::limits::BlockWeights1413   **/1414  FrameSystemLimitsBlockWeights: {1415    baseBlock: 'SpWeightsWeightV2Weight',1416    maxBlock: 'SpWeightsWeightV2Weight',1417    perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1418  },1419  /**1420   * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1421   **/1422  FrameSupportDispatchPerDispatchClassWeightsPerClass: {1423    normal: 'FrameSystemLimitsWeightsPerClass',1424    operational: 'FrameSystemLimitsWeightsPerClass',1425    mandatory: 'FrameSystemLimitsWeightsPerClass'1426  },1427  /**1428   * Lookup134: frame_system::limits::WeightsPerClass1429   **/1430  FrameSystemLimitsWeightsPerClass: {1431    baseExtrinsic: 'SpWeightsWeightV2Weight',1432    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1433    maxTotal: 'Option<SpWeightsWeightV2Weight>',1434    reserved: 'Option<SpWeightsWeightV2Weight>'1435  },1436  /**1437   * Lookup136: frame_system::limits::BlockLength1438   **/1439  FrameSystemLimitsBlockLength: {1440    max: 'FrameSupportDispatchPerDispatchClassU32'1441  },1442  /**1443   * Lookup137: frame_support::dispatch::PerDispatchClass<T>1444   **/1445  FrameSupportDispatchPerDispatchClassU32: {1446    normal: 'u32',1447    operational: 'u32',1448    mandatory: 'u32'1449  },1450  /**1451   * Lookup138: sp_weights::RuntimeDbWeight1452   **/1453  SpWeightsRuntimeDbWeight: {1454    read: 'u64',1455    write: 'u64'1456  },1457  /**1458   * Lookup139: sp_version::RuntimeVersion1459   **/1460  SpVersionRuntimeVersion: {1461    specName: 'Text',1462    implName: 'Text',1463    authoringVersion: 'u32',1464    specVersion: 'u32',1465    implVersion: 'u32',1466    apis: 'Vec<([u8;8],u32)>',1467    transactionVersion: 'u32',1468    stateVersion: 'u8'1469  },1470  /**1471   * Lookup144: frame_system::pallet::Error<T>1472   **/1473  FrameSystemError: {1474    _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1475  },1476  /**1477   * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1478   **/1479  PolkadotPrimitivesV2PersistedValidationData: {1480    parentHead: 'Bytes',1481    relayParentNumber: 'u32',1482    relayParentStorageRoot: 'H256',1483    maxPovSize: 'u32'1484  },1485  /**1486   * Lookup148: polkadot_primitives::v2::UpgradeRestriction1487   **/1488  PolkadotPrimitivesV2UpgradeRestriction: {1489    _enum: ['Present']1490  },1491  /**1492   * Lookup149: sp_trie::storage_proof::StorageProof1493   **/1494  SpTrieStorageProof: {1495    trieNodes: 'BTreeSet<Bytes>'1496  },1497  /**1498   * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1499   **/1500  CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1501    dmqMqcHead: 'H256',1502    relayDispatchQueueSize: '(u32,u32)',1503    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1504    egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1505  },1506  /**1507   * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel1508   **/1509  PolkadotPrimitivesV2AbridgedHrmpChannel: {1510    maxCapacity: 'u32',1511    maxTotalSize: 'u32',1512    maxMessageSize: 'u32',1513    msgCount: 'u32',1514    totalSize: 'u32',1515    mqcHead: 'Option<H256>'1516  },1517  /**1518   * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration1519   **/1520  PolkadotPrimitivesV2AbridgedHostConfiguration: {1521    maxCodeSize: 'u32',1522    maxHeadDataSize: 'u32',1523    maxUpwardQueueCount: 'u32',1524    maxUpwardQueueSize: 'u32',1525    maxUpwardMessageSize: 'u32',1526    maxUpwardMessageNumPerCandidate: 'u32',1527    hrmpMaxMessageNumPerCandidate: 'u32',1528    validationUpgradeCooldown: 'u32',1529    validationUpgradeDelay: 'u32'1530  },1531  /**1532   * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1533   **/1534  PolkadotCorePrimitivesOutboundHrmpMessage: {1535    recipient: 'u32',1536    data: 'Bytes'1537  },1538  /**1539   * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>1540   **/1541  CumulusPalletParachainSystemCall: {1542    _enum: {1543      set_validation_data: {1544        data: 'CumulusPrimitivesParachainInherentParachainInherentData',1545      },1546      sudo_send_upward_message: {1547        message: 'Bytes',1548      },1549      authorize_upgrade: {1550        codeHash: 'H256',1551      },1552      enact_authorized_upgrade: {1553        code: 'Bytes'1554      }1555    }1556  },1557  /**1558   * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData1559   **/1560  CumulusPrimitivesParachainInherentParachainInherentData: {1561    validationData: 'PolkadotPrimitivesV2PersistedValidationData',1562    relayChainState: 'SpTrieStorageProof',1563    downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1564    horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1565  },1566  /**1567   * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1568   **/1569  PolkadotCorePrimitivesInboundDownwardMessage: {1570    sentAt: 'u32',1571    msg: 'Bytes'1572  },1573  /**1574   * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1575   **/1576  PolkadotCorePrimitivesInboundHrmpMessage: {1577    sentAt: 'u32',1578    data: 'Bytes'1579  },1580  /**1581   * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>1582   **/1583  CumulusPalletParachainSystemError: {1584    _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1585  },1586  /**1587   * Lookup173: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>1588   **/1589  PalletAuthorshipUncleEntryItem: {1590    _enum: {1591      InclusionHeight: 'u32',1592      Uncle: '(H256,Option<AccountId32>)'1593    }1594  },1595  /**1596   * Lookup175: pallet_authorship::pallet::Call<T>1597   **/1598  PalletAuthorshipCall: {1599    _enum: {1600      set_uncles: {1601        newUncles: 'Vec<SpRuntimeHeader>'1602      }1603    }1604  },1605  /**1606   * Lookup177: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>1607   **/1608  SpRuntimeHeader: {1609    parentHash: 'H256',1610    number: 'Compact<u32>',1611    stateRoot: 'H256',1612    extrinsicsRoot: 'H256',1613    digest: 'SpRuntimeDigest'1614  },1615  /**1616   * Lookup178: sp_runtime::traits::BlakeTwo2561617   **/1618  SpRuntimeBlakeTwo256: 'Null',1619  /**1620   * Lookup179: pallet_authorship::pallet::Error<T>1621   **/1622  PalletAuthorshipError: {1623    _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']1624  },1625  /**1626   * Lookup182: pallet_collator_selection::pallet::Call<T>1627   **/1628  PalletCollatorSelectionCall: {1629    _enum: {1630      add_invulnerable: {1631        _alias: {1632          new_: 'new',1633        },1634        new_: 'AccountId32',1635      },1636      remove_invulnerable: {1637        who: 'AccountId32',1638      },1639      set_desired_collators: {1640        max: 'u32',1641      },1642      set_license_bond: {1643        bond: 'u128',1644      },1645      set_kick_threshold: {1646        kickThreshold: 'u32',1647      },1648      get_license: 'Null',1649      onboard: 'Null',1650      offboard: 'Null',1651      release_license: 'Null',1652      force_revoke_license: {1653        who: 'AccountId32'1654      }1655    }1656  },1657  /**1658   * Lookup183: pallet_collator_selection::pallet::Error<T>1659   **/1660  PalletCollatorSelectionError: {1661    _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1662  },1663  /**1664   * Lookup186: opal_runtime::runtime_common::SessionKeys1665   **/1666  OpalRuntimeRuntimeCommonSessionKeys: {1667    aura: 'SpConsensusAuraSr25519AppSr25519Public'1668  },1669  /**1670   * Lookup187: sp_consensus_aura::sr25519::app_sr25519::Public1671   **/1672  SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1673  /**1674   * Lookup188: sp_core::sr25519::Public1675   **/1676  SpCoreSr25519Public: '[u8;32]',1677  /**1678   * Lookup191: sp_core::crypto::KeyTypeId1679   **/1680  SpCoreCryptoKeyTypeId: '[u8;4]',1681  /**1682   * Lookup192: pallet_session::pallet::Call<T>1683   **/1684  PalletSessionCall: {1685    _enum: {1686      set_keys: {1687        _alias: {1688          keys_: 'keys',1689        },1690        keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1691        proof: 'Bytes',1692      },1693      purge_keys: 'Null'1694    }1695  },1696  /**1697   * Lookup193: pallet_session::pallet::Error<T>1698   **/1699  PalletSessionError: {1700    _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1701  },1702  /**1703   * Lookup195: pallet_balances::BalanceLock<Balance>1704   **/1705  PalletBalancesBalanceLock: {1706    id: '[u8;8]',1707    amount: 'u128',1708    reasons: 'PalletBalancesReasons'1709  },1710  /**1711   * Lookup196: pallet_balances::Reasons1712   **/1713  PalletBalancesReasons: {1714    _enum: ['Fee', 'Misc', 'All']1715  },1716  /**1717   * Lookup199: pallet_balances::ReserveData<ReserveIdentifier, Balance>1718   **/1719  PalletBalancesReserveData: {1720    id: '[u8;16]',1721    amount: 'u128'1722  },1723  /**1724   * Lookup201: pallet_balances::Releases1725   **/1726  PalletBalancesReleases: {1727    _enum: ['V1_0_0', 'V2_0_0']1728  },1729  /**1730   * Lookup202: pallet_balances::pallet::Call<T, I>1731   **/1732  PalletBalancesCall: {1733    _enum: {1734      transfer: {1735        dest: 'MultiAddress',1736        value: 'Compact<u128>',1737      },1738      set_balance: {1739        who: 'MultiAddress',1740        newFree: 'Compact<u128>',1741        newReserved: 'Compact<u128>',1742      },1743      force_transfer: {1744        source: 'MultiAddress',1745        dest: 'MultiAddress',1746        value: 'Compact<u128>',1747      },1748      transfer_keep_alive: {1749        dest: 'MultiAddress',1750        value: 'Compact<u128>',1751      },1752      transfer_all: {1753        dest: 'MultiAddress',1754        keepAlive: 'bool',1755      },1756      force_unreserve: {1757        who: 'MultiAddress',1758        amount: 'u128'1759      }1760    }1761  },1762  /**1763   * Lookup205: pallet_balances::pallet::Error<T, I>1764   **/1765  PalletBalancesError: {1766    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1767  },1768  /**1769   * Lookup207: pallet_timestamp::pallet::Call<T>1770   **/1771  PalletTimestampCall: {1772    _enum: {1773      set: {1774        now: 'Compact<u64>'1775      }1776    }1777  },1778  /**1779   * Lookup209: pallet_transaction_payment::Releases1780   **/1781  PalletTransactionPaymentReleases: {1782    _enum: ['V1Ancient', 'V2']1783  },1784  /**1785   * Lookup210: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1786   **/1787  PalletTreasuryProposal: {1788    proposer: 'AccountId32',1789    value: 'u128',1790    beneficiary: 'AccountId32',1791    bond: 'u128'1792  },1793  /**1794   * Lookup212: pallet_treasury::pallet::Call<T, I>1795   **/1796  PalletTreasuryCall: {1797    _enum: {1798      propose_spend: {1799        value: 'Compact<u128>',1800        beneficiary: 'MultiAddress',1801      },1802      reject_proposal: {1803        proposalId: 'Compact<u32>',1804      },1805      approve_proposal: {1806        proposalId: 'Compact<u32>',1807      },1808      spend: {1809        amount: 'Compact<u128>',1810        beneficiary: 'MultiAddress',1811      },1812      remove_approval: {1813        proposalId: 'Compact<u32>'1814      }1815    }1816  },1817  /**1818   * Lookup215: frame_support::PalletId1819   **/1820  FrameSupportPalletId: '[u8;8]',1821  /**1822   * Lookup216: pallet_treasury::pallet::Error<T, I>1823   **/1824  PalletTreasuryError: {1825    _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1826  },1827  /**1828   * Lookup217: pallet_sudo::pallet::Call<T>1829   **/1830  PalletSudoCall: {1831    _enum: {1832      sudo: {1833        call: 'Call',1834      },1835      sudo_unchecked_weight: {1836        call: 'Call',1837        weight: 'SpWeightsWeightV2Weight',1838      },1839      set_key: {1840        _alias: {1841          new_: 'new',1842        },1843        new_: 'MultiAddress',1844      },1845      sudo_as: {1846        who: 'MultiAddress',1847        call: 'Call'1848      }1849    }1850  },1851  /**1852   * Lookup219: orml_vesting::module::Call<T>1853   **/1854  OrmlVestingModuleCall: {1855    _enum: {1856      claim: 'Null',1857      vested_transfer: {1858        dest: 'MultiAddress',1859        schedule: 'OrmlVestingVestingSchedule',1860      },1861      update_vesting_schedules: {1862        who: 'MultiAddress',1863        vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1864      },1865      claim_for: {1866        dest: 'MultiAddress'1867      }1868    }1869  },1870  /**1871   * Lookup221: orml_xtokens::module::Call<T>1872   **/1873  OrmlXtokensModuleCall: {1874    _enum: {1875      transfer: {1876        currencyId: 'PalletForeignAssetsAssetIds',1877        amount: 'u128',1878        dest: 'XcmVersionedMultiLocation',1879        destWeightLimit: 'XcmV2WeightLimit',1880      },1881      transfer_multiasset: {1882        asset: 'XcmVersionedMultiAsset',1883        dest: 'XcmVersionedMultiLocation',1884        destWeightLimit: 'XcmV2WeightLimit',1885      },1886      transfer_with_fee: {1887        currencyId: 'PalletForeignAssetsAssetIds',1888        amount: 'u128',1889        fee: 'u128',1890        dest: 'XcmVersionedMultiLocation',1891        destWeightLimit: 'XcmV2WeightLimit',1892      },1893      transfer_multiasset_with_fee: {1894        asset: 'XcmVersionedMultiAsset',1895        fee: 'XcmVersionedMultiAsset',1896        dest: 'XcmVersionedMultiLocation',1897        destWeightLimit: 'XcmV2WeightLimit',1898      },1899      transfer_multicurrencies: {1900        currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1901        feeItem: 'u32',1902        dest: 'XcmVersionedMultiLocation',1903        destWeightLimit: 'XcmV2WeightLimit',1904      },1905      transfer_multiassets: {1906        assets: 'XcmVersionedMultiAssets',1907        feeItem: 'u32',1908        dest: 'XcmVersionedMultiLocation',1909        destWeightLimit: 'XcmV2WeightLimit'1910      }1911    }1912  },1913  /**1914   * Lookup222: xcm::VersionedMultiAsset1915   **/1916  XcmVersionedMultiAsset: {1917    _enum: {1918      V0: 'XcmV0MultiAsset',1919      V1: 'XcmV1MultiAsset'1920    }1921  },1922  /**1923   * Lookup225: orml_tokens::module::Call<T>1924   **/1925  OrmlTokensModuleCall: {1926    _enum: {1927      transfer: {1928        dest: 'MultiAddress',1929        currencyId: 'PalletForeignAssetsAssetIds',1930        amount: 'Compact<u128>',1931      },1932      transfer_all: {1933        dest: 'MultiAddress',1934        currencyId: 'PalletForeignAssetsAssetIds',1935        keepAlive: 'bool',1936      },1937      transfer_keep_alive: {1938        dest: 'MultiAddress',1939        currencyId: 'PalletForeignAssetsAssetIds',1940        amount: 'Compact<u128>',1941      },1942      force_transfer: {1943        source: 'MultiAddress',1944        dest: 'MultiAddress',1945        currencyId: 'PalletForeignAssetsAssetIds',1946        amount: 'Compact<u128>',1947      },1948      set_balance: {1949        who: 'MultiAddress',1950        currencyId: 'PalletForeignAssetsAssetIds',1951        newFree: 'Compact<u128>',1952        newReserved: 'Compact<u128>'1953      }1954    }1955  },1956  /**1957   * Lookup226: cumulus_pallet_xcmp_queue::pallet::Call<T>1958   **/1959  CumulusPalletXcmpQueueCall: {1960    _enum: {1961      service_overweight: {1962        index: 'u64',1963        weightLimit: 'u64',1964      },1965      suspend_xcm_execution: 'Null',1966      resume_xcm_execution: 'Null',1967      update_suspend_threshold: {1968        _alias: {1969          new_: 'new',1970        },1971        new_: 'u32',1972      },1973      update_drop_threshold: {1974        _alias: {1975          new_: 'new',1976        },1977        new_: 'u32',1978      },1979      update_resume_threshold: {1980        _alias: {1981          new_: 'new',1982        },1983        new_: 'u32',1984      },1985      update_threshold_weight: {1986        _alias: {1987          new_: 'new',1988        },1989        new_: 'u64',1990      },1991      update_weight_restrict_decay: {1992        _alias: {1993          new_: 'new',1994        },1995        new_: 'u64',1996      },1997      update_xcmp_max_individual_weight: {1998        _alias: {1999          new_: 'new',2000        },2001        new_: 'u64'2002      }2003    }2004  },2005  /**2006   * Lookup227: pallet_xcm::pallet::Call<T>2007   **/2008  PalletXcmCall: {2009    _enum: {2010      send: {2011        dest: 'XcmVersionedMultiLocation',2012        message: 'XcmVersionedXcm',2013      },2014      teleport_assets: {2015        dest: 'XcmVersionedMultiLocation',2016        beneficiary: 'XcmVersionedMultiLocation',2017        assets: 'XcmVersionedMultiAssets',2018        feeAssetItem: 'u32',2019      },2020      reserve_transfer_assets: {2021        dest: 'XcmVersionedMultiLocation',2022        beneficiary: 'XcmVersionedMultiLocation',2023        assets: 'XcmVersionedMultiAssets',2024        feeAssetItem: 'u32',2025      },2026      execute: {2027        message: 'XcmVersionedXcm',2028        maxWeight: 'u64',2029      },2030      force_xcm_version: {2031        location: 'XcmV1MultiLocation',2032        xcmVersion: 'u32',2033      },2034      force_default_xcm_version: {2035        maybeXcmVersion: 'Option<u32>',2036      },2037      force_subscribe_version_notify: {2038        location: 'XcmVersionedMultiLocation',2039      },2040      force_unsubscribe_version_notify: {2041        location: 'XcmVersionedMultiLocation',2042      },2043      limited_reserve_transfer_assets: {2044        dest: 'XcmVersionedMultiLocation',2045        beneficiary: 'XcmVersionedMultiLocation',2046        assets: 'XcmVersionedMultiAssets',2047        feeAssetItem: 'u32',2048        weightLimit: 'XcmV2WeightLimit',2049      },2050      limited_teleport_assets: {2051        dest: 'XcmVersionedMultiLocation',2052        beneficiary: 'XcmVersionedMultiLocation',2053        assets: 'XcmVersionedMultiAssets',2054        feeAssetItem: 'u32',2055        weightLimit: 'XcmV2WeightLimit'2056      }2057    }2058  },2059  /**2060   * Lookup228: xcm::VersionedXcm<RuntimeCall>2061   **/2062  XcmVersionedXcm: {2063    _enum: {2064      V0: 'XcmV0Xcm',2065      V1: 'XcmV1Xcm',2066      V2: 'XcmV2Xcm'2067    }2068  },2069  /**2070   * Lookup229: xcm::v0::Xcm<RuntimeCall>2071   **/2072  XcmV0Xcm: {2073    _enum: {2074      WithdrawAsset: {2075        assets: 'Vec<XcmV0MultiAsset>',2076        effects: 'Vec<XcmV0Order>',2077      },2078      ReserveAssetDeposit: {2079        assets: 'Vec<XcmV0MultiAsset>',2080        effects: 'Vec<XcmV0Order>',2081      },2082      TeleportAsset: {2083        assets: 'Vec<XcmV0MultiAsset>',2084        effects: 'Vec<XcmV0Order>',2085      },2086      QueryResponse: {2087        queryId: 'Compact<u64>',2088        response: 'XcmV0Response',2089      },2090      TransferAsset: {2091        assets: 'Vec<XcmV0MultiAsset>',2092        dest: 'XcmV0MultiLocation',2093      },2094      TransferReserveAsset: {2095        assets: 'Vec<XcmV0MultiAsset>',2096        dest: 'XcmV0MultiLocation',2097        effects: 'Vec<XcmV0Order>',2098      },2099      Transact: {2100        originType: 'XcmV0OriginKind',2101        requireWeightAtMost: 'u64',2102        call: 'XcmDoubleEncoded',2103      },2104      HrmpNewChannelOpenRequest: {2105        sender: 'Compact<u32>',2106        maxMessageSize: 'Compact<u32>',2107        maxCapacity: 'Compact<u32>',2108      },2109      HrmpChannelAccepted: {2110        recipient: 'Compact<u32>',2111      },2112      HrmpChannelClosing: {2113        initiator: 'Compact<u32>',2114        sender: 'Compact<u32>',2115        recipient: 'Compact<u32>',2116      },2117      RelayedFrom: {2118        who: 'XcmV0MultiLocation',2119        message: 'XcmV0Xcm'2120      }2121    }2122  },2123  /**2124   * Lookup231: xcm::v0::order::Order<RuntimeCall>2125   **/2126  XcmV0Order: {2127    _enum: {2128      Null: 'Null',2129      DepositAsset: {2130        assets: 'Vec<XcmV0MultiAsset>',2131        dest: 'XcmV0MultiLocation',2132      },2133      DepositReserveAsset: {2134        assets: 'Vec<XcmV0MultiAsset>',2135        dest: 'XcmV0MultiLocation',2136        effects: 'Vec<XcmV0Order>',2137      },2138      ExchangeAsset: {2139        give: 'Vec<XcmV0MultiAsset>',2140        receive: 'Vec<XcmV0MultiAsset>',2141      },2142      InitiateReserveWithdraw: {2143        assets: 'Vec<XcmV0MultiAsset>',2144        reserve: 'XcmV0MultiLocation',2145        effects: 'Vec<XcmV0Order>',2146      },2147      InitiateTeleport: {2148        assets: 'Vec<XcmV0MultiAsset>',2149        dest: 'XcmV0MultiLocation',2150        effects: 'Vec<XcmV0Order>',2151      },2152      QueryHolding: {2153        queryId: 'Compact<u64>',2154        dest: 'XcmV0MultiLocation',2155        assets: 'Vec<XcmV0MultiAsset>',2156      },2157      BuyExecution: {2158        fees: 'XcmV0MultiAsset',2159        weight: 'u64',2160        debt: 'u64',2161        haltOnError: 'bool',2162        xcm: 'Vec<XcmV0Xcm>'2163      }2164    }2165  },2166  /**2167   * Lookup233: xcm::v0::Response2168   **/2169  XcmV0Response: {2170    _enum: {2171      Assets: 'Vec<XcmV0MultiAsset>'2172    }2173  },2174  /**2175   * Lookup234: xcm::v1::Xcm<RuntimeCall>2176   **/2177  XcmV1Xcm: {2178    _enum: {2179      WithdrawAsset: {2180        assets: 'XcmV1MultiassetMultiAssets',2181        effects: 'Vec<XcmV1Order>',2182      },2183      ReserveAssetDeposited: {2184        assets: 'XcmV1MultiassetMultiAssets',2185        effects: 'Vec<XcmV1Order>',2186      },2187      ReceiveTeleportedAsset: {2188        assets: 'XcmV1MultiassetMultiAssets',2189        effects: 'Vec<XcmV1Order>',2190      },2191      QueryResponse: {2192        queryId: 'Compact<u64>',2193        response: 'XcmV1Response',2194      },2195      TransferAsset: {2196        assets: 'XcmV1MultiassetMultiAssets',2197        beneficiary: 'XcmV1MultiLocation',2198      },2199      TransferReserveAsset: {2200        assets: 'XcmV1MultiassetMultiAssets',2201        dest: 'XcmV1MultiLocation',2202        effects: 'Vec<XcmV1Order>',2203      },2204      Transact: {2205        originType: 'XcmV0OriginKind',2206        requireWeightAtMost: 'u64',2207        call: 'XcmDoubleEncoded',2208      },2209      HrmpNewChannelOpenRequest: {2210        sender: 'Compact<u32>',2211        maxMessageSize: 'Compact<u32>',2212        maxCapacity: 'Compact<u32>',2213      },2214      HrmpChannelAccepted: {2215        recipient: 'Compact<u32>',2216      },2217      HrmpChannelClosing: {2218        initiator: 'Compact<u32>',2219        sender: 'Compact<u32>',2220        recipient: 'Compact<u32>',2221      },2222      RelayedFrom: {2223        who: 'XcmV1MultilocationJunctions',2224        message: 'XcmV1Xcm',2225      },2226      SubscribeVersion: {2227        queryId: 'Compact<u64>',2228        maxResponseWeight: 'Compact<u64>',2229      },2230      UnsubscribeVersion: 'Null'2231    }2232  },2233  /**2234   * Lookup236: xcm::v1::order::Order<RuntimeCall>2235   **/2236  XcmV1Order: {2237    _enum: {2238      Noop: 'Null',2239      DepositAsset: {2240        assets: 'XcmV1MultiassetMultiAssetFilter',2241        maxAssets: 'u32',2242        beneficiary: 'XcmV1MultiLocation',2243      },2244      DepositReserveAsset: {2245        assets: 'XcmV1MultiassetMultiAssetFilter',2246        maxAssets: 'u32',2247        dest: 'XcmV1MultiLocation',2248        effects: 'Vec<XcmV1Order>',2249      },2250      ExchangeAsset: {2251        give: 'XcmV1MultiassetMultiAssetFilter',2252        receive: 'XcmV1MultiassetMultiAssets',2253      },2254      InitiateReserveWithdraw: {2255        assets: 'XcmV1MultiassetMultiAssetFilter',2256        reserve: 'XcmV1MultiLocation',2257        effects: 'Vec<XcmV1Order>',2258      },2259      InitiateTeleport: {2260        assets: 'XcmV1MultiassetMultiAssetFilter',2261        dest: 'XcmV1MultiLocation',2262        effects: 'Vec<XcmV1Order>',2263      },2264      QueryHolding: {2265        queryId: 'Compact<u64>',2266        dest: 'XcmV1MultiLocation',2267        assets: 'XcmV1MultiassetMultiAssetFilter',2268      },2269      BuyExecution: {2270        fees: 'XcmV1MultiAsset',2271        weight: 'u64',2272        debt: 'u64',2273        haltOnError: 'bool',2274        instructions: 'Vec<XcmV1Xcm>'2275      }2276    }2277  },2278  /**2279   * Lookup238: xcm::v1::Response2280   **/2281  XcmV1Response: {2282    _enum: {2283      Assets: 'XcmV1MultiassetMultiAssets',2284      Version: 'u32'2285    }2286  },2287  /**2288   * Lookup252: cumulus_pallet_xcm::pallet::Call<T>2289   **/2290  CumulusPalletXcmCall: 'Null',2291  /**2292   * Lookup253: cumulus_pallet_dmp_queue::pallet::Call<T>2293   **/2294  CumulusPalletDmpQueueCall: {2295    _enum: {2296      service_overweight: {2297        index: 'u64',2298        weightLimit: 'u64'2299      }2300    }2301  },2302  /**2303   * Lookup254: pallet_inflation::pallet::Call<T>2304   **/2305  PalletInflationCall: {2306    _enum: {2307      start_inflation: {2308        inflationStartRelayBlock: 'u32'2309      }2310    }2311  },2312  /**2313   * Lookup255: pallet_unique::Call<T>2314   **/2315  PalletUniqueCall: {2316    _enum: {2317      create_collection: {2318        collectionName: 'Vec<u16>',2319        collectionDescription: 'Vec<u16>',2320        tokenPrefix: 'Bytes',2321        mode: 'UpDataStructsCollectionMode',2322      },2323      create_collection_ex: {2324        data: 'UpDataStructsCreateCollectionData',2325      },2326      destroy_collection: {2327        collectionId: 'u32',2328      },2329      add_to_allow_list: {2330        collectionId: 'u32',2331        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2332      },2333      remove_from_allow_list: {2334        collectionId: 'u32',2335        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2336      },2337      change_collection_owner: {2338        collectionId: 'u32',2339        newOwner: 'AccountId32',2340      },2341      add_collection_admin: {2342        collectionId: 'u32',2343        newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2344      },2345      remove_collection_admin: {2346        collectionId: 'u32',2347        accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2348      },2349      set_collection_sponsor: {2350        collectionId: 'u32',2351        newSponsor: 'AccountId32',2352      },2353      confirm_sponsorship: {2354        collectionId: 'u32',2355      },2356      remove_collection_sponsor: {2357        collectionId: 'u32',2358      },2359      create_item: {2360        collectionId: 'u32',2361        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2362        data: 'UpDataStructsCreateItemData',2363      },2364      create_multiple_items: {2365        collectionId: 'u32',2366        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2367        itemsData: 'Vec<UpDataStructsCreateItemData>',2368      },2369      set_collection_properties: {2370        collectionId: 'u32',2371        properties: 'Vec<UpDataStructsProperty>',2372      },2373      delete_collection_properties: {2374        collectionId: 'u32',2375        propertyKeys: 'Vec<Bytes>',2376      },2377      set_token_properties: {2378        collectionId: 'u32',2379        tokenId: 'u32',2380        properties: 'Vec<UpDataStructsProperty>',2381      },2382      delete_token_properties: {2383        collectionId: 'u32',2384        tokenId: 'u32',2385        propertyKeys: 'Vec<Bytes>',2386      },2387      set_token_property_permissions: {2388        collectionId: 'u32',2389        propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2390      },2391      create_multiple_items_ex: {2392        collectionId: 'u32',2393        data: 'UpDataStructsCreateItemExData',2394      },2395      set_transfers_enabled_flag: {2396        collectionId: 'u32',2397        value: 'bool',2398      },2399      burn_item: {2400        collectionId: 'u32',2401        itemId: 'u32',2402        value: 'u128',2403      },2404      burn_from: {2405        collectionId: 'u32',2406        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2407        itemId: 'u32',2408        value: 'u128',2409      },2410      transfer: {2411        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2412        collectionId: 'u32',2413        itemId: 'u32',2414        value: 'u128',2415      },2416      approve: {2417        spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2418        collectionId: 'u32',2419        itemId: 'u32',2420        amount: 'u128',2421      },2422      transfer_from: {2423        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2424        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2425        collectionId: 'u32',2426        itemId: 'u32',2427        value: 'u128',2428      },2429      set_collection_limits: {2430        collectionId: 'u32',2431        newLimit: 'UpDataStructsCollectionLimits',2432      },2433      set_collection_permissions: {2434        collectionId: 'u32',2435        newPermission: 'UpDataStructsCollectionPermissions',2436      },2437      repartition: {2438        collectionId: 'u32',2439        tokenId: 'u32',2440        amount: 'u128',2441      },2442      set_allowance_for_all: {2443        collectionId: 'u32',2444        operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2445        approve: 'bool',2446      },2447      force_repair_collection: {2448        collectionId: 'u32',2449      },2450      force_repair_item: {2451        collectionId: 'u32',2452        itemId: 'u32'2453      }2454    }2455  },2456  /**2457   * Lookup260: up_data_structs::CollectionMode2458   **/2459  UpDataStructsCollectionMode: {2460    _enum: {2461      NFT: 'Null',2462      Fungible: 'u8',2463      ReFungible: 'Null'2464    }2465  },2466  /**2467   * Lookup261: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2468   **/2469  UpDataStructsCreateCollectionData: {2470    mode: 'UpDataStructsCollectionMode',2471    access: 'Option<UpDataStructsAccessMode>',2472    name: 'Vec<u16>',2473    description: 'Vec<u16>',2474    tokenPrefix: 'Bytes',2475    pendingSponsor: 'Option<AccountId32>',2476    limits: 'Option<UpDataStructsCollectionLimits>',2477    permissions: 'Option<UpDataStructsCollectionPermissions>',2478    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2479    properties: 'Vec<UpDataStructsProperty>'2480  },2481  /**2482   * Lookup263: up_data_structs::AccessMode2483   **/2484  UpDataStructsAccessMode: {2485    _enum: ['Normal', 'AllowList']2486  },2487  /**2488   * Lookup265: up_data_structs::CollectionLimits2489   **/2490  UpDataStructsCollectionLimits: {2491    accountTokenOwnershipLimit: 'Option<u32>',2492    sponsoredDataSize: 'Option<u32>',2493    sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2494    tokenLimit: 'Option<u32>',2495    sponsorTransferTimeout: 'Option<u32>',2496    sponsorApproveTimeout: 'Option<u32>',2497    ownerCanTransfer: 'Option<bool>',2498    ownerCanDestroy: 'Option<bool>',2499    transfersEnabled: 'Option<bool>'2500  },2501  /**2502   * Lookup267: up_data_structs::SponsoringRateLimit2503   **/2504  UpDataStructsSponsoringRateLimit: {2505    _enum: {2506      SponsoringDisabled: 'Null',2507      Blocks: 'u32'2508    }2509  },2510  /**2511   * Lookup270: up_data_structs::CollectionPermissions2512   **/2513  UpDataStructsCollectionPermissions: {2514    access: 'Option<UpDataStructsAccessMode>',2515    mintMode: 'Option<bool>',2516    nesting: 'Option<UpDataStructsNestingPermissions>'2517  },2518  /**2519   * Lookup272: up_data_structs::NestingPermissions2520   **/2521  UpDataStructsNestingPermissions: {2522    tokenOwner: 'bool',2523    collectionAdmin: 'bool',2524    restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2525  },2526  /**2527   * Lookup274: up_data_structs::OwnerRestrictedSet2528   **/2529  UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2530  /**2531   * Lookup279: up_data_structs::PropertyKeyPermission2532   **/2533  UpDataStructsPropertyKeyPermission: {2534    key: 'Bytes',2535    permission: 'UpDataStructsPropertyPermission'2536  },2537  /**2538   * Lookup280: up_data_structs::PropertyPermission2539   **/2540  UpDataStructsPropertyPermission: {2541    mutable: 'bool',2542    collectionAdmin: 'bool',2543    tokenOwner: 'bool'2544  },2545  /**2546   * Lookup283: up_data_structs::Property2547   **/2548  UpDataStructsProperty: {2549    key: 'Bytes',2550    value: 'Bytes'2551  },2552  /**2553   * Lookup286: up_data_structs::CreateItemData2554   **/2555  UpDataStructsCreateItemData: {2556    _enum: {2557      NFT: 'UpDataStructsCreateNftData',2558      Fungible: 'UpDataStructsCreateFungibleData',2559      ReFungible: 'UpDataStructsCreateReFungibleData'2560    }2561  },2562  /**2563   * Lookup287: up_data_structs::CreateNftData2564   **/2565  UpDataStructsCreateNftData: {2566    properties: 'Vec<UpDataStructsProperty>'2567  },2568  /**2569   * Lookup288: up_data_structs::CreateFungibleData2570   **/2571  UpDataStructsCreateFungibleData: {2572    value: 'u128'2573  },2574  /**2575   * Lookup289: up_data_structs::CreateReFungibleData2576   **/2577  UpDataStructsCreateReFungibleData: {2578    pieces: 'u128',2579    properties: 'Vec<UpDataStructsProperty>'2580  },2581  /**2582   * Lookup292: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2583   **/2584  UpDataStructsCreateItemExData: {2585    _enum: {2586      NFT: 'Vec<UpDataStructsCreateNftExData>',2587      Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2588      RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2589      RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2590    }2591  },2592  /**2593   * Lookup294: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2594   **/2595  UpDataStructsCreateNftExData: {2596    properties: 'Vec<UpDataStructsProperty>',2597    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2598  },2599  /**2600   * Lookup301: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2601   **/2602  UpDataStructsCreateRefungibleExSingleOwner: {2603    user: 'PalletEvmAccountBasicCrossAccountIdRepr',2604    pieces: 'u128',2605    properties: 'Vec<UpDataStructsProperty>'2606  },2607  /**2608   * Lookup303: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2609   **/2610  UpDataStructsCreateRefungibleExMultipleOwners: {2611    users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2612    properties: 'Vec<UpDataStructsProperty>'2613  },2614  /**2615   * Lookup304: pallet_configuration::pallet::Call<T>2616   **/2617  PalletConfigurationCall: {2618    _enum: {2619      set_weight_to_fee_coefficient_override: {2620        coeff: 'Option<u32>',2621      },2622      set_min_gas_price_override: {2623        coeff: 'Option<u64>',2624      },2625      set_xcm_allowed_locations: {2626        locations: 'Option<Vec<XcmV1MultiLocation>>',2627      },2628      set_app_promotion_configuration_override: {2629        configuration: 'PalletConfigurationAppPromotionConfiguration'2630      }2631    }2632  },2633  /**2634   * Lookup309: pallet_configuration::AppPromotionConfiguration<BlockNumber>2635   **/2636  PalletConfigurationAppPromotionConfiguration: {2637    recalculationInterval: 'Option<u32>',2638    pendingInterval: 'Option<u32>',2639    intervalIncome: 'Option<Perbill>',2640    maxStakersPerCalculation: 'Option<u8>'2641  },2642  /**2643   * Lookup312: pallet_template_transaction_payment::Call<T>2644   **/2645  PalletTemplateTransactionPaymentCall: 'Null',2646  /**2647   * Lookup313: pallet_structure::pallet::Call<T>2648   **/2649  PalletStructureCall: 'Null',2650  /**2651   * Lookup314: pallet_rmrk_core::pallet::Call<T>2652   **/2653  PalletRmrkCoreCall: {2654    _enum: {2655      create_collection: {2656        metadata: 'Bytes',2657        max: 'Option<u32>',2658        symbol: 'Bytes',2659      },2660      destroy_collection: {2661        collectionId: 'u32',2662      },2663      change_collection_issuer: {2664        collectionId: 'u32',2665        newIssuer: 'MultiAddress',2666      },2667      lock_collection: {2668        collectionId: 'u32',2669      },2670      mint_nft: {2671        owner: 'Option<AccountId32>',2672        collectionId: 'u32',2673        recipient: 'Option<AccountId32>',2674        royaltyAmount: 'Option<Permill>',2675        metadata: 'Bytes',2676        transferable: 'bool',2677        resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2678      },2679      burn_nft: {2680        collectionId: 'u32',2681        nftId: 'u32',2682        maxBurns: 'u32',2683      },2684      send: {2685        rmrkCollectionId: 'u32',2686        rmrkNftId: 'u32',2687        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2688      },2689      accept_nft: {2690        rmrkCollectionId: 'u32',2691        rmrkNftId: 'u32',2692        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2693      },2694      reject_nft: {2695        rmrkCollectionId: 'u32',2696        rmrkNftId: 'u32',2697      },2698      accept_resource: {2699        rmrkCollectionId: 'u32',2700        rmrkNftId: 'u32',2701        resourceId: 'u32',2702      },2703      accept_resource_removal: {2704        rmrkCollectionId: 'u32',2705        rmrkNftId: 'u32',2706        resourceId: 'u32',2707      },2708      set_property: {2709        rmrkCollectionId: 'Compact<u32>',2710        maybeNftId: 'Option<u32>',2711        key: 'Bytes',2712        value: 'Bytes',2713      },2714      set_priority: {2715        rmrkCollectionId: 'u32',2716        rmrkNftId: 'u32',2717        priorities: 'Vec<u32>',2718      },2719      add_basic_resource: {2720        rmrkCollectionId: 'u32',2721        nftId: 'u32',2722        resource: 'RmrkTraitsResourceBasicResource',2723      },2724      add_composable_resource: {2725        rmrkCollectionId: 'u32',2726        nftId: 'u32',2727        resource: 'RmrkTraitsResourceComposableResource',2728      },2729      add_slot_resource: {2730        rmrkCollectionId: 'u32',2731        nftId: 'u32',2732        resource: 'RmrkTraitsResourceSlotResource',2733      },2734      remove_resource: {2735        rmrkCollectionId: 'u32',2736        nftId: 'u32',2737        resourceId: 'u32'2738      }2739    }2740  },2741  /**2742   * Lookup320: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2743   **/2744  RmrkTraitsResourceResourceTypes: {2745    _enum: {2746      Basic: 'RmrkTraitsResourceBasicResource',2747      Composable: 'RmrkTraitsResourceComposableResource',2748      Slot: 'RmrkTraitsResourceSlotResource'2749    }2750  },2751  /**2752   * Lookup322: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2753   **/2754  RmrkTraitsResourceBasicResource: {2755    src: 'Option<Bytes>',2756    metadata: 'Option<Bytes>',2757    license: 'Option<Bytes>',2758    thumb: 'Option<Bytes>'2759  },2760  /**2761   * Lookup324: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2762   **/2763  RmrkTraitsResourceComposableResource: {2764    parts: 'Vec<u32>',2765    base: 'u32',2766    src: 'Option<Bytes>',2767    metadata: 'Option<Bytes>',2768    license: 'Option<Bytes>',2769    thumb: 'Option<Bytes>'2770  },2771  /**2772   * Lookup325: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2773   **/2774  RmrkTraitsResourceSlotResource: {2775    base: 'u32',2776    src: 'Option<Bytes>',2777    metadata: 'Option<Bytes>',2778    slot: 'u32',2779    license: 'Option<Bytes>',2780    thumb: 'Option<Bytes>'2781  },2782  /**2783   * Lookup328: pallet_rmrk_equip::pallet::Call<T>2784   **/2785  PalletRmrkEquipCall: {2786    _enum: {2787      create_base: {2788        baseType: 'Bytes',2789        symbol: 'Bytes',2790        parts: 'Vec<RmrkTraitsPartPartType>',2791      },2792      theme_add: {2793        baseId: 'u32',2794        theme: 'RmrkTraitsTheme',2795      },2796      equippable: {2797        baseId: 'u32',2798        slotId: 'u32',2799        equippables: 'RmrkTraitsPartEquippableList'2800      }2801    }2802  },2803  /**2804   * Lookup331: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2805   **/2806  RmrkTraitsPartPartType: {2807    _enum: {2808      FixedPart: 'RmrkTraitsPartFixedPart',2809      SlotPart: 'RmrkTraitsPartSlotPart'2810    }2811  },2812  /**2813   * Lookup333: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2814   **/2815  RmrkTraitsPartFixedPart: {2816    id: 'u32',2817    z: 'u32',2818    src: 'Bytes'2819  },2820  /**2821   * Lookup334: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2822   **/2823  RmrkTraitsPartSlotPart: {2824    id: 'u32',2825    equippable: 'RmrkTraitsPartEquippableList',2826    src: 'Bytes',2827    z: 'u32'2828  },2829  /**2830   * Lookup335: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2831   **/2832  RmrkTraitsPartEquippableList: {2833    _enum: {2834      All: 'Null',2835      Empty: 'Null',2836      Custom: 'Vec<u32>'2837    }2838  },2839  /**2840   * Lookup337: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>2841   **/2842  RmrkTraitsTheme: {2843    name: 'Bytes',2844    properties: 'Vec<RmrkTraitsThemeThemeProperty>',2845    inherit: 'bool'2846  },2847  /**2848   * Lookup339: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2849   **/2850  RmrkTraitsThemeThemeProperty: {2851    key: 'Bytes',2852    value: 'Bytes'2853  },2854  /**2855   * Lookup341: pallet_app_promotion::pallet::Call<T>2856   **/2857  PalletAppPromotionCall: {2858    _enum: {2859      set_admin_address: {2860        admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2861      },2862      stake: {2863        amount: 'u128',2864      },2865      unstake: 'Null',2866      sponsor_collection: {2867        collectionId: 'u32',2868      },2869      stop_sponsoring_collection: {2870        collectionId: 'u32',2871      },2872      sponsor_contract: {2873        contractId: 'H160',2874      },2875      stop_sponsoring_contract: {2876        contractId: 'H160',2877      },2878      payout_stakers: {2879        stakersNumber: 'Option<u8>'2880      }2881    }2882  },2883  /**2884   * Lookup342: pallet_foreign_assets::module::Call<T>2885   **/2886  PalletForeignAssetsModuleCall: {2887    _enum: {2888      register_foreign_asset: {2889        owner: 'AccountId32',2890        location: 'XcmVersionedMultiLocation',2891        metadata: 'PalletForeignAssetsModuleAssetMetadata',2892      },2893      update_foreign_asset: {2894        foreignAssetId: 'u32',2895        location: 'XcmVersionedMultiLocation',2896        metadata: 'PalletForeignAssetsModuleAssetMetadata'2897      }2898    }2899  },2900  /**2901   * Lookup343: pallet_evm::pallet::Call<T>2902   **/2903  PalletEvmCall: {2904    _enum: {2905      withdraw: {2906        address: 'H160',2907        value: 'u128',2908      },2909      call: {2910        source: 'H160',2911        target: 'H160',2912        input: 'Bytes',2913        value: 'U256',2914        gasLimit: 'u64',2915        maxFeePerGas: 'U256',2916        maxPriorityFeePerGas: 'Option<U256>',2917        nonce: 'Option<U256>',2918        accessList: 'Vec<(H160,Vec<H256>)>',2919      },2920      create: {2921        source: 'H160',2922        init: 'Bytes',2923        value: 'U256',2924        gasLimit: 'u64',2925        maxFeePerGas: 'U256',2926        maxPriorityFeePerGas: 'Option<U256>',2927        nonce: 'Option<U256>',2928        accessList: 'Vec<(H160,Vec<H256>)>',2929      },2930      create2: {2931        source: 'H160',2932        init: 'Bytes',2933        salt: 'H256',2934        value: 'U256',2935        gasLimit: 'u64',2936        maxFeePerGas: 'U256',2937        maxPriorityFeePerGas: 'Option<U256>',2938        nonce: 'Option<U256>',2939        accessList: 'Vec<(H160,Vec<H256>)>'2940      }2941    }2942  },2943  /**2944   * Lookup349: pallet_ethereum::pallet::Call<T>2945   **/2946  PalletEthereumCall: {2947    _enum: {2948      transact: {2949        transaction: 'EthereumTransactionTransactionV2'2950      }2951    }2952  },2953  /**2954   * Lookup350: ethereum::transaction::TransactionV22955   **/2956  EthereumTransactionTransactionV2: {2957    _enum: {2958      Legacy: 'EthereumTransactionLegacyTransaction',2959      EIP2930: 'EthereumTransactionEip2930Transaction',2960      EIP1559: 'EthereumTransactionEip1559Transaction'2961    }2962  },2963  /**2964   * Lookup351: ethereum::transaction::LegacyTransaction2965   **/2966  EthereumTransactionLegacyTransaction: {2967    nonce: 'U256',2968    gasPrice: 'U256',2969    gasLimit: 'U256',2970    action: 'EthereumTransactionTransactionAction',2971    value: 'U256',2972    input: 'Bytes',2973    signature: 'EthereumTransactionTransactionSignature'2974  },2975  /**2976   * Lookup352: ethereum::transaction::TransactionAction2977   **/2978  EthereumTransactionTransactionAction: {2979    _enum: {2980      Call: 'H160',2981      Create: 'Null'2982    }2983  },2984  /**2985   * Lookup353: ethereum::transaction::TransactionSignature2986   **/2987  EthereumTransactionTransactionSignature: {2988    v: 'u64',2989    r: 'H256',2990    s: 'H256'2991  },2992  /**2993   * Lookup355: ethereum::transaction::EIP2930Transaction2994   **/2995  EthereumTransactionEip2930Transaction: {2996    chainId: 'u64',2997    nonce: 'U256',2998    gasPrice: 'U256',2999    gasLimit: 'U256',3000    action: 'EthereumTransactionTransactionAction',3001    value: 'U256',3002    input: 'Bytes',3003    accessList: 'Vec<EthereumTransactionAccessListItem>',3004    oddYParity: 'bool',3005    r: 'H256',3006    s: 'H256'3007  },3008  /**3009   * Lookup357: ethereum::transaction::AccessListItem3010   **/3011  EthereumTransactionAccessListItem: {3012    address: 'H160',3013    storageKeys: 'Vec<H256>'3014  },3015  /**3016   * Lookup358: ethereum::transaction::EIP1559Transaction3017   **/3018  EthereumTransactionEip1559Transaction: {3019    chainId: 'u64',3020    nonce: 'U256',3021    maxPriorityFeePerGas: 'U256',3022    maxFeePerGas: 'U256',3023    gasLimit: 'U256',3024    action: 'EthereumTransactionTransactionAction',3025    value: 'U256',3026    input: 'Bytes',3027    accessList: 'Vec<EthereumTransactionAccessListItem>',3028    oddYParity: 'bool',3029    r: 'H256',3030    s: 'H256'3031  },3032  /**3033   * Lookup359: pallet_evm_migration::pallet::Call<T>3034   **/3035  PalletEvmMigrationCall: {3036    _enum: {3037      begin: {3038        address: 'H160',3039      },3040      set_data: {3041        address: 'H160',3042        data: 'Vec<(H256,H256)>',3043      },3044      finish: {3045        address: 'H160',3046        code: 'Bytes',3047      },3048      insert_eth_logs: {3049        logs: 'Vec<EthereumLog>',3050      },3051      insert_events: {3052        events: 'Vec<Bytes>'3053      }3054    }3055  },3056  /**3057   * Lookup363: pallet_maintenance::pallet::Call<T>3058   **/3059  PalletMaintenanceCall: {3060    _enum: ['enable', 'disable']3061  },3062  /**3063   * Lookup364: pallet_test_utils::pallet::Call<T>3064   **/3065  PalletTestUtilsCall: {3066    _enum: {3067      enable: 'Null',3068      set_test_value: {3069        value: 'u32',3070      },3071      set_test_value_and_rollback: {3072        value: 'u32',3073      },3074      inc_test_value: 'Null',3075      just_take_fee: 'Null',3076      batch_all: {3077        calls: 'Vec<Call>'3078      }3079    }3080  },3081  /**3082   * Lookup366: pallet_sudo::pallet::Error<T>3083   **/3084  PalletSudoError: {3085    _enum: ['RequireSudo']3086  },3087  /**3088   * Lookup368: orml_vesting::module::Error<T>3089   **/3090  OrmlVestingModuleError: {3091    _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3092  },3093  /**3094   * Lookup369: orml_xtokens::module::Error<T>3095   **/3096  OrmlXtokensModuleError: {3097    _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3098  },3099  /**3100   * Lookup372: orml_tokens::BalanceLock<Balance>3101   **/3102  OrmlTokensBalanceLock: {3103    id: '[u8;8]',3104    amount: 'u128'3105  },3106  /**3107   * Lookup374: orml_tokens::AccountData<Balance>3108   **/3109  OrmlTokensAccountData: {3110    free: 'u128',3111    reserved: 'u128',3112    frozen: 'u128'3113  },3114  /**3115   * Lookup376: orml_tokens::ReserveData<ReserveIdentifier, Balance>3116   **/3117  OrmlTokensReserveData: {3118    id: 'Null',3119    amount: 'u128'3120  },3121  /**3122   * Lookup378: orml_tokens::module::Error<T>3123   **/3124  OrmlTokensModuleError: {3125    _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3126  },3127  /**3128   * Lookup380: cumulus_pallet_xcmp_queue::InboundChannelDetails3129   **/3130  CumulusPalletXcmpQueueInboundChannelDetails: {3131    sender: 'u32',3132    state: 'CumulusPalletXcmpQueueInboundState',3133    messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3134  },3135  /**3136   * Lookup381: cumulus_pallet_xcmp_queue::InboundState3137   **/3138  CumulusPalletXcmpQueueInboundState: {3139    _enum: ['Ok', 'Suspended']3140  },3141  /**3142   * Lookup384: polkadot_parachain::primitives::XcmpMessageFormat3143   **/3144  PolkadotParachainPrimitivesXcmpMessageFormat: {3145    _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3146  },3147  /**3148   * Lookup387: cumulus_pallet_xcmp_queue::OutboundChannelDetails3149   **/3150  CumulusPalletXcmpQueueOutboundChannelDetails: {3151    recipient: 'u32',3152    state: 'CumulusPalletXcmpQueueOutboundState',3153    signalsExist: 'bool',3154    firstIndex: 'u16',3155    lastIndex: 'u16'3156  },3157  /**3158   * Lookup388: cumulus_pallet_xcmp_queue::OutboundState3159   **/3160  CumulusPalletXcmpQueueOutboundState: {3161    _enum: ['Ok', 'Suspended']3162  },3163  /**3164   * Lookup390: cumulus_pallet_xcmp_queue::QueueConfigData3165   **/3166  CumulusPalletXcmpQueueQueueConfigData: {3167    suspendThreshold: 'u32',3168    dropThreshold: 'u32',3169    resumeThreshold: 'u32',3170    thresholdWeight: 'SpWeightsWeightV2Weight',3171    weightRestrictDecay: 'SpWeightsWeightV2Weight',3172    xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3173  },3174  /**3175   * Lookup392: cumulus_pallet_xcmp_queue::pallet::Error<T>3176   **/3177  CumulusPalletXcmpQueueError: {3178    _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3179  },3180  /**3181   * Lookup393: pallet_xcm::pallet::Error<T>3182   **/3183  PalletXcmError: {3184    _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3185  },3186  /**3187   * Lookup394: cumulus_pallet_xcm::pallet::Error<T>3188   **/3189  CumulusPalletXcmError: 'Null',3190  /**3191   * Lookup395: cumulus_pallet_dmp_queue::ConfigData3192   **/3193  CumulusPalletDmpQueueConfigData: {3194    maxIndividual: 'SpWeightsWeightV2Weight'3195  },3196  /**3197   * Lookup396: cumulus_pallet_dmp_queue::PageIndexData3198   **/3199  CumulusPalletDmpQueuePageIndexData: {3200    beginUsed: 'u32',3201    endUsed: 'u32',3202    overweightCount: 'u64'3203  },3204  /**3205   * Lookup399: cumulus_pallet_dmp_queue::pallet::Error<T>3206   **/3207  CumulusPalletDmpQueueError: {3208    _enum: ['Unknown', 'OverLimit']3209  },3210  /**3211   * Lookup403: pallet_unique::Error<T>3212   **/3213  PalletUniqueError: {3214    _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3215  },3216  /**3217   * Lookup404: pallet_configuration::pallet::Error<T>3218   **/3219  PalletConfigurationError: {3220    _enum: ['InconsistentConfiguration']3221  },3222  /**3223   * Lookup405: up_data_structs::Collection<sp_core::crypto::AccountId32>3224   **/3225  UpDataStructsCollection: {3226    owner: 'AccountId32',3227    mode: 'UpDataStructsCollectionMode',3228    name: 'Vec<u16>',3229    description: 'Vec<u16>',3230    tokenPrefix: 'Bytes',3231    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3232    limits: 'UpDataStructsCollectionLimits',3233    permissions: 'UpDataStructsCollectionPermissions',3234    flags: '[u8;1]'3235  },3236  /**3237   * Lookup406: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3238   **/3239  UpDataStructsSponsorshipStateAccountId32: {3240    _enum: {3241      Disabled: 'Null',3242      Unconfirmed: 'AccountId32',3243      Confirmed: 'AccountId32'3244    }3245  },3246  /**3247   * Lookup408: up_data_structs::Properties3248   **/3249  UpDataStructsProperties: {3250    map: 'UpDataStructsPropertiesMapBoundedVec',3251    consumedSpace: 'u32',3252    spaceLimit: 'u32'3253  },3254  /**3255   * Lookup409: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3256   **/3257  UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3258  /**3259   * Lookup414: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3260   **/3261  UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3262  /**3263   * Lookup421: up_data_structs::CollectionStats3264   **/3265  UpDataStructsCollectionStats: {3266    created: 'u32',3267    destroyed: 'u32',3268    alive: 'u32'3269  },3270  /**3271   * Lookup422: up_data_structs::TokenChild3272   **/3273  UpDataStructsTokenChild: {3274    token: 'u32',3275    collection: 'u32'3276  },3277  /**3278   * Lookup423: PhantomType::up_data_structs<T>3279   **/3280  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3281  /**3282   * Lookup425: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3283   **/3284  UpDataStructsTokenData: {3285    properties: 'Vec<UpDataStructsProperty>',3286    owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3287    pieces: 'u128'3288  },3289  /**3290   * Lookup427: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3291   **/3292  UpDataStructsRpcCollection: {3293    owner: 'AccountId32',3294    mode: 'UpDataStructsCollectionMode',3295    name: 'Vec<u16>',3296    description: 'Vec<u16>',3297    tokenPrefix: 'Bytes',3298    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3299    limits: 'UpDataStructsCollectionLimits',3300    permissions: 'UpDataStructsCollectionPermissions',3301    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3302    properties: 'Vec<UpDataStructsProperty>',3303    readOnly: 'bool',3304    flags: 'UpDataStructsRpcCollectionFlags'3305  },3306  /**3307   * Lookup428: up_data_structs::RpcCollectionFlags3308   **/3309  UpDataStructsRpcCollectionFlags: {3310    foreign: 'bool',3311    erc721metadata: 'bool'3312  },3313  /**3314   * Lookup429: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3315   **/3316  RmrkTraitsCollectionCollectionInfo: {3317    issuer: 'AccountId32',3318    metadata: 'Bytes',3319    max: 'Option<u32>',3320    symbol: 'Bytes',3321    nftsCount: 'u32'3322  },3323  /**3324   * Lookup430: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3325   **/3326  RmrkTraitsNftNftInfo: {3327    owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3328    royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3329    metadata: 'Bytes',3330    equipped: 'bool',3331    pending: 'bool'3332  },3333  /**3334   * Lookup432: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3335   **/3336  RmrkTraitsNftRoyaltyInfo: {3337    recipient: 'AccountId32',3338    amount: 'Permill'3339  },3340  /**3341   * Lookup433: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3342   **/3343  RmrkTraitsResourceResourceInfo: {3344    id: 'u32',3345    resource: 'RmrkTraitsResourceResourceTypes',3346    pending: 'bool',3347    pendingRemoval: 'bool'3348  },3349  /**3350   * Lookup434: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3351   **/3352  RmrkTraitsPropertyPropertyInfo: {3353    key: 'Bytes',3354    value: 'Bytes'3355  },3356  /**3357   * Lookup435: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3358   **/3359  RmrkTraitsBaseBaseInfo: {3360    issuer: 'AccountId32',3361    baseType: 'Bytes',3362    symbol: 'Bytes'3363  },3364  /**3365   * Lookup436: rmrk_traits::nft::NftChild3366   **/3367  RmrkTraitsNftNftChild: {3368    collectionId: 'u32',3369    nftId: 'u32'3370  },3371  /**3372   * Lookup438: pallet_common::pallet::Error<T>3373   **/3374  PalletCommonError: {3375    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3376  },3377  /**3378   * Lookup440: pallet_fungible::pallet::Error<T>3379   **/3380  PalletFungibleError: {3381    _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3382  },3383  /**3384   * Lookup441: pallet_refungible::ItemData3385   **/3386  PalletRefungibleItemData: {3387    constData: 'Bytes'3388  },3389  /**3390   * Lookup446: pallet_refungible::pallet::Error<T>3391   **/3392  PalletRefungibleError: {3393    _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3394  },3395  /**3396   * Lookup447: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3397   **/3398  PalletNonfungibleItemData: {3399    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3400  },3401  /**3402   * Lookup449: up_data_structs::PropertyScope3403   **/3404  UpDataStructsPropertyScope: {3405    _enum: ['None', 'Rmrk']3406  },3407  /**3408   * Lookup451: pallet_nonfungible::pallet::Error<T>3409   **/3410  PalletNonfungibleError: {3411    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3412  },3413  /**3414   * Lookup452: pallet_structure::pallet::Error<T>3415   **/3416  PalletStructureError: {3417    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3418  },3419  /**3420   * Lookup453: pallet_rmrk_core::pallet::Error<T>3421   **/3422  PalletRmrkCoreError: {3423    _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3424  },3425  /**3426   * Lookup455: pallet_rmrk_equip::pallet::Error<T>3427   **/3428  PalletRmrkEquipError: {3429    _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3430  },3431  /**3432   * Lookup461: pallet_app_promotion::pallet::Error<T>3433   **/3434  PalletAppPromotionError: {3435    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3436  },3437  /**3438   * Lookup462: pallet_foreign_assets::module::Error<T>3439   **/3440  PalletForeignAssetsModuleError: {3441    _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3442  },3443  /**3444   * Lookup464: pallet_evm::pallet::Error<T>3445   **/3446  PalletEvmError: {3447    _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3448  },3449  /**3450   * Lookup467: fp_rpc::TransactionStatus3451   **/3452  FpRpcTransactionStatus: {3453    transactionHash: 'H256',3454    transactionIndex: 'u32',3455    from: 'H160',3456    to: 'Option<H160>',3457    contractAddress: 'Option<H160>',3458    logs: 'Vec<EthereumLog>',3459    logsBloom: 'EthbloomBloom'3460  },3461  /**3462   * Lookup469: ethbloom::Bloom3463   **/3464  EthbloomBloom: '[u8;256]',3465  /**3466   * Lookup471: ethereum::receipt::ReceiptV33467   **/3468  EthereumReceiptReceiptV3: {3469    _enum: {3470      Legacy: 'EthereumReceiptEip658ReceiptData',3471      EIP2930: 'EthereumReceiptEip658ReceiptData',3472      EIP1559: 'EthereumReceiptEip658ReceiptData'3473    }3474  },3475  /**3476   * Lookup472: ethereum::receipt::EIP658ReceiptData3477   **/3478  EthereumReceiptEip658ReceiptData: {3479    statusCode: 'u8',3480    usedGas: 'U256',3481    logsBloom: 'EthbloomBloom',3482    logs: 'Vec<EthereumLog>'3483  },3484  /**3485   * Lookup473: ethereum::block::Block<ethereum::transaction::TransactionV2>3486   **/3487  EthereumBlock: {3488    header: 'EthereumHeader',3489    transactions: 'Vec<EthereumTransactionTransactionV2>',3490    ommers: 'Vec<EthereumHeader>'3491  },3492  /**3493   * Lookup474: ethereum::header::Header3494   **/3495  EthereumHeader: {3496    parentHash: 'H256',3497    ommersHash: 'H256',3498    beneficiary: 'H160',3499    stateRoot: 'H256',3500    transactionsRoot: 'H256',3501    receiptsRoot: 'H256',3502    logsBloom: 'EthbloomBloom',3503    difficulty: 'U256',3504    number: 'U256',3505    gasLimit: 'U256',3506    gasUsed: 'U256',3507    timestamp: 'u64',3508    extraData: 'Bytes',3509    mixHash: 'H256',3510    nonce: 'EthereumTypesHashH64'3511  },3512  /**3513   * Lookup475: ethereum_types::hash::H643514   **/3515  EthereumTypesHashH64: '[u8;8]',3516  /**3517   * Lookup480: pallet_ethereum::pallet::Error<T>3518   **/3519  PalletEthereumError: {3520    _enum: ['InvalidSignature', 'PreLogExists']3521  },3522  /**3523   * Lookup481: pallet_evm_coder_substrate::pallet::Error<T>3524   **/3525  PalletEvmCoderSubstrateError: {3526    _enum: ['OutOfGas', 'OutOfFund']3527  },3528  /**3529   * Lookup482: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3530   **/3531  UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3532    _enum: {3533      Disabled: 'Null',3534      Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3535      Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3536    }3537  },3538  /**3539   * Lookup483: pallet_evm_contract_helpers::SponsoringModeT3540   **/3541  PalletEvmContractHelpersSponsoringModeT: {3542    _enum: ['Disabled', 'Allowlisted', 'Generous']3543  },3544  /**3545   * Lookup489: pallet_evm_contract_helpers::pallet::Error<T>3546   **/3547  PalletEvmContractHelpersError: {3548    _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3549  },3550  /**3551   * Lookup490: pallet_evm_migration::pallet::Error<T>3552   **/3553  PalletEvmMigrationError: {3554    _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3555  },3556  /**3557   * Lookup491: pallet_maintenance::pallet::Error<T>3558   **/3559  PalletMaintenanceError: 'Null',3560  /**3561   * Lookup492: pallet_test_utils::pallet::Error<T>3562   **/3563  PalletTestUtilsError: {3564    _enum: ['TestPalletDisabled', 'TriggerRollback']3565  },3566  /**3567   * Lookup494: sp_runtime::MultiSignature3568   **/3569  SpRuntimeMultiSignature: {3570    _enum: {3571      Ed25519: 'SpCoreEd25519Signature',3572      Sr25519: 'SpCoreSr25519Signature',3573      Ecdsa: 'SpCoreEcdsaSignature'3574    }3575  },3576  /**3577   * Lookup495: sp_core::ed25519::Signature3578   **/3579  SpCoreEd25519Signature: '[u8;64]',3580  /**3581   * Lookup497: sp_core::sr25519::Signature3582   **/3583  SpCoreSr25519Signature: '[u8;64]',3584  /**3585   * Lookup498: sp_core::ecdsa::Signature3586   **/3587  SpCoreEcdsaSignature: '[u8;65]',3588  /**3589   * Lookup501: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3590   **/3591  FrameSystemExtensionsCheckSpecVersion: 'Null',3592  /**3593   * Lookup502: frame_system::extensions::check_tx_version::CheckTxVersion<T>3594   **/3595  FrameSystemExtensionsCheckTxVersion: 'Null',3596  /**3597   * Lookup503: frame_system::extensions::check_genesis::CheckGenesis<T>3598   **/3599  FrameSystemExtensionsCheckGenesis: 'Null',3600  /**3601   * Lookup506: frame_system::extensions::check_nonce::CheckNonce<T>3602   **/3603  FrameSystemExtensionsCheckNonce: 'Compact<u32>',3604  /**3605   * Lookup507: frame_system::extensions::check_weight::CheckWeight<T>3606   **/3607  FrameSystemExtensionsCheckWeight: 'Null',3608  /**3609   * Lookup508: opal_runtime::runtime_common::maintenance::CheckMaintenance3610   **/3611  OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3612  /**3613   * Lookup509: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3614   **/3615  PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3616  /**3617   * Lookup510: opal_runtime::Runtime3618   **/3619  OpalRuntimeRuntime: 'Null',3620  /**3621   * Lookup511: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3622   **/3623  PalletEthereumFakeTransactionFinalizer: 'Null'3624};
after · tests/src/interfaces/lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7  /**8   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9   **/10  FrameSystemAccountInfo: {11    nonce: 'u32',12    consumers: 'u32',13    providers: 'u32',14    sufficients: 'u32',15    data: 'PalletBalancesAccountData'16  },17  /**18   * Lookup5: pallet_balances::AccountData<Balance>19   **/20  PalletBalancesAccountData: {21    free: 'u128',22    reserved: 'u128',23    miscFrozen: 'u128',24    feeFrozen: 'u128'25  },26  /**27   * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28   **/29  FrameSupportDispatchPerDispatchClassWeight: {30    normal: 'SpWeightsWeightV2Weight',31    operational: 'SpWeightsWeightV2Weight',32    mandatory: 'SpWeightsWeightV2Weight'33  },34  /**35   * Lookup8: sp_weights::weight_v2::Weight36   **/37  SpWeightsWeightV2Weight: {38    refTime: 'Compact<u64>',39    proofSize: 'Compact<u64>'40  },41  /**42   * Lookup13: sp_runtime::generic::digest::Digest43   **/44  SpRuntimeDigest: {45    logs: 'Vec<SpRuntimeDigestDigestItem>'46  },47  /**48   * Lookup15: sp_runtime::generic::digest::DigestItem49   **/50  SpRuntimeDigestDigestItem: {51    _enum: {52      Other: 'Bytes',53      __Unused1: 'Null',54      __Unused2: 'Null',55      __Unused3: 'Null',56      Consensus: '([u8;4],Bytes)',57      Seal: '([u8;4],Bytes)',58      PreRuntime: '([u8;4],Bytes)',59      __Unused7: 'Null',60      RuntimeEnvironmentUpdated: 'Null'61    }62  },63  /**64   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65   **/66  FrameSystemEventRecord: {67    phase: 'FrameSystemPhase',68    event: 'Event',69    topics: 'Vec<H256>'70  },71  /**72   * Lookup20: frame_system::pallet::Event<T>73   **/74  FrameSystemEvent: {75    _enum: {76      ExtrinsicSuccess: {77        dispatchInfo: 'FrameSupportDispatchDispatchInfo',78      },79      ExtrinsicFailed: {80        dispatchError: 'SpRuntimeDispatchError',81        dispatchInfo: 'FrameSupportDispatchDispatchInfo',82      },83      CodeUpdated: 'Null',84      NewAccount: {85        account: 'AccountId32',86      },87      KilledAccount: {88        account: 'AccountId32',89      },90      Remarked: {91        _alias: {92          hash_: 'hash',93        },94        sender: 'AccountId32',95        hash_: 'H256'96      }97    }98  },99  /**100   * Lookup21: frame_support::dispatch::DispatchInfo101   **/102  FrameSupportDispatchDispatchInfo: {103    weight: 'SpWeightsWeightV2Weight',104    class: 'FrameSupportDispatchDispatchClass',105    paysFee: 'FrameSupportDispatchPays'106  },107  /**108   * Lookup22: frame_support::dispatch::DispatchClass109   **/110  FrameSupportDispatchDispatchClass: {111    _enum: ['Normal', 'Operational', 'Mandatory']112  },113  /**114   * Lookup23: frame_support::dispatch::Pays115   **/116  FrameSupportDispatchPays: {117    _enum: ['Yes', 'No']118  },119  /**120   * Lookup24: sp_runtime::DispatchError121   **/122  SpRuntimeDispatchError: {123    _enum: {124      Other: 'Null',125      CannotLookup: 'Null',126      BadOrigin: 'Null',127      Module: 'SpRuntimeModuleError',128      ConsumerRemaining: 'Null',129      NoProviders: 'Null',130      TooManyConsumers: 'Null',131      Token: 'SpRuntimeTokenError',132      Arithmetic: 'SpRuntimeArithmeticError',133      Transactional: 'SpRuntimeTransactionalError',134      Exhausted: 'Null',135      Corruption: 'Null',136      Unavailable: 'Null'137    }138  },139  /**140   * Lookup25: sp_runtime::ModuleError141   **/142  SpRuntimeModuleError: {143    index: 'u8',144    error: '[u8;4]'145  },146  /**147   * Lookup26: sp_runtime::TokenError148   **/149  SpRuntimeTokenError: {150    _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151  },152  /**153   * Lookup27: sp_runtime::ArithmeticError154   **/155  SpRuntimeArithmeticError: {156    _enum: ['Underflow', 'Overflow', 'DivisionByZero']157  },158  /**159   * Lookup28: sp_runtime::TransactionalError160   **/161  SpRuntimeTransactionalError: {162    _enum: ['LimitReached', 'NoLayer']163  },164  /**165   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166   **/167  CumulusPalletParachainSystemEvent: {168    _enum: {169      ValidationFunctionStored: 'Null',170      ValidationFunctionApplied: {171        relayChainBlockNum: 'u32',172      },173      ValidationFunctionDiscarded: 'Null',174      UpgradeAuthorized: {175        codeHash: 'H256',176      },177      DownwardMessagesReceived: {178        count: 'u32',179      },180      DownwardMessagesProcessed: {181        weightUsed: 'SpWeightsWeightV2Weight',182        dmqHead: 'H256'183      }184    }185  },186  /**187   * Lookup30: pallet_collator_selection::pallet::Event<T>188   **/189  PalletCollatorSelectionEvent: {190    _enum: {191      InvulnerableAdded: {192        invulnerable: 'AccountId32',193      },194      InvulnerableRemoved: {195        invulnerable: 'AccountId32',196      },197      LicenseObtained: {198        accountId: 'AccountId32',199        deposit: 'u128',200      },201      LicenseForfeited: {202        accountId: 'AccountId32',203        depositReturned: 'u128',204      },205      CandidateAdded: {206        accountId: 'AccountId32',207      },208      CandidateRemoved: {209        accountId: 'AccountId32'210      }211    }212  },213  /**214   * Lookup31: pallet_session::pallet::Event215   **/216  PalletSessionEvent: {217    _enum: {218      NewSession: {219        sessionIndex: 'u32'220      }221    }222  },223  /**224   * Lookup32: pallet_identity::pallet::Event<T>225   **/226  PalletIdentityEvent: {227    _enum: {228      IdentitySet: {229        who: 'AccountId32',230      },231      IdentityCleared: {232        who: 'AccountId32',233        deposit: 'u128',234      },235      IdentityKilled: {236        who: 'AccountId32',237        deposit: 'u128',238      },239      JudgementRequested: {240        who: 'AccountId32',241        registrarIndex: 'u32',242      },243      JudgementUnrequested: {244        who: 'AccountId32',245        registrarIndex: 'u32',246      },247      JudgementGiven: {248        target: 'AccountId32',249        registrarIndex: 'u32',250      },251      RegistrarAdded: {252        registrarIndex: 'u32',253      },254      SubIdentityAdded: {255        sub: 'AccountId32',256        main: 'AccountId32',257        deposit: 'u128',258      },259      SubIdentityRemoved: {260        sub: 'AccountId32',261        main: 'AccountId32',262        deposit: 'u128',263      },264      SubIdentityRevoked: {265        sub: 'AccountId32',266        main: 'AccountId32',267        deposit: 'u128'268      }269    }270  },271  /**272   * Lookup33: pallet_balances::pallet::Event<T, I>273   **/274  PalletBalancesEvent: {275    _enum: {276      Endowed: {277        account: 'AccountId32',278        freeBalance: 'u128',279      },280      DustLost: {281        account: 'AccountId32',282        amount: 'u128',283      },284      Transfer: {285        from: 'AccountId32',286        to: 'AccountId32',287        amount: 'u128',288      },289      BalanceSet: {290        who: 'AccountId32',291        free: 'u128',292        reserved: 'u128',293      },294      Reserved: {295        who: 'AccountId32',296        amount: 'u128',297      },298      Unreserved: {299        who: 'AccountId32',300        amount: 'u128',301      },302      ReserveRepatriated: {303        from: 'AccountId32',304        to: 'AccountId32',305        amount: 'u128',306        destinationStatus: 'FrameSupportTokensMiscBalanceStatus',307      },308      Deposit: {309        who: 'AccountId32',310        amount: 'u128',311      },312      Withdraw: {313        who: 'AccountId32',314        amount: 'u128',315      },316      Slashed: {317        who: 'AccountId32',318        amount: 'u128'319      }320    }321  },322  /**323   * Lookup34: frame_support::traits::tokens::misc::BalanceStatus324   **/325  FrameSupportTokensMiscBalanceStatus: {326    _enum: ['Free', 'Reserved']327  },328  /**329   * Lookup35: pallet_transaction_payment::pallet::Event<T>330   **/331  PalletTransactionPaymentEvent: {332    _enum: {333      TransactionFeePaid: {334        who: 'AccountId32',335        actualFee: 'u128',336        tip: 'u128'337      }338    }339  },340  /**341   * Lookup36: pallet_treasury::pallet::Event<T, I>342   **/343  PalletTreasuryEvent: {344    _enum: {345      Proposed: {346        proposalIndex: 'u32',347      },348      Spending: {349        budgetRemaining: 'u128',350      },351      Awarded: {352        proposalIndex: 'u32',353        award: 'u128',354        account: 'AccountId32',355      },356      Rejected: {357        proposalIndex: 'u32',358        slashed: 'u128',359      },360      Burnt: {361        burntFunds: 'u128',362      },363      Rollover: {364        rolloverBalance: 'u128',365      },366      Deposit: {367        value: 'u128',368      },369      SpendApproved: {370        proposalIndex: 'u32',371        amount: 'u128',372        beneficiary: 'AccountId32'373      }374    }375  },376  /**377   * Lookup37: pallet_sudo::pallet::Event<T>378   **/379  PalletSudoEvent: {380    _enum: {381      Sudid: {382        sudoResult: 'Result<Null, SpRuntimeDispatchError>',383      },384      KeyChanged: {385        oldSudoer: 'Option<AccountId32>',386      },387      SudoAsDone: {388        sudoResult: 'Result<Null, SpRuntimeDispatchError>'389      }390    }391  },392  /**393   * Lookup41: orml_vesting::module::Event<T>394   **/395  OrmlVestingModuleEvent: {396    _enum: {397      VestingScheduleAdded: {398        from: 'AccountId32',399        to: 'AccountId32',400        vestingSchedule: 'OrmlVestingVestingSchedule',401      },402      Claimed: {403        who: 'AccountId32',404        amount: 'u128',405      },406      VestingSchedulesUpdated: {407        who: 'AccountId32'408      }409    }410  },411  /**412   * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>413   **/414  OrmlVestingVestingSchedule: {415    start: 'u32',416    period: 'u32',417    periodCount: 'u32',418    perPeriod: 'Compact<u128>'419  },420  /**421   * Lookup44: orml_xtokens::module::Event<T>422   **/423  OrmlXtokensModuleEvent: {424    _enum: {425      TransferredMultiAssets: {426        sender: 'AccountId32',427        assets: 'XcmV1MultiassetMultiAssets',428        fee: 'XcmV1MultiAsset',429        dest: 'XcmV1MultiLocation'430      }431    }432  },433  /**434   * Lookup45: xcm::v1::multiasset::MultiAssets435   **/436  XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',437  /**438   * Lookup47: xcm::v1::multiasset::MultiAsset439   **/440  XcmV1MultiAsset: {441    id: 'XcmV1MultiassetAssetId',442    fun: 'XcmV1MultiassetFungibility'443  },444  /**445   * Lookup48: xcm::v1::multiasset::AssetId446   **/447  XcmV1MultiassetAssetId: {448    _enum: {449      Concrete: 'XcmV1MultiLocation',450      Abstract: 'Bytes'451    }452  },453  /**454   * Lookup49: xcm::v1::multilocation::MultiLocation455   **/456  XcmV1MultiLocation: {457    parents: 'u8',458    interior: 'XcmV1MultilocationJunctions'459  },460  /**461   * Lookup50: xcm::v1::multilocation::Junctions462   **/463  XcmV1MultilocationJunctions: {464    _enum: {465      Here: 'Null',466      X1: 'XcmV1Junction',467      X2: '(XcmV1Junction,XcmV1Junction)',468      X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',469      X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',470      X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',471      X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',472      X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',473      X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'474    }475  },476  /**477   * Lookup51: xcm::v1::junction::Junction478   **/479  XcmV1Junction: {480    _enum: {481      Parachain: 'Compact<u32>',482      AccountId32: {483        network: 'XcmV0JunctionNetworkId',484        id: '[u8;32]',485      },486      AccountIndex64: {487        network: 'XcmV0JunctionNetworkId',488        index: 'Compact<u64>',489      },490      AccountKey20: {491        network: 'XcmV0JunctionNetworkId',492        key: '[u8;20]',493      },494      PalletInstance: 'u8',495      GeneralIndex: 'Compact<u128>',496      GeneralKey: 'Bytes',497      OnlyChild: 'Null',498      Plurality: {499        id: 'XcmV0JunctionBodyId',500        part: 'XcmV0JunctionBodyPart'501      }502    }503  },504  /**505   * Lookup53: xcm::v0::junction::NetworkId506   **/507  XcmV0JunctionNetworkId: {508    _enum: {509      Any: 'Null',510      Named: 'Bytes',511      Polkadot: 'Null',512      Kusama: 'Null'513    }514  },515  /**516   * Lookup56: xcm::v0::junction::BodyId517   **/518  XcmV0JunctionBodyId: {519    _enum: {520      Unit: 'Null',521      Named: 'Bytes',522      Index: 'Compact<u32>',523      Executive: 'Null',524      Technical: 'Null',525      Legislative: 'Null',526      Judicial: 'Null'527    }528  },529  /**530   * Lookup57: xcm::v0::junction::BodyPart531   **/532  XcmV0JunctionBodyPart: {533    _enum: {534      Voice: 'Null',535      Members: {536        count: 'Compact<u32>',537      },538      Fraction: {539        nom: 'Compact<u32>',540        denom: 'Compact<u32>',541      },542      AtLeastProportion: {543        nom: 'Compact<u32>',544        denom: 'Compact<u32>',545      },546      MoreThanProportion: {547        nom: 'Compact<u32>',548        denom: 'Compact<u32>'549      }550    }551  },552  /**553   * Lookup58: xcm::v1::multiasset::Fungibility554   **/555  XcmV1MultiassetFungibility: {556    _enum: {557      Fungible: 'Compact<u128>',558      NonFungible: 'XcmV1MultiassetAssetInstance'559    }560  },561  /**562   * Lookup59: xcm::v1::multiasset::AssetInstance563   **/564  XcmV1MultiassetAssetInstance: {565    _enum: {566      Undefined: 'Null',567      Index: 'Compact<u128>',568      Array4: '[u8;4]',569      Array8: '[u8;8]',570      Array16: '[u8;16]',571      Array32: '[u8;32]',572      Blob: 'Bytes'573    }574  },575  /**576   * Lookup62: orml_tokens::module::Event<T>577   **/578  OrmlTokensModuleEvent: {579    _enum: {580      Endowed: {581        currencyId: 'PalletForeignAssetsAssetIds',582        who: 'AccountId32',583        amount: 'u128',584      },585      DustLost: {586        currencyId: 'PalletForeignAssetsAssetIds',587        who: 'AccountId32',588        amount: 'u128',589      },590      Transfer: {591        currencyId: 'PalletForeignAssetsAssetIds',592        from: 'AccountId32',593        to: 'AccountId32',594        amount: 'u128',595      },596      Reserved: {597        currencyId: 'PalletForeignAssetsAssetIds',598        who: 'AccountId32',599        amount: 'u128',600      },601      Unreserved: {602        currencyId: 'PalletForeignAssetsAssetIds',603        who: 'AccountId32',604        amount: 'u128',605      },606      ReserveRepatriated: {607        currencyId: 'PalletForeignAssetsAssetIds',608        from: 'AccountId32',609        to: 'AccountId32',610        amount: 'u128',611        status: 'FrameSupportTokensMiscBalanceStatus',612      },613      BalanceSet: {614        currencyId: 'PalletForeignAssetsAssetIds',615        who: 'AccountId32',616        free: 'u128',617        reserved: 'u128',618      },619      TotalIssuanceSet: {620        currencyId: 'PalletForeignAssetsAssetIds',621        amount: 'u128',622      },623      Withdrawn: {624        currencyId: 'PalletForeignAssetsAssetIds',625        who: 'AccountId32',626        amount: 'u128',627      },628      Slashed: {629        currencyId: 'PalletForeignAssetsAssetIds',630        who: 'AccountId32',631        freeAmount: 'u128',632        reservedAmount: 'u128',633      },634      Deposited: {635        currencyId: 'PalletForeignAssetsAssetIds',636        who: 'AccountId32',637        amount: 'u128',638      },639      LockSet: {640        lockId: '[u8;8]',641        currencyId: 'PalletForeignAssetsAssetIds',642        who: 'AccountId32',643        amount: 'u128',644      },645      LockRemoved: {646        lockId: '[u8;8]',647        currencyId: 'PalletForeignAssetsAssetIds',648        who: 'AccountId32'649      }650    }651  },652  /**653   * Lookup63: pallet_foreign_assets::AssetIds654   **/655  PalletForeignAssetsAssetIds: {656    _enum: {657      ForeignAssetId: 'u32',658      NativeAssetId: 'PalletForeignAssetsNativeCurrency'659    }660  },661  /**662   * Lookup64: pallet_foreign_assets::NativeCurrency663   **/664  PalletForeignAssetsNativeCurrency: {665    _enum: ['Here', 'Parent']666  },667  /**668   * Lookup65: cumulus_pallet_xcmp_queue::pallet::Event<T>669   **/670  CumulusPalletXcmpQueueEvent: {671    _enum: {672      Success: {673        messageHash: 'Option<H256>',674        weight: 'SpWeightsWeightV2Weight',675      },676      Fail: {677        messageHash: 'Option<H256>',678        error: 'XcmV2TraitsError',679        weight: 'SpWeightsWeightV2Weight',680      },681      BadVersion: {682        messageHash: 'Option<H256>',683      },684      BadFormat: {685        messageHash: 'Option<H256>',686      },687      UpwardMessageSent: {688        messageHash: 'Option<H256>',689      },690      XcmpMessageSent: {691        messageHash: 'Option<H256>',692      },693      OverweightEnqueued: {694        sender: 'u32',695        sentAt: 'u32',696        index: 'u64',697        required: 'SpWeightsWeightV2Weight',698      },699      OverweightServiced: {700        index: 'u64',701        used: 'SpWeightsWeightV2Weight'702      }703    }704  },705  /**706   * Lookup67: xcm::v2::traits::Error707   **/708  XcmV2TraitsError: {709    _enum: {710      Overflow: 'Null',711      Unimplemented: 'Null',712      UntrustedReserveLocation: 'Null',713      UntrustedTeleportLocation: 'Null',714      MultiLocationFull: 'Null',715      MultiLocationNotInvertible: 'Null',716      BadOrigin: 'Null',717      InvalidLocation: 'Null',718      AssetNotFound: 'Null',719      FailedToTransactAsset: 'Null',720      NotWithdrawable: 'Null',721      LocationCannotHold: 'Null',722      ExceedsMaxMessageSize: 'Null',723      DestinationUnsupported: 'Null',724      Transport: 'Null',725      Unroutable: 'Null',726      UnknownClaim: 'Null',727      FailedToDecode: 'Null',728      MaxWeightInvalid: 'Null',729      NotHoldingFees: 'Null',730      TooExpensive: 'Null',731      Trap: 'u64',732      UnhandledXcmVersion: 'Null',733      WeightLimitReached: 'u64',734      Barrier: 'Null',735      WeightNotComputable: 'Null'736    }737  },738  /**739   * Lookup69: pallet_xcm::pallet::Event<T>740   **/741  PalletXcmEvent: {742    _enum: {743      Attempted: 'XcmV2TraitsOutcome',744      Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',745      UnexpectedResponse: '(XcmV1MultiLocation,u64)',746      ResponseReady: '(u64,XcmV2Response)',747      Notified: '(u64,u8,u8)',748      NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',749      NotifyDispatchError: '(u64,u8,u8)',750      NotifyDecodeFailed: '(u64,u8,u8)',751      InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',752      InvalidResponderVersion: '(XcmV1MultiLocation,u64)',753      ResponseTaken: 'u64',754      AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',755      VersionChangeNotified: '(XcmV1MultiLocation,u32)',756      SupportedVersionChanged: '(XcmV1MultiLocation,u32)',757      NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',758      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',759      AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'760    }761  },762  /**763   * Lookup70: xcm::v2::traits::Outcome764   **/765  XcmV2TraitsOutcome: {766    _enum: {767      Complete: 'u64',768      Incomplete: '(u64,XcmV2TraitsError)',769      Error: 'XcmV2TraitsError'770    }771  },772  /**773   * Lookup71: xcm::v2::Xcm<RuntimeCall>774   **/775  XcmV2Xcm: 'Vec<XcmV2Instruction>',776  /**777   * Lookup73: xcm::v2::Instruction<RuntimeCall>778   **/779  XcmV2Instruction: {780    _enum: {781      WithdrawAsset: 'XcmV1MultiassetMultiAssets',782      ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',783      ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',784      QueryResponse: {785        queryId: 'Compact<u64>',786        response: 'XcmV2Response',787        maxWeight: 'Compact<u64>',788      },789      TransferAsset: {790        assets: 'XcmV1MultiassetMultiAssets',791        beneficiary: 'XcmV1MultiLocation',792      },793      TransferReserveAsset: {794        assets: 'XcmV1MultiassetMultiAssets',795        dest: 'XcmV1MultiLocation',796        xcm: 'XcmV2Xcm',797      },798      Transact: {799        originType: 'XcmV0OriginKind',800        requireWeightAtMost: 'Compact<u64>',801        call: 'XcmDoubleEncoded',802      },803      HrmpNewChannelOpenRequest: {804        sender: 'Compact<u32>',805        maxMessageSize: 'Compact<u32>',806        maxCapacity: 'Compact<u32>',807      },808      HrmpChannelAccepted: {809        recipient: 'Compact<u32>',810      },811      HrmpChannelClosing: {812        initiator: 'Compact<u32>',813        sender: 'Compact<u32>',814        recipient: 'Compact<u32>',815      },816      ClearOrigin: 'Null',817      DescendOrigin: 'XcmV1MultilocationJunctions',818      ReportError: {819        queryId: 'Compact<u64>',820        dest: 'XcmV1MultiLocation',821        maxResponseWeight: 'Compact<u64>',822      },823      DepositAsset: {824        assets: 'XcmV1MultiassetMultiAssetFilter',825        maxAssets: 'Compact<u32>',826        beneficiary: 'XcmV1MultiLocation',827      },828      DepositReserveAsset: {829        assets: 'XcmV1MultiassetMultiAssetFilter',830        maxAssets: 'Compact<u32>',831        dest: 'XcmV1MultiLocation',832        xcm: 'XcmV2Xcm',833      },834      ExchangeAsset: {835        give: 'XcmV1MultiassetMultiAssetFilter',836        receive: 'XcmV1MultiassetMultiAssets',837      },838      InitiateReserveWithdraw: {839        assets: 'XcmV1MultiassetMultiAssetFilter',840        reserve: 'XcmV1MultiLocation',841        xcm: 'XcmV2Xcm',842      },843      InitiateTeleport: {844        assets: 'XcmV1MultiassetMultiAssetFilter',845        dest: 'XcmV1MultiLocation',846        xcm: 'XcmV2Xcm',847      },848      QueryHolding: {849        queryId: 'Compact<u64>',850        dest: 'XcmV1MultiLocation',851        assets: 'XcmV1MultiassetMultiAssetFilter',852        maxResponseWeight: 'Compact<u64>',853      },854      BuyExecution: {855        fees: 'XcmV1MultiAsset',856        weightLimit: 'XcmV2WeightLimit',857      },858      RefundSurplus: 'Null',859      SetErrorHandler: 'XcmV2Xcm',860      SetAppendix: 'XcmV2Xcm',861      ClearError: 'Null',862      ClaimAsset: {863        assets: 'XcmV1MultiassetMultiAssets',864        ticket: 'XcmV1MultiLocation',865      },866      Trap: 'Compact<u64>',867      SubscribeVersion: {868        queryId: 'Compact<u64>',869        maxResponseWeight: 'Compact<u64>',870      },871      UnsubscribeVersion: 'Null'872    }873  },874  /**875   * Lookup74: xcm::v2::Response876   **/877  XcmV2Response: {878    _enum: {879      Null: 'Null',880      Assets: 'XcmV1MultiassetMultiAssets',881      ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',882      Version: 'u32'883    }884  },885  /**886   * Lookup77: xcm::v0::OriginKind887   **/888  XcmV0OriginKind: {889    _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']890  },891  /**892   * Lookup78: xcm::double_encoded::DoubleEncoded<T>893   **/894  XcmDoubleEncoded: {895    encoded: 'Bytes'896  },897  /**898   * Lookup79: xcm::v1::multiasset::MultiAssetFilter899   **/900  XcmV1MultiassetMultiAssetFilter: {901    _enum: {902      Definite: 'XcmV1MultiassetMultiAssets',903      Wild: 'XcmV1MultiassetWildMultiAsset'904    }905  },906  /**907   * Lookup80: xcm::v1::multiasset::WildMultiAsset908   **/909  XcmV1MultiassetWildMultiAsset: {910    _enum: {911      All: 'Null',912      AllOf: {913        id: 'XcmV1MultiassetAssetId',914        fun: 'XcmV1MultiassetWildFungibility'915      }916    }917  },918  /**919   * Lookup81: xcm::v1::multiasset::WildFungibility920   **/921  XcmV1MultiassetWildFungibility: {922    _enum: ['Fungible', 'NonFungible']923  },924  /**925   * Lookup82: xcm::v2::WeightLimit926   **/927  XcmV2WeightLimit: {928    _enum: {929      Unlimited: 'Null',930      Limited: 'Compact<u64>'931    }932  },933  /**934   * Lookup84: xcm::VersionedMultiAssets935   **/936  XcmVersionedMultiAssets: {937    _enum: {938      V0: 'Vec<XcmV0MultiAsset>',939      V1: 'XcmV1MultiassetMultiAssets'940    }941  },942  /**943   * Lookup86: xcm::v0::multi_asset::MultiAsset944   **/945  XcmV0MultiAsset: {946    _enum: {947      None: 'Null',948      All: 'Null',949      AllFungible: 'Null',950      AllNonFungible: 'Null',951      AllAbstractFungible: {952        id: 'Bytes',953      },954      AllAbstractNonFungible: {955        class: 'Bytes',956      },957      AllConcreteFungible: {958        id: 'XcmV0MultiLocation',959      },960      AllConcreteNonFungible: {961        class: 'XcmV0MultiLocation',962      },963      AbstractFungible: {964        id: 'Bytes',965        amount: 'Compact<u128>',966      },967      AbstractNonFungible: {968        class: 'Bytes',969        instance: 'XcmV1MultiassetAssetInstance',970      },971      ConcreteFungible: {972        id: 'XcmV0MultiLocation',973        amount: 'Compact<u128>',974      },975      ConcreteNonFungible: {976        class: 'XcmV0MultiLocation',977        instance: 'XcmV1MultiassetAssetInstance'978      }979    }980  },981  /**982   * Lookup87: xcm::v0::multi_location::MultiLocation983   **/984  XcmV0MultiLocation: {985    _enum: {986      Null: 'Null',987      X1: 'XcmV0Junction',988      X2: '(XcmV0Junction,XcmV0Junction)',989      X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',990      X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',991      X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',992      X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',993      X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',994      X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'995    }996  },997  /**998   * Lookup88: xcm::v0::junction::Junction999   **/1000  XcmV0Junction: {1001    _enum: {1002      Parent: 'Null',1003      Parachain: 'Compact<u32>',1004      AccountId32: {1005        network: 'XcmV0JunctionNetworkId',1006        id: '[u8;32]',1007      },1008      AccountIndex64: {1009        network: 'XcmV0JunctionNetworkId',1010        index: 'Compact<u64>',1011      },1012      AccountKey20: {1013        network: 'XcmV0JunctionNetworkId',1014        key: '[u8;20]',1015      },1016      PalletInstance: 'u8',1017      GeneralIndex: 'Compact<u128>',1018      GeneralKey: 'Bytes',1019      OnlyChild: 'Null',1020      Plurality: {1021        id: 'XcmV0JunctionBodyId',1022        part: 'XcmV0JunctionBodyPart'1023      }1024    }1025  },1026  /**1027   * Lookup89: xcm::VersionedMultiLocation1028   **/1029  XcmVersionedMultiLocation: {1030    _enum: {1031      V0: 'XcmV0MultiLocation',1032      V1: 'XcmV1MultiLocation'1033    }1034  },1035  /**1036   * Lookup90: cumulus_pallet_xcm::pallet::Event<T>1037   **/1038  CumulusPalletXcmEvent: {1039    _enum: {1040      InvalidFormat: '[u8;8]',1041      UnsupportedVersion: '[u8;8]',1042      ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1043    }1044  },1045  /**1046   * Lookup91: cumulus_pallet_dmp_queue::pallet::Event<T>1047   **/1048  CumulusPalletDmpQueueEvent: {1049    _enum: {1050      InvalidFormat: {1051        messageId: '[u8;32]',1052      },1053      UnsupportedVersion: {1054        messageId: '[u8;32]',1055      },1056      ExecutedDownward: {1057        messageId: '[u8;32]',1058        outcome: 'XcmV2TraitsOutcome',1059      },1060      WeightExhausted: {1061        messageId: '[u8;32]',1062        remainingWeight: 'SpWeightsWeightV2Weight',1063        requiredWeight: 'SpWeightsWeightV2Weight',1064      },1065      OverweightEnqueued: {1066        messageId: '[u8;32]',1067        overweightIndex: 'u64',1068        requiredWeight: 'SpWeightsWeightV2Weight',1069      },1070      OverweightServiced: {1071        overweightIndex: 'u64',1072        weightUsed: 'SpWeightsWeightV2Weight'1073      }1074    }1075  },1076  /**1077   * Lookup92: pallet_configuration::pallet::Event<T>1078   **/1079  PalletConfigurationEvent: {1080    _enum: {1081      NewDesiredCollators: {1082        desiredCollators: 'Option<u32>',1083      },1084      NewCollatorLicenseBond: {1085        bondCost: 'Option<u128>',1086      },1087      NewCollatorKickThreshold: {1088        lengthInBlocks: 'Option<u32>'1089      }1090    }1091  },1092  /**1093   * Lookup95: pallet_common::pallet::Event<T>1094   **/1095  PalletCommonEvent: {1096    _enum: {1097      CollectionCreated: '(u32,u8,AccountId32)',1098      CollectionDestroyed: 'u32',1099      ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1100      ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1101      Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1102      Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1103      ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1104      CollectionPropertySet: '(u32,Bytes)',1105      CollectionPropertyDeleted: '(u32,Bytes)',1106      TokenPropertySet: '(u32,u32,Bytes)',1107      TokenPropertyDeleted: '(u32,u32,Bytes)',1108      PropertyPermissionSet: '(u32,Bytes)',1109      AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1110      AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1111      CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1112      CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1113      CollectionLimitSet: 'u32',1114      CollectionOwnerChanged: '(u32,AccountId32)',1115      CollectionPermissionSet: 'u32',1116      CollectionSponsorSet: '(u32,AccountId32)',1117      SponsorshipConfirmed: '(u32,AccountId32)',1118      CollectionSponsorRemoved: 'u32'1119    }1120  },1121  /**1122   * Lookup98: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1123   **/1124  PalletEvmAccountBasicCrossAccountIdRepr: {1125    _enum: {1126      Substrate: 'AccountId32',1127      Ethereum: 'H160'1128    }1129  },1130  /**1131   * Lookup102: pallet_structure::pallet::Event<T>1132   **/1133  PalletStructureEvent: {1134    _enum: {1135      Executed: 'Result<Null, SpRuntimeDispatchError>'1136    }1137  },1138  /**1139   * Lookup103: pallet_rmrk_core::pallet::Event<T>1140   **/1141  PalletRmrkCoreEvent: {1142    _enum: {1143      CollectionCreated: {1144        issuer: 'AccountId32',1145        collectionId: 'u32',1146      },1147      CollectionDestroyed: {1148        issuer: 'AccountId32',1149        collectionId: 'u32',1150      },1151      IssuerChanged: {1152        oldIssuer: 'AccountId32',1153        newIssuer: 'AccountId32',1154        collectionId: 'u32',1155      },1156      CollectionLocked: {1157        issuer: 'AccountId32',1158        collectionId: 'u32',1159      },1160      NftMinted: {1161        owner: 'AccountId32',1162        collectionId: 'u32',1163        nftId: 'u32',1164      },1165      NFTBurned: {1166        owner: 'AccountId32',1167        nftId: 'u32',1168      },1169      NFTSent: {1170        sender: 'AccountId32',1171        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1172        collectionId: 'u32',1173        nftId: 'u32',1174        approvalRequired: 'bool',1175      },1176      NFTAccepted: {1177        sender: 'AccountId32',1178        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',1179        collectionId: 'u32',1180        nftId: 'u32',1181      },1182      NFTRejected: {1183        sender: 'AccountId32',1184        collectionId: 'u32',1185        nftId: 'u32',1186      },1187      PropertySet: {1188        collectionId: 'u32',1189        maybeNftId: 'Option<u32>',1190        key: 'Bytes',1191        value: 'Bytes',1192      },1193      ResourceAdded: {1194        nftId: 'u32',1195        resourceId: 'u32',1196      },1197      ResourceRemoval: {1198        nftId: 'u32',1199        resourceId: 'u32',1200      },1201      ResourceAccepted: {1202        nftId: 'u32',1203        resourceId: 'u32',1204      },1205      ResourceRemovalAccepted: {1206        nftId: 'u32',1207        resourceId: 'u32',1208      },1209      PrioritySet: {1210        collectionId: 'u32',1211        nftId: 'u32'1212      }1213    }1214  },1215  /**1216   * Lookup104: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1217   **/1218  RmrkTraitsNftAccountIdOrCollectionNftTuple: {1219    _enum: {1220      AccountId: 'AccountId32',1221      CollectionAndNftTuple: '(u32,u32)'1222    }1223  },1224  /**1225   * Lookup107: pallet_rmrk_equip::pallet::Event<T>1226   **/1227  PalletRmrkEquipEvent: {1228    _enum: {1229      BaseCreated: {1230        issuer: 'AccountId32',1231        baseId: 'u32',1232      },1233      EquippablesUpdated: {1234        baseId: 'u32',1235        slotId: 'u32'1236      }1237    }1238  },1239  /**1240   * Lookup108: pallet_app_promotion::pallet::Event<T>1241   **/1242  PalletAppPromotionEvent: {1243    _enum: {1244      StakingRecalculation: '(AccountId32,u128,u128)',1245      Stake: '(AccountId32,u128)',1246      Unstake: '(AccountId32,u128)',1247      SetAdmin: 'AccountId32'1248    }1249  },1250  /**1251   * Lookup109: pallet_foreign_assets::module::Event<T>1252   **/1253  PalletForeignAssetsModuleEvent: {1254    _enum: {1255      ForeignAssetRegistered: {1256        assetId: 'u32',1257        assetAddress: 'XcmV1MultiLocation',1258        metadata: 'PalletForeignAssetsModuleAssetMetadata',1259      },1260      ForeignAssetUpdated: {1261        assetId: 'u32',1262        assetAddress: 'XcmV1MultiLocation',1263        metadata: 'PalletForeignAssetsModuleAssetMetadata',1264      },1265      AssetRegistered: {1266        assetId: 'PalletForeignAssetsAssetIds',1267        metadata: 'PalletForeignAssetsModuleAssetMetadata',1268      },1269      AssetUpdated: {1270        assetId: 'PalletForeignAssetsAssetIds',1271        metadata: 'PalletForeignAssetsModuleAssetMetadata'1272      }1273    }1274  },1275  /**1276   * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1277   **/1278  PalletForeignAssetsModuleAssetMetadata: {1279    name: 'Bytes',1280    symbol: 'Bytes',1281    decimals: 'u8',1282    minimalBalance: 'u128'1283  },1284  /**1285   * Lookup111: pallet_evm::pallet::Event<T>1286   **/1287  PalletEvmEvent: {1288    _enum: {1289      Log: {1290        log: 'EthereumLog',1291      },1292      Created: {1293        address: 'H160',1294      },1295      CreatedFailed: {1296        address: 'H160',1297      },1298      Executed: {1299        address: 'H160',1300      },1301      ExecutedFailed: {1302        address: 'H160'1303      }1304    }1305  },1306  /**1307   * Lookup112: ethereum::log::Log1308   **/1309  EthereumLog: {1310    address: 'H160',1311    topics: 'Vec<H256>',1312    data: 'Bytes'1313  },1314  /**1315   * Lookup114: pallet_ethereum::pallet::Event1316   **/1317  PalletEthereumEvent: {1318    _enum: {1319      Executed: {1320        from: 'H160',1321        to: 'H160',1322        transactionHash: 'H256',1323        exitReason: 'EvmCoreErrorExitReason'1324      }1325    }1326  },1327  /**1328   * Lookup115: evm_core::error::ExitReason1329   **/1330  EvmCoreErrorExitReason: {1331    _enum: {1332      Succeed: 'EvmCoreErrorExitSucceed',1333      Error: 'EvmCoreErrorExitError',1334      Revert: 'EvmCoreErrorExitRevert',1335      Fatal: 'EvmCoreErrorExitFatal'1336    }1337  },1338  /**1339   * Lookup116: evm_core::error::ExitSucceed1340   **/1341  EvmCoreErrorExitSucceed: {1342    _enum: ['Stopped', 'Returned', 'Suicided']1343  },1344  /**1345   * Lookup117: evm_core::error::ExitError1346   **/1347  EvmCoreErrorExitError: {1348    _enum: {1349      StackUnderflow: 'Null',1350      StackOverflow: 'Null',1351      InvalidJump: 'Null',1352      InvalidRange: 'Null',1353      DesignatedInvalid: 'Null',1354      CallTooDeep: 'Null',1355      CreateCollision: 'Null',1356      CreateContractLimit: 'Null',1357      OutOfOffset: 'Null',1358      OutOfGas: 'Null',1359      OutOfFund: 'Null',1360      PCUnderflow: 'Null',1361      CreateEmpty: 'Null',1362      Other: 'Text',1363      InvalidCode: 'Null'1364    }1365  },1366  /**1367   * Lookup120: evm_core::error::ExitRevert1368   **/1369  EvmCoreErrorExitRevert: {1370    _enum: ['Reverted']1371  },1372  /**1373   * Lookup121: evm_core::error::ExitFatal1374   **/1375  EvmCoreErrorExitFatal: {1376    _enum: {1377      NotSupported: 'Null',1378      UnhandledInterrupt: 'Null',1379      CallErrorAsFatal: 'EvmCoreErrorExitError',1380      Other: 'Text'1381    }1382  },1383  /**1384   * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>1385   **/1386  PalletEvmContractHelpersEvent: {1387    _enum: {1388      ContractSponsorSet: '(H160,AccountId32)',1389      ContractSponsorshipConfirmed: '(H160,AccountId32)',1390      ContractSponsorRemoved: 'H160'1391    }1392  },1393  /**1394   * Lookup123: pallet_data_management::pallet::Event<T>1395   **/1396  PalletDataManagementEvent: {1397    _enum: ['TestEvent']1398  },1399  /**1400   * Lookup124: pallet_maintenance::pallet::Event<T>1401   **/1402  PalletMaintenanceEvent: {1403    _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1404  },1405  /**1406   * Lookup125: pallet_test_utils::pallet::Event<T>1407   **/1408  PalletTestUtilsEvent: {1409    _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1410  },1411  /**1412   * Lookup126: frame_system::Phase1413   **/1414  FrameSystemPhase: {1415    _enum: {1416      ApplyExtrinsic: 'u32',1417      Finalization: 'Null',1418      Initialization: 'Null'1419    }1420  },1421  /**1422   * Lookup129: frame_system::LastRuntimeUpgradeInfo1423   **/1424  FrameSystemLastRuntimeUpgradeInfo: {1425    specVersion: 'Compact<u32>',1426    specName: 'Text'1427  },1428  /**1429   * Lookup130: frame_system::pallet::Call<T>1430   **/1431  FrameSystemCall: {1432    _enum: {1433      fill_block: {1434        ratio: 'Perbill',1435      },1436      remark: {1437        remark: 'Bytes',1438      },1439      set_heap_pages: {1440        pages: 'u64',1441      },1442      set_code: {1443        code: 'Bytes',1444      },1445      set_code_without_checks: {1446        code: 'Bytes',1447      },1448      set_storage: {1449        items: 'Vec<(Bytes,Bytes)>',1450      },1451      kill_storage: {1452        _alias: {1453          keys_: 'keys',1454        },1455        keys_: 'Vec<Bytes>',1456      },1457      kill_prefix: {1458        prefix: 'Bytes',1459        subkeys: 'u32',1460      },1461      remark_with_event: {1462        remark: 'Bytes'1463      }1464    }1465  },1466  /**1467   * Lookup135: frame_system::limits::BlockWeights1468   **/1469  FrameSystemLimitsBlockWeights: {1470    baseBlock: 'SpWeightsWeightV2Weight',1471    maxBlock: 'SpWeightsWeightV2Weight',1472    perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1473  },1474  /**1475   * Lookup136: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1476   **/1477  FrameSupportDispatchPerDispatchClassWeightsPerClass: {1478    normal: 'FrameSystemLimitsWeightsPerClass',1479    operational: 'FrameSystemLimitsWeightsPerClass',1480    mandatory: 'FrameSystemLimitsWeightsPerClass'1481  },1482  /**1483   * Lookup137: frame_system::limits::WeightsPerClass1484   **/1485  FrameSystemLimitsWeightsPerClass: {1486    baseExtrinsic: 'SpWeightsWeightV2Weight',1487    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1488    maxTotal: 'Option<SpWeightsWeightV2Weight>',1489    reserved: 'Option<SpWeightsWeightV2Weight>'1490  },1491  /**1492   * Lookup139: frame_system::limits::BlockLength1493   **/1494  FrameSystemLimitsBlockLength: {1495    max: 'FrameSupportDispatchPerDispatchClassU32'1496  },1497  /**1498   * Lookup140: frame_support::dispatch::PerDispatchClass<T>1499   **/1500  FrameSupportDispatchPerDispatchClassU32: {1501    normal: 'u32',1502    operational: 'u32',1503    mandatory: 'u32'1504  },1505  /**1506   * Lookup141: sp_weights::RuntimeDbWeight1507   **/1508  SpWeightsRuntimeDbWeight: {1509    read: 'u64',1510    write: 'u64'1511  },1512  /**1513   * Lookup142: sp_version::RuntimeVersion1514   **/1515  SpVersionRuntimeVersion: {1516    specName: 'Text',1517    implName: 'Text',1518    authoringVersion: 'u32',1519    specVersion: 'u32',1520    implVersion: 'u32',1521    apis: 'Vec<([u8;8],u32)>',1522    transactionVersion: 'u32',1523    stateVersion: 'u8'1524  },1525  /**1526   * Lookup147: frame_system::pallet::Error<T>1527   **/1528  FrameSystemError: {1529    _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1530  },1531  /**1532   * Lookup148: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1533   **/1534  PolkadotPrimitivesV2PersistedValidationData: {1535    parentHead: 'Bytes',1536    relayParentNumber: 'u32',1537    relayParentStorageRoot: 'H256',1538    maxPovSize: 'u32'1539  },1540  /**1541   * Lookup151: polkadot_primitives::v2::UpgradeRestriction1542   **/1543  PolkadotPrimitivesV2UpgradeRestriction: {1544    _enum: ['Present']1545  },1546  /**1547   * Lookup152: sp_trie::storage_proof::StorageProof1548   **/1549  SpTrieStorageProof: {1550    trieNodes: 'BTreeSet<Bytes>'1551  },1552  /**1553   * Lookup154: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1554   **/1555  CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1556    dmqMqcHead: 'H256',1557    relayDispatchQueueSize: '(u32,u32)',1558    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1559    egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1560  },1561  /**1562   * Lookup157: polkadot_primitives::v2::AbridgedHrmpChannel1563   **/1564  PolkadotPrimitivesV2AbridgedHrmpChannel: {1565    maxCapacity: 'u32',1566    maxTotalSize: 'u32',1567    maxMessageSize: 'u32',1568    msgCount: 'u32',1569    totalSize: 'u32',1570    mqcHead: 'Option<H256>'1571  },1572  /**1573   * Lookup158: polkadot_primitives::v2::AbridgedHostConfiguration1574   **/1575  PolkadotPrimitivesV2AbridgedHostConfiguration: {1576    maxCodeSize: 'u32',1577    maxHeadDataSize: 'u32',1578    maxUpwardQueueCount: 'u32',1579    maxUpwardQueueSize: 'u32',1580    maxUpwardMessageSize: 'u32',1581    maxUpwardMessageNumPerCandidate: 'u32',1582    hrmpMaxMessageNumPerCandidate: 'u32',1583    validationUpgradeCooldown: 'u32',1584    validationUpgradeDelay: 'u32'1585  },1586  /**1587   * Lookup164: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1588   **/1589  PolkadotCorePrimitivesOutboundHrmpMessage: {1590    recipient: 'u32',1591    data: 'Bytes'1592  },1593  /**1594   * Lookup165: cumulus_pallet_parachain_system::pallet::Call<T>1595   **/1596  CumulusPalletParachainSystemCall: {1597    _enum: {1598      set_validation_data: {1599        data: 'CumulusPrimitivesParachainInherentParachainInherentData',1600      },1601      sudo_send_upward_message: {1602        message: 'Bytes',1603      },1604      authorize_upgrade: {1605        codeHash: 'H256',1606      },1607      enact_authorized_upgrade: {1608        code: 'Bytes'1609      }1610    }1611  },1612  /**1613   * Lookup166: cumulus_primitives_parachain_inherent::ParachainInherentData1614   **/1615  CumulusPrimitivesParachainInherentParachainInherentData: {1616    validationData: 'PolkadotPrimitivesV2PersistedValidationData',1617    relayChainState: 'SpTrieStorageProof',1618    downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1619    horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1620  },1621  /**1622   * Lookup168: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1623   **/1624  PolkadotCorePrimitivesInboundDownwardMessage: {1625    sentAt: 'u32',1626    msg: 'Bytes'1627  },1628  /**1629   * Lookup171: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1630   **/1631  PolkadotCorePrimitivesInboundHrmpMessage: {1632    sentAt: 'u32',1633    data: 'Bytes'1634  },1635  /**1636   * Lookup174: cumulus_pallet_parachain_system::pallet::Error<T>1637   **/1638  CumulusPalletParachainSystemError: {1639    _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1640  },1641  /**1642   * Lookup176: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>1643   **/1644  PalletAuthorshipUncleEntryItem: {1645    _enum: {1646      InclusionHeight: 'u32',1647      Uncle: '(H256,Option<AccountId32>)'1648    }1649  },1650  /**1651   * Lookup178: pallet_authorship::pallet::Call<T>1652   **/1653  PalletAuthorshipCall: {1654    _enum: {1655      set_uncles: {1656        newUncles: 'Vec<SpRuntimeHeader>'1657      }1658    }1659  },1660  /**1661   * Lookup180: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>1662   **/1663  SpRuntimeHeader: {1664    parentHash: 'H256',1665    number: 'Compact<u32>',1666    stateRoot: 'H256',1667    extrinsicsRoot: 'H256',1668    digest: 'SpRuntimeDigest'1669  },1670  /**1671   * Lookup181: sp_runtime::traits::BlakeTwo2561672   **/1673  SpRuntimeBlakeTwo256: 'Null',1674  /**1675   * Lookup182: pallet_authorship::pallet::Error<T>1676   **/1677  PalletAuthorshipError: {1678    _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']1679  },1680  /**1681   * Lookup185: pallet_collator_selection::pallet::Call<T>1682   **/1683  PalletCollatorSelectionCall: {1684    _enum: {1685      add_invulnerable: {1686        _alias: {1687          new_: 'new',1688        },1689        new_: 'AccountId32',1690      },1691      remove_invulnerable: {1692        who: 'AccountId32',1693      },1694      get_license: 'Null',1695      onboard: 'Null',1696      offboard: 'Null',1697      release_license: 'Null',1698      force_revoke_license: {1699        who: 'AccountId32'1700      }1701    }1702  },1703  /**1704   * Lookup186: pallet_collator_selection::pallet::Error<T>1705   **/1706  PalletCollatorSelectionError: {1707    _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1708  },1709  /**1710   * Lookup189: opal_runtime::runtime_common::SessionKeys1711   **/1712  OpalRuntimeRuntimeCommonSessionKeys: {1713    aura: 'SpConsensusAuraSr25519AppSr25519Public'1714  },1715  /**1716   * Lookup190: sp_consensus_aura::sr25519::app_sr25519::Public1717   **/1718  SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1719  /**1720   * Lookup191: sp_core::sr25519::Public1721   **/1722  SpCoreSr25519Public: '[u8;32]',1723  /**1724   * Lookup194: sp_core::crypto::KeyTypeId1725   **/1726  SpCoreCryptoKeyTypeId: '[u8;4]',1727  /**1728   * Lookup195: pallet_session::pallet::Call<T>1729   **/1730  PalletSessionCall: {1731    _enum: {1732      set_keys: {1733        _alias: {1734          keys_: 'keys',1735        },1736        keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1737        proof: 'Bytes',1738      },1739      purge_keys: 'Null'1740    }1741  },1742  /**1743   * Lookup196: pallet_session::pallet::Error<T>1744   **/1745  PalletSessionError: {1746    _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1747  },1748  /**1749   * Lookup197: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>1750   **/1751  PalletIdentityRegistration: {1752    judgements: 'Vec<(u32,PalletIdentityJudgement)>',1753    deposit: 'u128',1754    info: 'PalletIdentityIdentityInfo'1755  },1756  /**1757   * Lookup200: pallet_identity::types::Judgement<Balance>1758   **/1759  PalletIdentityJudgement: {1760    _enum: {1761      Unknown: 'Null',1762      FeePaid: 'u128',1763      Reasonable: 'Null',1764      KnownGood: 'Null',1765      OutOfDate: 'Null',1766      LowQuality: 'Null',1767      Erroneous: 'Null'1768    }1769  },1770  /**1771   * Lookup202: pallet_identity::types::IdentityInfo<FieldLimit>1772   **/1773  PalletIdentityIdentityInfo: {1774    additional: 'Vec<(Data,Data)>',1775    display: 'Data',1776    legal: 'Data',1777    web: 'Data',1778    riot: 'Data',1779    email: 'Data',1780    pgpFingerprint: 'Option<[u8;20]>',1781    image: 'Data',1782    twitter: 'Data'1783  },1784  /**1785   * Lookup241: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>1786   **/1787  PalletIdentityRegistrarInfo: {1788    account: 'AccountId32',1789    fee: 'u128',1790    fields: 'PalletIdentityBitFlags'1791  },1792  /**1793   * Lookup242: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>1794   **/1795  PalletIdentityBitFlags: {1796    _bitLength: 64,1797    Display: 1,1798    Legal: 2,1799    Web: 4,1800    Riot: 8,1801    Email: 16,1802    PgpFingerprint: 32,1803    Image: 64,1804    Twitter: 1281805  },1806  /**1807   * Lookup243: pallet_identity::types::IdentityField1808   **/1809  PalletIdentityIdentityField: {1810    _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']1811  },1812  /**1813   * Lookup245: pallet_identity::pallet::Call<T>1814   **/1815  PalletIdentityCall: {1816    _enum: {1817      add_registrar: {1818        account: 'MultiAddress',1819      },1820      set_identity: {1821        info: 'PalletIdentityIdentityInfo',1822      },1823      set_subs: {1824        subs: 'Vec<(AccountId32,Data)>',1825      },1826      clear_identity: 'Null',1827      request_judgement: {1828        regIndex: 'Compact<u32>',1829        maxFee: 'Compact<u128>',1830      },1831      cancel_request: {1832        regIndex: 'u32',1833      },1834      set_fee: {1835        index: 'Compact<u32>',1836        fee: 'Compact<u128>',1837      },1838      set_account_id: {1839        _alias: {1840          new_: 'new',1841        },1842        index: 'Compact<u32>',1843        new_: 'MultiAddress',1844      },1845      set_fields: {1846        index: 'Compact<u32>',1847        fields: 'PalletIdentityBitFlags',1848      },1849      provide_judgement: {1850        regIndex: 'Compact<u32>',1851        target: 'MultiAddress',1852        judgement: 'PalletIdentityJudgement',1853        identity: 'H256',1854      },1855      kill_identity: {1856        target: 'MultiAddress',1857      },1858      add_sub: {1859        sub: 'MultiAddress',1860        data: 'Data',1861      },1862      rename_sub: {1863        sub: 'MultiAddress',1864        data: 'Data',1865      },1866      remove_sub: {1867        sub: 'MultiAddress',1868      },1869      quit_sub: 'Null'1870    }1871  },1872  /**1873   * Lookup249: pallet_identity::pallet::Error<T>1874   **/1875  PalletIdentityError: {1876    _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']1877  },1878  /**1879   * Lookup251: pallet_balances::BalanceLock<Balance>1880   **/1881  PalletBalancesBalanceLock: {1882    id: '[u8;8]',1883    amount: 'u128',1884    reasons: 'PalletBalancesReasons'1885  },1886  /**1887   * Lookup252: pallet_balances::Reasons1888   **/1889  PalletBalancesReasons: {1890    _enum: ['Fee', 'Misc', 'All']1891  },1892  /**1893   * Lookup255: pallet_balances::ReserveData<ReserveIdentifier, Balance>1894   **/1895  PalletBalancesReserveData: {1896    id: '[u8;16]',1897    amount: 'u128'1898  },1899  /**1900   * Lookup257: pallet_balances::Releases1901   **/1902  PalletBalancesReleases: {1903    _enum: ['V1_0_0', 'V2_0_0']1904  },1905  /**1906   * Lookup258: pallet_balances::pallet::Call<T, I>1907   **/1908  PalletBalancesCall: {1909    _enum: {1910      transfer: {1911        dest: 'MultiAddress',1912        value: 'Compact<u128>',1913      },1914      set_balance: {1915        who: 'MultiAddress',1916        newFree: 'Compact<u128>',1917        newReserved: 'Compact<u128>',1918      },1919      force_transfer: {1920        source: 'MultiAddress',1921        dest: 'MultiAddress',1922        value: 'Compact<u128>',1923      },1924      transfer_keep_alive: {1925        dest: 'MultiAddress',1926        value: 'Compact<u128>',1927      },1928      transfer_all: {1929        dest: 'MultiAddress',1930        keepAlive: 'bool',1931      },1932      force_unreserve: {1933        who: 'MultiAddress',1934        amount: 'u128'1935      }1936    }1937  },1938  /**1939   * Lookup259: pallet_balances::pallet::Error<T, I>1940   **/1941  PalletBalancesError: {1942    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1943  },1944  /**1945   * Lookup261: pallet_timestamp::pallet::Call<T>1946   **/1947  PalletTimestampCall: {1948    _enum: {1949      set: {1950        now: 'Compact<u64>'1951      }1952    }1953  },1954  /**1955   * Lookup263: pallet_transaction_payment::Releases1956   **/1957  PalletTransactionPaymentReleases: {1958    _enum: ['V1Ancient', 'V2']1959  },1960  /**1961   * Lookup264: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1962   **/1963  PalletTreasuryProposal: {1964    proposer: 'AccountId32',1965    value: 'u128',1966    beneficiary: 'AccountId32',1967    bond: 'u128'1968  },1969  /**1970   * Lookup266: pallet_treasury::pallet::Call<T, I>1971   **/1972  PalletTreasuryCall: {1973    _enum: {1974      propose_spend: {1975        value: 'Compact<u128>',1976        beneficiary: 'MultiAddress',1977      },1978      reject_proposal: {1979        proposalId: 'Compact<u32>',1980      },1981      approve_proposal: {1982        proposalId: 'Compact<u32>',1983      },1984      spend: {1985        amount: 'Compact<u128>',1986        beneficiary: 'MultiAddress',1987      },1988      remove_approval: {1989        proposalId: 'Compact<u32>'1990      }1991    }1992  },1993  /**1994   * Lookup268: frame_support::PalletId1995   **/1996  FrameSupportPalletId: '[u8;8]',1997  /**1998   * Lookup269: pallet_treasury::pallet::Error<T, I>1999   **/2000  PalletTreasuryError: {2001    _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']2002  },2003  /**2004   * Lookup270: pallet_sudo::pallet::Call<T>2005   **/2006  PalletSudoCall: {2007    _enum: {2008      sudo: {2009        call: 'Call',2010      },2011      sudo_unchecked_weight: {2012        call: 'Call',2013        weight: 'SpWeightsWeightV2Weight',2014      },2015      set_key: {2016        _alias: {2017          new_: 'new',2018        },2019        new_: 'MultiAddress',2020      },2021      sudo_as: {2022        who: 'MultiAddress',2023        call: 'Call'2024      }2025    }2026  },2027  /**2028   * Lookup272: orml_vesting::module::Call<T>2029   **/2030  OrmlVestingModuleCall: {2031    _enum: {2032      claim: 'Null',2033      vested_transfer: {2034        dest: 'MultiAddress',2035        schedule: 'OrmlVestingVestingSchedule',2036      },2037      update_vesting_schedules: {2038        who: 'MultiAddress',2039        vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',2040      },2041      claim_for: {2042        dest: 'MultiAddress'2043      }2044    }2045  },2046  /**2047   * Lookup274: orml_xtokens::module::Call<T>2048   **/2049  OrmlXtokensModuleCall: {2050    _enum: {2051      transfer: {2052        currencyId: 'PalletForeignAssetsAssetIds',2053        amount: 'u128',2054        dest: 'XcmVersionedMultiLocation',2055        destWeightLimit: 'XcmV2WeightLimit',2056      },2057      transfer_multiasset: {2058        asset: 'XcmVersionedMultiAsset',2059        dest: 'XcmVersionedMultiLocation',2060        destWeightLimit: 'XcmV2WeightLimit',2061      },2062      transfer_with_fee: {2063        currencyId: 'PalletForeignAssetsAssetIds',2064        amount: 'u128',2065        fee: 'u128',2066        dest: 'XcmVersionedMultiLocation',2067        destWeightLimit: 'XcmV2WeightLimit',2068      },2069      transfer_multiasset_with_fee: {2070        asset: 'XcmVersionedMultiAsset',2071        fee: 'XcmVersionedMultiAsset',2072        dest: 'XcmVersionedMultiLocation',2073        destWeightLimit: 'XcmV2WeightLimit',2074      },2075      transfer_multicurrencies: {2076        currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',2077        feeItem: 'u32',2078        dest: 'XcmVersionedMultiLocation',2079        destWeightLimit: 'XcmV2WeightLimit',2080      },2081      transfer_multiassets: {2082        assets: 'XcmVersionedMultiAssets',2083        feeItem: 'u32',2084        dest: 'XcmVersionedMultiLocation',2085        destWeightLimit: 'XcmV2WeightLimit'2086      }2087    }2088  },2089  /**2090   * Lookup275: xcm::VersionedMultiAsset2091   **/2092  XcmVersionedMultiAsset: {2093    _enum: {2094      V0: 'XcmV0MultiAsset',2095      V1: 'XcmV1MultiAsset'2096    }2097  },2098  /**2099   * Lookup278: orml_tokens::module::Call<T>2100   **/2101  OrmlTokensModuleCall: {2102    _enum: {2103      transfer: {2104        dest: 'MultiAddress',2105        currencyId: 'PalletForeignAssetsAssetIds',2106        amount: 'Compact<u128>',2107      },2108      transfer_all: {2109        dest: 'MultiAddress',2110        currencyId: 'PalletForeignAssetsAssetIds',2111        keepAlive: 'bool',2112      },2113      transfer_keep_alive: {2114        dest: 'MultiAddress',2115        currencyId: 'PalletForeignAssetsAssetIds',2116        amount: 'Compact<u128>',2117      },2118      force_transfer: {2119        source: 'MultiAddress',2120        dest: 'MultiAddress',2121        currencyId: 'PalletForeignAssetsAssetIds',2122        amount: 'Compact<u128>',2123      },2124      set_balance: {2125        who: 'MultiAddress',2126        currencyId: 'PalletForeignAssetsAssetIds',2127        newFree: 'Compact<u128>',2128        newReserved: 'Compact<u128>'2129      }2130    }2131  },2132  /**2133   * Lookup279: cumulus_pallet_xcmp_queue::pallet::Call<T>2134   **/2135  CumulusPalletXcmpQueueCall: {2136    _enum: {2137      service_overweight: {2138        index: 'u64',2139        weightLimit: 'u64',2140      },2141      suspend_xcm_execution: 'Null',2142      resume_xcm_execution: 'Null',2143      update_suspend_threshold: {2144        _alias: {2145          new_: 'new',2146        },2147        new_: 'u32',2148      },2149      update_drop_threshold: {2150        _alias: {2151          new_: 'new',2152        },2153        new_: 'u32',2154      },2155      update_resume_threshold: {2156        _alias: {2157          new_: 'new',2158        },2159        new_: 'u32',2160      },2161      update_threshold_weight: {2162        _alias: {2163          new_: 'new',2164        },2165        new_: 'u64',2166      },2167      update_weight_restrict_decay: {2168        _alias: {2169          new_: 'new',2170        },2171        new_: 'u64',2172      },2173      update_xcmp_max_individual_weight: {2174        _alias: {2175          new_: 'new',2176        },2177        new_: 'u64'2178      }2179    }2180  },2181  /**2182   * Lookup280: pallet_xcm::pallet::Call<T>2183   **/2184  PalletXcmCall: {2185    _enum: {2186      send: {2187        dest: 'XcmVersionedMultiLocation',2188        message: 'XcmVersionedXcm',2189      },2190      teleport_assets: {2191        dest: 'XcmVersionedMultiLocation',2192        beneficiary: 'XcmVersionedMultiLocation',2193        assets: 'XcmVersionedMultiAssets',2194        feeAssetItem: 'u32',2195      },2196      reserve_transfer_assets: {2197        dest: 'XcmVersionedMultiLocation',2198        beneficiary: 'XcmVersionedMultiLocation',2199        assets: 'XcmVersionedMultiAssets',2200        feeAssetItem: 'u32',2201      },2202      execute: {2203        message: 'XcmVersionedXcm',2204        maxWeight: 'u64',2205      },2206      force_xcm_version: {2207        location: 'XcmV1MultiLocation',2208        xcmVersion: 'u32',2209      },2210      force_default_xcm_version: {2211        maybeXcmVersion: 'Option<u32>',2212      },2213      force_subscribe_version_notify: {2214        location: 'XcmVersionedMultiLocation',2215      },2216      force_unsubscribe_version_notify: {2217        location: 'XcmVersionedMultiLocation',2218      },2219      limited_reserve_transfer_assets: {2220        dest: 'XcmVersionedMultiLocation',2221        beneficiary: 'XcmVersionedMultiLocation',2222        assets: 'XcmVersionedMultiAssets',2223        feeAssetItem: 'u32',2224        weightLimit: 'XcmV2WeightLimit',2225      },2226      limited_teleport_assets: {2227        dest: 'XcmVersionedMultiLocation',2228        beneficiary: 'XcmVersionedMultiLocation',2229        assets: 'XcmVersionedMultiAssets',2230        feeAssetItem: 'u32',2231        weightLimit: 'XcmV2WeightLimit'2232      }2233    }2234  },2235  /**2236   * Lookup281: xcm::VersionedXcm<RuntimeCall>2237   **/2238  XcmVersionedXcm: {2239    _enum: {2240      V0: 'XcmV0Xcm',2241      V1: 'XcmV1Xcm',2242      V2: 'XcmV2Xcm'2243    }2244  },2245  /**2246   * Lookup282: xcm::v0::Xcm<RuntimeCall>2247   **/2248  XcmV0Xcm: {2249    _enum: {2250      WithdrawAsset: {2251        assets: 'Vec<XcmV0MultiAsset>',2252        effects: 'Vec<XcmV0Order>',2253      },2254      ReserveAssetDeposit: {2255        assets: 'Vec<XcmV0MultiAsset>',2256        effects: 'Vec<XcmV0Order>',2257      },2258      TeleportAsset: {2259        assets: 'Vec<XcmV0MultiAsset>',2260        effects: 'Vec<XcmV0Order>',2261      },2262      QueryResponse: {2263        queryId: 'Compact<u64>',2264        response: 'XcmV0Response',2265      },2266      TransferAsset: {2267        assets: 'Vec<XcmV0MultiAsset>',2268        dest: 'XcmV0MultiLocation',2269      },2270      TransferReserveAsset: {2271        assets: 'Vec<XcmV0MultiAsset>',2272        dest: 'XcmV0MultiLocation',2273        effects: 'Vec<XcmV0Order>',2274      },2275      Transact: {2276        originType: 'XcmV0OriginKind',2277        requireWeightAtMost: 'u64',2278        call: 'XcmDoubleEncoded',2279      },2280      HrmpNewChannelOpenRequest: {2281        sender: 'Compact<u32>',2282        maxMessageSize: 'Compact<u32>',2283        maxCapacity: 'Compact<u32>',2284      },2285      HrmpChannelAccepted: {2286        recipient: 'Compact<u32>',2287      },2288      HrmpChannelClosing: {2289        initiator: 'Compact<u32>',2290        sender: 'Compact<u32>',2291        recipient: 'Compact<u32>',2292      },2293      RelayedFrom: {2294        who: 'XcmV0MultiLocation',2295        message: 'XcmV0Xcm'2296      }2297    }2298  },2299  /**2300   * Lookup284: xcm::v0::order::Order<RuntimeCall>2301   **/2302  XcmV0Order: {2303    _enum: {2304      Null: 'Null',2305      DepositAsset: {2306        assets: 'Vec<XcmV0MultiAsset>',2307        dest: 'XcmV0MultiLocation',2308      },2309      DepositReserveAsset: {2310        assets: 'Vec<XcmV0MultiAsset>',2311        dest: 'XcmV0MultiLocation',2312        effects: 'Vec<XcmV0Order>',2313      },2314      ExchangeAsset: {2315        give: 'Vec<XcmV0MultiAsset>',2316        receive: 'Vec<XcmV0MultiAsset>',2317      },2318      InitiateReserveWithdraw: {2319        assets: 'Vec<XcmV0MultiAsset>',2320        reserve: 'XcmV0MultiLocation',2321        effects: 'Vec<XcmV0Order>',2322      },2323      InitiateTeleport: {2324        assets: 'Vec<XcmV0MultiAsset>',2325        dest: 'XcmV0MultiLocation',2326        effects: 'Vec<XcmV0Order>',2327      },2328      QueryHolding: {2329        queryId: 'Compact<u64>',2330        dest: 'XcmV0MultiLocation',2331        assets: 'Vec<XcmV0MultiAsset>',2332      },2333      BuyExecution: {2334        fees: 'XcmV0MultiAsset',2335        weight: 'u64',2336        debt: 'u64',2337        haltOnError: 'bool',2338        xcm: 'Vec<XcmV0Xcm>'2339      }2340    }2341  },2342  /**2343   * Lookup286: xcm::v0::Response2344   **/2345  XcmV0Response: {2346    _enum: {2347      Assets: 'Vec<XcmV0MultiAsset>'2348    }2349  },2350  /**2351   * Lookup287: xcm::v1::Xcm<RuntimeCall>2352   **/2353  XcmV1Xcm: {2354    _enum: {2355      WithdrawAsset: {2356        assets: 'XcmV1MultiassetMultiAssets',2357        effects: 'Vec<XcmV1Order>',2358      },2359      ReserveAssetDeposited: {2360        assets: 'XcmV1MultiassetMultiAssets',2361        effects: 'Vec<XcmV1Order>',2362      },2363      ReceiveTeleportedAsset: {2364        assets: 'XcmV1MultiassetMultiAssets',2365        effects: 'Vec<XcmV1Order>',2366      },2367      QueryResponse: {2368        queryId: 'Compact<u64>',2369        response: 'XcmV1Response',2370      },2371      TransferAsset: {2372        assets: 'XcmV1MultiassetMultiAssets',2373        beneficiary: 'XcmV1MultiLocation',2374      },2375      TransferReserveAsset: {2376        assets: 'XcmV1MultiassetMultiAssets',2377        dest: 'XcmV1MultiLocation',2378        effects: 'Vec<XcmV1Order>',2379      },2380      Transact: {2381        originType: 'XcmV0OriginKind',2382        requireWeightAtMost: 'u64',2383        call: 'XcmDoubleEncoded',2384      },2385      HrmpNewChannelOpenRequest: {2386        sender: 'Compact<u32>',2387        maxMessageSize: 'Compact<u32>',2388        maxCapacity: 'Compact<u32>',2389      },2390      HrmpChannelAccepted: {2391        recipient: 'Compact<u32>',2392      },2393      HrmpChannelClosing: {2394        initiator: 'Compact<u32>',2395        sender: 'Compact<u32>',2396        recipient: 'Compact<u32>',2397      },2398      RelayedFrom: {2399        who: 'XcmV1MultilocationJunctions',2400        message: 'XcmV1Xcm',2401      },2402      SubscribeVersion: {2403        queryId: 'Compact<u64>',2404        maxResponseWeight: 'Compact<u64>',2405      },2406      UnsubscribeVersion: 'Null'2407    }2408  },2409  /**2410   * Lookup289: xcm::v1::order::Order<RuntimeCall>2411   **/2412  XcmV1Order: {2413    _enum: {2414      Noop: 'Null',2415      DepositAsset: {2416        assets: 'XcmV1MultiassetMultiAssetFilter',2417        maxAssets: 'u32',2418        beneficiary: 'XcmV1MultiLocation',2419      },2420      DepositReserveAsset: {2421        assets: 'XcmV1MultiassetMultiAssetFilter',2422        maxAssets: 'u32',2423        dest: 'XcmV1MultiLocation',2424        effects: 'Vec<XcmV1Order>',2425      },2426      ExchangeAsset: {2427        give: 'XcmV1MultiassetMultiAssetFilter',2428        receive: 'XcmV1MultiassetMultiAssets',2429      },2430      InitiateReserveWithdraw: {2431        assets: 'XcmV1MultiassetMultiAssetFilter',2432        reserve: 'XcmV1MultiLocation',2433        effects: 'Vec<XcmV1Order>',2434      },2435      InitiateTeleport: {2436        assets: 'XcmV1MultiassetMultiAssetFilter',2437        dest: 'XcmV1MultiLocation',2438        effects: 'Vec<XcmV1Order>',2439      },2440      QueryHolding: {2441        queryId: 'Compact<u64>',2442        dest: 'XcmV1MultiLocation',2443        assets: 'XcmV1MultiassetMultiAssetFilter',2444      },2445      BuyExecution: {2446        fees: 'XcmV1MultiAsset',2447        weight: 'u64',2448        debt: 'u64',2449        haltOnError: 'bool',2450        instructions: 'Vec<XcmV1Xcm>'2451      }2452    }2453  },2454  /**2455   * Lookup291: xcm::v1::Response2456   **/2457  XcmV1Response: {2458    _enum: {2459      Assets: 'XcmV1MultiassetMultiAssets',2460      Version: 'u32'2461    }2462  },2463  /**2464   * Lookup305: cumulus_pallet_xcm::pallet::Call<T>2465   **/2466  CumulusPalletXcmCall: 'Null',2467  /**2468   * Lookup306: cumulus_pallet_dmp_queue::pallet::Call<T>2469   **/2470  CumulusPalletDmpQueueCall: {2471    _enum: {2472      service_overweight: {2473        index: 'u64',2474        weightLimit: 'u64'2475      }2476    }2477  },2478  /**2479   * Lookup307: pallet_inflation::pallet::Call<T>2480   **/2481  PalletInflationCall: {2482    _enum: {2483      start_inflation: {2484        inflationStartRelayBlock: 'u32'2485      }2486    }2487  },2488  /**2489   * Lookup308: pallet_unique::Call<T>2490   **/2491  PalletUniqueCall: {2492    _enum: {2493      create_collection: {2494        collectionName: 'Vec<u16>',2495        collectionDescription: 'Vec<u16>',2496        tokenPrefix: 'Bytes',2497        mode: 'UpDataStructsCollectionMode',2498      },2499      create_collection_ex: {2500        data: 'UpDataStructsCreateCollectionData',2501      },2502      destroy_collection: {2503        collectionId: 'u32',2504      },2505      add_to_allow_list: {2506        collectionId: 'u32',2507        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2508      },2509      remove_from_allow_list: {2510        collectionId: 'u32',2511        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2512      },2513      change_collection_owner: {2514        collectionId: 'u32',2515        newOwner: 'AccountId32',2516      },2517      add_collection_admin: {2518        collectionId: 'u32',2519        newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2520      },2521      remove_collection_admin: {2522        collectionId: 'u32',2523        accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2524      },2525      set_collection_sponsor: {2526        collectionId: 'u32',2527        newSponsor: 'AccountId32',2528      },2529      confirm_sponsorship: {2530        collectionId: 'u32',2531      },2532      remove_collection_sponsor: {2533        collectionId: 'u32',2534      },2535      create_item: {2536        collectionId: 'u32',2537        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2538        data: 'UpDataStructsCreateItemData',2539      },2540      create_multiple_items: {2541        collectionId: 'u32',2542        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2543        itemsData: 'Vec<UpDataStructsCreateItemData>',2544      },2545      set_collection_properties: {2546        collectionId: 'u32',2547        properties: 'Vec<UpDataStructsProperty>',2548      },2549      delete_collection_properties: {2550        collectionId: 'u32',2551        propertyKeys: 'Vec<Bytes>',2552      },2553      set_token_properties: {2554        collectionId: 'u32',2555        tokenId: 'u32',2556        properties: 'Vec<UpDataStructsProperty>',2557      },2558      delete_token_properties: {2559        collectionId: 'u32',2560        tokenId: 'u32',2561        propertyKeys: 'Vec<Bytes>',2562      },2563      set_token_property_permissions: {2564        collectionId: 'u32',2565        propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2566      },2567      create_multiple_items_ex: {2568        collectionId: 'u32',2569        data: 'UpDataStructsCreateItemExData',2570      },2571      set_transfers_enabled_flag: {2572        collectionId: 'u32',2573        value: 'bool',2574      },2575      burn_item: {2576        collectionId: 'u32',2577        itemId: 'u32',2578        value: 'u128',2579      },2580      burn_from: {2581        collectionId: 'u32',2582        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2583        itemId: 'u32',2584        value: 'u128',2585      },2586      transfer: {2587        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2588        collectionId: 'u32',2589        itemId: 'u32',2590        value: 'u128',2591      },2592      approve: {2593        spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2594        collectionId: 'u32',2595        itemId: 'u32',2596        amount: 'u128',2597      },2598      transfer_from: {2599        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2600        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2601        collectionId: 'u32',2602        itemId: 'u32',2603        value: 'u128',2604      },2605      set_collection_limits: {2606        collectionId: 'u32',2607        newLimit: 'UpDataStructsCollectionLimits',2608      },2609      set_collection_permissions: {2610        collectionId: 'u32',2611        newPermission: 'UpDataStructsCollectionPermissions',2612      },2613      repartition: {2614        collectionId: 'u32',2615        tokenId: 'u32',2616        amount: 'u128',2617      },2618      set_allowance_for_all: {2619        collectionId: 'u32',2620        operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2621        approve: 'bool',2622      },2623      force_repair_collection: {2624        collectionId: 'u32',2625      },2626      force_repair_item: {2627        collectionId: 'u32',2628        itemId: 'u32'2629      }2630    }2631  },2632  /**2633   * Lookup313: up_data_structs::CollectionMode2634   **/2635  UpDataStructsCollectionMode: {2636    _enum: {2637      NFT: 'Null',2638      Fungible: 'u8',2639      ReFungible: 'Null'2640    }2641  },2642  /**2643   * Lookup314: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2644   **/2645  UpDataStructsCreateCollectionData: {2646    mode: 'UpDataStructsCollectionMode',2647    access: 'Option<UpDataStructsAccessMode>',2648    name: 'Vec<u16>',2649    description: 'Vec<u16>',2650    tokenPrefix: 'Bytes',2651    pendingSponsor: 'Option<AccountId32>',2652    limits: 'Option<UpDataStructsCollectionLimits>',2653    permissions: 'Option<UpDataStructsCollectionPermissions>',2654    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2655    properties: 'Vec<UpDataStructsProperty>'2656  },2657  /**2658   * Lookup316: up_data_structs::AccessMode2659   **/2660  UpDataStructsAccessMode: {2661    _enum: ['Normal', 'AllowList']2662  },2663  /**2664   * Lookup318: up_data_structs::CollectionLimits2665   **/2666  UpDataStructsCollectionLimits: {2667    accountTokenOwnershipLimit: 'Option<u32>',2668    sponsoredDataSize: 'Option<u32>',2669    sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2670    tokenLimit: 'Option<u32>',2671    sponsorTransferTimeout: 'Option<u32>',2672    sponsorApproveTimeout: 'Option<u32>',2673    ownerCanTransfer: 'Option<bool>',2674    ownerCanDestroy: 'Option<bool>',2675    transfersEnabled: 'Option<bool>'2676  },2677  /**2678   * Lookup320: up_data_structs::SponsoringRateLimit2679   **/2680  UpDataStructsSponsoringRateLimit: {2681    _enum: {2682      SponsoringDisabled: 'Null',2683      Blocks: 'u32'2684    }2685  },2686  /**2687   * Lookup323: up_data_structs::CollectionPermissions2688   **/2689  UpDataStructsCollectionPermissions: {2690    access: 'Option<UpDataStructsAccessMode>',2691    mintMode: 'Option<bool>',2692    nesting: 'Option<UpDataStructsNestingPermissions>'2693  },2694  /**2695   * Lookup325: up_data_structs::NestingPermissions2696   **/2697  UpDataStructsNestingPermissions: {2698    tokenOwner: 'bool',2699    collectionAdmin: 'bool',2700    restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2701  },2702  /**2703   * Lookup327: up_data_structs::OwnerRestrictedSet2704   **/2705  UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2706  /**2707   * Lookup332: up_data_structs::PropertyKeyPermission2708   **/2709  UpDataStructsPropertyKeyPermission: {2710    key: 'Bytes',2711    permission: 'UpDataStructsPropertyPermission'2712  },2713  /**2714   * Lookup333: up_data_structs::PropertyPermission2715   **/2716  UpDataStructsPropertyPermission: {2717    mutable: 'bool',2718    collectionAdmin: 'bool',2719    tokenOwner: 'bool'2720  },2721  /**2722   * Lookup336: up_data_structs::Property2723   **/2724  UpDataStructsProperty: {2725    key: 'Bytes',2726    value: 'Bytes'2727  },2728  /**2729   * Lookup339: up_data_structs::CreateItemData2730   **/2731  UpDataStructsCreateItemData: {2732    _enum: {2733      NFT: 'UpDataStructsCreateNftData',2734      Fungible: 'UpDataStructsCreateFungibleData',2735      ReFungible: 'UpDataStructsCreateReFungibleData'2736    }2737  },2738  /**2739   * Lookup340: up_data_structs::CreateNftData2740   **/2741  UpDataStructsCreateNftData: {2742    properties: 'Vec<UpDataStructsProperty>'2743  },2744  /**2745   * Lookup341: up_data_structs::CreateFungibleData2746   **/2747  UpDataStructsCreateFungibleData: {2748    value: 'u128'2749  },2750  /**2751   * Lookup342: up_data_structs::CreateReFungibleData2752   **/2753  UpDataStructsCreateReFungibleData: {2754    pieces: 'u128',2755    properties: 'Vec<UpDataStructsProperty>'2756  },2757  /**2758   * Lookup345: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2759   **/2760  UpDataStructsCreateItemExData: {2761    _enum: {2762      NFT: 'Vec<UpDataStructsCreateNftExData>',2763      Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2764      RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2765      RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2766    }2767  },2768  /**2769   * Lookup347: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2770   **/2771  UpDataStructsCreateNftExData: {2772    properties: 'Vec<UpDataStructsProperty>',2773    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2774  },2775  /**2776   * Lookup354: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2777   **/2778  UpDataStructsCreateRefungibleExSingleOwner: {2779    user: 'PalletEvmAccountBasicCrossAccountIdRepr',2780    pieces: 'u128',2781    properties: 'Vec<UpDataStructsProperty>'2782  },2783  /**2784   * Lookup356: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2785   **/2786  UpDataStructsCreateRefungibleExMultipleOwners: {2787    users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2788    properties: 'Vec<UpDataStructsProperty>'2789  },2790  /**2791   * Lookup357: pallet_configuration::pallet::Call<T>2792   **/2793  PalletConfigurationCall: {2794    _enum: {2795      set_weight_to_fee_coefficient_override: {2796        coeff: 'Option<u32>',2797      },2798      set_min_gas_price_override: {2799        coeff: 'Option<u64>',2800      },2801      set_xcm_allowed_locations: {2802        locations: 'Option<Vec<XcmV1MultiLocation>>',2803      },2804      set_app_promotion_configuration_override: {2805        configuration: 'PalletConfigurationAppPromotionConfiguration',2806      },2807      set_collator_selection_desired_collators: {2808        max: 'Option<u32>',2809      },2810      set_collator_selection_license_bond: {2811        amount: 'Option<u128>',2812      },2813      set_collator_selection_kick_threshold: {2814        threshold: 'Option<u32>'2815      }2816    }2817  },2818  /**2819   * Lookup362: pallet_configuration::AppPromotionConfiguration<BlockNumber>2820   **/2821  PalletConfigurationAppPromotionConfiguration: {2822    recalculationInterval: 'Option<u32>',2823    pendingInterval: 'Option<u32>',2824    intervalIncome: 'Option<Perbill>',2825    maxStakersPerCalculation: 'Option<u8>'2826  },2827  /**2828   * Lookup365: pallet_template_transaction_payment::Call<T>2829   **/2830  PalletTemplateTransactionPaymentCall: 'Null',2831  /**2832   * Lookup366: pallet_structure::pallet::Call<T>2833   **/2834  PalletStructureCall: 'Null',2835  /**2836   * Lookup367: pallet_rmrk_core::pallet::Call<T>2837   **/2838  PalletRmrkCoreCall: {2839    _enum: {2840      create_collection: {2841        metadata: 'Bytes',2842        max: 'Option<u32>',2843        symbol: 'Bytes',2844      },2845      destroy_collection: {2846        collectionId: 'u32',2847      },2848      change_collection_issuer: {2849        collectionId: 'u32',2850        newIssuer: 'MultiAddress',2851      },2852      lock_collection: {2853        collectionId: 'u32',2854      },2855      mint_nft: {2856        owner: 'Option<AccountId32>',2857        collectionId: 'u32',2858        recipient: 'Option<AccountId32>',2859        royaltyAmount: 'Option<Permill>',2860        metadata: 'Bytes',2861        transferable: 'bool',2862        resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',2863      },2864      burn_nft: {2865        collectionId: 'u32',2866        nftId: 'u32',2867        maxBurns: 'u32',2868      },2869      send: {2870        rmrkCollectionId: 'u32',2871        rmrkNftId: 'u32',2872        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2873      },2874      accept_nft: {2875        rmrkCollectionId: 'u32',2876        rmrkNftId: 'u32',2877        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',2878      },2879      reject_nft: {2880        rmrkCollectionId: 'u32',2881        rmrkNftId: 'u32',2882      },2883      accept_resource: {2884        rmrkCollectionId: 'u32',2885        rmrkNftId: 'u32',2886        resourceId: 'u32',2887      },2888      accept_resource_removal: {2889        rmrkCollectionId: 'u32',2890        rmrkNftId: 'u32',2891        resourceId: 'u32',2892      },2893      set_property: {2894        rmrkCollectionId: 'Compact<u32>',2895        maybeNftId: 'Option<u32>',2896        key: 'Bytes',2897        value: 'Bytes',2898      },2899      set_priority: {2900        rmrkCollectionId: 'u32',2901        rmrkNftId: 'u32',2902        priorities: 'Vec<u32>',2903      },2904      add_basic_resource: {2905        rmrkCollectionId: 'u32',2906        nftId: 'u32',2907        resource: 'RmrkTraitsResourceBasicResource',2908      },2909      add_composable_resource: {2910        rmrkCollectionId: 'u32',2911        nftId: 'u32',2912        resource: 'RmrkTraitsResourceComposableResource',2913      },2914      add_slot_resource: {2915        rmrkCollectionId: 'u32',2916        nftId: 'u32',2917        resource: 'RmrkTraitsResourceSlotResource',2918      },2919      remove_resource: {2920        rmrkCollectionId: 'u32',2921        nftId: 'u32',2922        resourceId: 'u32'2923      }2924    }2925  },2926  /**2927   * Lookup373: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2928   **/2929  RmrkTraitsResourceResourceTypes: {2930    _enum: {2931      Basic: 'RmrkTraitsResourceBasicResource',2932      Composable: 'RmrkTraitsResourceComposableResource',2933      Slot: 'RmrkTraitsResourceSlotResource'2934    }2935  },2936  /**2937   * Lookup375: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2938   **/2939  RmrkTraitsResourceBasicResource: {2940    src: 'Option<Bytes>',2941    metadata: 'Option<Bytes>',2942    license: 'Option<Bytes>',2943    thumb: 'Option<Bytes>'2944  },2945  /**2946   * Lookup377: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2947   **/2948  RmrkTraitsResourceComposableResource: {2949    parts: 'Vec<u32>',2950    base: 'u32',2951    src: 'Option<Bytes>',2952    metadata: 'Option<Bytes>',2953    license: 'Option<Bytes>',2954    thumb: 'Option<Bytes>'2955  },2956  /**2957   * Lookup378: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2958   **/2959  RmrkTraitsResourceSlotResource: {2960    base: 'u32',2961    src: 'Option<Bytes>',2962    metadata: 'Option<Bytes>',2963    slot: 'u32',2964    license: 'Option<Bytes>',2965    thumb: 'Option<Bytes>'2966  },2967  /**2968   * Lookup381: pallet_rmrk_equip::pallet::Call<T>2969   **/2970  PalletRmrkEquipCall: {2971    _enum: {2972      create_base: {2973        baseType: 'Bytes',2974        symbol: 'Bytes',2975        parts: 'Vec<RmrkTraitsPartPartType>',2976      },2977      theme_add: {2978        baseId: 'u32',2979        theme: 'RmrkTraitsTheme',2980      },2981      equippable: {2982        baseId: 'u32',2983        slotId: 'u32',2984        equippables: 'RmrkTraitsPartEquippableList'2985      }2986    }2987  },2988  /**2989   * Lookup384: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2990   **/2991  RmrkTraitsPartPartType: {2992    _enum: {2993      FixedPart: 'RmrkTraitsPartFixedPart',2994      SlotPart: 'RmrkTraitsPartSlotPart'2995    }2996  },2997  /**2998   * Lookup386: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2999   **/3000  RmrkTraitsPartFixedPart: {3001    id: 'u32',3002    z: 'u32',3003    src: 'Bytes'3004  },3005  /**3006   * Lookup387: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3007   **/3008  RmrkTraitsPartSlotPart: {3009    id: 'u32',3010    equippable: 'RmrkTraitsPartEquippableList',3011    src: 'Bytes',3012    z: 'u32'3013  },3014  /**3015   * Lookup388: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3016   **/3017  RmrkTraitsPartEquippableList: {3018    _enum: {3019      All: 'Null',3020      Empty: 'Null',3021      Custom: 'Vec<u32>'3022    }3023  },3024  /**3025   * Lookup390: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>3026   **/3027  RmrkTraitsTheme: {3028    name: 'Bytes',3029    properties: 'Vec<RmrkTraitsThemeThemeProperty>',3030    inherit: 'bool'3031  },3032  /**3033   * Lookup392: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3034   **/3035  RmrkTraitsThemeThemeProperty: {3036    key: 'Bytes',3037    value: 'Bytes'3038  },3039  /**3040   * Lookup394: pallet_app_promotion::pallet::Call<T>3041   **/3042  PalletAppPromotionCall: {3043    _enum: {3044      set_admin_address: {3045        admin: 'PalletEvmAccountBasicCrossAccountIdRepr',3046      },3047      stake: {3048        amount: 'u128',3049      },3050      unstake: 'Null',3051      sponsor_collection: {3052        collectionId: 'u32',3053      },3054      stop_sponsoring_collection: {3055        collectionId: 'u32',3056      },3057      sponsor_contract: {3058        contractId: 'H160',3059      },3060      stop_sponsoring_contract: {3061        contractId: 'H160',3062      },3063      payout_stakers: {3064        stakersNumber: 'Option<u8>'3065      }3066    }3067  },3068  /**3069   * Lookup395: pallet_foreign_assets::module::Call<T>3070   **/3071  PalletForeignAssetsModuleCall: {3072    _enum: {3073      register_foreign_asset: {3074        owner: 'AccountId32',3075        location: 'XcmVersionedMultiLocation',3076        metadata: 'PalletForeignAssetsModuleAssetMetadata',3077      },3078      update_foreign_asset: {3079        foreignAssetId: 'u32',3080        location: 'XcmVersionedMultiLocation',3081        metadata: 'PalletForeignAssetsModuleAssetMetadata'3082      }3083    }3084  },3085  /**3086   * Lookup396: pallet_evm::pallet::Call<T>3087   **/3088  PalletEvmCall: {3089    _enum: {3090      withdraw: {3091        address: 'H160',3092        value: 'u128',3093      },3094      call: {3095        source: 'H160',3096        target: 'H160',3097        input: 'Bytes',3098        value: 'U256',3099        gasLimit: 'u64',3100        maxFeePerGas: 'U256',3101        maxPriorityFeePerGas: 'Option<U256>',3102        nonce: 'Option<U256>',3103        accessList: 'Vec<(H160,Vec<H256>)>',3104      },3105      create: {3106        source: 'H160',3107        init: 'Bytes',3108        value: 'U256',3109        gasLimit: 'u64',3110        maxFeePerGas: 'U256',3111        maxPriorityFeePerGas: 'Option<U256>',3112        nonce: 'Option<U256>',3113        accessList: 'Vec<(H160,Vec<H256>)>',3114      },3115      create2: {3116        source: 'H160',3117        init: 'Bytes',3118        salt: 'H256',3119        value: 'U256',3120        gasLimit: 'u64',3121        maxFeePerGas: 'U256',3122        maxPriorityFeePerGas: 'Option<U256>',3123        nonce: 'Option<U256>',3124        accessList: 'Vec<(H160,Vec<H256>)>'3125      }3126    }3127  },3128  /**3129   * Lookup402: pallet_ethereum::pallet::Call<T>3130   **/3131  PalletEthereumCall: {3132    _enum: {3133      transact: {3134        transaction: 'EthereumTransactionTransactionV2'3135      }3136    }3137  },3138  /**3139   * Lookup403: ethereum::transaction::TransactionV23140   **/3141  EthereumTransactionTransactionV2: {3142    _enum: {3143      Legacy: 'EthereumTransactionLegacyTransaction',3144      EIP2930: 'EthereumTransactionEip2930Transaction',3145      EIP1559: 'EthereumTransactionEip1559Transaction'3146    }3147  },3148  /**3149   * Lookup404: ethereum::transaction::LegacyTransaction3150   **/3151  EthereumTransactionLegacyTransaction: {3152    nonce: 'U256',3153    gasPrice: 'U256',3154    gasLimit: 'U256',3155    action: 'EthereumTransactionTransactionAction',3156    value: 'U256',3157    input: 'Bytes',3158    signature: 'EthereumTransactionTransactionSignature'3159  },3160  /**3161   * Lookup405: ethereum::transaction::TransactionAction3162   **/3163  EthereumTransactionTransactionAction: {3164    _enum: {3165      Call: 'H160',3166      Create: 'Null'3167    }3168  },3169  /**3170   * Lookup406: ethereum::transaction::TransactionSignature3171   **/3172  EthereumTransactionTransactionSignature: {3173    v: 'u64',3174    r: 'H256',3175    s: 'H256'3176  },3177  /**3178   * Lookup408: ethereum::transaction::EIP2930Transaction3179   **/3180  EthereumTransactionEip2930Transaction: {3181    chainId: 'u64',3182    nonce: 'U256',3183    gasPrice: 'U256',3184    gasLimit: 'U256',3185    action: 'EthereumTransactionTransactionAction',3186    value: 'U256',3187    input: 'Bytes',3188    accessList: 'Vec<EthereumTransactionAccessListItem>',3189    oddYParity: 'bool',3190    r: 'H256',3191    s: 'H256'3192  },3193  /**3194   * Lookup410: ethereum::transaction::AccessListItem3195   **/3196  EthereumTransactionAccessListItem: {3197    address: 'H160',3198    storageKeys: 'Vec<H256>'3199  },3200  /**3201   * Lookup411: ethereum::transaction::EIP1559Transaction3202   **/3203  EthereumTransactionEip1559Transaction: {3204    chainId: 'u64',3205    nonce: 'U256',3206    maxPriorityFeePerGas: 'U256',3207    maxFeePerGas: 'U256',3208    gasLimit: 'U256',3209    action: 'EthereumTransactionTransactionAction',3210    value: 'U256',3211    input: 'Bytes',3212    accessList: 'Vec<EthereumTransactionAccessListItem>',3213    oddYParity: 'bool',3214    r: 'H256',3215    s: 'H256'3216  },3217  /**3218   * Lookup412: pallet_data_management::pallet::Call<T>3219   **/3220  PalletDataManagementCall: {3221    _enum: {3222      begin: {3223        address: 'H160',3224      },3225      set_data: {3226        address: 'H160',3227        data: 'Vec<(H256,H256)>',3228      },3229      finish: {3230        address: 'H160',3231        code: 'Bytes',3232      },3233      insert_eth_logs: {3234        logs: 'Vec<EthereumLog>',3235      },3236      insert_events: {3237        events: 'Vec<Bytes>'3238      }3239    }3240  },3241  /**3242   * Lookup416: pallet_maintenance::pallet::Call<T>3243   **/3244  PalletMaintenanceCall: {3245    _enum: ['enable', 'disable']3246  },3247  /**3248   * Lookup417: pallet_test_utils::pallet::Call<T>3249   **/3250  PalletTestUtilsCall: {3251    _enum: {3252      enable: 'Null',3253      set_test_value: {3254        value: 'u32',3255      },3256      set_test_value_and_rollback: {3257        value: 'u32',3258      },3259      inc_test_value: 'Null',3260      just_take_fee: 'Null',3261      batch_all: {3262        calls: 'Vec<Call>'3263      }3264    }3265  },3266  /**3267   * Lookup419: pallet_sudo::pallet::Error<T>3268   **/3269  PalletSudoError: {3270    _enum: ['RequireSudo']3271  },3272  /**3273   * Lookup421: orml_vesting::module::Error<T>3274   **/3275  OrmlVestingModuleError: {3276    _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3277  },3278  /**3279   * Lookup422: orml_xtokens::module::Error<T>3280   **/3281  OrmlXtokensModuleError: {3282    _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3283  },3284  /**3285   * Lookup425: orml_tokens::BalanceLock<Balance>3286   **/3287  OrmlTokensBalanceLock: {3288    id: '[u8;8]',3289    amount: 'u128'3290  },3291  /**3292   * Lookup427: orml_tokens::AccountData<Balance>3293   **/3294  OrmlTokensAccountData: {3295    free: 'u128',3296    reserved: 'u128',3297    frozen: 'u128'3298  },3299  /**3300   * Lookup429: orml_tokens::ReserveData<ReserveIdentifier, Balance>3301   **/3302  OrmlTokensReserveData: {3303    id: 'Null',3304    amount: 'u128'3305  },3306  /**3307   * Lookup431: orml_tokens::module::Error<T>3308   **/3309  OrmlTokensModuleError: {3310    _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3311  },3312  /**3313   * Lookup433: cumulus_pallet_xcmp_queue::InboundChannelDetails3314   **/3315  CumulusPalletXcmpQueueInboundChannelDetails: {3316    sender: 'u32',3317    state: 'CumulusPalletXcmpQueueInboundState',3318    messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3319  },3320  /**3321   * Lookup434: cumulus_pallet_xcmp_queue::InboundState3322   **/3323  CumulusPalletXcmpQueueInboundState: {3324    _enum: ['Ok', 'Suspended']3325  },3326  /**3327   * Lookup437: polkadot_parachain::primitives::XcmpMessageFormat3328   **/3329  PolkadotParachainPrimitivesXcmpMessageFormat: {3330    _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3331  },3332  /**3333   * Lookup440: cumulus_pallet_xcmp_queue::OutboundChannelDetails3334   **/3335  CumulusPalletXcmpQueueOutboundChannelDetails: {3336    recipient: 'u32',3337    state: 'CumulusPalletXcmpQueueOutboundState',3338    signalsExist: 'bool',3339    firstIndex: 'u16',3340    lastIndex: 'u16'3341  },3342  /**3343   * Lookup441: cumulus_pallet_xcmp_queue::OutboundState3344   **/3345  CumulusPalletXcmpQueueOutboundState: {3346    _enum: ['Ok', 'Suspended']3347  },3348  /**3349   * Lookup443: cumulus_pallet_xcmp_queue::QueueConfigData3350   **/3351  CumulusPalletXcmpQueueQueueConfigData: {3352    suspendThreshold: 'u32',3353    dropThreshold: 'u32',3354    resumeThreshold: 'u32',3355    thresholdWeight: 'SpWeightsWeightV2Weight',3356    weightRestrictDecay: 'SpWeightsWeightV2Weight',3357    xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3358  },3359  /**3360   * Lookup445: cumulus_pallet_xcmp_queue::pallet::Error<T>3361   **/3362  CumulusPalletXcmpQueueError: {3363    _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3364  },3365  /**3366   * Lookup446: pallet_xcm::pallet::Error<T>3367   **/3368  PalletXcmError: {3369    _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3370  },3371  /**3372   * Lookup447: cumulus_pallet_xcm::pallet::Error<T>3373   **/3374  CumulusPalletXcmError: 'Null',3375  /**3376   * Lookup448: cumulus_pallet_dmp_queue::ConfigData3377   **/3378  CumulusPalletDmpQueueConfigData: {3379    maxIndividual: 'SpWeightsWeightV2Weight'3380  },3381  /**3382   * Lookup449: cumulus_pallet_dmp_queue::PageIndexData3383   **/3384  CumulusPalletDmpQueuePageIndexData: {3385    beginUsed: 'u32',3386    endUsed: 'u32',3387    overweightCount: 'u64'3388  },3389  /**3390   * Lookup452: cumulus_pallet_dmp_queue::pallet::Error<T>3391   **/3392  CumulusPalletDmpQueueError: {3393    _enum: ['Unknown', 'OverLimit']3394  },3395  /**3396   * Lookup456: pallet_unique::Error<T>3397   **/3398  PalletUniqueError: {3399    _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3400  },3401  /**3402   * Lookup457: pallet_configuration::pallet::Error<T>3403   **/3404  PalletConfigurationError: {3405    _enum: ['InconsistentConfiguration']3406  },3407  /**3408   * Lookup458: up_data_structs::Collection<sp_core::crypto::AccountId32>3409   **/3410  UpDataStructsCollection: {3411    owner: 'AccountId32',3412    mode: 'UpDataStructsCollectionMode',3413    name: 'Vec<u16>',3414    description: 'Vec<u16>',3415    tokenPrefix: 'Bytes',3416    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3417    limits: 'UpDataStructsCollectionLimits',3418    permissions: 'UpDataStructsCollectionPermissions',3419    flags: '[u8;1]'3420  },3421  /**3422   * Lookup459: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3423   **/3424  UpDataStructsSponsorshipStateAccountId32: {3425    _enum: {3426      Disabled: 'Null',3427      Unconfirmed: 'AccountId32',3428      Confirmed: 'AccountId32'3429    }3430  },3431  /**3432   * Lookup460: up_data_structs::Properties3433   **/3434  UpDataStructsProperties: {3435    map: 'UpDataStructsPropertiesMapBoundedVec',3436    consumedSpace: 'u32',3437    spaceLimit: 'u32'3438  },3439  /**3440   * Lookup461: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3441   **/3442  UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3443  /**3444   * Lookup466: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3445   **/3446  UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3447  /**3448   * Lookup473: up_data_structs::CollectionStats3449   **/3450  UpDataStructsCollectionStats: {3451    created: 'u32',3452    destroyed: 'u32',3453    alive: 'u32'3454  },3455  /**3456   * Lookup474: up_data_structs::TokenChild3457   **/3458  UpDataStructsTokenChild: {3459    token: 'u32',3460    collection: 'u32'3461  },3462  /**3463   * Lookup475: PhantomType::up_data_structs<T>3464   **/3465  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3466  /**3467   * Lookup477: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3468   **/3469  UpDataStructsTokenData: {3470    properties: 'Vec<UpDataStructsProperty>',3471    owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3472    pieces: 'u128'3473  },3474  /**3475   * Lookup479: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3476   **/3477  UpDataStructsRpcCollection: {3478    owner: 'AccountId32',3479    mode: 'UpDataStructsCollectionMode',3480    name: 'Vec<u16>',3481    description: 'Vec<u16>',3482    tokenPrefix: 'Bytes',3483    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3484    limits: 'UpDataStructsCollectionLimits',3485    permissions: 'UpDataStructsCollectionPermissions',3486    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3487    properties: 'Vec<UpDataStructsProperty>',3488    readOnly: 'bool',3489    flags: 'UpDataStructsRpcCollectionFlags'3490  },3491  /**3492   * Lookup480: up_data_structs::RpcCollectionFlags3493   **/3494  UpDataStructsRpcCollectionFlags: {3495    foreign: 'bool',3496    erc721metadata: 'bool'3497  },3498  /**3499   * Lookup481: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3500   **/3501  RmrkTraitsCollectionCollectionInfo: {3502    issuer: 'AccountId32',3503    metadata: 'Bytes',3504    max: 'Option<u32>',3505    symbol: 'Bytes',3506    nftsCount: 'u32'3507  },3508  /**3509   * Lookup482: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3510   **/3511  RmrkTraitsNftNftInfo: {3512    owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3513    royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3514    metadata: 'Bytes',3515    equipped: 'bool',3516    pending: 'bool'3517  },3518  /**3519   * Lookup484: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3520   **/3521  RmrkTraitsNftRoyaltyInfo: {3522    recipient: 'AccountId32',3523    amount: 'Permill'3524  },3525  /**3526   * Lookup485: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3527   **/3528  RmrkTraitsResourceResourceInfo: {3529    id: 'u32',3530    resource: 'RmrkTraitsResourceResourceTypes',3531    pending: 'bool',3532    pendingRemoval: 'bool'3533  },3534  /**3535   * Lookup486: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3536   **/3537  RmrkTraitsPropertyPropertyInfo: {3538    key: 'Bytes',3539    value: 'Bytes'3540  },3541  /**3542   * Lookup487: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3543   **/3544  RmrkTraitsBaseBaseInfo: {3545    issuer: 'AccountId32',3546    baseType: 'Bytes',3547    symbol: 'Bytes'3548  },3549  /**3550   * Lookup488: rmrk_traits::nft::NftChild3551   **/3552  RmrkTraitsNftNftChild: {3553    collectionId: 'u32',3554    nftId: 'u32'3555  },3556  /**3557   * Lookup490: pallet_common::pallet::Error<T>3558   **/3559  PalletCommonError: {3560    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3561  },3562  /**3563   * Lookup492: pallet_fungible::pallet::Error<T>3564   **/3565  PalletFungibleError: {3566    _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3567  },3568  /**3569   * Lookup493: pallet_refungible::ItemData3570   **/3571  PalletRefungibleItemData: {3572    constData: 'Bytes'3573  },3574  /**3575   * Lookup498: pallet_refungible::pallet::Error<T>3576   **/3577  PalletRefungibleError: {3578    _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3579  },3580  /**3581   * Lookup499: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3582   **/3583  PalletNonfungibleItemData: {3584    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3585  },3586  /**3587   * Lookup501: up_data_structs::PropertyScope3588   **/3589  UpDataStructsPropertyScope: {3590    _enum: ['None', 'Rmrk']3591  },3592  /**3593   * Lookup503: pallet_nonfungible::pallet::Error<T>3594   **/3595  PalletNonfungibleError: {3596    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3597  },3598  /**3599   * Lookup504: pallet_structure::pallet::Error<T>3600   **/3601  PalletStructureError: {3602    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3603  },3604  /**3605   * Lookup505: pallet_rmrk_core::pallet::Error<T>3606   **/3607  PalletRmrkCoreError: {3608    _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3609  },3610  /**3611   * Lookup507: pallet_rmrk_equip::pallet::Error<T>3612   **/3613  PalletRmrkEquipError: {3614    _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3615  },3616  /**3617   * Lookup513: pallet_app_promotion::pallet::Error<T>3618   **/3619  PalletAppPromotionError: {3620    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3621  },3622  /**3623   * Lookup514: pallet_foreign_assets::module::Error<T>3624   **/3625  PalletForeignAssetsModuleError: {3626    _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3627  },3628  /**3629   * Lookup516: pallet_evm::pallet::Error<T>3630   **/3631  PalletEvmError: {3632    _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3633  },3634  /**3635   * Lookup519: fp_rpc::TransactionStatus3636   **/3637  FpRpcTransactionStatus: {3638    transactionHash: 'H256',3639    transactionIndex: 'u32',3640    from: 'H160',3641    to: 'Option<H160>',3642    contractAddress: 'Option<H160>',3643    logs: 'Vec<EthereumLog>',3644    logsBloom: 'EthbloomBloom'3645  },3646  /**3647   * Lookup521: ethbloom::Bloom3648   **/3649  EthbloomBloom: '[u8;256]',3650  /**3651   * Lookup523: ethereum::receipt::ReceiptV33652   **/3653  EthereumReceiptReceiptV3: {3654    _enum: {3655      Legacy: 'EthereumReceiptEip658ReceiptData',3656      EIP2930: 'EthereumReceiptEip658ReceiptData',3657      EIP1559: 'EthereumReceiptEip658ReceiptData'3658    }3659  },3660  /**3661   * Lookup524: ethereum::receipt::EIP658ReceiptData3662   **/3663  EthereumReceiptEip658ReceiptData: {3664    statusCode: 'u8',3665    usedGas: 'U256',3666    logsBloom: 'EthbloomBloom',3667    logs: 'Vec<EthereumLog>'3668  },3669  /**3670   * Lookup525: ethereum::block::Block<ethereum::transaction::TransactionV2>3671   **/3672  EthereumBlock: {3673    header: 'EthereumHeader',3674    transactions: 'Vec<EthereumTransactionTransactionV2>',3675    ommers: 'Vec<EthereumHeader>'3676  },3677  /**3678   * Lookup526: ethereum::header::Header3679   **/3680  EthereumHeader: {3681    parentHash: 'H256',3682    ommersHash: 'H256',3683    beneficiary: 'H160',3684    stateRoot: 'H256',3685    transactionsRoot: 'H256',3686    receiptsRoot: 'H256',3687    logsBloom: 'EthbloomBloom',3688    difficulty: 'U256',3689    number: 'U256',3690    gasLimit: 'U256',3691    gasUsed: 'U256',3692    timestamp: 'u64',3693    extraData: 'Bytes',3694    mixHash: 'H256',3695    nonce: 'EthereumTypesHashH64'3696  },3697  /**3698   * Lookup527: ethereum_types::hash::H643699   **/3700  EthereumTypesHashH64: '[u8;8]',3701  /**3702   * Lookup532: pallet_ethereum::pallet::Error<T>3703   **/3704  PalletEthereumError: {3705    _enum: ['InvalidSignature', 'PreLogExists']3706  },3707  /**3708   * Lookup533: pallet_evm_coder_substrate::pallet::Error<T>3709   **/3710  PalletEvmCoderSubstrateError: {3711    _enum: ['OutOfGas', 'OutOfFund']3712  },3713  /**3714   * Lookup534: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3715   **/3716  UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3717    _enum: {3718      Disabled: 'Null',3719      Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3720      Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3721    }3722  },3723  /**3724   * Lookup535: pallet_evm_contract_helpers::SponsoringModeT3725   **/3726  PalletEvmContractHelpersSponsoringModeT: {3727    _enum: ['Disabled', 'Allowlisted', 'Generous']3728  },3729  /**3730   * Lookup541: pallet_evm_contract_helpers::pallet::Error<T>3731   **/3732  PalletEvmContractHelpersError: {3733    _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3734  },3735  /**3736   * Lookup542: pallet_data_management::pallet::Error<T>3737   **/3738  PalletDataManagementError: {3739    _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3740  },3741  /**3742   * Lookup543: pallet_maintenance::pallet::Error<T>3743   **/3744  PalletMaintenanceError: 'Null',3745  /**3746   * Lookup544: pallet_test_utils::pallet::Error<T>3747   **/3748  PalletTestUtilsError: {3749    _enum: ['TestPalletDisabled', 'TriggerRollback']3750  },3751  /**3752   * Lookup546: sp_runtime::MultiSignature3753   **/3754  SpRuntimeMultiSignature: {3755    _enum: {3756      Ed25519: 'SpCoreEd25519Signature',3757      Sr25519: 'SpCoreSr25519Signature',3758      Ecdsa: 'SpCoreEcdsaSignature'3759    }3760  },3761  /**3762   * Lookup547: sp_core::ed25519::Signature3763   **/3764  SpCoreEd25519Signature: '[u8;64]',3765  /**3766   * Lookup549: sp_core::sr25519::Signature3767   **/3768  SpCoreSr25519Signature: '[u8;64]',3769  /**3770   * Lookup550: sp_core::ecdsa::Signature3771   **/3772  SpCoreEcdsaSignature: '[u8;65]',3773  /**3774   * Lookup553: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3775   **/3776  FrameSystemExtensionsCheckSpecVersion: 'Null',3777  /**3778   * Lookup554: frame_system::extensions::check_tx_version::CheckTxVersion<T>3779   **/3780  FrameSystemExtensionsCheckTxVersion: 'Null',3781  /**3782   * Lookup555: frame_system::extensions::check_genesis::CheckGenesis<T>3783   **/3784  FrameSystemExtensionsCheckGenesis: 'Null',3785  /**3786   * Lookup558: frame_system::extensions::check_nonce::CheckNonce<T>3787   **/3788  FrameSystemExtensionsCheckNonce: 'Compact<u32>',3789  /**3790   * Lookup559: frame_system::extensions::check_weight::CheckWeight<T>3791   **/3792  FrameSystemExtensionsCheckWeight: 'Null',3793  /**3794   * Lookup560: opal_runtime::runtime_common::maintenance::CheckMaintenance3795   **/3796  OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3797  /**3798   * Lookup561: opal_runtime::runtime_common::data_management::FilterIdentity3799   **/3800  OpalRuntimeRuntimeCommonDataManagementFilterIdentity: 'Null',3801  /**3802   * Lookup562: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3803   **/3804  PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3805  /**3806   * Lookup563: opal_runtime::Runtime3807   **/3808  OpalRuntimeRuntime: 'Null',3809  /**3810   * Lookup564: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3811   **/3812  PalletEthereumFakeTransactionFinalizer: 'Null'3813};
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDataManagementCall, PalletDataManagementError, PalletDataManagementEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   interface InterfaceTypes {
@@ -74,6 +74,7 @@
     FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
     FrameSystemPhase: FrameSystemPhase;
     OpalRuntimeRuntime: OpalRuntimeRuntime;
+    OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;
     OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
     OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
     OrmlTokensAccountData: OrmlTokensAccountData;
@@ -111,6 +112,10 @@
     PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
     PalletConfigurationCall: PalletConfigurationCall;
     PalletConfigurationError: PalletConfigurationError;
+    PalletConfigurationEvent: PalletConfigurationEvent;
+    PalletDataManagementCall: PalletDataManagementCall;
+    PalletDataManagementError: PalletDataManagementError;
+    PalletDataManagementEvent: PalletDataManagementEvent;
     PalletEthereumCall: PalletEthereumCall;
     PalletEthereumError: PalletEthereumError;
     PalletEthereumEvent: PalletEthereumEvent;
@@ -123,9 +128,6 @@
     PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
     PalletEvmError: PalletEvmError;
     PalletEvmEvent: PalletEvmEvent;
-    PalletEvmMigrationCall: PalletEvmMigrationCall;
-    PalletEvmMigrationError: PalletEvmMigrationError;
-    PalletEvmMigrationEvent: PalletEvmMigrationEvent;
     PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;
     PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;
     PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;
@@ -133,6 +135,15 @@
     PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;
     PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
     PalletFungibleError: PalletFungibleError;
+    PalletIdentityBitFlags: PalletIdentityBitFlags;
+    PalletIdentityCall: PalletIdentityCall;
+    PalletIdentityError: PalletIdentityError;
+    PalletIdentityEvent: PalletIdentityEvent;
+    PalletIdentityIdentityField: PalletIdentityIdentityField;
+    PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;
+    PalletIdentityJudgement: PalletIdentityJudgement;
+    PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;
+    PalletIdentityRegistration: PalletIdentityRegistration;
     PalletInflationCall: PalletInflationCall;
     PalletMaintenanceCall: PalletMaintenanceCall;
     PalletMaintenanceError: PalletMaintenanceError;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -5,7 +5,8 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/lookup';
 
-import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { Data } from '@polkadot/types';
+import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Set, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
 import type { Event } from '@polkadot/types/interfaces/system';
@@ -198,18 +199,6 @@
 
   /** @name PalletCollatorSelectionEvent (30) */
   interface PalletCollatorSelectionEvent extends Enum {
-    readonly isNewDesiredCollators: boolean;
-    readonly asNewDesiredCollators: {
-      readonly desiredCollators: u32;
-    } & Struct;
-    readonly isNewLicenseBond: boolean;
-    readonly asNewLicenseBond: {
-      readonly bondAmount: u128;
-    } & Struct;
-    readonly isNewKickThreshold: boolean;
-    readonly asNewKickThreshold: {
-      readonly lengthInBlocks: u32;
-    } & Struct;
     readonly isInvulnerableAdded: boolean;
     readonly asInvulnerableAdded: {
       readonly invulnerable: AccountId32;
@@ -236,7 +225,7 @@
     readonly asCandidateRemoved: {
       readonly accountId: AccountId32;
     } & Struct;
-    readonly type: 'NewDesiredCollators' | 'NewLicenseBond' | 'NewKickThreshold' | 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseForfeited' | 'CandidateAdded' | 'CandidateRemoved';
+    readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseForfeited' | 'CandidateAdded' | 'CandidateRemoved';
   }
 
   /** @name PalletSessionEvent (31) */
@@ -248,7 +237,63 @@
     readonly type: 'NewSession';
   }
 
-  /** @name PalletBalancesEvent (32) */
+  /** @name PalletIdentityEvent (32) */
+  interface PalletIdentityEvent extends Enum {
+    readonly isIdentitySet: boolean;
+    readonly asIdentitySet: {
+      readonly who: AccountId32;
+    } & Struct;
+    readonly isIdentityCleared: boolean;
+    readonly asIdentityCleared: {
+      readonly who: AccountId32;
+      readonly deposit: u128;
+    } & Struct;
+    readonly isIdentityKilled: boolean;
+    readonly asIdentityKilled: {
+      readonly who: AccountId32;
+      readonly deposit: u128;
+    } & Struct;
+    readonly isJudgementRequested: boolean;
+    readonly asJudgementRequested: {
+      readonly who: AccountId32;
+      readonly registrarIndex: u32;
+    } & Struct;
+    readonly isJudgementUnrequested: boolean;
+    readonly asJudgementUnrequested: {
+      readonly who: AccountId32;
+      readonly registrarIndex: u32;
+    } & Struct;
+    readonly isJudgementGiven: boolean;
+    readonly asJudgementGiven: {
+      readonly target: AccountId32;
+      readonly registrarIndex: u32;
+    } & Struct;
+    readonly isRegistrarAdded: boolean;
+    readonly asRegistrarAdded: {
+      readonly registrarIndex: u32;
+    } & Struct;
+    readonly isSubIdentityAdded: boolean;
+    readonly asSubIdentityAdded: {
+      readonly sub: AccountId32;
+      readonly main: AccountId32;
+      readonly deposit: u128;
+    } & Struct;
+    readonly isSubIdentityRemoved: boolean;
+    readonly asSubIdentityRemoved: {
+      readonly sub: AccountId32;
+      readonly main: AccountId32;
+      readonly deposit: u128;
+    } & Struct;
+    readonly isSubIdentityRevoked: boolean;
+    readonly asSubIdentityRevoked: {
+      readonly sub: AccountId32;
+      readonly main: AccountId32;
+      readonly deposit: u128;
+    } & Struct;
+    readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';
+  }
+
+  /** @name PalletBalancesEvent (33) */
   interface PalletBalancesEvent extends Enum {
     readonly isEndowed: boolean;
     readonly asEndowed: {
@@ -307,14 +352,14 @@
     readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
   }
 
-  /** @name FrameSupportTokensMiscBalanceStatus (33) */
+  /** @name FrameSupportTokensMiscBalanceStatus (34) */
   interface FrameSupportTokensMiscBalanceStatus extends Enum {
     readonly isFree: boolean;
     readonly isReserved: boolean;
     readonly type: 'Free' | 'Reserved';
   }
 
-  /** @name PalletTransactionPaymentEvent (34) */
+  /** @name PalletTransactionPaymentEvent (35) */
   interface PalletTransactionPaymentEvent extends Enum {
     readonly isTransactionFeePaid: boolean;
     readonly asTransactionFeePaid: {
@@ -325,7 +370,7 @@
     readonly type: 'TransactionFeePaid';
   }
 
-  /** @name PalletTreasuryEvent (35) */
+  /** @name PalletTreasuryEvent (36) */
   interface PalletTreasuryEvent extends Enum {
     readonly isProposed: boolean;
     readonly asProposed: {
@@ -367,7 +412,7 @@
     readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';
   }
 
-  /** @name PalletSudoEvent (36) */
+  /** @name PalletSudoEvent (37) */
   interface PalletSudoEvent extends Enum {
     readonly isSudid: boolean;
     readonly asSudid: {
@@ -384,7 +429,7 @@
     readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
   }
 
-  /** @name OrmlVestingModuleEvent (40) */
+  /** @name OrmlVestingModuleEvent (41) */
   interface OrmlVestingModuleEvent extends Enum {
     readonly isVestingScheduleAdded: boolean;
     readonly asVestingScheduleAdded: {
@@ -404,7 +449,7 @@
     readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
   }
 
-  /** @name OrmlVestingVestingSchedule (41) */
+  /** @name OrmlVestingVestingSchedule (42) */
   interface OrmlVestingVestingSchedule extends Struct {
     readonly start: u32;
     readonly period: u32;
@@ -412,7 +457,7 @@
     readonly perPeriod: Compact<u128>;
   }
 
-  /** @name OrmlXtokensModuleEvent (43) */
+  /** @name OrmlXtokensModuleEvent (44) */
   interface OrmlXtokensModuleEvent extends Enum {
     readonly isTransferredMultiAssets: boolean;
     readonly asTransferredMultiAssets: {
@@ -424,16 +469,16 @@
     readonly type: 'TransferredMultiAssets';
   }
 
-  /** @name XcmV1MultiassetMultiAssets (44) */
+  /** @name XcmV1MultiassetMultiAssets (45) */
   interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
 
-  /** @name XcmV1MultiAsset (46) */
+  /** @name XcmV1MultiAsset (47) */
   interface XcmV1MultiAsset extends Struct {
     readonly id: XcmV1MultiassetAssetId;
     readonly fun: XcmV1MultiassetFungibility;
   }
 
-  /** @name XcmV1MultiassetAssetId (47) */
+  /** @name XcmV1MultiassetAssetId (48) */
   interface XcmV1MultiassetAssetId extends Enum {
     readonly isConcrete: boolean;
     readonly asConcrete: XcmV1MultiLocation;
@@ -442,13 +487,13 @@
     readonly type: 'Concrete' | 'Abstract';
   }
 
-  /** @name XcmV1MultiLocation (48) */
+  /** @name XcmV1MultiLocation (49) */
   interface XcmV1MultiLocation extends Struct {
     readonly parents: u8;
     readonly interior: XcmV1MultilocationJunctions;
   }
 
-  /** @name XcmV1MultilocationJunctions (49) */
+  /** @name XcmV1MultilocationJunctions (50) */
   interface XcmV1MultilocationJunctions extends Enum {
     readonly isHere: boolean;
     readonly isX1: boolean;
@@ -470,7 +515,7 @@
     readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
   }
 
-  /** @name XcmV1Junction (50) */
+  /** @name XcmV1Junction (51) */
   interface XcmV1Junction extends Enum {
     readonly isParachain: boolean;
     readonly asParachain: Compact<u32>;
@@ -504,7 +549,7 @@
     readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
   }
 
-  /** @name XcmV0JunctionNetworkId (52) */
+  /** @name XcmV0JunctionNetworkId (53) */
   interface XcmV0JunctionNetworkId extends Enum {
     readonly isAny: boolean;
     readonly isNamed: boolean;
@@ -514,7 +559,7 @@
     readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
   }
 
-  /** @name XcmV0JunctionBodyId (55) */
+  /** @name XcmV0JunctionBodyId (56) */
   interface XcmV0JunctionBodyId extends Enum {
     readonly isUnit: boolean;
     readonly isNamed: boolean;
@@ -528,7 +573,7 @@
     readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
   }
 
-  /** @name XcmV0JunctionBodyPart (56) */
+  /** @name XcmV0JunctionBodyPart (57) */
   interface XcmV0JunctionBodyPart extends Enum {
     readonly isVoice: boolean;
     readonly isMembers: boolean;
@@ -553,7 +598,7 @@
     readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
   }
 
-  /** @name XcmV1MultiassetFungibility (57) */
+  /** @name XcmV1MultiassetFungibility (58) */
   interface XcmV1MultiassetFungibility extends Enum {
     readonly isFungible: boolean;
     readonly asFungible: Compact<u128>;
@@ -562,7 +607,7 @@
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV1MultiassetAssetInstance (58) */
+  /** @name XcmV1MultiassetAssetInstance (59) */
   interface XcmV1MultiassetAssetInstance extends Enum {
     readonly isUndefined: boolean;
     readonly isIndex: boolean;
@@ -580,7 +625,7 @@
     readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
   }
 
-  /** @name OrmlTokensModuleEvent (61) */
+  /** @name OrmlTokensModuleEvent (62) */
   interface OrmlTokensModuleEvent extends Enum {
     readonly isEndowed: boolean;
     readonly asEndowed: {
@@ -668,7 +713,7 @@
     readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';
   }
 
-  /** @name PalletForeignAssetsAssetIds (62) */
+  /** @name PalletForeignAssetsAssetIds (63) */
   interface PalletForeignAssetsAssetIds extends Enum {
     readonly isForeignAssetId: boolean;
     readonly asForeignAssetId: u32;
@@ -677,14 +722,14 @@
     readonly type: 'ForeignAssetId' | 'NativeAssetId';
   }
 
-  /** @name PalletForeignAssetsNativeCurrency (63) */
+  /** @name PalletForeignAssetsNativeCurrency (64) */
   interface PalletForeignAssetsNativeCurrency extends Enum {
     readonly isHere: boolean;
     readonly isParent: boolean;
     readonly type: 'Here' | 'Parent';
   }
 
-  /** @name CumulusPalletXcmpQueueEvent (64) */
+  /** @name CumulusPalletXcmpQueueEvent (65) */
   interface CumulusPalletXcmpQueueEvent extends Enum {
     readonly isSuccess: boolean;
     readonly asSuccess: {
@@ -728,7 +773,7 @@
     readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name XcmV2TraitsError (66) */
+  /** @name XcmV2TraitsError (67) */
   interface XcmV2TraitsError extends Enum {
     readonly isOverflow: boolean;
     readonly isUnimplemented: boolean;
@@ -761,7 +806,7 @@
     readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
   }
 
-  /** @name PalletXcmEvent (68) */
+  /** @name PalletXcmEvent (69) */
   interface PalletXcmEvent extends Enum {
     readonly isAttempted: boolean;
     readonly asAttempted: XcmV2TraitsOutcome;
@@ -800,7 +845,7 @@
     readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
   }
 
-  /** @name XcmV2TraitsOutcome (69) */
+  /** @name XcmV2TraitsOutcome (70) */
   interface XcmV2TraitsOutcome extends Enum {
     readonly isComplete: boolean;
     readonly asComplete: u64;
@@ -811,10 +856,10 @@
     readonly type: 'Complete' | 'Incomplete' | 'Error';
   }
 
-  /** @name XcmV2Xcm (70) */
+  /** @name XcmV2Xcm (71) */
   interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
 
-  /** @name XcmV2Instruction (72) */
+  /** @name XcmV2Instruction (73) */
   interface XcmV2Instruction extends Enum {
     readonly isWithdrawAsset: boolean;
     readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;
@@ -934,7 +979,7 @@
     readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
   }
 
-  /** @name XcmV2Response (73) */
+  /** @name XcmV2Response (74) */
   interface XcmV2Response extends Enum {
     readonly isNull: boolean;
     readonly isAssets: boolean;
@@ -946,7 +991,7 @@
     readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
   }
 
-  /** @name XcmV0OriginKind (76) */
+  /** @name XcmV0OriginKind (77) */
   interface XcmV0OriginKind extends Enum {
     readonly isNative: boolean;
     readonly isSovereignAccount: boolean;
@@ -955,12 +1000,12 @@
     readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
   }
 
-  /** @name XcmDoubleEncoded (77) */
+  /** @name XcmDoubleEncoded (78) */
   interface XcmDoubleEncoded extends Struct {
     readonly encoded: Bytes;
   }
 
-  /** @name XcmV1MultiassetMultiAssetFilter (78) */
+  /** @name XcmV1MultiassetMultiAssetFilter (79) */
   interface XcmV1MultiassetMultiAssetFilter extends Enum {
     readonly isDefinite: boolean;
     readonly asDefinite: XcmV1MultiassetMultiAssets;
@@ -969,7 +1014,7 @@
     readonly type: 'Definite' | 'Wild';
   }
 
-  /** @name XcmV1MultiassetWildMultiAsset (79) */
+  /** @name XcmV1MultiassetWildMultiAsset (80) */
   interface XcmV1MultiassetWildMultiAsset extends Enum {
     readonly isAll: boolean;
     readonly isAllOf: boolean;
@@ -980,14 +1025,14 @@
     readonly type: 'All' | 'AllOf';
   }
 
-  /** @name XcmV1MultiassetWildFungibility (80) */
+  /** @name XcmV1MultiassetWildFungibility (81) */
   interface XcmV1MultiassetWildFungibility extends Enum {
     readonly isFungible: boolean;
     readonly isNonFungible: boolean;
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV2WeightLimit (81) */
+  /** @name XcmV2WeightLimit (82) */
   interface XcmV2WeightLimit extends Enum {
     readonly isUnlimited: boolean;
     readonly isLimited: boolean;
@@ -995,7 +1040,7 @@
     readonly type: 'Unlimited' | 'Limited';
   }
 
-  /** @name XcmVersionedMultiAssets (83) */
+  /** @name XcmVersionedMultiAssets (84) */
   interface XcmVersionedMultiAssets extends Enum {
     readonly isV0: boolean;
     readonly asV0: Vec<XcmV0MultiAsset>;
@@ -1004,7 +1049,7 @@
     readonly type: 'V0' | 'V1';
   }
 
-  /** @name XcmV0MultiAsset (85) */
+  /** @name XcmV0MultiAsset (86) */
   interface XcmV0MultiAsset extends Enum {
     readonly isNone: boolean;
     readonly isAll: boolean;
@@ -1049,7 +1094,7 @@
     readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
   }
 
-  /** @name XcmV0MultiLocation (86) */
+  /** @name XcmV0MultiLocation (87) */
   interface XcmV0MultiLocation extends Enum {
     readonly isNull: boolean;
     readonly isX1: boolean;
@@ -1071,7 +1116,7 @@
     readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
   }
 
-  /** @name XcmV0Junction (87) */
+  /** @name XcmV0Junction (88) */
   interface XcmV0Junction extends Enum {
     readonly isParent: boolean;
     readonly isParachain: boolean;
@@ -1106,7 +1151,7 @@
     readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
   }
 
-  /** @name XcmVersionedMultiLocation (88) */
+  /** @name XcmVersionedMultiLocation (89) */
   interface XcmVersionedMultiLocation extends Enum {
     readonly isV0: boolean;
     readonly asV0: XcmV0MultiLocation;
@@ -1115,7 +1160,7 @@
     readonly type: 'V0' | 'V1';
   }
 
-  /** @name CumulusPalletXcmEvent (89) */
+  /** @name CumulusPalletXcmEvent (90) */
   interface CumulusPalletXcmEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
@@ -1126,7 +1171,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
   }
 
-  /** @name CumulusPalletDmpQueueEvent (90) */
+  /** @name CumulusPalletDmpQueueEvent (91) */
   interface CumulusPalletDmpQueueEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: {
@@ -1161,7 +1206,24 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletCommonEvent (91) */
+  /** @name PalletConfigurationEvent (92) */
+  interface PalletConfigurationEvent extends Enum {
+    readonly isNewDesiredCollators: boolean;
+    readonly asNewDesiredCollators: {
+      readonly desiredCollators: Option<u32>;
+    } & Struct;
+    readonly isNewCollatorLicenseBond: boolean;
+    readonly asNewCollatorLicenseBond: {
+      readonly bondCost: Option<u128>;
+    } & Struct;
+    readonly isNewCollatorKickThreshold: boolean;
+    readonly asNewCollatorKickThreshold: {
+      readonly lengthInBlocks: Option<u32>;
+    } & Struct;
+    readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
+  }
+
+  /** @name PalletCommonEvent (95) */
   interface PalletCommonEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1210,7 +1272,7 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
   }
 
-  /** @name PalletEvmAccountBasicCrossAccountIdRepr (94) */
+  /** @name PalletEvmAccountBasicCrossAccountIdRepr (98) */
   interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
     readonly isSubstrate: boolean;
     readonly asSubstrate: AccountId32;
@@ -1219,14 +1281,14 @@
     readonly type: 'Substrate' | 'Ethereum';
   }
 
-  /** @name PalletStructureEvent (98) */
+  /** @name PalletStructureEvent (102) */
   interface PalletStructureEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
     readonly type: 'Executed';
   }
 
-  /** @name PalletRmrkCoreEvent (99) */
+  /** @name PalletRmrkCoreEvent (103) */
   interface PalletRmrkCoreEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: {
@@ -1316,7 +1378,7 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
   }
 
-  /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (100) */
+  /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (104) */
   interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
     readonly isAccountId: boolean;
     readonly asAccountId: AccountId32;
@@ -1325,7 +1387,7 @@
     readonly type: 'AccountId' | 'CollectionAndNftTuple';
   }
 
-  /** @name PalletRmrkEquipEvent (104) */
+  /** @name PalletRmrkEquipEvent (107) */
   interface PalletRmrkEquipEvent extends Enum {
     readonly isBaseCreated: boolean;
     readonly asBaseCreated: {
@@ -1340,7 +1402,7 @@
     readonly type: 'BaseCreated' | 'EquippablesUpdated';
   }
 
-  /** @name PalletAppPromotionEvent (105) */
+  /** @name PalletAppPromotionEvent (108) */
   interface PalletAppPromotionEvent extends Enum {
     readonly isStakingRecalculation: boolean;
     readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1353,7 +1415,7 @@
     readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
   }
 
-  /** @name PalletForeignAssetsModuleEvent (106) */
+  /** @name PalletForeignAssetsModuleEvent (109) */
   interface PalletForeignAssetsModuleEvent extends Enum {
     readonly isForeignAssetRegistered: boolean;
     readonly asForeignAssetRegistered: {
@@ -1380,7 +1442,7 @@
     readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
   }
 
-  /** @name PalletForeignAssetsModuleAssetMetadata (107) */
+  /** @name PalletForeignAssetsModuleAssetMetadata (110) */
   interface PalletForeignAssetsModuleAssetMetadata extends Struct {
     readonly name: Bytes;
     readonly symbol: Bytes;
@@ -1388,7 +1450,7 @@
     readonly minimalBalance: u128;
   }
 
-  /** @name PalletEvmEvent (108) */
+  /** @name PalletEvmEvent (111) */
   interface PalletEvmEvent extends Enum {
     readonly isLog: boolean;
     readonly asLog: {
@@ -1413,14 +1475,14 @@
     readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
   }
 
-  /** @name EthereumLog (109) */
+  /** @name EthereumLog (112) */
   interface EthereumLog extends Struct {
     readonly address: H160;
     readonly topics: Vec<H256>;
     readonly data: Bytes;
   }
 
-  /** @name PalletEthereumEvent (111) */
+  /** @name PalletEthereumEvent (114) */
   interface PalletEthereumEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: {
@@ -1432,7 +1494,7 @@
     readonly type: 'Executed';
   }
 
-  /** @name EvmCoreErrorExitReason (112) */
+  /** @name EvmCoreErrorExitReason (115) */
   interface EvmCoreErrorExitReason extends Enum {
     readonly isSucceed: boolean;
     readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1445,7 +1507,7 @@
     readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
   }
 
-  /** @name EvmCoreErrorExitSucceed (113) */
+  /** @name EvmCoreErrorExitSucceed (116) */
   interface EvmCoreErrorExitSucceed extends Enum {
     readonly isStopped: boolean;
     readonly isReturned: boolean;
@@ -1453,7 +1515,7 @@
     readonly type: 'Stopped' | 'Returned' | 'Suicided';
   }
 
-  /** @name EvmCoreErrorExitError (114) */
+  /** @name EvmCoreErrorExitError (117) */
   interface EvmCoreErrorExitError extends Enum {
     readonly isStackUnderflow: boolean;
     readonly isStackOverflow: boolean;
@@ -1474,13 +1536,13 @@
     readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
   }
 
-  /** @name EvmCoreErrorExitRevert (117) */
+  /** @name EvmCoreErrorExitRevert (120) */
   interface EvmCoreErrorExitRevert extends Enum {
     readonly isReverted: boolean;
     readonly type: 'Reverted';
   }
 
-  /** @name EvmCoreErrorExitFatal (118) */
+  /** @name EvmCoreErrorExitFatal (121) */
   interface EvmCoreErrorExitFatal extends Enum {
     readonly isNotSupported: boolean;
     readonly isUnhandledInterrupt: boolean;
@@ -1491,7 +1553,7 @@
     readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
   }
 
-  /** @name PalletEvmContractHelpersEvent (119) */
+  /** @name PalletEvmContractHelpersEvent (122) */
   interface PalletEvmContractHelpersEvent extends Enum {
     readonly isContractSponsorSet: boolean;
     readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1502,20 +1564,20 @@
     readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
   }
 
-  /** @name PalletEvmMigrationEvent (120) */
-  interface PalletEvmMigrationEvent extends Enum {
+  /** @name PalletDataManagementEvent (123) */
+  interface PalletDataManagementEvent extends Enum {
     readonly isTestEvent: boolean;
     readonly type: 'TestEvent';
   }
 
-  /** @name PalletMaintenanceEvent (121) */
+  /** @name PalletMaintenanceEvent (124) */
   interface PalletMaintenanceEvent extends Enum {
     readonly isMaintenanceEnabled: boolean;
     readonly isMaintenanceDisabled: boolean;
     readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
   }
 
-  /** @name PalletTestUtilsEvent (122) */
+  /** @name PalletTestUtilsEvent (125) */
   interface PalletTestUtilsEvent extends Enum {
     readonly isValueIsSet: boolean;
     readonly isShouldRollback: boolean;
@@ -1523,7 +1585,7 @@
     readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
   }
 
-  /** @name FrameSystemPhase (123) */
+  /** @name FrameSystemPhase (126) */
   interface FrameSystemPhase extends Enum {
     readonly isApplyExtrinsic: boolean;
     readonly asApplyExtrinsic: u32;
@@ -1532,13 +1594,13 @@
     readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
   }
 
-  /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
+  /** @name FrameSystemLastRuntimeUpgradeInfo (129) */
   interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
     readonly specVersion: Compact<u32>;
     readonly specName: Text;
   }
 
-  /** @name FrameSystemCall (127) */
+  /** @name FrameSystemCall (130) */
   interface FrameSystemCall extends Enum {
     readonly isFillBlock: boolean;
     readonly asFillBlock: {
@@ -1580,21 +1642,21 @@
     readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
   }
 
-  /** @name FrameSystemLimitsBlockWeights (132) */
+  /** @name FrameSystemLimitsBlockWeights (135) */
   interface FrameSystemLimitsBlockWeights extends Struct {
     readonly baseBlock: SpWeightsWeightV2Weight;
     readonly maxBlock: SpWeightsWeightV2Weight;
     readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */
+  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (136) */
   interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
     readonly normal: FrameSystemLimitsWeightsPerClass;
     readonly operational: FrameSystemLimitsWeightsPerClass;
     readonly mandatory: FrameSystemLimitsWeightsPerClass;
   }
 
-  /** @name FrameSystemLimitsWeightsPerClass (134) */
+  /** @name FrameSystemLimitsWeightsPerClass (137) */
   interface FrameSystemLimitsWeightsPerClass extends Struct {
     readonly baseExtrinsic: SpWeightsWeightV2Weight;
     readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1602,25 +1664,25 @@
     readonly reserved: Option<SpWeightsWeightV2Weight>;
   }
 
-  /** @name FrameSystemLimitsBlockLength (136) */
+  /** @name FrameSystemLimitsBlockLength (139) */
   interface FrameSystemLimitsBlockLength extends Struct {
     readonly max: FrameSupportDispatchPerDispatchClassU32;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassU32 (137) */
+  /** @name FrameSupportDispatchPerDispatchClassU32 (140) */
   interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
     readonly normal: u32;
     readonly operational: u32;
     readonly mandatory: u32;
   }
 
-  /** @name SpWeightsRuntimeDbWeight (138) */
+  /** @name SpWeightsRuntimeDbWeight (141) */
   interface SpWeightsRuntimeDbWeight extends Struct {
     readonly read: u64;
     readonly write: u64;
   }
 
-  /** @name SpVersionRuntimeVersion (139) */
+  /** @name SpVersionRuntimeVersion (142) */
   interface SpVersionRuntimeVersion extends Struct {
     readonly specName: Text;
     readonly implName: Text;
@@ -1632,7 +1694,7 @@
     readonly stateVersion: u8;
   }
 
-  /** @name FrameSystemError (144) */
+  /** @name FrameSystemError (147) */
   interface FrameSystemError extends Enum {
     readonly isInvalidSpecName: boolean;
     readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1643,7 +1705,7 @@
     readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
   }
 
-  /** @name PolkadotPrimitivesV2PersistedValidationData (145) */
+  /** @name PolkadotPrimitivesV2PersistedValidationData (148) */
   interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
     readonly parentHead: Bytes;
     readonly relayParentNumber: u32;
@@ -1651,18 +1713,18 @@
     readonly maxPovSize: u32;
   }
 
-  /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */
+  /** @name PolkadotPrimitivesV2UpgradeRestriction (151) */
   interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
     readonly isPresent: boolean;
     readonly type: 'Present';
   }
 
-  /** @name SpTrieStorageProof (149) */
+  /** @name SpTrieStorageProof (152) */
   interface SpTrieStorageProof extends Struct {
     readonly trieNodes: BTreeSet<Bytes>;
   }
 
-  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */
+  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (154) */
   interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
     readonly dmqMqcHead: H256;
     readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1670,7 +1732,7 @@
     readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */
+  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (157) */
   interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
     readonly maxCapacity: u32;
     readonly maxTotalSize: u32;
@@ -1680,7 +1742,7 @@
     readonly mqcHead: Option<H256>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */
+  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (158) */
   interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
     readonly maxCodeSize: u32;
     readonly maxHeadDataSize: u32;
@@ -1693,13 +1755,13 @@
     readonly validationUpgradeDelay: u32;
   }
 
-  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */
+  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (164) */
   interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
     readonly recipient: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemCall (162) */
+  /** @name CumulusPalletParachainSystemCall (165) */
   interface CumulusPalletParachainSystemCall extends Enum {
     readonly isSetValidationData: boolean;
     readonly asSetValidationData: {
@@ -1720,7 +1782,7 @@
     readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
   }
 
-  /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */
+  /** @name CumulusPrimitivesParachainInherentParachainInherentData (166) */
   interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
     readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
     readonly relayChainState: SpTrieStorageProof;
@@ -1728,19 +1790,19 @@
     readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
   }
 
-  /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */
+  /** @name PolkadotCorePrimitivesInboundDownwardMessage (168) */
   interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
     readonly sentAt: u32;
     readonly msg: Bytes;
   }
 
-  /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */
+  /** @name PolkadotCorePrimitivesInboundHrmpMessage (171) */
   interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
     readonly sentAt: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemError (171) */
+  /** @name CumulusPalletParachainSystemError (174) */
   interface CumulusPalletParachainSystemError extends Enum {
     readonly isOverlappingUpgrades: boolean;
     readonly isProhibitedByPolkadot: boolean;
@@ -1753,7 +1815,7 @@
     readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
   }
 
-  /** @name PalletAuthorshipUncleEntryItem (173) */
+  /** @name PalletAuthorshipUncleEntryItem (176) */
   interface PalletAuthorshipUncleEntryItem extends Enum {
     readonly isInclusionHeight: boolean;
     readonly asInclusionHeight: u32;
@@ -1762,7 +1824,7 @@
     readonly type: 'InclusionHeight' | 'Uncle';
   }
 
-  /** @name PalletAuthorshipCall (175) */
+  /** @name PalletAuthorshipCall (178) */
   interface PalletAuthorshipCall extends Enum {
     readonly isSetUncles: boolean;
     readonly asSetUncles: {
@@ -1771,7 +1833,7 @@
     readonly type: 'SetUncles';
   }
 
-  /** @name SpRuntimeHeader (177) */
+  /** @name SpRuntimeHeader (180) */
   interface SpRuntimeHeader extends Struct {
     readonly parentHash: H256;
     readonly number: Compact<u32>;
@@ -1780,10 +1842,10 @@
     readonly digest: SpRuntimeDigest;
   }
 
-  /** @name SpRuntimeBlakeTwo256 (178) */
+  /** @name SpRuntimeBlakeTwo256 (181) */
   type SpRuntimeBlakeTwo256 = Null;
 
-  /** @name PalletAuthorshipError (179) */
+  /** @name PalletAuthorshipError (182) */
   interface PalletAuthorshipError extends Enum {
     readonly isInvalidUncleParent: boolean;
     readonly isUnclesAlreadySet: boolean;
@@ -1795,7 +1857,7 @@
     readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
   }
 
-  /** @name PalletCollatorSelectionCall (182) */
+  /** @name PalletCollatorSelectionCall (185) */
   interface PalletCollatorSelectionCall extends Enum {
     readonly isAddInvulnerable: boolean;
     readonly asAddInvulnerable: {
@@ -1804,18 +1866,6 @@
     readonly isRemoveInvulnerable: boolean;
     readonly asRemoveInvulnerable: {
       readonly who: AccountId32;
-    } & Struct;
-    readonly isSetDesiredCollators: boolean;
-    readonly asSetDesiredCollators: {
-      readonly max: u32;
-    } & Struct;
-    readonly isSetLicenseBond: boolean;
-    readonly asSetLicenseBond: {
-      readonly bond: u128;
-    } & Struct;
-    readonly isSetKickThreshold: boolean;
-    readonly asSetKickThreshold: {
-      readonly kickThreshold: u32;
     } & Struct;
     readonly isGetLicense: boolean;
     readonly isOnboard: boolean;
@@ -1825,10 +1875,10 @@
     readonly asForceRevokeLicense: {
       readonly who: AccountId32;
     } & Struct;
-    readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'SetDesiredCollators' | 'SetLicenseBond' | 'SetKickThreshold' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceRevokeLicense';
+    readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceRevokeLicense';
   }
 
-  /** @name PalletCollatorSelectionError (183) */
+  /** @name PalletCollatorSelectionError (186) */
   interface PalletCollatorSelectionError extends Enum {
     readonly isTooManyCandidates: boolean;
     readonly isUnknown: boolean;
@@ -1846,21 +1896,21 @@
     readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
   }
 
-  /** @name OpalRuntimeRuntimeCommonSessionKeys (186) */
+  /** @name OpalRuntimeRuntimeCommonSessionKeys (189) */
   interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
     readonly aura: SpConsensusAuraSr25519AppSr25519Public;
   }
 
-  /** @name SpConsensusAuraSr25519AppSr25519Public (187) */
+  /** @name SpConsensusAuraSr25519AppSr25519Public (190) */
   interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
 
-  /** @name SpCoreSr25519Public (188) */
+  /** @name SpCoreSr25519Public (191) */
   interface SpCoreSr25519Public extends U8aFixed {}
 
-  /** @name SpCoreCryptoKeyTypeId (191) */
+  /** @name SpCoreCryptoKeyTypeId (194) */
   interface SpCoreCryptoKeyTypeId extends U8aFixed {}
 
-  /** @name PalletSessionCall (192) */
+  /** @name PalletSessionCall (195) */
   interface PalletSessionCall extends Enum {
     readonly isSetKeys: boolean;
     readonly asSetKeys: {
@@ -1871,7 +1921,7 @@
     readonly type: 'SetKeys' | 'PurgeKeys';
   }
 
-  /** @name PalletSessionError (193) */
+  /** @name PalletSessionError (196) */
   interface PalletSessionError extends Enum {
     readonly isInvalidProof: boolean;
     readonly isNoAssociatedValidatorId: boolean;
@@ -1881,14 +1931,170 @@
     readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
   }
 
-  /** @name PalletBalancesBalanceLock (195) */
+  /** @name PalletIdentityRegistration (197) */
+  interface PalletIdentityRegistration extends Struct {
+    readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
+    readonly deposit: u128;
+    readonly info: PalletIdentityIdentityInfo;
+  }
+
+  /** @name PalletIdentityJudgement (200) */
+  interface PalletIdentityJudgement extends Enum {
+    readonly isUnknown: boolean;
+    readonly isFeePaid: boolean;
+    readonly asFeePaid: u128;
+    readonly isReasonable: boolean;
+    readonly isKnownGood: boolean;
+    readonly isOutOfDate: boolean;
+    readonly isLowQuality: boolean;
+    readonly isErroneous: boolean;
+    readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
+  }
+
+  /** @name PalletIdentityIdentityInfo (202) */
+  interface PalletIdentityIdentityInfo extends Struct {
+    readonly additional: Vec<ITuple<[Data, Data]>>;
+    readonly display: Data;
+    readonly legal: Data;
+    readonly web: Data;
+    readonly riot: Data;
+    readonly email: Data;
+    readonly pgpFingerprint: Option<U8aFixed>;
+    readonly image: Data;
+    readonly twitter: Data;
+  }
+
+  /** @name PalletIdentityRegistrarInfo (241) */
+  interface PalletIdentityRegistrarInfo extends Struct {
+    readonly account: AccountId32;
+    readonly fee: u128;
+    readonly fields: PalletIdentityBitFlags;
+  }
+
+  /** @name PalletIdentityBitFlags (242) */
+  interface PalletIdentityBitFlags extends Set {
+    readonly isDisplay: boolean;
+    readonly isLegal: boolean;
+    readonly isWeb: boolean;
+    readonly isRiot: boolean;
+    readonly isEmail: boolean;
+    readonly isPgpFingerprint: boolean;
+    readonly isImage: boolean;
+    readonly isTwitter: boolean;
+  }
+
+  /** @name PalletIdentityIdentityField (243) */
+  interface PalletIdentityIdentityField extends Enum {
+    readonly isDisplay: boolean;
+    readonly isLegal: boolean;
+    readonly isWeb: boolean;
+    readonly isRiot: boolean;
+    readonly isEmail: boolean;
+    readonly isPgpFingerprint: boolean;
+    readonly isImage: boolean;
+    readonly isTwitter: boolean;
+    readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
+  }
+
+  /** @name PalletIdentityCall (245) */
+  interface PalletIdentityCall extends Enum {
+    readonly isAddRegistrar: boolean;
+    readonly asAddRegistrar: {
+      readonly account: MultiAddress;
+    } & Struct;
+    readonly isSetIdentity: boolean;
+    readonly asSetIdentity: {
+      readonly info: PalletIdentityIdentityInfo;
+    } & Struct;
+    readonly isSetSubs: boolean;
+    readonly asSetSubs: {
+      readonly subs: Vec<ITuple<[AccountId32, Data]>>;
+    } & Struct;
+    readonly isClearIdentity: boolean;
+    readonly isRequestJudgement: boolean;
+    readonly asRequestJudgement: {
+      readonly regIndex: Compact<u32>;
+      readonly maxFee: Compact<u128>;
+    } & Struct;
+    readonly isCancelRequest: boolean;
+    readonly asCancelRequest: {
+      readonly regIndex: u32;
+    } & Struct;
+    readonly isSetFee: boolean;
+    readonly asSetFee: {
+      readonly index: Compact<u32>;
+      readonly fee: Compact<u128>;
+    } & Struct;
+    readonly isSetAccountId: boolean;
+    readonly asSetAccountId: {
+      readonly index: Compact<u32>;
+      readonly new_: MultiAddress;
+    } & Struct;
+    readonly isSetFields: boolean;
+    readonly asSetFields: {
+      readonly index: Compact<u32>;
+      readonly fields: PalletIdentityBitFlags;
+    } & Struct;
+    readonly isProvideJudgement: boolean;
+    readonly asProvideJudgement: {
+      readonly regIndex: Compact<u32>;
+      readonly target: MultiAddress;
+      readonly judgement: PalletIdentityJudgement;
+      readonly identity: H256;
+    } & Struct;
+    readonly isKillIdentity: boolean;
+    readonly asKillIdentity: {
+      readonly target: MultiAddress;
+    } & Struct;
+    readonly isAddSub: boolean;
+    readonly asAddSub: {
+      readonly sub: MultiAddress;
+      readonly data: Data;
+    } & Struct;
+    readonly isRenameSub: boolean;
+    readonly asRenameSub: {
+      readonly sub: MultiAddress;
+      readonly data: Data;
+    } & Struct;
+    readonly isRemoveSub: boolean;
+    readonly asRemoveSub: {
+      readonly sub: MultiAddress;
+    } & Struct;
+    readonly isQuitSub: boolean;
+    readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub';
+  }
+
+  /** @name PalletIdentityError (249) */
+  interface PalletIdentityError extends Enum {
+    readonly isTooManySubAccounts: boolean;
+    readonly isNotFound: boolean;
+    readonly isNotNamed: boolean;
+    readonly isEmptyIndex: boolean;
+    readonly isFeeChanged: boolean;
+    readonly isNoIdentity: boolean;
+    readonly isStickyJudgement: boolean;
+    readonly isJudgementGiven: boolean;
+    readonly isInvalidJudgement: boolean;
+    readonly isInvalidIndex: boolean;
+    readonly isInvalidTarget: boolean;
+    readonly isTooManyFields: boolean;
+    readonly isTooManyRegistrars: boolean;
+    readonly isAlreadyClaimed: boolean;
+    readonly isNotSub: boolean;
+    readonly isNotOwned: boolean;
+    readonly isJudgementForDifferentIdentity: boolean;
+    readonly isJudgementPaymentFailed: boolean;
+    readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
+  }
+
+  /** @name PalletBalancesBalanceLock (251) */
   interface PalletBalancesBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
     readonly reasons: PalletBalancesReasons;
   }
 
-  /** @name PalletBalancesReasons (196) */
+  /** @name PalletBalancesReasons (252) */
   interface PalletBalancesReasons extends Enum {
     readonly isFee: boolean;
     readonly isMisc: boolean;
@@ -1896,20 +2102,20 @@
     readonly type: 'Fee' | 'Misc' | 'All';
   }
 
-  /** @name PalletBalancesReserveData (199) */
+  /** @name PalletBalancesReserveData (255) */
   interface PalletBalancesReserveData extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name PalletBalancesReleases (201) */
+  /** @name PalletBalancesReleases (257) */
   interface PalletBalancesReleases extends Enum {
     readonly isV100: boolean;
     readonly isV200: boolean;
     readonly type: 'V100' | 'V200';
   }
 
-  /** @name PalletBalancesCall (202) */
+  /** @name PalletBalancesCall (258) */
   interface PalletBalancesCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -1946,7 +2152,7 @@
     readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
   }
 
-  /** @name PalletBalancesError (205) */
+  /** @name PalletBalancesError (259) */
   interface PalletBalancesError extends Enum {
     readonly isVestingBalance: boolean;
     readonly isLiquidityRestrictions: boolean;
@@ -1959,7 +2165,7 @@
     readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name PalletTimestampCall (207) */
+  /** @name PalletTimestampCall (261) */
   interface PalletTimestampCall extends Enum {
     readonly isSet: boolean;
     readonly asSet: {
@@ -1968,14 +2174,14 @@
     readonly type: 'Set';
   }
 
-  /** @name PalletTransactionPaymentReleases (209) */
+  /** @name PalletTransactionPaymentReleases (263) */
   interface PalletTransactionPaymentReleases extends Enum {
     readonly isV1Ancient: boolean;
     readonly isV2: boolean;
     readonly type: 'V1Ancient' | 'V2';
   }
 
-  /** @name PalletTreasuryProposal (210) */
+  /** @name PalletTreasuryProposal (264) */
   interface PalletTreasuryProposal extends Struct {
     readonly proposer: AccountId32;
     readonly value: u128;
@@ -1983,7 +2189,7 @@
     readonly bond: u128;
   }
 
-  /** @name PalletTreasuryCall (212) */
+  /** @name PalletTreasuryCall (266) */
   interface PalletTreasuryCall extends Enum {
     readonly isProposeSpend: boolean;
     readonly asProposeSpend: {
@@ -2010,10 +2216,10 @@
     readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
   }
 
-  /** @name FrameSupportPalletId (215) */
+  /** @name FrameSupportPalletId (268) */
   interface FrameSupportPalletId extends U8aFixed {}
 
-  /** @name PalletTreasuryError (216) */
+  /** @name PalletTreasuryError (269) */
   interface PalletTreasuryError extends Enum {
     readonly isInsufficientProposersBalance: boolean;
     readonly isInvalidIndex: boolean;
@@ -2023,7 +2229,7 @@
     readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
   }
 
-  /** @name PalletSudoCall (217) */
+  /** @name PalletSudoCall (270) */
   interface PalletSudoCall extends Enum {
     readonly isSudo: boolean;
     readonly asSudo: {
@@ -2046,7 +2252,7 @@
     readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
   }
 
-  /** @name OrmlVestingModuleCall (219) */
+  /** @name OrmlVestingModuleCall (272) */
   interface OrmlVestingModuleCall extends Enum {
     readonly isClaim: boolean;
     readonly isVestedTransfer: boolean;
@@ -2066,7 +2272,7 @@
     readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
   }
 
-  /** @name OrmlXtokensModuleCall (221) */
+  /** @name OrmlXtokensModuleCall (274) */
   interface OrmlXtokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -2113,7 +2319,7 @@
     readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
   }
 
-  /** @name XcmVersionedMultiAsset (222) */
+  /** @name XcmVersionedMultiAsset (275) */
   interface XcmVersionedMultiAsset extends Enum {
     readonly isV0: boolean;
     readonly asV0: XcmV0MultiAsset;
@@ -2122,7 +2328,7 @@
     readonly type: 'V0' | 'V1';
   }
 
-  /** @name OrmlTokensModuleCall (225) */
+  /** @name OrmlTokensModuleCall (278) */
   interface OrmlTokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -2159,7 +2365,7 @@
     readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
   }
 
-  /** @name CumulusPalletXcmpQueueCall (226) */
+  /** @name CumulusPalletXcmpQueueCall (279) */
   interface CumulusPalletXcmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
@@ -2195,7 +2401,7 @@
     readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
   }
 
-  /** @name PalletXcmCall (227) */
+  /** @name PalletXcmCall (280) */
   interface PalletXcmCall extends Enum {
     readonly isSend: boolean;
     readonly asSend: {
@@ -2257,7 +2463,7 @@
     readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
   }
 
-  /** @name XcmVersionedXcm (228) */
+  /** @name XcmVersionedXcm (281) */
   interface XcmVersionedXcm extends Enum {
     readonly isV0: boolean;
     readonly asV0: XcmV0Xcm;
@@ -2268,7 +2474,7 @@
     readonly type: 'V0' | 'V1' | 'V2';
   }
 
-  /** @name XcmV0Xcm (229) */
+  /** @name XcmV0Xcm (282) */
   interface XcmV0Xcm extends Enum {
     readonly isWithdrawAsset: boolean;
     readonly asWithdrawAsset: {
@@ -2331,7 +2537,7 @@
     readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
   }
 
-  /** @name XcmV0Order (231) */
+  /** @name XcmV0Order (284) */
   interface XcmV0Order extends Enum {
     readonly isNull: boolean;
     readonly isDepositAsset: boolean;
@@ -2379,14 +2585,14 @@
     readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
   }
 
-  /** @name XcmV0Response (233) */
+  /** @name XcmV0Response (286) */
   interface XcmV0Response extends Enum {
     readonly isAssets: boolean;
     readonly asAssets: Vec<XcmV0MultiAsset>;
     readonly type: 'Assets';
   }
 
-  /** @name XcmV1Xcm (234) */
+  /** @name XcmV1Xcm (287) */
   interface XcmV1Xcm extends Enum {
     readonly isWithdrawAsset: boolean;
     readonly asWithdrawAsset: {
@@ -2455,7 +2661,7 @@
     readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
   }
 
-  /** @name XcmV1Order (236) */
+  /** @name XcmV1Order (289) */
   interface XcmV1Order extends Enum {
     readonly isNoop: boolean;
     readonly isDepositAsset: boolean;
@@ -2505,7 +2711,7 @@
     readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
   }
 
-  /** @name XcmV1Response (238) */
+  /** @name XcmV1Response (291) */
   interface XcmV1Response extends Enum {
     readonly isAssets: boolean;
     readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2514,10 +2720,10 @@
     readonly type: 'Assets' | 'Version';
   }
 
-  /** @name CumulusPalletXcmCall (252) */
+  /** @name CumulusPalletXcmCall (305) */
   type CumulusPalletXcmCall = Null;
 
-  /** @name CumulusPalletDmpQueueCall (253) */
+  /** @name CumulusPalletDmpQueueCall (306) */
   interface CumulusPalletDmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
@@ -2527,7 +2733,7 @@
     readonly type: 'ServiceOverweight';
   }
 
-  /** @name PalletInflationCall (254) */
+  /** @name PalletInflationCall (307) */
   interface PalletInflationCall extends Enum {
     readonly isStartInflation: boolean;
     readonly asStartInflation: {
@@ -2536,7 +2742,7 @@
     readonly type: 'StartInflation';
   }
 
-  /** @name PalletUniqueCall (255) */
+  /** @name PalletUniqueCall (308) */
   interface PalletUniqueCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -2709,7 +2915,7 @@
     readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
   }
 
-  /** @name UpDataStructsCollectionMode (260) */
+  /** @name UpDataStructsCollectionMode (313) */
   interface UpDataStructsCollectionMode extends Enum {
     readonly isNft: boolean;
     readonly isFungible: boolean;
@@ -2718,7 +2924,7 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateCollectionData (261) */
+  /** @name UpDataStructsCreateCollectionData (314) */
   interface UpDataStructsCreateCollectionData extends Struct {
     readonly mode: UpDataStructsCollectionMode;
     readonly access: Option<UpDataStructsAccessMode>;
@@ -2732,14 +2938,14 @@
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsAccessMode (263) */
+  /** @name UpDataStructsAccessMode (316) */
   interface UpDataStructsAccessMode extends Enum {
     readonly isNormal: boolean;
     readonly isAllowList: boolean;
     readonly type: 'Normal' | 'AllowList';
   }
 
-  /** @name UpDataStructsCollectionLimits (265) */
+  /** @name UpDataStructsCollectionLimits (318) */
   interface UpDataStructsCollectionLimits extends Struct {
     readonly accountTokenOwnershipLimit: Option<u32>;
     readonly sponsoredDataSize: Option<u32>;
@@ -2752,7 +2958,7 @@
     readonly transfersEnabled: Option<bool>;
   }
 
-  /** @name UpDataStructsSponsoringRateLimit (267) */
+  /** @name UpDataStructsSponsoringRateLimit (320) */
   interface UpDataStructsSponsoringRateLimit extends Enum {
     readonly isSponsoringDisabled: boolean;
     readonly isBlocks: boolean;
@@ -2760,43 +2966,43 @@
     readonly type: 'SponsoringDisabled' | 'Blocks';
   }
 
-  /** @name UpDataStructsCollectionPermissions (270) */
+  /** @name UpDataStructsCollectionPermissions (323) */
   interface UpDataStructsCollectionPermissions extends Struct {
     readonly access: Option<UpDataStructsAccessMode>;
     readonly mintMode: Option<bool>;
     readonly nesting: Option<UpDataStructsNestingPermissions>;
   }
 
-  /** @name UpDataStructsNestingPermissions (272) */
+  /** @name UpDataStructsNestingPermissions (325) */
   interface UpDataStructsNestingPermissions extends Struct {
     readonly tokenOwner: bool;
     readonly collectionAdmin: bool;
     readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
   }
 
-  /** @name UpDataStructsOwnerRestrictedSet (274) */
+  /** @name UpDataStructsOwnerRestrictedSet (327) */
   interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
 
-  /** @name UpDataStructsPropertyKeyPermission (279) */
+  /** @name UpDataStructsPropertyKeyPermission (332) */
   interface UpDataStructsPropertyKeyPermission extends Struct {
     readonly key: Bytes;
     readonly permission: UpDataStructsPropertyPermission;
   }
 
-  /** @name UpDataStructsPropertyPermission (280) */
+  /** @name UpDataStructsPropertyPermission (333) */
   interface UpDataStructsPropertyPermission extends Struct {
     readonly mutable: bool;
     readonly collectionAdmin: bool;
     readonly tokenOwner: bool;
   }
 
-  /** @name UpDataStructsProperty (283) */
+  /** @name UpDataStructsProperty (336) */
   interface UpDataStructsProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name UpDataStructsCreateItemData (286) */
+  /** @name UpDataStructsCreateItemData (339) */
   interface UpDataStructsCreateItemData extends Enum {
     readonly isNft: boolean;
     readonly asNft: UpDataStructsCreateNftData;
@@ -2807,23 +3013,23 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateNftData (287) */
+  /** @name UpDataStructsCreateNftData (340) */
   interface UpDataStructsCreateNftData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateFungibleData (288) */
+  /** @name UpDataStructsCreateFungibleData (341) */
   interface UpDataStructsCreateFungibleData extends Struct {
     readonly value: u128;
   }
 
-  /** @name UpDataStructsCreateReFungibleData (289) */
+  /** @name UpDataStructsCreateReFungibleData (342) */
   interface UpDataStructsCreateReFungibleData extends Struct {
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateItemExData (292) */
+  /** @name UpDataStructsCreateItemExData (345) */
   interface UpDataStructsCreateItemExData extends Enum {
     readonly isNft: boolean;
     readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2836,26 +3042,26 @@
     readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
   }
 
-  /** @name UpDataStructsCreateNftExData (294) */
+  /** @name UpDataStructsCreateNftExData (347) */
   interface UpDataStructsCreateNftExData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsCreateRefungibleExSingleOwner (301) */
+  /** @name UpDataStructsCreateRefungibleExSingleOwner (354) */
   interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
     readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateRefungibleExMultipleOwners (303) */
+  /** @name UpDataStructsCreateRefungibleExMultipleOwners (356) */
   interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
     readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name PalletConfigurationCall (304) */
+  /** @name PalletConfigurationCall (357) */
   interface PalletConfigurationCall extends Enum {
     readonly isSetWeightToFeeCoefficientOverride: boolean;
     readonly asSetWeightToFeeCoefficientOverride: {
@@ -2873,10 +3079,22 @@
     readonly asSetAppPromotionConfigurationOverride: {
       readonly configuration: PalletConfigurationAppPromotionConfiguration;
     } & Struct;
-    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';
+    readonly isSetCollatorSelectionDesiredCollators: boolean;
+    readonly asSetCollatorSelectionDesiredCollators: {
+      readonly max: Option<u32>;
+    } & Struct;
+    readonly isSetCollatorSelectionLicenseBond: boolean;
+    readonly asSetCollatorSelectionLicenseBond: {
+      readonly amount: Option<u128>;
+    } & Struct;
+    readonly isSetCollatorSelectionKickThreshold: boolean;
+    readonly asSetCollatorSelectionKickThreshold: {
+      readonly threshold: Option<u32>;
+    } & Struct;
+    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
   }
 
-  /** @name PalletConfigurationAppPromotionConfiguration (309) */
+  /** @name PalletConfigurationAppPromotionConfiguration (362) */
   interface PalletConfigurationAppPromotionConfiguration extends Struct {
     readonly recalculationInterval: Option<u32>;
     readonly pendingInterval: Option<u32>;
@@ -2884,13 +3102,13 @@
     readonly maxStakersPerCalculation: Option<u8>;
   }
 
-  /** @name PalletTemplateTransactionPaymentCall (312) */
+  /** @name PalletTemplateTransactionPaymentCall (365) */
   type PalletTemplateTransactionPaymentCall = Null;
 
-  /** @name PalletStructureCall (313) */
+  /** @name PalletStructureCall (366) */
   type PalletStructureCall = Null;
 
-  /** @name PalletRmrkCoreCall (314) */
+  /** @name PalletRmrkCoreCall (367) */
   interface PalletRmrkCoreCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -2996,7 +3214,7 @@
     readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
   }
 
-  /** @name RmrkTraitsResourceResourceTypes (320) */
+  /** @name RmrkTraitsResourceResourceTypes (373) */
   interface RmrkTraitsResourceResourceTypes extends Enum {
     readonly isBasic: boolean;
     readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -3007,7 +3225,7 @@
     readonly type: 'Basic' | 'Composable' | 'Slot';
   }
 
-  /** @name RmrkTraitsResourceBasicResource (322) */
+  /** @name RmrkTraitsResourceBasicResource (375) */
   interface RmrkTraitsResourceBasicResource extends Struct {
     readonly src: Option<Bytes>;
     readonly metadata: Option<Bytes>;
@@ -3015,7 +3233,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceComposableResource (324) */
+  /** @name RmrkTraitsResourceComposableResource (377) */
   interface RmrkTraitsResourceComposableResource extends Struct {
     readonly parts: Vec<u32>;
     readonly base: u32;
@@ -3025,7 +3243,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceSlotResource (325) */
+  /** @name RmrkTraitsResourceSlotResource (378) */
   interface RmrkTraitsResourceSlotResource extends Struct {
     readonly base: u32;
     readonly src: Option<Bytes>;
@@ -3035,7 +3253,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name PalletRmrkEquipCall (328) */
+  /** @name PalletRmrkEquipCall (381) */
   interface PalletRmrkEquipCall extends Enum {
     readonly isCreateBase: boolean;
     readonly asCreateBase: {
@@ -3057,7 +3275,7 @@
     readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
   }
 
-  /** @name RmrkTraitsPartPartType (331) */
+  /** @name RmrkTraitsPartPartType (384) */
   interface RmrkTraitsPartPartType extends Enum {
     readonly isFixedPart: boolean;
     readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -3066,14 +3284,14 @@
     readonly type: 'FixedPart' | 'SlotPart';
   }
 
-  /** @name RmrkTraitsPartFixedPart (333) */
+  /** @name RmrkTraitsPartFixedPart (386) */
   interface RmrkTraitsPartFixedPart extends Struct {
     readonly id: u32;
     readonly z: u32;
     readonly src: Bytes;
   }
 
-  /** @name RmrkTraitsPartSlotPart (334) */
+  /** @name RmrkTraitsPartSlotPart (387) */
   interface RmrkTraitsPartSlotPart extends Struct {
     readonly id: u32;
     readonly equippable: RmrkTraitsPartEquippableList;
@@ -3081,7 +3299,7 @@
     readonly z: u32;
   }
 
-  /** @name RmrkTraitsPartEquippableList (335) */
+  /** @name RmrkTraitsPartEquippableList (388) */
   interface RmrkTraitsPartEquippableList extends Enum {
     readonly isAll: boolean;
     readonly isEmpty: boolean;
@@ -3090,20 +3308,20 @@
     readonly type: 'All' | 'Empty' | 'Custom';
   }
 
-  /** @name RmrkTraitsTheme (337) */
+  /** @name RmrkTraitsTheme (390) */
   interface RmrkTraitsTheme extends Struct {
     readonly name: Bytes;
     readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
     readonly inherit: bool;
   }
 
-  /** @name RmrkTraitsThemeThemeProperty (339) */
+  /** @name RmrkTraitsThemeThemeProperty (392) */
   interface RmrkTraitsThemeThemeProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name PalletAppPromotionCall (341) */
+  /** @name PalletAppPromotionCall (394) */
   interface PalletAppPromotionCall extends Enum {
     readonly isSetAdminAddress: boolean;
     readonly asSetAdminAddress: {
@@ -3137,7 +3355,7 @@
     readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
   }
 
-  /** @name PalletForeignAssetsModuleCall (342) */
+  /** @name PalletForeignAssetsModuleCall (395) */
   interface PalletForeignAssetsModuleCall extends Enum {
     readonly isRegisterForeignAsset: boolean;
     readonly asRegisterForeignAsset: {
@@ -3154,7 +3372,7 @@
     readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
   }
 
-  /** @name PalletEvmCall (343) */
+  /** @name PalletEvmCall (396) */
   interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -3199,7 +3417,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (349) */
+  /** @name PalletEthereumCall (402) */
   interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -3208,7 +3426,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (350) */
+  /** @name EthereumTransactionTransactionV2 (403) */
   interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3219,7 +3437,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (351) */
+  /** @name EthereumTransactionLegacyTransaction (404) */
   interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -3230,7 +3448,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (352) */
+  /** @name EthereumTransactionTransactionAction (405) */
   interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -3238,14 +3456,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (353) */
+  /** @name EthereumTransactionTransactionSignature (406) */
   interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (355) */
+  /** @name EthereumTransactionEip2930Transaction (408) */
   interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3260,13 +3478,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (357) */
+  /** @name EthereumTransactionAccessListItem (410) */
   interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (358) */
+  /** @name EthereumTransactionEip1559Transaction (411) */
   interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3282,8 +3500,8 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmMigrationCall (359) */
-  interface PalletEvmMigrationCall extends Enum {
+  /** @name PalletDataManagementCall (412) */
+  interface PalletDataManagementCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
       readonly address: H160;
@@ -3309,14 +3527,14 @@
     readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
   }
 
-  /** @name PalletMaintenanceCall (363) */
+  /** @name PalletMaintenanceCall (416) */
   interface PalletMaintenanceCall extends Enum {
     readonly isEnable: boolean;
     readonly isDisable: boolean;
     readonly type: 'Enable' | 'Disable';
   }
 
-  /** @name PalletTestUtilsCall (364) */
+  /** @name PalletTestUtilsCall (417) */
   interface PalletTestUtilsCall extends Enum {
     readonly isEnable: boolean;
     readonly isSetTestValue: boolean;
@@ -3336,13 +3554,13 @@
     readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
   }
 
-  /** @name PalletSudoError (366) */
+  /** @name PalletSudoError (419) */
   interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name OrmlVestingModuleError (368) */
+  /** @name OrmlVestingModuleError (421) */
   interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -3353,7 +3571,7 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name OrmlXtokensModuleError (369) */
+  /** @name OrmlXtokensModuleError (422) */
   interface OrmlXtokensModuleError extends Enum {
     readonly isAssetHasNoReserve: boolean;
     readonly isNotCrossChainTransfer: boolean;
@@ -3377,26 +3595,26 @@
     readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
   }
 
-  /** @name OrmlTokensBalanceLock (372) */
+  /** @name OrmlTokensBalanceLock (425) */
   interface OrmlTokensBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensAccountData (374) */
+  /** @name OrmlTokensAccountData (427) */
   interface OrmlTokensAccountData extends Struct {
     readonly free: u128;
     readonly reserved: u128;
     readonly frozen: u128;
   }
 
-  /** @name OrmlTokensReserveData (376) */
+  /** @name OrmlTokensReserveData (429) */
   interface OrmlTokensReserveData extends Struct {
     readonly id: Null;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensModuleError (378) */
+  /** @name OrmlTokensModuleError (431) */
   interface OrmlTokensModuleError extends Enum {
     readonly isBalanceTooLow: boolean;
     readonly isAmountIntoBalanceFailed: boolean;
@@ -3409,21 +3627,21 @@
     readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (380) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (433) */
   interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (381) */
+  /** @name CumulusPalletXcmpQueueInboundState (434) */
   interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (384) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (437) */
   interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -3431,7 +3649,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (387) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (440) */
   interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3440,14 +3658,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (388) */
+  /** @name CumulusPalletXcmpQueueOutboundState (441) */
   interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (390) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (443) */
   interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -3457,7 +3675,7 @@
     readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletXcmpQueueError (392) */
+  /** @name CumulusPalletXcmpQueueError (445) */
   interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -3467,7 +3685,7 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmError (393) */
+  /** @name PalletXcmError (446) */
   interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -3485,29 +3703,29 @@
     readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
   }
 
-  /** @name CumulusPalletXcmError (394) */
+  /** @name CumulusPalletXcmError (447) */
   type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (395) */
+  /** @name CumulusPalletDmpQueueConfigData (448) */
   interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (396) */
+  /** @name CumulusPalletDmpQueuePageIndexData (449) */
   interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (399) */
+  /** @name CumulusPalletDmpQueueError (452) */
   interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (403) */
+  /** @name PalletUniqueError (456) */
   interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isEmptyArgument: boolean;
@@ -3515,13 +3733,13 @@
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
   }
 
-  /** @name PalletConfigurationError (404) */
+  /** @name PalletConfigurationError (457) */
   interface PalletConfigurationError extends Enum {
     readonly isInconsistentConfiguration: boolean;
     readonly type: 'InconsistentConfiguration';
   }
 
-  /** @name UpDataStructsCollection (405) */
+  /** @name UpDataStructsCollection (458) */
   interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3534,7 +3752,7 @@
     readonly flags: U8aFixed;
   }
 
-  /** @name UpDataStructsSponsorshipStateAccountId32 (406) */
+  /** @name UpDataStructsSponsorshipStateAccountId32 (459) */
   interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3544,43 +3762,43 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (408) */
+  /** @name UpDataStructsProperties (460) */
   interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly spaceLimit: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (409) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (461) */
   interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (414) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (466) */
   interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionStats (421) */
+  /** @name UpDataStructsCollectionStats (473) */
   interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name UpDataStructsTokenChild (422) */
+  /** @name UpDataStructsTokenChild (474) */
   interface UpDataStructsTokenChild extends Struct {
     readonly token: u32;
     readonly collection: u32;
   }
 
-  /** @name PhantomTypeUpDataStructs (423) */
+  /** @name PhantomTypeUpDataStructs (475) */
   interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
 
-  /** @name UpDataStructsTokenData (425) */
+  /** @name UpDataStructsTokenData (477) */
   interface UpDataStructsTokenData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
     readonly pieces: u128;
   }
 
-  /** @name UpDataStructsRpcCollection (427) */
+  /** @name UpDataStructsRpcCollection (479) */
   interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3596,13 +3814,13 @@
     readonly flags: UpDataStructsRpcCollectionFlags;
   }
 
-  /** @name UpDataStructsRpcCollectionFlags (428) */
+  /** @name UpDataStructsRpcCollectionFlags (480) */
   interface UpDataStructsRpcCollectionFlags extends Struct {
     readonly foreign: bool;
     readonly erc721metadata: bool;
   }
 
-  /** @name RmrkTraitsCollectionCollectionInfo (429) */
+  /** @name RmrkTraitsCollectionCollectionInfo (481) */
   interface RmrkTraitsCollectionCollectionInfo extends Struct {
     readonly issuer: AccountId32;
     readonly metadata: Bytes;
@@ -3611,7 +3829,7 @@
     readonly nftsCount: u32;
   }
 
-  /** @name RmrkTraitsNftNftInfo (430) */
+  /** @name RmrkTraitsNftNftInfo (482) */
   interface RmrkTraitsNftNftInfo extends Struct {
     readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
     readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3620,13 +3838,13 @@
     readonly pending: bool;
   }
 
-  /** @name RmrkTraitsNftRoyaltyInfo (432) */
+  /** @name RmrkTraitsNftRoyaltyInfo (484) */
   interface RmrkTraitsNftRoyaltyInfo extends Struct {
     readonly recipient: AccountId32;
     readonly amount: Permill;
   }
 
-  /** @name RmrkTraitsResourceResourceInfo (433) */
+  /** @name RmrkTraitsResourceResourceInfo (485) */
   interface RmrkTraitsResourceResourceInfo extends Struct {
     readonly id: u32;
     readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3634,26 +3852,26 @@
     readonly pendingRemoval: bool;
   }
 
-  /** @name RmrkTraitsPropertyPropertyInfo (434) */
+  /** @name RmrkTraitsPropertyPropertyInfo (486) */
   interface RmrkTraitsPropertyPropertyInfo extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name RmrkTraitsBaseBaseInfo (435) */
+  /** @name RmrkTraitsBaseBaseInfo (487) */
   interface RmrkTraitsBaseBaseInfo extends Struct {
     readonly issuer: AccountId32;
     readonly baseType: Bytes;
     readonly symbol: Bytes;
   }
 
-  /** @name RmrkTraitsNftNftChild (436) */
+  /** @name RmrkTraitsNftNftChild (488) */
   interface RmrkTraitsNftNftChild extends Struct {
     readonly collectionId: u32;
     readonly nftId: u32;
   }
 
-  /** @name PalletCommonError (438) */
+  /** @name PalletCommonError (490) */
   interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -3694,7 +3912,7 @@
     readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
   }
 
-  /** @name PalletFungibleError (440) */
+  /** @name PalletFungibleError (492) */
   interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -3706,12 +3924,12 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
   }
 
-  /** @name PalletRefungibleItemData (441) */
+  /** @name PalletRefungibleItemData (493) */
   interface PalletRefungibleItemData extends Struct {
     readonly constData: Bytes;
   }
 
-  /** @name PalletRefungibleError (446) */
+  /** @name PalletRefungibleError (498) */
   interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -3721,19 +3939,19 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (447) */
+  /** @name PalletNonfungibleItemData (499) */
   interface PalletNonfungibleItemData extends Struct {
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsPropertyScope (449) */
+  /** @name UpDataStructsPropertyScope (501) */
   interface UpDataStructsPropertyScope extends Enum {
     readonly isNone: boolean;
     readonly isRmrk: boolean;
     readonly type: 'None' | 'Rmrk';
   }
 
-  /** @name PalletNonfungibleError (451) */
+  /** @name PalletNonfungibleError (503) */
   interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3741,7 +3959,7 @@
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
   }
 
-  /** @name PalletStructureError (452) */
+  /** @name PalletStructureError (504) */
   interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -3750,7 +3968,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
   }
 
-  /** @name PalletRmrkCoreError (453) */
+  /** @name PalletRmrkCoreError (505) */
   interface PalletRmrkCoreError extends Enum {
     readonly isCorruptedCollectionType: boolean;
     readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3774,7 +3992,7 @@
     readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
   }
 
-  /** @name PalletRmrkEquipError (455) */
+  /** @name PalletRmrkEquipError (507) */
   interface PalletRmrkEquipError extends Enum {
     readonly isPermissionError: boolean;
     readonly isNoAvailableBaseId: boolean;
@@ -3786,7 +4004,7 @@
     readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
   }
 
-  /** @name PalletAppPromotionError (461) */
+  /** @name PalletAppPromotionError (513) */
   interface PalletAppPromotionError extends Enum {
     readonly isAdminNotSet: boolean;
     readonly isNoPermission: boolean;
@@ -3797,7 +4015,7 @@
     readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
   }
 
-  /** @name PalletForeignAssetsModuleError (462) */
+  /** @name PalletForeignAssetsModuleError (514) */
   interface PalletForeignAssetsModuleError extends Enum {
     readonly isBadLocation: boolean;
     readonly isMultiLocationExisted: boolean;
@@ -3806,7 +4024,7 @@
     readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
   }
 
-  /** @name PalletEvmError (464) */
+  /** @name PalletEvmError (516) */
   interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -3821,7 +4039,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
   }
 
-  /** @name FpRpcTransactionStatus (467) */
+  /** @name FpRpcTransactionStatus (519) */
   interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -3832,10 +4050,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (469) */
+  /** @name EthbloomBloom (521) */
   interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (471) */
+  /** @name EthereumReceiptReceiptV3 (523) */
   interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3846,7 +4064,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (472) */
+  /** @name EthereumReceiptEip658ReceiptData (524) */
   interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -3854,14 +4072,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (473) */
+  /** @name EthereumBlock (525) */
   interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (474) */
+  /** @name EthereumHeader (526) */
   interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -3880,24 +4098,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (475) */
+  /** @name EthereumTypesHashH64 (527) */
   interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (480) */
+  /** @name PalletEthereumError (532) */
   interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (481) */
+  /** @name PalletEvmCoderSubstrateError (533) */
   interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (482) */
+  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (534) */
   interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3907,7 +4125,7 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (483) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (535) */
   interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -3915,7 +4133,7 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (489) */
+  /** @name PalletEvmContractHelpersError (541) */
   interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly isNoPendingSponsor: boolean;
@@ -3923,25 +4141,25 @@
     readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
   }
 
-  /** @name PalletEvmMigrationError (490) */
-  interface PalletEvmMigrationError extends Enum {
+  /** @name PalletDataManagementError (542) */
+  interface PalletDataManagementError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
     readonly isBadEvent: boolean;
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
   }
 
-  /** @name PalletMaintenanceError (491) */
+  /** @name PalletMaintenanceError (543) */
   type PalletMaintenanceError = Null;
 
-  /** @name PalletTestUtilsError (492) */
+  /** @name PalletTestUtilsError (544) */
   interface PalletTestUtilsError extends Enum {
     readonly isTestPalletDisabled: boolean;
     readonly isTriggerRollback: boolean;
     readonly type: 'TestPalletDisabled' | 'TriggerRollback';
   }
 
-  /** @name SpRuntimeMultiSignature (494) */
+  /** @name SpRuntimeMultiSignature (546) */
   interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -3952,40 +4170,43 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (495) */
+  /** @name SpCoreEd25519Signature (547) */
   interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (497) */
+  /** @name SpCoreSr25519Signature (549) */
   interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (498) */
+  /** @name SpCoreEcdsaSignature (550) */
   interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (501) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (553) */
   type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckTxVersion (502) */
+  /** @name FrameSystemExtensionsCheckTxVersion (554) */
   type FrameSystemExtensionsCheckTxVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (503) */
+  /** @name FrameSystemExtensionsCheckGenesis (555) */
   type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (506) */
+  /** @name FrameSystemExtensionsCheckNonce (558) */
   interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (507) */
+  /** @name FrameSystemExtensionsCheckWeight (559) */
   type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (508) */
+  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (560) */
   type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (509) */
+  /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (561) */
+  type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;
+
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (562) */
   interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (510) */
+  /** @name OpalRuntimeRuntime (563) */
   type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (511) */
+  /** @name PalletEthereumFakeTransactionFinalizer (564) */
   type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module
modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
--- a/tests/src/pallet-presence.test.ts
+++ b/tests/src/pallet-presence.test.ts
@@ -32,7 +32,7 @@
   'evm',
   'evmcodersubstrate',
   'evmcontracthelpers',
-  'evmmigration',
+  'datamanagement',
   'evmtransactionpayment',
   'ethereum',
   'fungible',
@@ -66,7 +66,7 @@
       const foreignAssets = 'foreignassets';
       const rmrkPallets = ['rmrkcore', 'rmrkequip'];
       const appPromotion = 'apppromotion';
-      const collatorSelection = ['authorship', 'session', 'collatorselection'];
+      const collatorSelection = ['authorship', 'session', 'collatorselection', 'identity'];
       const testUtils = 'testutils';
 
       if (chain.eq('OPAL by UNIQUE')) {
modifiedtests/src/util/playgrounds/unique.dev.tsdiffbeforeafterboth
--- a/tests/src/util/playgrounds/unique.dev.ts
+++ b/tests/src/util/playgrounds/unique.dev.ts
@@ -92,6 +92,10 @@
           extrinsic: {},
           payload: {},
         },
+        FilterIdentity: {
+          extrinsic: {},
+          payload: {},
+        },
         FakeTransactionFinalizer: {
           extrinsic: {},
           payload: {},