git.delta.rocks / unique-network / refs/commits / 159d4fc7deeb

difftreelog

Merge pull request #893 from UniqueNetwork/feature/preimage

Yaroslav Bolyukin2023-02-22parents: #8c90034 #5894371.patch.diff
in: master

34 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5541,6 +5541,7 @@
  "pallet-inflation",
  "pallet-maintenance",
  "pallet-nonfungible",
+ "pallet-preimage",
  "pallet-randomness-collective-flip",
  "pallet-refungible",
  "pallet-session",
@@ -6480,6 +6481,7 @@
  "frame-system",
  "parity-scale-codec",
  "scale-info",
+ "sp-core",
  "sp-std",
 ]
 
@@ -8968,6 +8970,7 @@
  "pallet-inflation",
  "pallet-maintenance",
  "pallet-nonfungible",
+ "pallet-preimage",
  "pallet-randomness-collective-flip",
  "pallet-refungible",
  "pallet-session",
@@ -13198,6 +13201,7 @@
  "pallet-inflation",
  "pallet-maintenance",
  "pallet-nonfungible",
+ "pallet-preimage",
  "pallet-randomness-collective-flip",
  "pallet-refungible",
  "pallet-session",
modifiedCargo.tomldiffbeforeafterboth
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -98,6 +98,7 @@
 pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-preimage = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
modifiedMakefilediffbeforeafterboth
--- a/Makefile
+++ b/Makefile
@@ -137,9 +137,13 @@
 bench-app-promotion:
 	make _bench PALLET=app-promotion PALLET_DIR=app-promotion
 
+.PHONY: bench-maintenance
+bench-maintenance:
+	make _bench PALLET=maintenance
+
 .PHONY: bench
 # Disabled: bench-scheduler, bench-collator-selection, bench-identity
-bench: bench-common bench-evm-migration bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-configuration bench-foreign-assets
+bench: bench-common bench-evm-migration bench-unique bench-structure bench-fungible bench-refungible bench-nonfungible bench-configuration bench-foreign-assets bench-maintenance
 
 .PHONY: check
 check:
modifiedpallets/maintenance/Cargo.tomldiffbeforeafterboth
--- a/pallets/maintenance/Cargo.toml
+++ b/pallets/maintenance/Cargo.toml
@@ -18,10 +18,11 @@
 frame-benchmarking = { workspace = true, optional = true }
 frame-support = { workspace = true }
 frame-system = { workspace = true }
+sp-core = { workspace = true }
 sp-std = { workspace = true }
 
 [features]
 default = ["std"]
 runtime-benchmarks = ["frame-benchmarking", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks"]
-std = ["codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "scale-info/std", "sp-std/std"]
+std = ["codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "scale-info/std", "sp-core/std", "sp-std/std"]
 try-runtime = ["frame-support/try-runtime"]
modifiedpallets/maintenance/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/maintenance/src/benchmarking.rs
+++ b/pallets/maintenance/src/benchmarking.rs
@@ -17,9 +17,10 @@
 use super::*;
 use crate::{Pallet as Maintenance, Config};
 
+use codec::Encode;
 use frame_benchmarking::benchmarks;
 use frame_system::RawOrigin;
-use frame_support::ensure;
+use frame_support::{ensure, pallet_prelude::Weight, traits::StorePreimage};
 
 benchmarks! {
 	enable {
@@ -34,4 +35,11 @@
 	verify {
 		ensure!(!<Enabled<T>>::get(), "didn't disable the MM");
 	}
+
+	execute_preimage {
+		let call = <T as Config>::RuntimeCall::from(frame_system::Call::<T>::remark { remark: 1u32.encode() });
+		let hash = T::Preimages::note(call.encode().into())?;
+	}: _(RawOrigin::Root, hash, Weight::from_parts(100000000000, 100000000000))
+	verify {
+	}
 }
modifiedpallets/maintenance/src/lib.rsdiffbeforeafterboth
--- a/pallets/maintenance/src/lib.rs
+++ b/pallets/maintenance/src/lib.rs
@@ -25,13 +25,36 @@
 
 #[frame_support::pallet]
 pub mod pallet {
-	use frame_support::pallet_prelude::*;
+	use frame_support::{dispatch::*, pallet_prelude::*};
+	use frame_support::{
+		traits::{QueryPreimage, StorePreimage},
+	};
 	use frame_system::pallet_prelude::*;
+	use sp_core::H256;
+
 	use crate::weights::WeightInfo;
 
 	#[pallet::config]
 	pub trait Config: frame_system::Config {
+		/// The overarching event type.
 		type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
+
+		/// The runtime origin type.
+		type RuntimeOrigin: From<RawOrigin<Self::AccountId>>
+			+ IsType<<Self as frame_system::Config>::RuntimeOrigin>;
+
+		/// The aggregated call type.
+		type RuntimeCall: Parameter
+			+ Dispatchable<
+				RuntimeOrigin = <Self as Config>::RuntimeOrigin,
+				PostInfo = PostDispatchInfo,
+			> + GetDispatchInfo
+			+ From<frame_system::Call<Self>>;
+
+		/// The preimage provider with which we look up call hashes to get the call.
+		type Preimages: QueryPreimage + StorePreimage;
+
+		/// Weight information for extrinsics in this pallet.
 		type WeightInfo: WeightInfo;
 	}
 
@@ -78,5 +101,49 @@
 
 			Ok(())
 		}
+
+		/// Execute a runtime call stored as a preimage.
+		///
+		/// `weight_bound` is the maximum weight that the caller is willing
+		/// to allow the extrinsic to be executed with.
+		#[pallet::call_index(2)]
+		#[pallet::weight(<T as Config>::WeightInfo::execute_preimage() + *weight_bound)]
+		pub fn execute_preimage(
+			origin: OriginFor<T>,
+			hash: H256,
+			weight_bound: Weight,
+		) -> DispatchResultWithPostInfo {
+			use codec::Decode;
+
+			ensure_root(origin)?;
+
+			let data = T::Preimages::fetch(&hash, None)?;
+			weight_bound.set_proof_size(
+				weight_bound
+					.proof_size()
+					.checked_sub(
+						data.len()
+							.try_into()
+							.map_err(|_| DispatchError::Corruption)?,
+					)
+					.ok_or(DispatchError::Exhausted)?,
+			);
+
+			let call = <T as Config>::RuntimeCall::decode(&mut &data[..])
+				.map_err(|_| DispatchError::Corruption)?;
+
+			ensure!(
+				call.get_dispatch_info().weight.all_lte(weight_bound),
+				DispatchError::Exhausted
+			);
+
+			match call.dispatch(frame_system::RawOrigin::Root.into()) {
+				Ok(_) => Ok(Pays::No.into()),
+				Err(error_and_info) => Err(DispatchErrorWithPostInfo {
+					post_info: Pays::No.into(),
+					error: error_and_info.error,
+				}),
+			}
+		}
 	}
 }
modifiedpallets/maintenance/src/weights.rsdiffbeforeafterboth
--- a/pallets/maintenance/src/weights.rs
+++ b/pallets/maintenance/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_maintenance
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2022-11-01, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-22, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -26,6 +26,7 @@
 #![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}};
@@ -35,6 +36,7 @@
 pub trait WeightInfo {
 	fn enable() -> Weight;
 	fn disable() -> Weight;
+	fn execute_preimage() -> Weight;
 }
 
 /// Weights for pallet_maintenance using the Substrate node and recommended hardware.
@@ -42,13 +44,19 @@
 impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
 	// Storage: Maintenance Enabled (r:0 w:1)
 	fn enable() -> Weight {
-		Weight::from_ref_time(7_367_000)
-			.saturating_add(T::DbWeight::get().writes(1))
+		Weight::from_ref_time(10_860_000 as u64)
+			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Maintenance Enabled (r:0 w:1)
 	fn disable() -> Weight {
-		Weight::from_ref_time(7_273_000)
-			.saturating_add(T::DbWeight::get().writes(1))
+		Weight::from_ref_time(10_871_000 as u64)
+			.saturating_add(T::DbWeight::get().writes(1 as u64))
+	}
+	// Storage: Preimage StatusFor (r:1 w:0)
+	// Storage: Preimage PreimageFor (r:1 w:0)
+	fn execute_preimage() -> Weight {
+		Weight::from_ref_time(10_068_000 as u64)
+			.saturating_add(T::DbWeight::get().reads(2 as u64))
 	}
 }
 
@@ -56,12 +64,18 @@
 impl WeightInfo for () {
 	// Storage: Maintenance Enabled (r:0 w:1)
 	fn enable() -> Weight {
-		Weight::from_ref_time(7_367_000)
-			.saturating_add(RocksDbWeight::get().writes(1))
+		Weight::from_ref_time(10_860_000 as u64)
+			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Maintenance Enabled (r:0 w:1)
 	fn disable() -> Weight {
-		Weight::from_ref_time(7_273_000)
-			.saturating_add(RocksDbWeight::get().writes(1))
+		Weight::from_ref_time(10_871_000 as u64)
+			.saturating_add(RocksDbWeight::get().writes(1 as u64))
+	}
+	// Storage: Preimage StatusFor (r:1 w:0)
+	// Storage: Preimage PreimageFor (r:1 w:0)
+	fn execute_preimage() -> Weight {
+		Weight::from_ref_time(10_068_000 as u64)
+			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 	}
 }
modifiedpallets/scheduler-v2/Cargo.tomldiffbeforeafterboth
--- a/pallets/scheduler-v2/Cargo.toml
+++ b/pallets/scheduler-v2/Cargo.toml
@@ -24,7 +24,7 @@
 sp-std = { workspace = true }
 
 [dev-dependencies]
-pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
+pallet-preimage = { workspace = true }
 substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" }
 
 [features]
modifiedruntime/common/config/pallets/mod.rsdiffbeforeafterboth
--- a/runtime/common/config/pallets/mod.rs
+++ b/runtime/common/config/pallets/mod.rs
@@ -23,7 +23,7 @@
 		weights::CommonWeights,
 		RelayChainBlockNumberProvider,
 	},
-	Runtime, RuntimeEvent, RuntimeCall, Balances,
+	Runtime, RuntimeEvent, RuntimeCall, RuntimeOrigin, Balances,
 };
 use frame_support::traits::{ConstU32, ConstU64};
 use up_common::{
@@ -47,6 +47,9 @@
 #[cfg(feature = "collator-selection")]
 pub mod collator_selection;
 
+#[cfg(feature = "preimage")]
+pub mod preimage;
+
 parameter_types! {
 	pub TreasuryAccountId: AccountId = TreasuryModuleId::get().into_account_truncating();
 	pub const CollectionCreationPrice: Balance = 2 * UNIQUE;
@@ -123,5 +126,11 @@
 
 impl pallet_maintenance::Config for Runtime {
 	type RuntimeEvent = RuntimeEvent;
+	type RuntimeOrigin = RuntimeOrigin;
+	type RuntimeCall = RuntimeCall;
+	#[cfg(feature = "preimage")]
+	type Preimages = crate::Preimage;
+	#[cfg(not(feature = "preimage"))]
+	type Preimages = ();
 	type WeightInfo = pallet_maintenance::weights::SubstrateWeight<Self>;
 }
addedruntime/common/config/pallets/preimage.rsdiffbeforeafterboth
--- /dev/null
+++ b/runtime/common/config/pallets/preimage.rs
@@ -0,0 +1,33 @@
+// 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 frame_support::parameter_types;
+use frame_system::EnsureRoot;
+use crate::{AccountId, Balance, Balances, Runtime, RuntimeEvent};
+use up_common::constants::*;
+
+parameter_types! {
+	pub PreimageBaseDeposit: Balance = 1000 * UNIQUE;
+}
+
+impl pallet_preimage::Config for Runtime {
+	type WeightInfo = pallet_preimage::weights::SubstrateWeight<Runtime>;
+	type RuntimeEvent = RuntimeEvent;
+	type Currency = Balances;
+	type ManagerOrigin = EnsureRoot<AccountId>;
+	type BaseDeposit = PreimageBaseDeposit;
+	type ByteDeposit = TransactionByteFee;
+}
modifiedruntime/common/construct_runtime.rsdiffbeforeafterboth
--- a/runtime/common/construct_runtime.rs
+++ b/runtime/common/construct_runtime.rs
@@ -56,6 +56,9 @@
                 #[cfg(feature = "collator-selection")]
                 Identity: pallet_identity::{Pallet, Call, Storage, Event<T>} = 40,
 
+                #[cfg(feature = "preimage")]
+                Preimage: pallet_preimage::{Pallet, Call, Storage, Event<T>} = 41,
+
                 // XCM helpers.
                 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,
                 PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin} = 51,
modifiedruntime/common/runtime_apis.rsdiffbeforeafterboth
--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -568,6 +568,7 @@
                     #[cfg(feature = "foreign-assets")]
                     list_benchmark!(list, extra, pallet_foreign_assets, ForeignAssets);
 
+                    list_benchmark!(list, extra, pallet_maintenance, Maintenance);
 
                     // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);
 
@@ -632,6 +633,8 @@
                     #[cfg(feature = "foreign-assets")]
                     add_benchmark!(params, batches, pallet_foreign_assets, ForeignAssets);
 
+                    add_benchmark!(params, batches, pallet_maintenance, Maintenance);
+
                     // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);
 
                     if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -18,7 +18,7 @@
 [features]
 default = ['opal-runtime', 'std']
 limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
-opal-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'pallet-test-utils', 'refungible']
+opal-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'preimage', 'pallet-test-utils', 'refungible']
 pov-estimate = []
 runtime-benchmarks = [
 	'cumulus-pallet-parachain-system/runtime-benchmarks',
@@ -41,6 +41,7 @@
 	'pallet-inflation/runtime-benchmarks',
 	'pallet-maintenance/runtime-benchmarks',
 	'pallet-nonfungible/runtime-benchmarks',
+	"pallet-preimage/runtime-benchmarks",
 	'pallet-refungible/runtime-benchmarks',
 	'pallet-structure/runtime-benchmarks',
 	'pallet-timestamp/runtime-benchmarks',
@@ -69,6 +70,7 @@
 	# 'pallet-contracts-primitives/std',
 	# 'pallet-contracts-rpc-runtime-api/std',
 	# 'pallet-contract-helpers/std',
+	"pallet-preimage/std",
 	"pallet-authorship/std",
 	"pallet-session/std",
 	"sp-consensus-aura/std",
@@ -139,6 +141,7 @@
 	"pallet-collator-selection/try-runtime",
 	"pallet-identity/try-runtime",
 	"pallet-session/try-runtime",
+	"pallet-preimage/try-runtime",
 	'cumulus-pallet-aura-ext/try-runtime',
 	'cumulus-pallet-dmp-queue/try-runtime',
 	'cumulus-pallet-parachain-system/try-runtime',
@@ -188,6 +191,7 @@
 app-promotion = []
 collator-selection = []
 foreign-assets = []
+preimage = []
 pallet-test-utils = []
 refungible = []
 scheduler = []
@@ -218,6 +222,7 @@
 pallet-aura = { workspace = true }
 pallet-authorship = { workspace = true }
 pallet-balances = { workspace = true }
+pallet-preimage = { workspace = true }
 pallet-randomness-collective-flip = { workspace = true }
 pallet-session = { workspace = true }
 pallet-sudo = { workspace = true }
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -20,7 +20,7 @@
 default = ['quartz-runtime', 'std']
 limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
 pov-estimate = []
-quartz-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'refungible']
+quartz-runtime = ['app-promotion', 'collator-selection', 'foreign-assets', 'preimage', 'refungible']
 runtime-benchmarks = [
 	'cumulus-pallet-parachain-system/runtime-benchmarks',
 	'frame-benchmarking',
@@ -42,6 +42,7 @@
 	'pallet-inflation/runtime-benchmarks',
 	'pallet-maintenance/runtime-benchmarks',
 	'pallet-nonfungible/runtime-benchmarks',
+	"pallet-preimage/runtime-benchmarks",
 	'pallet-refungible/runtime-benchmarks',
 	'pallet-structure/runtime-benchmarks',
 	'pallet-timestamp/runtime-benchmarks',
@@ -69,6 +70,7 @@
 	# 'pallet-contracts-primitives/std',
 	# 'pallet-contracts-rpc-runtime-api/std',
 	# 'pallet-contract-helpers/std',
+	"pallet-preimage/std",
 	"pallet-authorship/std",
 	"pallet-identity/std",
 	"pallet-session/std",
@@ -136,6 +138,7 @@
 	"pallet-collator-selection/try-runtime",
 	"pallet-identity/try-runtime",
 	"pallet-session/try-runtime",
+	"pallet-preimage/try-runtime",
 	'cumulus-pallet-aura-ext/try-runtime',
 	'cumulus-pallet-dmp-queue/try-runtime',
 	'cumulus-pallet-parachain-system/try-runtime',
@@ -181,6 +184,7 @@
 app-promotion = []
 collator-selection = []
 foreign-assets = []
+preimage = []
 refungible = []
 scheduler = []
 
@@ -210,6 +214,7 @@
 pallet-aura = { workspace = true }
 pallet-authorship = { workspace = true }
 pallet-balances = { workspace = true }
+pallet-preimage = { workspace = true }
 pallet-randomness-collective-flip = { workspace = true }
 pallet-session = { workspace = true }
 pallet-sudo = { workspace = true }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -39,6 +39,7 @@
 	'pallet-inflation/runtime-benchmarks',
 	'pallet-maintenance/runtime-benchmarks',
 	'pallet-nonfungible/runtime-benchmarks',
+	"pallet-preimage/runtime-benchmarks",
 	'pallet-refungible/runtime-benchmarks',
 	'pallet-structure/runtime-benchmarks',
 	'pallet-timestamp/runtime-benchmarks',
@@ -67,6 +68,7 @@
 	# 'pallet-contracts-primitives/std',
 	# 'pallet-contracts-rpc-runtime-api/std',
 	# 'pallet-contract-helpers/std',
+	"pallet-preimage/std",
 	"pallet-authorship/std",
 	"pallet-identity/std",
 	"pallet-session/std",
@@ -134,6 +136,7 @@
 	"pallet-collator-selection/try-runtime",
 	"pallet-identity/try-runtime",
 	"pallet-session/try-runtime",
+	"pallet-preimage/try-runtime",
 	'cumulus-pallet-aura-ext/try-runtime',
 	'cumulus-pallet-dmp-queue/try-runtime',
 	'cumulus-pallet-parachain-system/try-runtime',
@@ -180,6 +183,7 @@
 app-promotion = []
 collator-selection = []
 foreign-assets = []
+preimage = []
 refungible = []
 scheduler = []
 
@@ -209,6 +213,7 @@
 pallet-aura = { workspace = true }
 pallet-authorship = { workspace = true }
 pallet-balances = { workspace = true }
+pallet-preimage = { workspace = true }
 pallet-randomness-collective-flip = { workspace = true }
 pallet-session = { workspace = true }
 pallet-sudo = { workspace = true }
modifiedtests/package.jsondiffbeforeafterboth
--- a/tests/package.json
+++ b/tests/package.json
@@ -82,7 +82,7 @@
     "testSetOffchainSchema": "mocha --timeout 9999999 -r ts-node/register ./**/setOffchainSchema.test.ts",
     "testNextSponsoring": "mocha --timeout 9999999 -r ts-node/register ./**/nextSponsoring.test.ts",
     "testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",
-    "testMaintenance": "mocha --timeout 9999999 -r ts-node/register ./**/maintenanceMode.seqtest.ts",
+    "testMaintenance": "mocha --timeout 9999999 -r ts-node/register ./**/maintenance.seqtest.ts",
     "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.seqtest.ts",
     "testScheduler": "mocha --timeout 9999999 -r ts-node/register ./**/scheduler.seqtest.ts",
     "testSchedulingEVM": "mocha --timeout 9999999 -r ts-node/register ./**/eth/scheduling.test.ts",
modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -41,6 +41,18 @@
        **/
       [key: string]: Codec;
     };
+    authorship: {
+      /**
+       * The number of blocks back we should accept uncles.
+       * This means that we will deal with uncle-parents that are
+       * `UncleGenerations + 1` before `now`.
+       **/
+      uncleGenerations: u32 & AugmentedConst<ApiType>;
+      /**
+       * Generic const
+       **/
+      [key: string]: Codec;
+    };
     balances: {
       /**
        * The minimum amount required to keep an account open.
@@ -102,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
@@ -21,6 +21,10 @@
        **/
       IncorrectLockedBalanceOperation: AugmentedError<ApiType>;
       /**
+       * Errors caused by insufficient staked balance.
+       **/
+      InsufficientStakedBalance: AugmentedError<ApiType>;
+      /**
        * No permission to perform an action.
        **/
       NoPermission: AugmentedError<ApiType>;
@@ -41,6 +45,40 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    authorship: {
+      /**
+       * The uncle is genesis.
+       **/
+      GenesisUncle: AugmentedError<ApiType>;
+      /**
+       * The uncle parent not in the chain.
+       **/
+      InvalidUncleParent: AugmentedError<ApiType>;
+      /**
+       * The uncle isn't recent enough to be included.
+       **/
+      OldUncle: AugmentedError<ApiType>;
+      /**
+       * The uncle is too high in chain.
+       **/
+      TooHighUncle: AugmentedError<ApiType>;
+      /**
+       * Too many uncles.
+       **/
+      TooManyUncles: AugmentedError<ApiType>;
+      /**
+       * The uncle is already included.
+       **/
+      UncleAlreadyIncluded: AugmentedError<ApiType>;
+      /**
+       * Uncles already set in the block.
+       **/
+      UnclesAlreadySet: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     balances: {
       /**
        * Beneficiary account must pre-exist
@@ -79,6 +117,64 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    collatorSelection: {
+      /**
+       * User is already a candidate
+       **/
+      AlreadyCandidate: AugmentedError<ApiType>;
+      /**
+       * User already holds license to collate
+       **/
+      AlreadyHoldingLicense: AugmentedError<ApiType>;
+      /**
+       * User is already an Invulnerable
+       **/
+      AlreadyInvulnerable: AugmentedError<ApiType>;
+      /**
+       * Account has no associated validator ID
+       **/
+      NoAssociatedValidatorId: AugmentedError<ApiType>;
+      /**
+       * User does not hold a license to collate
+       **/
+      NoLicense: AugmentedError<ApiType>;
+      /**
+       * User is not a candidate
+       **/
+      NotCandidate: AugmentedError<ApiType>;
+      /**
+       * User is not an Invulnerable
+       **/
+      NotInvulnerable: AugmentedError<ApiType>;
+      /**
+       * Permission issue
+       **/
+      Permission: AugmentedError<ApiType>;
+      /**
+       * Too few invulnerables
+       **/
+      TooFewInvulnerables: AugmentedError<ApiType>;
+      /**
+       * Too many candidates
+       **/
+      TooManyCandidates: AugmentedError<ApiType>;
+      /**
+       * Too many invulnerables
+       **/
+      TooManyInvulnerables: AugmentedError<ApiType>;
+      /**
+       * Unknown error
+       **/
+      Unknown: AugmentedError<ApiType>;
+      /**
+       * Validator ID is not yet registered
+       **/
+      ValidatorNotRegistered: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     common: {
       /**
        * Account token limit exceeded per collection
@@ -425,6 +521,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
@@ -549,145 +723,83 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
-    refungible: {
+    preimage: {
       /**
-       * Not Refungible item data used to mint in Refungible collection.
+       * Preimage has already been noted on-chain.
        **/
-      NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;
+      AlreadyNoted: AugmentedError<ApiType>;
       /**
-       * Refungible token can't nest other tokens.
+       * The user is not authorized to perform this action.
        **/
-      RefungibleDisallowsNesting: AugmentedError<ApiType>;
+      NotAuthorized: AugmentedError<ApiType>;
       /**
-       * Refungible token can't be repartitioned by user who isn't owns all pieces.
+       * The preimage cannot be removed since it has not yet been noted.
        **/
-      RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;
+      NotNoted: AugmentedError<ApiType>;
       /**
-       * Setting item properties is not allowed.
+       * The preimage request cannot be removed since no outstanding requests exist.
        **/
-      SettingPropertiesNotAllowed: AugmentedError<ApiType>;
+      NotRequested: AugmentedError<ApiType>;
       /**
-       * Maximum refungibility exceeded.
+       * A preimage may not be removed when there are outstanding requests.
        **/
-      WrongRefungiblePieces: AugmentedError<ApiType>;
+      Requested: AugmentedError<ApiType>;
       /**
+       * Preimage is too large to store on-chain.
+       **/
+      TooBig: AugmentedError<ApiType>;
+      /**
        * Generic error
        **/
       [key: string]: AugmentedError<ApiType>;
     };
-    rmrkCore: {
-      /**
-       * Not the target owner of the sent NFT.
-       **/
-      CannotAcceptNonOwnedNft: AugmentedError<ApiType>;
-      /**
-       * Not the target owner of the sent NFT.
-       **/
-      CannotRejectNonOwnedNft: AugmentedError<ApiType>;
-      /**
-       * NFT was not sent and is not pending.
-       **/
-      CannotRejectNonPendingNft: AugmentedError<ApiType>;
-      /**
-       * If an NFT is sent to a descendant, that would form a nesting loop, an ouroboros.
-       * Sending to self is redundant.
-       **/
-      CannotSendToDescendentOrSelf: AugmentedError<ApiType>;
-      /**
-       * Too many tokens created in the collection, no new ones are allowed.
-       **/
-      CollectionFullOrLocked: AugmentedError<ApiType>;
-      /**
-       * Only destroying collections without tokens is allowed.
-       **/
-      CollectionNotEmpty: AugmentedError<ApiType>;
-      /**
-       * Collection does not exist, has a wrong type, or does not map to a Unique ID.
-       **/
-      CollectionUnknown: AugmentedError<ApiType>;
-      /**
-       * Property of the type of RMRK collection could not be read successfully.
-       **/
-      CorruptedCollectionType: AugmentedError<ApiType>;
-      /**
-       * Could not find an ID for a collection. It is likely there were too many collections created on the chain, causing an overflow.
-       **/
-      NoAvailableCollectionId: AugmentedError<ApiType>;
-      /**
-       * Token does not exist, or there is no suitable ID for it, likely too many tokens were created in a collection, causing an overflow.
-       **/
-      NoAvailableNftId: AugmentedError<ApiType>;
-      /**
-       * Could not find an ID for the resource. It is likely there were too many resources created on an NFT, causing an overflow.
-       **/
-      NoAvailableResourceId: AugmentedError<ApiType>;
-      /**
-       * Token is marked as non-transferable, and thus cannot be transferred.
-       **/
-      NonTransferable: AugmentedError<ApiType>;
+    refungible: {
       /**
-       * No permission to perform action.
-       **/
-      NoPermission: AugmentedError<ApiType>;
-      /**
-       * No such resource found.
+       * Not Refungible item data used to mint in Refungible collection.
        **/
-      ResourceDoesntExist: AugmentedError<ApiType>;
+      NotRefungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;
       /**
-       * Resource is not pending for the operation.
+       * Refungible token can't nest other tokens.
        **/
-      ResourceNotPending: AugmentedError<ApiType>;
+      RefungibleDisallowsNesting: AugmentedError<ApiType>;
       /**
-       * Could not find a property by the supplied key.
+       * Refungible token can't be repartitioned by user who isn't owns all pieces.
        **/
-      RmrkPropertyIsNotFound: AugmentedError<ApiType>;
+      RepartitionWhileNotOwningAllPieces: AugmentedError<ApiType>;
       /**
-       * Too many symbols supplied as the property key. The maximum is [256](up_data_structs::MAX_PROPERTY_KEY_LENGTH).
+       * Setting item properties is not allowed.
        **/
-      RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;
+      SettingPropertiesNotAllowed: AugmentedError<ApiType>;
       /**
-       * Too many bytes supplied as the property value. The maximum is [32768](up_data_structs::MAX_PROPERTY_VALUE_LENGTH).
+       * Maximum refungibility exceeded.
        **/
-      RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;
+      WrongRefungiblePieces: AugmentedError<ApiType>;
       /**
-       * Something went wrong when decoding encoded data from the storage.
-       * Perhaps, there was a wrong key supplied for the type, or the data was improperly stored.
-       **/
-      UnableToDecodeRmrkData: AugmentedError<ApiType>;
-      /**
        * Generic error
        **/
       [key: string]: AugmentedError<ApiType>;
     };
-    rmrkEquip: {
+    session: {
       /**
-       * Base collection linked to this ID does not exist.
+       * Registered duplicate key.
        **/
-      BaseDoesntExist: AugmentedError<ApiType>;
-      /**
-       * No Theme named "default" is associated with the Base.
-       **/
-      NeedsDefaultThemeFirst: AugmentedError<ApiType>;
+      DuplicatedKey: AugmentedError<ApiType>;
       /**
-       * Could not find an ID for a Base collection. It is likely there were too many collections created on the chain, causing an overflow.
-       **/
-      NoAvailableBaseId: AugmentedError<ApiType>;
-      /**
-       * Could not find a suitable ID for a Part, likely too many Part tokens were created in the Base, causing an overflow
+       * Invalid ownership proof.
        **/
-      NoAvailablePartId: AugmentedError<ApiType>;
+      InvalidProof: AugmentedError<ApiType>;
       /**
-       * Cannot assign equippables to a fixed Part.
+       * Key setting account is not live, so it's impossible to associate keys.
        **/
-      NoEquippableOnFixedPart: AugmentedError<ApiType>;
+      NoAccount: AugmentedError<ApiType>;
       /**
-       * Part linked to this ID does not exist.
+       * No associated validator ID for account.
        **/
-      PartDoesntExist: AugmentedError<ApiType>;
+      NoAssociatedValidatorId: AugmentedError<ApiType>;
       /**
-       * No permission to perform action.
+       * No keys are associated with this account.
        **/
-      PermissionError: AugmentedError<ApiType>;
+      NoKeys: AugmentedError<ApiType>;
       /**
        * Generic error
        **/
@@ -699,6 +811,10 @@
        **/
       BreadthLimit: AugmentedError<ApiType>;
       /**
+       * Tried to nest token under collection contract address, instead of token address
+       **/
+      CantNestTokenUnderCollection: AugmentedError<ApiType>;
+      /**
        * While nesting, reached the depth limit of nesting, exceeding the provided budget.
        **/
       DepthLimit: AugmentedError<ApiType>;
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -8,7 +8,7 @@
 import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
 import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 
 export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
 
@@ -100,6 +100,18 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
+    collatorSelection: {
+      CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;
+      CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;
+      InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;
+      InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;
+      LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;
+      LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;
+      /**
+       * Generic event
+       **/
+      [key: string]: AugmentedEvent<ApiType>;
+    };
     common: {
       /**
        * Address was added to the allow list.
@@ -340,6 +352,65 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
+    identity: {
+      /**
+       * A number of identities and associated info were forcibly inserted.
+       **/
+      IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;
+      /**
+       * A number of identities and all associated info were forcibly removed.
+       **/
+      IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;
+      /**
+       * 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 number of identities were forcibly updated with new sub-identities.
+       **/
+      SubIdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: 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, []>;
@@ -506,30 +577,30 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
-    rmrkCore: {
-      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;
-      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;
-      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;
-      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;
-      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;
-      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;
-      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;
-      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;
-      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;
-      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;
-      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;
-      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;
-      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;
-      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;
-      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;
+    preimage: {
+      /**
+       * A preimage has ben cleared.
+       **/
+      Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;
+      /**
+       * A preimage has been noted.
+       **/
+      Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;
+      /**
+       * A preimage has been requested.
+       **/
+      Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;
       /**
        * Generic event
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
-    rmrkEquip: {
-      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;
-      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;
+    session: {
+      /**
+       * New session has happened. Note that the argument is the session index, not the
+       * block number as the type might suggest.
+       **/
+      NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;
       /**
        * Generic event
        **/
@@ -707,6 +778,10 @@
        **/
       Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;
       /**
+       * The inactive funds of the pallet have been updated.
+       **/
+      UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;
+      /**
        * Generic event
        **/
       [key: string]: 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, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, 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, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, 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>;
@@ -23,7 +24,7 @@
        **/
       admin: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
-       * Stores amount of stakes for an `Account`.
+       * Pending unstake records for an `Account`.
        * 
        * * **Key** - Staker account.
        * * **Value** - Amount of stakes.
@@ -44,7 +45,7 @@
        **/
       staked: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[u128, u32]>>, [AccountId32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32]>;
       /**
-       * Stores amount of stakes for an `Account`.
+       * Stores number of stake records for an `Account`.
        * 
        * * **Key** - Staker account.
        * * **Value** - Amount of stakes.
@@ -54,11 +55,30 @@
        * Stores the total staked amount.
        **/
       totalStaked: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
+      upgradedToReserves: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Generic query
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
+    authorship: {
+      /**
+       * Author of current block.
+       **/
+      author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Whether uncles were already set in this block.
+       **/
+      didSetUncles: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Uncles
+       **/
+      uncles: AugmentedQuery<ApiType, () => Observable<Vec<PalletAuthorshipUncleEntryItem>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     balances: {
       /**
        * The Balances pallet example of storing the balance of an account.
@@ -115,6 +135,28 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
+    collatorSelection: {
+      /**
+       * The (community, limited) collation candidates.
+       **/
+      candidates: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * The invulnerable, fixed collators.
+       **/
+      invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Last block authored by collator.
+       **/
+      lastAuthoredBlock: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * The (community) collation license holders.
+       **/
+      licenseDepositOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u128>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     common: {
       /**
        * Storage of the amount of collection admins.
@@ -267,6 +309,9 @@
        * * **Value** - owner for contract.
        **/
       owner: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<H160>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
+      /**
+       * Deprecated: this storage is deprecated
+       **/
       selfSponsoring: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
       sponsorBasket: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H160 | string | Uint8Array) => Observable<Option<u32>>, [H160, H160]> & QueryableStorageEntry<ApiType, [H160, H160]>;
       /**
@@ -366,6 +411,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
@@ -425,7 +502,7 @@
        * usual [`TokenProperties`] due to an unlimited number
        * and separately stored and written-to key-value pairs.
        * 
-       * Currently used to store RMRK data.
+       * Currently unused.
        **/
       tokenAuxProperties: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: UpDataStructsPropertyScope | 'None' | 'Rmrk' | number | Uint8Array, arg4: Bytes | string | Uint8Array) => Observable<Option<Bytes>>, [u32, u32, UpDataStructsPropertyScope, Bytes]> & QueryableStorageEntry<ApiType, [u32, u32, UpDataStructsPropertyScope, Bytes]>;
       /**
@@ -602,6 +679,17 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
+    preimage: {
+      preimageFor: AugmentedQuery<ApiType, (arg: ITuple<[H256, u32]> | [H256 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<Bytes>>, [ITuple<[H256, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[H256, u32]>]>;
+      /**
+       * The request status of a given hash.
+       **/
+      statusFor: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletPreimageRequestStatus>>, [H256]> & QueryableStorageEntry<ApiType, [H256]>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     randomnessCollectiveFlip: {
       /**
        * Series of block headers from the last 81 blocks that acts as random seed material. This
@@ -628,7 +716,7 @@
        **/
       balance: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => Observable<u128>, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr]> & QueryableStorageEntry<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
       /**
-       * Operator set by a wallet owner that could perform certain transactions on all tokens in the wallet.
+       * Spender set by a wallet owner that could perform certain transactions on all tokens in the wallet.
        **/
       collectionAllowance: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, arg3: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => Observable<bool>, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr]>;
       /**
@@ -656,29 +744,41 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
-    rmrkCore: {
+    session: {
       /**
-       * Latest yet-unused collection ID.
+       * Current index of the session.
        **/
-      collectionIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      currentIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
       /**
-       * Mapping from RMRK collection ID to Unique's.
+       * Indices of disabled validators.
+       * 
+       * The vec is always kept sorted so that we can find whether a given validator is
+       * disabled using binary search. It gets cleared when `on_session_ending` returns
+       * a new set of identities.
        **/
-      uniqueCollectionId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u32>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+      disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<u32>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
-       * Generic query
+       * The owner of a key. The key is the `KeyTypeId` + the encoded key.
+       **/
+      keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[SpCoreCryptoKeyTypeId, Bytes]> | [SpCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<AccountId32>>, [ITuple<[SpCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[SpCoreCryptoKeyTypeId, Bytes]>]>;
+      /**
+       * The next session keys for a validator.
+       **/
+      nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<OpalRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * True if the underlying economic identities or weighting behind the validators
+       * has changed in the queued validator set.
        **/
-      [key: string]: QueryableStorageEntry<ApiType>;
-    };
-    rmrkEquip: {
+      queuedChanged: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
       /**
-       * Checkmark that a Base has a Theme NFT named "default".
+       * The queued keys for the next session. When the next session begins, these keys
+       * will be used to determine the validator's session keys.
        **/
-      baseHasDefaultTheme: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+      queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, OpalRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
-       * Map of a Base ID and a Part ID to an NFT in the Base collection serving as the Part.
+       * The current set of validators.
        **/
-      inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
+      validators: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Generic query
        **/
@@ -852,7 +952,7 @@
       /**
        * The amount which has been reported as inactive to Currency.
        **/
-      inactive: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
+      deactivated: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Number of proposals that have been made.
        **/
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/rpc-core/types/jsonrpc';
 
-import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsPartPartType, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo } from './default';
+import type { PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo } from './default';
 import type { AugmentedRpc } from '@polkadot/rpc-core/types';
 import type { Metadata, StorageKey } from '@polkadot/types';
 import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, f64, u128, u32, u64 } from '@polkadot/types-codec';
@@ -26,7 +26,7 @@
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
 import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
-import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
+import type { AccountId, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
 import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
 import type { ApplyExtrinsicResult, ChainProperties, ChainType, Health, NetworkState, NodeRole, PeerInfo, SyncState } from '@polkadot/types/interfaces/system';
 import type { IExtrinsic, Observable } from '@polkadot/types/types';
@@ -441,60 +441,6 @@
        * Estimate PoV size of encoded signed extrinsics
        **/
       estimateExtrinsicPoV: AugmentedRpc<(encodedXt: Vec<Bytes> | (Bytes | string | Uint8Array)[], at?: Hash | string | Uint8Array) => Observable<UpPovEstimateRpcPovInfo>>;
-    };
-    rmrk: {
-      /**
-       * Get tokens owned by an account in a collection
-       **/
-      accountTokens: AugmentedRpc<(accountId: AccountId32 | string | Uint8Array, collectionId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<u32>>>;
-      /**
-       * Get base info
-       **/
-      base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsBaseBaseInfo>>>;
-      /**
-       * Get all Base's parts
-       **/
-      baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsPartPartType>>>;
-      /**
-       * Get collection by id
-       **/
-      collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsCollectionCollectionInfo>>>;
-      /**
-       * Get collection properties
-       **/
-      collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, filterKeys?: Vec<Text> | (Text | string)[], at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsPropertyPropertyInfo>>>;
-      /**
-       * Get the latest created collection id
-       **/
-      lastCollectionIdx: AugmentedRpc<(at?: Hash | string | Uint8Array) => Observable<u32>>;
-      /**
-       * Get NFT by collection id and NFT id
-       **/
-      nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsNftNftInfo>>>;
-      /**
-       * Get NFT children
-       **/
-      nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsNftNftChild>>>;
-      /**
-       * Get NFT properties
-       **/
-      nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, filterKeys?: Vec<Text> | (Text | string)[], at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsPropertyPropertyInfo>>>;
-      /**
-       * Get NFT resource priorities
-       **/
-      nftResourcePriority: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<u32>>>;
-      /**
-       * Get NFT resources
-       **/
-      nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTraitsResourceResourceInfo>>>;
-      /**
-       * Get Base's theme names
-       **/
-      themeNames: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;
-      /**
-       * Get Theme's keys values
-       **/
-      themes: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, themeName: Text | string, keys: Option<Vec<Text>> | null | Uint8Array | Vec<Text> | (Text | string)[], at?: Hash | string | Uint8Array) => Observable<Option<RmrkTraitsTheme>>>;
     };
     rpc: {
       /**
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, Permill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, 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>;
@@ -109,11 +110,31 @@
       stopSponsoringContract: AugmentedSubmittable<(contractId: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;
       /**
        * Unstakes all stakes.
-       * Moves the sum of all stakes to the `reserved` state.
        * After the end of `PendingInterval` this sum becomes completely
        * free for further use.
        **/
-      unstake: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      unstakeAll: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * Unstakes the amount of balance for the staker.
+       * After the end of `PendingInterval` this sum becomes completely
+       * free for further use.
+       * 
+       * # Arguments
+       * 
+       * * `staker`: staker account.
+       * * `amount`: amount of unstaked funds.
+       **/
+      unstakePartial: AugmentedSubmittable<(amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u128]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
+    authorship: {
+      /**
+       * Provide a set of uncles.
+       **/
+      setUncles: AugmentedSubmittable<(newUncles: Vec<SpRuntimeHeader> | (SpRuntimeHeader | { parentHash?: any; number?: any; stateRoot?: any; extrinsicsRoot?: any; digest?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<SpRuntimeHeader>]>;
       /**
        * Generic tx
        **/
@@ -214,6 +235,54 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    collatorSelection: {
+      /**
+       * Add a collator to the list of invulnerable (fixed) collators.
+       **/
+      addInvulnerable: AugmentedSubmittable<(updated: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
+      /**
+       * Force deregister `origin` as a collator candidate as a governing authority, and revoke its license.
+       * Note that the collator can only leave on session change.
+       * The `LicenseBond` will be unreserved and returned immediately.
+       * 
+       * This call is, of course, not applicable to `Invulnerable` collators.
+       **/
+      forceReleaseLicense: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
+      /**
+       * Purchase a license on block collation for this account.
+       * It does not make it a collator candidate, use `onboard` afterward. The account must
+       * (a) already have registered session keys and (b) be able to reserve the `LicenseBond`.
+       * 
+       * This call is not available to `Invulnerable` collators.
+       **/
+      getLicense: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * 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.
+       **/
+      offboard: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * Register this account as a candidate for collators for next sessions.
+       * The account must already hold a license, and cannot offboard immediately during a session.
+       * 
+       * This call is not available to `Invulnerable` collators.
+       **/
+      onboard: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * Forfeit `origin`'s own license. The `LicenseBond` will be unreserved immediately.
+       * 
+       * This call is not available to `Invulnerable` collators.
+       **/
+      releaseLicense: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * Remove a collator from the list of invulnerable (fixed) collators.
+       **/
+      removeInvulnerable: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     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>]>;
@@ -308,6 +377,10 @@
        **/
       insertEvents: AugmentedSubmittable<(events: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
       /**
+       * Remove remark compatibility data leftovers
+       **/
+      removeRmrkData: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
        * Insert items into contract storage, this method can be called
        * multiple times
        **/
@@ -325,6 +398,298 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    identity: {
+      /**
+       * 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>
+       **/
+      addRegistrar: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
+      /**
+       * 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`.
+       **/
+      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]>;
+      /**
+       * 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>
+       **/
+      cancelRequest: AugmentedSubmittable<(regIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+      /**
+       * 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>
+       **/
+      clearIdentity: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * Set identities to be associated with the provided accounts as force origin.
+       * 
+       * This is not meant to operate in tandem with the identity pallet as is,
+       * and be instead used to keep identities made and verified externally,
+       * forbidden from interacting with an ordinary user, since it ignores any safety mechanism.
+       **/
+      forceInsertIdentities: AugmentedSubmittable<(identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>> | ([AccountId32 | string | Uint8Array, PalletIdentityRegistration | { judgements?: any; deposit?: any; info?: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>]>;
+      /**
+       * Remove identities associated with the provided accounts as force origin.
+       * 
+       * This is not meant to operate in tandem with the identity pallet as is,
+       * and be instead used to keep identities made and verified externally,
+       * forbidden from interacting with an ordinary user, since it ignores any safety mechanism.
+       **/
+      forceRemoveIdentities: AugmentedSubmittable<(identities: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
+      /**
+       * Set sub-identities to be associated with the provided accounts as force origin.
+       * 
+       * This is not meant to operate in tandem with the identity pallet as is,
+       * and be instead used to keep identities made and verified externally,
+       * forbidden from interacting with an ordinary user, since it ignores any safety mechanism.
+       **/
+      forceSetSubs: AugmentedSubmittable<(subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>> | ([AccountId32 | string | Uint8Array, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]> | [u128 | AnyNumber | Uint8Array, 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, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>]>;
+      /**
+       * 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>
+       **/
+      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
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     inflation: {
       /**
        * This method sets the inflation start date. Can be only called once.
@@ -349,6 +714,13 @@
       disable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       /**
+       * Execute a runtime call stored as a preimage.
+       * 
+       * `weight_bound` is the maximum weight that the caller is willing
+       * to allow the extrinsic to be executed with.
+       **/
+      executePreimage: AugmentedSubmittable<(hash: H256 | string | Uint8Array, weightBound: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, SpWeightsWeightV2Weight]>;
+      /**
        * Generic tx
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
@@ -506,337 +878,78 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
-    rmrkCore: {
-      /**
-       * Accept an NFT sent from another account to self or an owned NFT.
-       * 
-       * The NFT in question must be pending, and, thus, be [sent](`Pallet::send`) first.
-       * 
-       * # Permissions:
-       * - Token-owner-to-be
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID of the NFT to be accepted.
-       * - `rmrk_nft_id`: ID of the NFT to be accepted.
-       * - `new_owner`: Either the sender's account ID or a sender-owned NFT,
-       * whichever the accepted NFT was sent to.
-       **/
-      acceptNft: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple | { AccountId: any } | { CollectionAndNftTuple: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsNftAccountIdOrCollectionNftTuple]>;
-      /**
-       * Accept the addition of a newly created pending resource to an existing NFT.
-       * 
-       * This transaction is needed when a resource is created and assigned to an NFT
-       * by a non-owner, i.e. the collection issuer, with one of the
-       * [`add_...` transactions](Pallet::add_basic_resource).
-       * 
-       * # Permissions:
-       * - Token owner
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID of the NFT.
-       * - `rmrk_nft_id`: ID of the NFT with a pending resource to be accepted.
-       * - `resource_id`: ID of the newly created pending resource.
-       * accept the addition of a new resource to an existing NFT
-       **/
-      acceptResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
-      /**
-       * Accept the removal of a removal-pending resource from an NFT.
-       * 
-       * This transaction is needed when a non-owner, i.e. the collection issuer,
-       * requests a [removal](`Pallet::remove_resource`) of a resource from an NFT.
-       * 
-       * # Permissions:
-       * - Token owner
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID of the NFT.
-       * - `rmrk_nft_id`: ID of the NFT with a resource to be removed.
-       * - `resource_id`: ID of the removal-pending resource.
-       **/
-      acceptResourceRemoval: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
-      /**
-       * Create and set/propose a basic resource for an NFT.
-       * 
-       * A basic resource is the simplest, lacking a Base and anything that comes with it.
-       * See RMRK docs for more information and examples.
-       * 
-       * # Permissions:
-       * - Collection issuer - if not the token owner, adding the resource will warrant
-       * the owner's [acceptance](Pallet::accept_resource).
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID of the NFT.
-       * - `nft_id`: ID of the NFT to assign a resource to.
-       * - `resource`: Data of the resource to be created.
-       **/
-      addBasicResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: RmrkTraitsResourceBasicResource | { src?: any; metadata?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsResourceBasicResource]>;
-      /**
-       * Create and set/propose a composable resource for an NFT.
-       * 
-       * A composable resource links to a Base and has a subset of its Parts it is composed of.
-       * See RMRK docs for more information and examples.
-       * 
-       * # Permissions:
-       * - Collection issuer - if not the token owner, adding the resource will warrant
-       * the owner's [acceptance](Pallet::accept_resource).
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID of the NFT.
-       * - `nft_id`: ID of the NFT to assign a resource to.
-       * - `resource`: Data of the resource to be created.
-       **/
-      addComposableResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: RmrkTraitsResourceComposableResource | { parts?: any; base?: any; src?: any; metadata?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsResourceComposableResource]>;
+    preimage: {
       /**
-       * Create and set/propose a slot resource for an NFT.
-       * 
-       * A slot resource links to a Base and a slot ID in it which it can fit into.
-       * See RMRK docs for more information and examples.
-       * 
-       * # Permissions:
-       * - Collection issuer - if not the token owner, adding the resource will warrant
-       * the owner's [acceptance](Pallet::accept_resource).
+       * Register a preimage on-chain.
        * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID of the NFT.
-       * - `nft_id`: ID of the NFT to assign a resource to.
-       * - `resource`: Data of the resource to be created.
+       * If the preimage was previously requested, no fees or deposits are taken for providing
+       * the preimage. Otherwise, a deposit is taken proportional to the size of the preimage.
        **/
-      addSlotResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resource: RmrkTraitsResourceSlotResource | { base?: any; src?: any; metadata?: any; slot?: any; license?: any; thumb?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsResourceSlotResource]>;
-      /**
-       * Burn an NFT, destroying it and its nested tokens up to the specified limit.
-       * If the burning budget is exceeded, the transaction is reverted.
-       * 
-       * This is the way to burn a nested token as well.
-       * 
-       * For more information, see [`burn_recursively`](pallet_nonfungible::pallet::Pallet::burn_recursively).
-       * 
-       * # Permissions:
-       * * Token owner
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `collection_id`: RMRK ID of the collection in which the NFT to burn belongs to.
-       * - `nft_id`: ID of the NFT to be destroyed.
-       * - `max_burns`: Maximum number of tokens to burn, assuming nesting. The transaction
-       * is reverted if there are more tokens to burn in the nesting tree than this number.
-       * This is primarily a mechanism of transaction weight control.
-       **/
-      burnNft: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, maxBurns: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
+      notePreimage: AugmentedSubmittable<(bytes: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
       /**
-       * Change the issuer of a collection. Analogous to Unique's collection's [`owner`](up_data_structs::Collection).
+       * Request a preimage be uploaded to the chain without paying any fees or deposits.
        * 
-       * # Permissions:
-       * * Collection issuer
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `collection_id`: RMRK collection ID to change the issuer of.
-       * - `new_issuer`: Collection's new issuer.
+       * If the preimage requests has already been provided on-chain, we unreserve any deposit
+       * a user may have paid, and take the control of the preimage out of their hands.
        **/
-      changeCollectionIssuer: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newIssuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, MultiAddress]>;
+      requestPreimage: AugmentedSubmittable<(hash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
       /**
-       * Create a new collection of NFTs.
+       * Clear an unrequested preimage from the runtime storage.
        * 
-       * # Permissions:
-       * * Anyone - will be assigned as the issuer of the collection.
+       * If `len` is provided, then it will be a much cheaper operation.
        * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `metadata`: Metadata describing the collection, e.g. IPFS hash. Cannot be changed.
-       * - `max`: Optional maximum number of tokens.
-       * - `symbol`: UTF-8 string with token prefix, by which to represent the token in wallets and UIs.
-       * Analogous to Unique's [`token_prefix`](up_data_structs::Collection). Cannot be changed.
+       * - `hash`: The hash of the preimage to be removed from the store.
+       * - `len`: The length of the preimage of `hash`.
        **/
-      createCollection: AugmentedSubmittable<(metadata: Bytes | string | Uint8Array, max: Option<u32> | null | Uint8Array | u32 | AnyNumber, symbol: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, Option<u32>, Bytes]>;
+      unnotePreimage: AugmentedSubmittable<(hash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
       /**
-       * Destroy a collection.
-       * 
-       * Only empty collections can be destroyed. If it has any tokens, they must be burned first.
+       * Clear a previously made request for a preimage.
        * 
-       * # Permissions:
-       * * Collection issuer
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `collection_id`: RMRK ID of the collection to destroy.
+       * NOTE: THIS MUST NOT BE CALLED ON `hash` MORE TIMES THAN `request_preimage`.
        **/
-      destroyCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
-      /**
-       * "Lock" the collection and prevent new token creation. Cannot be undone.
-       * 
-       * # Permissions:
-       * * Collection issuer
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `collection_id`: RMRK ID of the collection to lock.
-       **/
-      lockCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
-      /**
-       * Mint an NFT in a specified collection.
-       * 
-       * # Permissions:
-       * * Collection issuer
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `owner`: Owner account of the NFT. If set to None, defaults to the sender (collection issuer).
-       * - `collection_id`: RMRK collection ID for the NFT to be minted within. Cannot be changed.
-       * - `recipient`: Receiver account of the royalty. Has no effect if the `royalty_amount` is not set. Cannot be changed.
-       * - `royalty_amount`: Optional permillage reward from each trade for the `recipient`. Cannot be changed.
-       * - `metadata`: Arbitrary data about an NFT, e.g. IPFS hash. Cannot be changed.
-       * - `transferable`: Can this NFT be transferred? Cannot be changed.
-       * - `resources`: Resource data to be added to the NFT immediately after minting.
-       **/
-      mintNft: AugmentedSubmittable<(owner: Option<AccountId32> | null | Uint8Array | AccountId32 | string, collectionId: u32 | AnyNumber | Uint8Array, recipient: Option<AccountId32> | null | Uint8Array | AccountId32 | string, royaltyAmount: Option<Permill> | null | Uint8Array | Permill | AnyNumber, metadata: Bytes | string | Uint8Array, transferable: bool | boolean | Uint8Array, resources: Option<Vec<RmrkTraitsResourceResourceTypes>> | null | Uint8Array | Vec<RmrkTraitsResourceResourceTypes> | (RmrkTraitsResourceResourceTypes | { Basic: any } | { Composable: any } | { Slot: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<AccountId32>, u32, Option<AccountId32>, Option<Permill>, Bytes, bool, Option<Vec<RmrkTraitsResourceResourceTypes>>]>;
-      /**
-       * Reject an NFT sent from another account to self or owned NFT.
-       * The NFT in question will not be sent back and burnt instead.
-       * 
-       * The NFT in question must be pending, and, thus, be [sent](`Pallet::send`) first.
-       * 
-       * # Permissions:
-       * - Token-owner-to-be-not
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK ID of the NFT to be rejected.
-       * - `rmrk_nft_id`: ID of the NFT to be rejected.
-       **/
-      rejectNft: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
-      /**
-       * Remove and erase a resource from an NFT.
-       * 
-       * If the sender does not own the NFT, then it will be pending confirmation,
-       * and will have to be [accepted](Pallet::accept_resource_removal) by the token owner.
-       * 
-       * # Permissions
-       * - Collection issuer
-       * 
-       * # Arguments
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK ID of a collection to which the NFT making use of the resource belongs to.
-       * - `nft_id`: ID of the NFT with a resource to be removed.
-       * - `resource_id`: ID of the resource to be removed.
-       **/
-      removeResource: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u32]>;
-      /**
-       * Transfer an NFT from an account/NFT A to another account/NFT B.
-       * The token must be transferable. Nesting cannot occur deeper than the [`NESTING_BUDGET`].
-       * 
-       * If the target owner is an NFT owned by another account, then the NFT will enter
-       * the pending state and will have to be accepted by the other account.
-       * 
-       * # Permissions:
-       * - Token owner
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK ID of the collection of the NFT to be transferred.
-       * - `rmrk_nft_id`: ID of the NFT to be transferred.
-       * - `new_owner`: New owner of the nft which can be either an account or a NFT.
-       **/
-      send: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple | { AccountId: any } | { CollectionAndNftTuple: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsNftAccountIdOrCollectionNftTuple]>;
+      unrequestPreimage: AugmentedSubmittable<(hash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
       /**
-       * Set a different order of resource priorities for an NFT. Priorities can be used,
-       * for example, for order of rendering.
-       * 
-       * Note that the priorities are not updated automatically, and are an empty vector
-       * by default. There is no pre-set definition for the order to be particular,
-       * it can be interpreted arbitrarily use-case by use-case.
-       * 
-       * # Permissions:
-       * - Token owner
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID of the NFT.
-       * - `rmrk_nft_id`: ID of the NFT to rearrange resource priorities for.
-       * - `priorities`: Ordered vector of resource IDs.
-       **/
-      setPriority: AugmentedSubmittable<(rmrkCollectionId: u32 | AnyNumber | Uint8Array, rmrkNftId: u32 | AnyNumber | Uint8Array, priorities: Vec<u32> | (u32 | AnyNumber | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, u32, Vec<u32>]>;
-      /**
-       * Add or edit a custom user property, a key-value pair, describing the metadata
-       * of a token or a collection, on either one of these.
-       * 
-       * Note that in this proxy implementation many details regarding RMRK are stored
-       * as scoped properties prefixed with "rmrk:", normally inaccessible
-       * to external transactions and RPCs.
-       * 
-       * # Permissions:
-       * - Collection issuer - in case of collection property
-       * - Token owner - in case of NFT property
-       * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `rmrk_collection_id`: RMRK collection ID.
-       * - `maybe_nft_id`: Optional ID of the NFT. If left empty, then the property is set for the collection.
-       * - `key`: Key of the custom property to be referenced by.
-       * - `value`: Value of the custom property to be stored.
-       **/
-      setProperty: AugmentedSubmittable<(rmrkCollectionId: Compact<u32> | AnyNumber | Uint8Array, maybeNftId: Option<u32> | null | Uint8Array | u32 | AnyNumber, key: Bytes | string | Uint8Array, value: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Option<u32>, Bytes, Bytes]>;
-      /**
        * Generic tx
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
-    rmrkEquip: {
+    session: {
       /**
-       * Create a new Base.
+       * Removes any session key(s) of the function caller.
        * 
-       * Modeled after the [Base interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/base.md)
+       * This doesn't take effect until the next session.
        * 
-       * # Permissions
-       * - Anyone - will be assigned as the issuer of the Base.
-       * 
-       * # Arguments:
-       * - `origin`: Caller, will be assigned as the issuer of the Base
-       * - `base_type`: Arbitrary media type, e.g. "svg".
-       * - `symbol`: Arbitrary client-chosen symbol.
-       * - `parts`: Array of Fixed and Slot Parts composing the Base,
-       * confined in length by [`RmrkPartsLimit`](up_data_structs::RmrkPartsLimit).
-       **/
-      createBase: AugmentedSubmittable<(baseType: Bytes | string | Uint8Array, symbol: Bytes | string | Uint8Array, parts: Vec<RmrkTraitsPartPartType> | (RmrkTraitsPartPartType | { FixedPart: any } | { SlotPart: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Bytes, Bytes, Vec<RmrkTraitsPartPartType>]>;
-      /**
-       * Update the array of Collections allowed to be equipped to a Base's specified Slot Part.
-       * 
-       * Modeled after [equippable interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/equippable.md).
-       * 
-       * # Permissions:
-       * - Base issuer
+       * The dispatch origin of this function must be Signed and the account must be either be
+       * convertible to a validator ID using the chain's typical addressing system (this usually
+       * means being a controller account) or directly convertible into a validator ID (which
+       * usually means being a stash account).
        * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `base_id`: Base containing the Slot Part to be updated.
-       * - `slot_id`: Slot Part whose Equippable List is being updated .
-       * - `equippables`: List of equippables that will override the current Equippables list.
+       * # <weight>
+       * - Complexity: `O(1)` in number of key types. Actual cost depends on the number of length
+       * of `T::Keys::key_ids()` which is fixed.
+       * - DbReads: `T::ValidatorIdOf`, `NextKeys`, `origin account`
+       * - DbWrites: `NextKeys`, `origin account`
+       * - DbWrites per key id: `KeyOwner`
+       * # </weight>
        **/
-      equippable: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, slotId: u32 | AnyNumber | Uint8Array, equippables: RmrkTraitsPartEquippableList | { All: any } | { Empty: any } | { Custom: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, RmrkTraitsPartEquippableList]>;
+      purgeKeys: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       /**
-       * Add a Theme to a Base.
-       * A Theme named "default" is required prior to adding other Themes.
-       * 
-       * Modeled after [Themeadd interaction](https://github.com/rmrk-team/rmrk-spec/blob/master/standards/rmrk2.0.0/interactions/themeadd.md).
+       * Sets the session key(s) of the function caller to `keys`.
+       * Allows an account to set its session key prior to becoming a validator.
+       * This doesn't take effect until the next session.
        * 
-       * # Permissions:
-       * - Base issuer
+       * The dispatch origin of this function must be signed.
        * 
-       * # Arguments:
-       * - `origin`: sender of the transaction
-       * - `base_id`: Base ID containing the Theme to be updated.
-       * - `theme`: Theme to add to the Base.  A Theme has a name and properties, which are an
-       * array of [key, value, inherit].
-       * - `key`: Arbitrary BoundedString, defined by client.
-       * - `value`: Arbitrary BoundedString, defined by client.
-       * - `inherit`: Optional bool.
+       * # <weight>
+       * - Complexity: `O(1)`. Actual cost depends on the number of length of
+       * `T::Keys::key_ids()` which is fixed.
+       * - DbReads: `origin account`, `T::ValidatorIdOf`, `NextKeys`
+       * - DbWrites: `origin account`, `NextKeys`
+       * - DbReads per key id: `KeyOwner`
+       * - DbWrites per key id: `KeyOwner`
+       * # </weight>
        **/
-      themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
+      setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
       /**
        * Generic tx
        **/
@@ -1328,6 +1441,10 @@
        * * `token_prefix`: Byte string containing the token prefix to mark a collection
        * to which a token belongs (limit [`MAX_TOKEN_PREFIX_LENGTH`]).
        * * `mode`: Type of items stored in the collection and type dependent data.
+       * 
+       * returns collection ID
+       * 
+       * Deprecated: `create_collection_ex` is more up-to-date and advanced, prefer it instead.
        **/
       createCollection: AugmentedSubmittable<(collectionName: Vec<u16> | (u16 | AnyNumber | Uint8Array)[], collectionDescription: Vec<u16> | (u16 | AnyNumber | Uint8Array)[], tokenPrefix: Bytes | string | Uint8Array, mode: UpDataStructsCollectionMode | { NFT: any } | { Fungible: any } | { ReFungible: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<u16>, Vec<u16>, Bytes, UpDataStructsCollectionMode]>;
       /**
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, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, 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, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, 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, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, 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, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, 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, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, 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, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, 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, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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';
@@ -774,6 +774,7 @@
     OpalRuntimeRuntime: OpalRuntimeRuntime;
     OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
     OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+    OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
     OpaqueCall: OpaqueCall;
     OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
     OpaqueMetadata: OpaqueMetadata;
@@ -818,6 +819,9 @@
     PalletAppPromotionCall: PalletAppPromotionCall;
     PalletAppPromotionError: PalletAppPromotionError;
     PalletAppPromotionEvent: PalletAppPromotionEvent;
+    PalletAuthorshipCall: PalletAuthorshipCall;
+    PalletAuthorshipError: PalletAuthorshipError;
+    PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
     PalletBalancesAccountData: PalletBalancesAccountData;
     PalletBalancesBalanceLock: PalletBalancesBalanceLock;
     PalletBalancesCall: PalletBalancesCall;
@@ -827,6 +831,9 @@
     PalletBalancesReserveData: PalletBalancesReserveData;
     PalletCallMetadataLatest: PalletCallMetadataLatest;
     PalletCallMetadataV14: PalletCallMetadataV14;
+    PalletCollatorSelectionCall: PalletCollatorSelectionCall;
+    PalletCollatorSelectionError: PalletCollatorSelectionError;
+    PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
     PalletCommonError: PalletCommonError;
     PalletCommonEvent: PalletCommonEvent;
     PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
@@ -862,6 +869,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;
@@ -870,13 +886,14 @@
     PalletMetadataV14: PalletMetadataV14;
     PalletNonfungibleError: PalletNonfungibleError;
     PalletNonfungibleItemData: PalletNonfungibleItemData;
+    PalletPreimageCall: PalletPreimageCall;
+    PalletPreimageError: PalletPreimageError;
+    PalletPreimageEvent: PalletPreimageEvent;
+    PalletPreimageRequestStatus: PalletPreimageRequestStatus;
     PalletRefungibleError: PalletRefungibleError;
-    PalletRmrkCoreCall: PalletRmrkCoreCall;
-    PalletRmrkCoreError: PalletRmrkCoreError;
-    PalletRmrkCoreEvent: PalletRmrkCoreEvent;
-    PalletRmrkEquipCall: PalletRmrkEquipCall;
-    PalletRmrkEquipError: PalletRmrkEquipError;
-    PalletRmrkEquipEvent: PalletRmrkEquipEvent;
+    PalletSessionCall: PalletSessionCall;
+    PalletSessionError: PalletSessionError;
+    PalletSessionEvent: PalletSessionEvent;
     PalletsOrigin: PalletsOrigin;
     PalletStorageMetadataLatest: PalletStorageMetadataLatest;
     PalletStorageMetadataV14: PalletStorageMetadataV14;
@@ -1036,24 +1053,6 @@
     Retriable: Retriable;
     RewardDestination: RewardDestination;
     RewardPoint: RewardPoint;
-    RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;
-    RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;
-    RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;
-    RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;
-    RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;
-    RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;
-    RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;
-    RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;
-    RmrkTraitsPartPartType: RmrkTraitsPartPartType;
-    RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;
-    RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;
-    RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;
-    RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;
-    RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;
-    RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;
-    RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;
-    RmrkTraitsTheme: RmrkTraitsTheme;
-    RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;
     RoundSnapshot: RoundSnapshot;
     RoundState: RoundState;
     RpcMethods: RpcMethods;
@@ -1176,14 +1175,19 @@
     SolutionSupports: SolutionSupports;
     SpanIndex: SpanIndex;
     SpanRecord: SpanRecord;
+    SpArithmeticArithmeticError: SpArithmeticArithmeticError;
+    SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
+    SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
     SpCoreEcdsaSignature: SpCoreEcdsaSignature;
     SpCoreEd25519Signature: SpCoreEd25519Signature;
+    SpCoreSr25519Public: SpCoreSr25519Public;
     SpCoreSr25519Signature: SpCoreSr25519Signature;
     SpecVersion: SpecVersion;
-    SpRuntimeArithmeticError: SpRuntimeArithmeticError;
+    SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
     SpRuntimeDigest: SpRuntimeDigest;
     SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
     SpRuntimeDispatchError: SpRuntimeDispatchError;
+    SpRuntimeHeader: SpRuntimeHeader;
     SpRuntimeModuleError: SpRuntimeModuleError;
     SpRuntimeMultiSignature: SpRuntimeMultiSignature;
     SpRuntimeTokenError: SpRuntimeTokenError;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1,9 +1,10 @@
 // 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';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
 import type { Event } from '@polkadot/types/interfaces/system';
 
 /** @name CumulusPalletDmpQueueCall */
@@ -441,6 +442,7 @@
   readonly isOther: boolean;
   readonly asOther: Text;
   readonly isInvalidCode: boolean;
+  readonly asInvalidCode: u8;
   readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
 }
 
@@ -698,6 +700,11 @@
 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
 export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
 
+/** @name OpalRuntimeRuntimeCommonSessionKeys */
+export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
+  readonly aura: SpConsensusAuraSr25519AppSr25519Public;
+}
+
 /** @name OrmlTokensAccountData */
 export interface OrmlTokensAccountData extends Struct {
   readonly free: u128;
@@ -1007,7 +1014,7 @@
   readonly asStake: {
     readonly amount: u128;
   } & Struct;
-  readonly isUnstake: boolean;
+  readonly isUnstakeAll: boolean;
   readonly isSponsorCollection: boolean;
   readonly asSponsorCollection: {
     readonly collectionId: u32;
@@ -1028,7 +1035,11 @@
   readonly asPayoutStakers: {
     readonly stakersNumber: Option<u8>;
   } & Struct;
-  readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
+  readonly isUnstakePartial: boolean;
+  readonly asUnstakePartial: {
+    readonly amount: u128;
+  } & Struct;
+  readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';
 }
 
 /** @name PalletAppPromotionError */
@@ -1039,7 +1050,8 @@
   readonly isPendingForBlockOverflow: boolean;
   readonly isSponsorNotSet: boolean;
   readonly isIncorrectLockedBalanceOperation: boolean;
-  readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
+  readonly isInsufficientStakedBalance: boolean;
+  readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';
 }
 
 /** @name PalletAppPromotionEvent */
@@ -1055,6 +1067,36 @@
   readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
 }
 
+/** @name PalletAuthorshipCall */
+export interface PalletAuthorshipCall extends Enum {
+  readonly isSetUncles: boolean;
+  readonly asSetUncles: {
+    readonly newUncles: Vec<SpRuntimeHeader>;
+  } & Struct;
+  readonly type: 'SetUncles';
+}
+
+/** @name PalletAuthorshipError */
+export interface PalletAuthorshipError extends Enum {
+  readonly isInvalidUncleParent: boolean;
+  readonly isUnclesAlreadySet: boolean;
+  readonly isTooManyUncles: boolean;
+  readonly isGenesisUncle: boolean;
+  readonly isTooHighUncle: boolean;
+  readonly isUncleAlreadyIncluded: boolean;
+  readonly isOldUncle: boolean;
+  readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
+}
+
+/** @name PalletAuthorshipUncleEntryItem */
+export interface PalletAuthorshipUncleEntryItem extends Enum {
+  readonly isInclusionHeight: boolean;
+  readonly asInclusionHeight: u32;
+  readonly isUncle: boolean;
+  readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
+  readonly type: 'InclusionHeight' | 'Uncle';
+}
+
 /** @name PalletBalancesAccountData */
 export interface PalletBalancesAccountData extends Struct {
   readonly free: u128;
@@ -1193,6 +1235,76 @@
   readonly amount: u128;
 }
 
+/** @name PalletCollatorSelectionCall */
+export interface PalletCollatorSelectionCall extends Enum {
+  readonly isAddInvulnerable: boolean;
+  readonly asAddInvulnerable: {
+    readonly new_: AccountId32;
+  } & Struct;
+  readonly isRemoveInvulnerable: boolean;
+  readonly asRemoveInvulnerable: {
+    readonly who: AccountId32;
+  } & Struct;
+  readonly isGetLicense: boolean;
+  readonly isOnboard: boolean;
+  readonly isOffboard: boolean;
+  readonly isReleaseLicense: boolean;
+  readonly isForceReleaseLicense: boolean;
+  readonly asForceReleaseLicense: {
+    readonly who: AccountId32;
+  } & Struct;
+  readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
+}
+
+/** @name PalletCollatorSelectionError */
+export interface PalletCollatorSelectionError extends Enum {
+  readonly isTooManyCandidates: boolean;
+  readonly isUnknown: boolean;
+  readonly isPermission: boolean;
+  readonly isAlreadyHoldingLicense: boolean;
+  readonly isNoLicense: boolean;
+  readonly isAlreadyCandidate: boolean;
+  readonly isNotCandidate: boolean;
+  readonly isTooManyInvulnerables: boolean;
+  readonly isTooFewInvulnerables: boolean;
+  readonly isAlreadyInvulnerable: boolean;
+  readonly isNotInvulnerable: boolean;
+  readonly isNoAssociatedValidatorId: boolean;
+  readonly isValidatorNotRegistered: boolean;
+  readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
+}
+
+/** @name PalletCollatorSelectionEvent */
+export interface PalletCollatorSelectionEvent extends Enum {
+  readonly isInvulnerableAdded: boolean;
+  readonly asInvulnerableAdded: {
+    readonly invulnerable: AccountId32;
+  } & Struct;
+  readonly isInvulnerableRemoved: boolean;
+  readonly asInvulnerableRemoved: {
+    readonly invulnerable: AccountId32;
+  } & Struct;
+  readonly isLicenseObtained: boolean;
+  readonly asLicenseObtained: {
+    readonly accountId: AccountId32;
+    readonly deposit: u128;
+  } & Struct;
+  readonly isLicenseReleased: boolean;
+  readonly asLicenseReleased: {
+    readonly accountId: AccountId32;
+    readonly depositReturned: u128;
+  } & Struct;
+  readonly isCandidateAdded: boolean;
+  readonly asCandidateAdded: {
+    readonly accountId: AccountId32;
+  } & Struct;
+  readonly isCandidateRemoved: boolean;
+  readonly asCandidateRemoved: {
+    readonly accountId: AccountId32;
+  } & Struct;
+  readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
+}
+
 /** @name PalletCommonError */
 export interface PalletCommonError extends Enum {
   readonly isCollectionNotFound: boolean;
@@ -1532,7 +1644,8 @@
   readonly asInsertEvents: {
     readonly events: Vec<Bytes>;
   } & Struct;
-  readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
+  readonly isRemoveRmrkData: boolean;
+  readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';
 }
 
 /** @name PalletEvmMigrationError */
@@ -1638,6 +1751,243 @@
   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 isForceInsertIdentities: boolean;
+  readonly asForceInsertIdentities: {
+    readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;
+  } & Struct;
+  readonly isForceRemoveIdentities: boolean;
+  readonly asForceRemoveIdentities: {
+    readonly identities: Vec<AccountId32>;
+  } & Struct;
+  readonly isForceSetSubs: boolean;
+  readonly asForceSetSubs: {
+    readonly subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>;
+  } & Struct;
+  readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';
+}
+
+/** @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 isIdentitiesInserted: boolean;
+  readonly asIdentitiesInserted: {
+    readonly amount: u32;
+  } & Struct;
+  readonly isIdentitiesRemoved: boolean;
+  readonly asIdentitiesRemoved: {
+    readonly amount: u32;
+  } & 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 isSubIdentitiesInserted: boolean;
+  readonly asSubIdentitiesInserted: {
+    readonly amount: u32;
+  } & Struct;
+  readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';
+}
+
+/** @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;
@@ -1651,7 +2001,12 @@
 export interface PalletMaintenanceCall extends Enum {
   readonly isEnable: boolean;
   readonly isDisable: boolean;
-  readonly type: 'Enable' | 'Disable';
+  readonly isExecutePreimage: boolean;
+  readonly asExecutePreimage: {
+    readonly hash_: H256;
+    readonly weightBound: SpWeightsWeightV2Weight;
+  } & Struct;
+  readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
 }
 
 /** @name PalletMaintenanceError */
@@ -1677,283 +2032,109 @@
   readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
 }
 
-/** @name PalletRefungibleError */
-export interface PalletRefungibleError extends Enum {
-  readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
-  readonly isWrongRefungiblePieces: boolean;
-  readonly isRepartitionWhileNotOwningAllPieces: boolean;
-  readonly isRefungibleDisallowsNesting: boolean;
-  readonly isSettingPropertiesNotAllowed: boolean;
-  readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
-}
-
-/** @name PalletRmrkCoreCall */
-export interface PalletRmrkCoreCall extends Enum {
-  readonly isCreateCollection: boolean;
-  readonly asCreateCollection: {
-    readonly metadata: Bytes;
-    readonly max: Option<u32>;
-    readonly symbol: Bytes;
+/** @name PalletPreimageCall */
+export interface PalletPreimageCall extends Enum {
+  readonly isNotePreimage: boolean;
+  readonly asNotePreimage: {
+    readonly bytes: Bytes;
   } & Struct;
-  readonly isDestroyCollection: boolean;
-  readonly asDestroyCollection: {
-    readonly collectionId: u32;
+  readonly isUnnotePreimage: boolean;
+  readonly asUnnotePreimage: {
+    readonly hash_: H256;
   } & Struct;
-  readonly isChangeCollectionIssuer: boolean;
-  readonly asChangeCollectionIssuer: {
-    readonly collectionId: u32;
-    readonly newIssuer: MultiAddress;
+  readonly isRequestPreimage: boolean;
+  readonly asRequestPreimage: {
+    readonly hash_: H256;
   } & Struct;
-  readonly isLockCollection: boolean;
-  readonly asLockCollection: {
-    readonly collectionId: u32;
+  readonly isUnrequestPreimage: boolean;
+  readonly asUnrequestPreimage: {
+    readonly hash_: H256;
   } & Struct;
-  readonly isMintNft: boolean;
-  readonly asMintNft: {
-    readonly owner: Option<AccountId32>;
-    readonly collectionId: u32;
-    readonly recipient: Option<AccountId32>;
-    readonly royaltyAmount: Option<Permill>;
-    readonly metadata: Bytes;
-    readonly transferable: bool;
-    readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;
-  } & Struct;
-  readonly isBurnNft: boolean;
-  readonly asBurnNft: {
-    readonly collectionId: u32;
-    readonly nftId: u32;
-    readonly maxBurns: u32;
-  } & Struct;
-  readonly isSend: boolean;
-  readonly asSend: {
-    readonly rmrkCollectionId: u32;
-    readonly rmrkNftId: u32;
-    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
-  } & Struct;
-  readonly isAcceptNft: boolean;
-  readonly asAcceptNft: {
-    readonly rmrkCollectionId: u32;
-    readonly rmrkNftId: u32;
-    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
-  } & Struct;
-  readonly isRejectNft: boolean;
-  readonly asRejectNft: {
-    readonly rmrkCollectionId: u32;
-    readonly rmrkNftId: u32;
-  } & Struct;
-  readonly isAcceptResource: boolean;
-  readonly asAcceptResource: {
-    readonly rmrkCollectionId: u32;
-    readonly rmrkNftId: u32;
-    readonly resourceId: u32;
-  } & Struct;
-  readonly isAcceptResourceRemoval: boolean;
-  readonly asAcceptResourceRemoval: {
-    readonly rmrkCollectionId: u32;
-    readonly rmrkNftId: u32;
-    readonly resourceId: u32;
-  } & Struct;
-  readonly isSetProperty: boolean;
-  readonly asSetProperty: {
-    readonly rmrkCollectionId: Compact<u32>;
-    readonly maybeNftId: Option<u32>;
-    readonly key: Bytes;
-    readonly value: Bytes;
-  } & Struct;
-  readonly isSetPriority: boolean;
-  readonly asSetPriority: {
-    readonly rmrkCollectionId: u32;
-    readonly rmrkNftId: u32;
-    readonly priorities: Vec<u32>;
-  } & Struct;
-  readonly isAddBasicResource: boolean;
-  readonly asAddBasicResource: {
-    readonly rmrkCollectionId: u32;
-    readonly nftId: u32;
-    readonly resource: RmrkTraitsResourceBasicResource;
-  } & Struct;
-  readonly isAddComposableResource: boolean;
-  readonly asAddComposableResource: {
-    readonly rmrkCollectionId: u32;
-    readonly nftId: u32;
-    readonly resource: RmrkTraitsResourceComposableResource;
-  } & Struct;
-  readonly isAddSlotResource: boolean;
-  readonly asAddSlotResource: {
-    readonly rmrkCollectionId: u32;
-    readonly nftId: u32;
-    readonly resource: RmrkTraitsResourceSlotResource;
-  } & Struct;
-  readonly isRemoveResource: boolean;
-  readonly asRemoveResource: {
-    readonly rmrkCollectionId: u32;
-    readonly nftId: u32;
-    readonly resourceId: u32;
-  } & Struct;
-  readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
+  readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
 }
 
-/** @name PalletRmrkCoreError */
-export interface PalletRmrkCoreError extends Enum {
-  readonly isCorruptedCollectionType: boolean;
-  readonly isRmrkPropertyKeyIsTooLong: boolean;
-  readonly isRmrkPropertyValueIsTooLong: boolean;
-  readonly isRmrkPropertyIsNotFound: boolean;
-  readonly isUnableToDecodeRmrkData: boolean;
-  readonly isCollectionNotEmpty: boolean;
-  readonly isNoAvailableCollectionId: boolean;
-  readonly isNoAvailableNftId: boolean;
-  readonly isCollectionUnknown: boolean;
-  readonly isNoPermission: boolean;
-  readonly isNonTransferable: boolean;
-  readonly isCollectionFullOrLocked: boolean;
-  readonly isResourceDoesntExist: boolean;
-  readonly isCannotSendToDescendentOrSelf: boolean;
-  readonly isCannotAcceptNonOwnedNft: boolean;
-  readonly isCannotRejectNonOwnedNft: boolean;
-  readonly isCannotRejectNonPendingNft: boolean;
-  readonly isResourceNotPending: boolean;
-  readonly isNoAvailableResourceId: boolean;
-  readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
+/** @name PalletPreimageError */
+export interface PalletPreimageError extends Enum {
+  readonly isTooBig: boolean;
+  readonly isAlreadyNoted: boolean;
+  readonly isNotAuthorized: boolean;
+  readonly isNotNoted: boolean;
+  readonly isRequested: boolean;
+  readonly isNotRequested: boolean;
+  readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
 }
 
-/** @name PalletRmrkCoreEvent */
-export interface PalletRmrkCoreEvent extends Enum {
-  readonly isCollectionCreated: boolean;
-  readonly asCollectionCreated: {
-    readonly issuer: AccountId32;
-    readonly collectionId: u32;
+/** @name PalletPreimageEvent */
+export interface PalletPreimageEvent extends Enum {
+  readonly isNoted: boolean;
+  readonly asNoted: {
+    readonly hash_: H256;
   } & Struct;
-  readonly isCollectionDestroyed: boolean;
-  readonly asCollectionDestroyed: {
-    readonly issuer: AccountId32;
-    readonly collectionId: u32;
+  readonly isRequested: boolean;
+  readonly asRequested: {
+    readonly hash_: H256;
   } & Struct;
-  readonly isIssuerChanged: boolean;
-  readonly asIssuerChanged: {
-    readonly oldIssuer: AccountId32;
-    readonly newIssuer: AccountId32;
-    readonly collectionId: u32;
+  readonly isCleared: boolean;
+  readonly asCleared: {
+    readonly hash_: H256;
   } & Struct;
-  readonly isCollectionLocked: boolean;
-  readonly asCollectionLocked: {
-    readonly issuer: AccountId32;
-    readonly collectionId: u32;
+  readonly type: 'Noted' | 'Requested' | 'Cleared';
+}
+
+/** @name PalletPreimageRequestStatus */
+export interface PalletPreimageRequestStatus extends Enum {
+  readonly isUnrequested: boolean;
+  readonly asUnrequested: {
+    readonly deposit: ITuple<[AccountId32, u128]>;
+    readonly len: u32;
   } & Struct;
-  readonly isNftMinted: boolean;
-  readonly asNftMinted: {
-    readonly owner: AccountId32;
-    readonly collectionId: u32;
-    readonly nftId: u32;
+  readonly isRequested: boolean;
+  readonly asRequested: {
+    readonly deposit: Option<ITuple<[AccountId32, u128]>>;
+    readonly count: u32;
+    readonly len: Option<u32>;
   } & Struct;
-  readonly isNftBurned: boolean;
-  readonly asNftBurned: {
-    readonly owner: AccountId32;
-    readonly nftId: u32;
-  } & Struct;
-  readonly isNftSent: boolean;
-  readonly asNftSent: {
-    readonly sender: AccountId32;
-    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;
-    readonly collectionId: u32;
-    readonly nftId: u32;
-    readonly approvalRequired: bool;
-  } & Struct;
-  readonly isNftAccepted: boolean;
-  readonly asNftAccepted: {
-    readonly sender: AccountId32;
-    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;
-    readonly collectionId: u32;
-    readonly nftId: u32;
-  } & Struct;
-  readonly isNftRejected: boolean;
-  readonly asNftRejected: {
-    readonly sender: AccountId32;
-    readonly collectionId: u32;
-    readonly nftId: u32;
-  } & Struct;
-  readonly isPropertySet: boolean;
-  readonly asPropertySet: {
-    readonly collectionId: u32;
-    readonly maybeNftId: Option<u32>;
-    readonly key: Bytes;
-    readonly value: Bytes;
-  } & Struct;
-  readonly isResourceAdded: boolean;
-  readonly asResourceAdded: {
-    readonly nftId: u32;
-    readonly resourceId: u32;
-  } & Struct;
-  readonly isResourceRemoval: boolean;
-  readonly asResourceRemoval: {
-    readonly nftId: u32;
-    readonly resourceId: u32;
-  } & Struct;
-  readonly isResourceAccepted: boolean;
-  readonly asResourceAccepted: {
-    readonly nftId: u32;
-    readonly resourceId: u32;
-  } & Struct;
-  readonly isResourceRemovalAccepted: boolean;
-  readonly asResourceRemovalAccepted: {
-    readonly nftId: u32;
-    readonly resourceId: u32;
-  } & Struct;
-  readonly isPrioritySet: boolean;
-  readonly asPrioritySet: {
-    readonly collectionId: u32;
-    readonly nftId: u32;
-  } & Struct;
-  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
+  readonly type: 'Unrequested' | 'Requested';
+}
+
+/** @name PalletRefungibleError */
+export interface PalletRefungibleError extends Enum {
+  readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
+  readonly isWrongRefungiblePieces: boolean;
+  readonly isRepartitionWhileNotOwningAllPieces: boolean;
+  readonly isRefungibleDisallowsNesting: boolean;
+  readonly isSettingPropertiesNotAllowed: boolean;
+  readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
 }
 
-/** @name PalletRmrkEquipCall */
-export interface PalletRmrkEquipCall extends Enum {
-  readonly isCreateBase: boolean;
-  readonly asCreateBase: {
-    readonly baseType: Bytes;
-    readonly symbol: Bytes;
-    readonly parts: Vec<RmrkTraitsPartPartType>;
+/** @name PalletSessionCall */
+export interface PalletSessionCall extends Enum {
+  readonly isSetKeys: boolean;
+  readonly asSetKeys: {
+    readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
+    readonly proof: Bytes;
   } & Struct;
-  readonly isThemeAdd: boolean;
-  readonly asThemeAdd: {
-    readonly baseId: u32;
-    readonly theme: RmrkTraitsTheme;
-  } & Struct;
-  readonly isEquippable: boolean;
-  readonly asEquippable: {
-    readonly baseId: u32;
-    readonly slotId: u32;
-    readonly equippables: RmrkTraitsPartEquippableList;
-  } & Struct;
-  readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
+  readonly isPurgeKeys: boolean;
+  readonly type: 'SetKeys' | 'PurgeKeys';
 }
 
-/** @name PalletRmrkEquipError */
-export interface PalletRmrkEquipError extends Enum {
-  readonly isPermissionError: boolean;
-  readonly isNoAvailableBaseId: boolean;
-  readonly isNoAvailablePartId: boolean;
-  readonly isBaseDoesntExist: boolean;
-  readonly isNeedsDefaultThemeFirst: boolean;
-  readonly isPartDoesntExist: boolean;
-  readonly isNoEquippableOnFixedPart: boolean;
-  readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
+/** @name PalletSessionError */
+export interface PalletSessionError extends Enum {
+  readonly isInvalidProof: boolean;
+  readonly isNoAssociatedValidatorId: boolean;
+  readonly isDuplicatedKey: boolean;
+  readonly isNoKeys: boolean;
+  readonly isNoAccount: boolean;
+  readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
 }
 
-/** @name PalletRmrkEquipEvent */
-export interface PalletRmrkEquipEvent extends Enum {
-  readonly isBaseCreated: boolean;
-  readonly asBaseCreated: {
-    readonly issuer: AccountId32;
-    readonly baseId: u32;
+/** @name PalletSessionEvent */
+export interface PalletSessionEvent extends Enum {
+  readonly isNewSession: boolean;
+  readonly asNewSession: {
+    readonly sessionIndex: u32;
   } & Struct;
-  readonly isEquippablesUpdated: boolean;
-  readonly asEquippablesUpdated: {
-    readonly baseId: u32;
-    readonly slotId: u32;
-  } & Struct;
-  readonly type: 'BaseCreated' | 'EquippablesUpdated';
+  readonly type: 'NewSession';
 }
 
 /** @name PalletStructureCall */
@@ -1965,7 +2146,8 @@
   readonly isDepthLimit: boolean;
   readonly isBreadthLimit: boolean;
   readonly isTokenNotFound: boolean;
-  readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
+  readonly isCantNestTokenUnderCollection: boolean;
+  readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';
 }
 
 /** @name PalletStructureEvent */
@@ -2165,7 +2347,12 @@
     readonly amount: u128;
     readonly beneficiary: AccountId32;
   } & Struct;
-  readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';
+  readonly isUpdatedInactive: boolean;
+  readonly asUpdatedInactive: {
+    readonly reactivated: u128;
+    readonly deactivated: u128;
+  } & Struct;
+  readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';
 }
 
 /** @name PalletTreasuryProposal */
@@ -2485,7 +2672,7 @@
 }
 
 /** @name PhantomTypeUpDataStructs */
-export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}
+export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
 
 /** @name PolkadotCorePrimitivesInboundDownwardMessage */
 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -2550,150 +2737,19 @@
   readonly type: 'Present';
 }
 
-/** @name RmrkTraitsBaseBaseInfo */
-export interface RmrkTraitsBaseBaseInfo extends Struct {
-  readonly issuer: AccountId32;
-  readonly baseType: Bytes;
-  readonly symbol: Bytes;
+/** @name SpArithmeticArithmeticError */
+export interface SpArithmeticArithmeticError extends Enum {
+  readonly isUnderflow: boolean;
+  readonly isOverflow: boolean;
+  readonly isDivisionByZero: boolean;
+  readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
 }
 
-/** @name RmrkTraitsCollectionCollectionInfo */
-export interface RmrkTraitsCollectionCollectionInfo extends Struct {
-  readonly issuer: AccountId32;
-  readonly metadata: Bytes;
-  readonly max: Option<u32>;
-  readonly symbol: Bytes;
-  readonly nftsCount: u32;
-}
+/** @name SpConsensusAuraSr25519AppSr25519Public */
+export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
 
-/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */
-export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
-  readonly isAccountId: boolean;
-  readonly asAccountId: AccountId32;
-  readonly isCollectionAndNftTuple: boolean;
-  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
-  readonly type: 'AccountId' | 'CollectionAndNftTuple';
-}
-
-/** @name RmrkTraitsNftNftChild */
-export interface RmrkTraitsNftNftChild extends Struct {
-  readonly collectionId: u32;
-  readonly nftId: u32;
-}
-
-/** @name RmrkTraitsNftNftInfo */
-export interface RmrkTraitsNftNftInfo extends Struct {
-  readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
-  readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
-  readonly metadata: Bytes;
-  readonly equipped: bool;
-  readonly pending: bool;
-}
-
-/** @name RmrkTraitsNftRoyaltyInfo */
-export interface RmrkTraitsNftRoyaltyInfo extends Struct {
-  readonly recipient: AccountId32;
-  readonly amount: Permill;
-}
-
-/** @name RmrkTraitsPartEquippableList */
-export interface RmrkTraitsPartEquippableList extends Enum {
-  readonly isAll: boolean;
-  readonly isEmpty: boolean;
-  readonly isCustom: boolean;
-  readonly asCustom: Vec<u32>;
-  readonly type: 'All' | 'Empty' | 'Custom';
-}
-
-/** @name RmrkTraitsPartFixedPart */
-export interface RmrkTraitsPartFixedPart extends Struct {
-  readonly id: u32;
-  readonly z: u32;
-  readonly src: Bytes;
-}
-
-/** @name RmrkTraitsPartPartType */
-export interface RmrkTraitsPartPartType extends Enum {
-  readonly isFixedPart: boolean;
-  readonly asFixedPart: RmrkTraitsPartFixedPart;
-  readonly isSlotPart: boolean;
-  readonly asSlotPart: RmrkTraitsPartSlotPart;
-  readonly type: 'FixedPart' | 'SlotPart';
-}
-
-/** @name RmrkTraitsPartSlotPart */
-export interface RmrkTraitsPartSlotPart extends Struct {
-  readonly id: u32;
-  readonly equippable: RmrkTraitsPartEquippableList;
-  readonly src: Bytes;
-  readonly z: u32;
-}
-
-/** @name RmrkTraitsPropertyPropertyInfo */
-export interface RmrkTraitsPropertyPropertyInfo extends Struct {
-  readonly key: Bytes;
-  readonly value: Bytes;
-}
-
-/** @name RmrkTraitsResourceBasicResource */
-export interface RmrkTraitsResourceBasicResource extends Struct {
-  readonly src: Option<Bytes>;
-  readonly metadata: Option<Bytes>;
-  readonly license: Option<Bytes>;
-  readonly thumb: Option<Bytes>;
-}
-
-/** @name RmrkTraitsResourceComposableResource */
-export interface RmrkTraitsResourceComposableResource extends Struct {
-  readonly parts: Vec<u32>;
-  readonly base: u32;
-  readonly src: Option<Bytes>;
-  readonly metadata: Option<Bytes>;
-  readonly license: Option<Bytes>;
-  readonly thumb: Option<Bytes>;
-}
-
-/** @name RmrkTraitsResourceResourceInfo */
-export interface RmrkTraitsResourceResourceInfo extends Struct {
-  readonly id: u32;
-  readonly resource: RmrkTraitsResourceResourceTypes;
-  readonly pending: bool;
-  readonly pendingRemoval: bool;
-}
-
-/** @name RmrkTraitsResourceResourceTypes */
-export interface RmrkTraitsResourceResourceTypes extends Enum {
-  readonly isBasic: boolean;
-  readonly asBasic: RmrkTraitsResourceBasicResource;
-  readonly isComposable: boolean;
-  readonly asComposable: RmrkTraitsResourceComposableResource;
-  readonly isSlot: boolean;
-  readonly asSlot: RmrkTraitsResourceSlotResource;
-  readonly type: 'Basic' | 'Composable' | 'Slot';
-}
-
-/** @name RmrkTraitsResourceSlotResource */
-export interface RmrkTraitsResourceSlotResource extends Struct {
-  readonly base: u32;
-  readonly src: Option<Bytes>;
-  readonly metadata: Option<Bytes>;
-  readonly slot: u32;
-  readonly license: Option<Bytes>;
-  readonly thumb: Option<Bytes>;
-}
-
-/** @name RmrkTraitsTheme */
-export interface RmrkTraitsTheme extends Struct {
-  readonly name: Bytes;
-  readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
-  readonly inherit: bool;
-}
-
-/** @name RmrkTraitsThemeThemeProperty */
-export interface RmrkTraitsThemeThemeProperty extends Struct {
-  readonly key: Bytes;
-  readonly value: Bytes;
-}
+/** @name SpCoreCryptoKeyTypeId */
+export interface SpCoreCryptoKeyTypeId extends U8aFixed {}
 
 /** @name SpCoreEcdsaSignature */
 export interface SpCoreEcdsaSignature extends U8aFixed {}
@@ -2701,16 +2757,14 @@
 /** @name SpCoreEd25519Signature */
 export interface SpCoreEd25519Signature extends U8aFixed {}
 
+/** @name SpCoreSr25519Public */
+export interface SpCoreSr25519Public extends U8aFixed {}
+
 /** @name SpCoreSr25519Signature */
 export interface SpCoreSr25519Signature extends U8aFixed {}
 
-/** @name SpRuntimeArithmeticError */
-export interface SpRuntimeArithmeticError extends Enum {
-  readonly isUnderflow: boolean;
-  readonly isOverflow: boolean;
-  readonly isDivisionByZero: boolean;
-  readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
-}
+/** @name SpRuntimeBlakeTwo256 */
+export interface SpRuntimeBlakeTwo256 extends Null {}
 
 /** @name SpRuntimeDigest */
 export interface SpRuntimeDigest extends Struct {
@@ -2744,7 +2798,7 @@
   readonly isToken: boolean;
   readonly asToken: SpRuntimeTokenError;
   readonly isArithmetic: boolean;
-  readonly asArithmetic: SpRuntimeArithmeticError;
+  readonly asArithmetic: SpArithmeticArithmeticError;
   readonly isTransactional: boolean;
   readonly asTransactional: SpRuntimeTransactionalError;
   readonly isExhausted: boolean;
@@ -2753,6 +2807,15 @@
   readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
 }
 
+/** @name SpRuntimeHeader */
+export interface SpRuntimeHeader extends Struct {
+  readonly parentHash: H256;
+  readonly number: Compact<u32>;
+  readonly stateRoot: H256;
+  readonly extrinsicsRoot: H256;
+  readonly digest: SpRuntimeDigest;
+}
+
 /** @name SpRuntimeModuleError */
 export interface SpRuntimeModuleError extends Struct {
   readonly index: u8;
@@ -3160,7 +3223,10 @@
   readonly isTechnical: boolean;
   readonly isLegislative: boolean;
   readonly isJudicial: boolean;
-  readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
+  readonly isDefense: boolean;
+  readonly isAdministration: boolean;
+  readonly isTreasury: boolean;
+  readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
 }
 
 /** @name XcmV0JunctionBodyPart */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -129,7 +129,7 @@
       NoProviders: 'Null',
       TooManyConsumers: 'Null',
       Token: 'SpRuntimeTokenError',
-      Arithmetic: 'SpRuntimeArithmeticError',
+      Arithmetic: 'SpArithmeticArithmeticError',
       Transactional: 'SpRuntimeTransactionalError',
       Exhausted: 'Null',
       Corruption: 'Null',
@@ -150,9 +150,9 @@
     _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
   },
   /**
-   * Lookup27: sp_runtime::ArithmeticError
+   * Lookup27: sp_arithmetic::ArithmeticError
    **/
-  SpRuntimeArithmeticError: {
+  SpArithmeticArithmeticError: {
     _enum: ['Underflow', 'Overflow', 'DivisionByZero']
   },
   /**
@@ -184,7 +184,44 @@
     }
   },
   /**
-   * Lookup30: pallet_balances::pallet::Event<T, I>
+   * Lookup30: pallet_collator_selection::pallet::Event<T>
+   **/
+  PalletCollatorSelectionEvent: {
+    _enum: {
+      InvulnerableAdded: {
+        invulnerable: 'AccountId32',
+      },
+      InvulnerableRemoved: {
+        invulnerable: 'AccountId32',
+      },
+      LicenseObtained: {
+        accountId: 'AccountId32',
+        deposit: 'u128',
+      },
+      LicenseReleased: {
+        accountId: 'AccountId32',
+        depositReturned: 'u128',
+      },
+      CandidateAdded: {
+        accountId: 'AccountId32',
+      },
+      CandidateRemoved: {
+        accountId: 'AccountId32'
+      }
+    }
+  },
+  /**
+   * Lookup31: pallet_session::pallet::Event
+   **/
+  PalletSessionEvent: {
+    _enum: {
+      NewSession: {
+        sessionIndex: 'u32'
+      }
+    }
+  },
+  /**
+   * Lookup32: pallet_balances::pallet::Event<T, I>
    **/
   PalletBalancesEvent: {
     _enum: {
@@ -235,13 +272,13 @@
     }
   },
   /**
-   * Lookup31: frame_support::traits::tokens::misc::BalanceStatus
+   * Lookup33: frame_support::traits::tokens::misc::BalanceStatus
    **/
   FrameSupportTokensMiscBalanceStatus: {
     _enum: ['Free', 'Reserved']
   },
   /**
-   * Lookup32: pallet_transaction_payment::pallet::Event<T>
+   * Lookup34: pallet_transaction_payment::pallet::Event<T>
    **/
   PalletTransactionPaymentEvent: {
     _enum: {
@@ -253,7 +290,7 @@
     }
   },
   /**
-   * Lookup33: pallet_treasury::pallet::Event<T, I>
+   * Lookup35: pallet_treasury::pallet::Event<T, I>
    **/
   PalletTreasuryEvent: {
     _enum: {
@@ -284,12 +321,16 @@
       SpendApproved: {
         proposalIndex: 'u32',
         amount: 'u128',
-        beneficiary: 'AccountId32'
+        beneficiary: 'AccountId32',
+      },
+      UpdatedInactive: {
+        reactivated: 'u128',
+        deactivated: 'u128'
       }
     }
   },
   /**
-   * Lookup34: pallet_sudo::pallet::Event<T>
+   * Lookup36: pallet_sudo::pallet::Event<T>
    **/
   PalletSudoEvent: {
     _enum: {
@@ -305,7 +346,7 @@
     }
   },
   /**
-   * Lookup38: orml_vesting::module::Event<T>
+   * Lookup40: orml_vesting::module::Event<T>
    **/
   OrmlVestingModuleEvent: {
     _enum: {
@@ -324,7 +365,7 @@
     }
   },
   /**
-   * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>
+   * Lookup41: orml_vesting::VestingSchedule<BlockNumber, Balance>
    **/
   OrmlVestingVestingSchedule: {
     start: 'u32',
@@ -333,7 +374,7 @@
     perPeriod: 'Compact<u128>'
   },
   /**
-   * Lookup41: orml_xtokens::module::Event<T>
+   * Lookup43: orml_xtokens::module::Event<T>
    **/
   OrmlXtokensModuleEvent: {
     _enum: {
@@ -346,18 +387,18 @@
     }
   },
   /**
-   * Lookup42: xcm::v1::multiasset::MultiAssets
+   * Lookup44: xcm::v1::multiasset::MultiAssets
    **/
   XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',
   /**
-   * Lookup44: xcm::v1::multiasset::MultiAsset
+   * Lookup46: xcm::v1::multiasset::MultiAsset
    **/
   XcmV1MultiAsset: {
     id: 'XcmV1MultiassetAssetId',
     fun: 'XcmV1MultiassetFungibility'
   },
   /**
-   * Lookup45: xcm::v1::multiasset::AssetId
+   * Lookup47: xcm::v1::multiasset::AssetId
    **/
   XcmV1MultiassetAssetId: {
     _enum: {
@@ -366,14 +407,14 @@
     }
   },
   /**
-   * Lookup46: xcm::v1::multilocation::MultiLocation
+   * Lookup48: xcm::v1::multilocation::MultiLocation
    **/
   XcmV1MultiLocation: {
     parents: 'u8',
     interior: 'XcmV1MultilocationJunctions'
   },
   /**
-   * Lookup47: xcm::v1::multilocation::Junctions
+   * Lookup49: xcm::v1::multilocation::Junctions
    **/
   XcmV1MultilocationJunctions: {
     _enum: {
@@ -389,7 +430,7 @@
     }
   },
   /**
-   * Lookup48: xcm::v1::junction::Junction
+   * Lookup50: xcm::v1::junction::Junction
    **/
   XcmV1Junction: {
     _enum: {
@@ -417,7 +458,7 @@
     }
   },
   /**
-   * Lookup50: xcm::v0::junction::NetworkId
+   * Lookup52: xcm::v0::junction::NetworkId
    **/
   XcmV0JunctionNetworkId: {
     _enum: {
@@ -428,7 +469,7 @@
     }
   },
   /**
-   * Lookup53: xcm::v0::junction::BodyId
+   * Lookup55: xcm::v0::junction::BodyId
    **/
   XcmV0JunctionBodyId: {
     _enum: {
@@ -438,11 +479,14 @@
       Executive: 'Null',
       Technical: 'Null',
       Legislative: 'Null',
-      Judicial: 'Null'
+      Judicial: 'Null',
+      Defense: 'Null',
+      Administration: 'Null',
+      Treasury: 'Null'
     }
   },
   /**
-   * Lookup54: xcm::v0::junction::BodyPart
+   * Lookup56: xcm::v0::junction::BodyPart
    **/
   XcmV0JunctionBodyPart: {
     _enum: {
@@ -465,7 +509,7 @@
     }
   },
   /**
-   * Lookup55: xcm::v1::multiasset::Fungibility
+   * Lookup57: xcm::v1::multiasset::Fungibility
    **/
   XcmV1MultiassetFungibility: {
     _enum: {
@@ -474,7 +518,7 @@
     }
   },
   /**
-   * Lookup56: xcm::v1::multiasset::AssetInstance
+   * Lookup58: xcm::v1::multiasset::AssetInstance
    **/
   XcmV1MultiassetAssetInstance: {
     _enum: {
@@ -488,7 +532,7 @@
     }
   },
   /**
-   * Lookup59: orml_tokens::module::Event<T>
+   * Lookup61: orml_tokens::module::Event<T>
    **/
   OrmlTokensModuleEvent: {
     _enum: {
@@ -565,7 +609,7 @@
     }
   },
   /**
-   * Lookup60: pallet_foreign_assets::AssetIds
+   * Lookup62: pallet_foreign_assets::AssetIds
    **/
   PalletForeignAssetsAssetIds: {
     _enum: {
@@ -574,14 +618,96 @@
     }
   },
   /**
-   * Lookup61: pallet_foreign_assets::NativeCurrency
+   * Lookup63: pallet_foreign_assets::NativeCurrency
    **/
   PalletForeignAssetsNativeCurrency: {
     _enum: ['Here', 'Parent']
   },
   /**
-   * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>
+   * Lookup64: pallet_identity::pallet::Event<T>
    **/
+  PalletIdentityEvent: {
+    _enum: {
+      IdentitySet: {
+        who: 'AccountId32',
+      },
+      IdentityCleared: {
+        who: 'AccountId32',
+        deposit: 'u128',
+      },
+      IdentityKilled: {
+        who: 'AccountId32',
+        deposit: 'u128',
+      },
+      IdentitiesInserted: {
+        amount: 'u32',
+      },
+      IdentitiesRemoved: {
+        amount: 'u32',
+      },
+      JudgementRequested: {
+        who: 'AccountId32',
+        registrarIndex: 'u32',
+      },
+      JudgementUnrequested: {
+        who: 'AccountId32',
+        registrarIndex: 'u32',
+      },
+      JudgementGiven: {
+        target: 'AccountId32',
+        registrarIndex: 'u32',
+      },
+      RegistrarAdded: {
+        registrarIndex: 'u32',
+      },
+      SubIdentityAdded: {
+        sub: 'AccountId32',
+        main: 'AccountId32',
+        deposit: 'u128',
+      },
+      SubIdentityRemoved: {
+        sub: 'AccountId32',
+        main: 'AccountId32',
+        deposit: 'u128',
+      },
+      SubIdentityRevoked: {
+        sub: 'AccountId32',
+        main: 'AccountId32',
+        deposit: 'u128',
+      },
+      SubIdentitiesInserted: {
+        amount: 'u32'
+      }
+    }
+  },
+  /**
+   * Lookup65: pallet_preimage::pallet::Event<T>
+   **/
+  PalletPreimageEvent: {
+    _enum: {
+      Noted: {
+        _alias: {
+          hash_: 'hash',
+        },
+        hash_: 'H256',
+      },
+      Requested: {
+        _alias: {
+          hash_: 'hash',
+        },
+        hash_: 'H256',
+      },
+      Cleared: {
+        _alias: {
+          hash_: 'hash',
+        },
+        hash_: 'H256'
+      }
+    }
+  },
+  /**
+   * Lookup66: cumulus_pallet_xcmp_queue::pallet::Event<T>
+   **/
   CumulusPalletXcmpQueueEvent: {
     _enum: {
       Success: {
@@ -618,7 +744,7 @@
     }
   },
   /**
-   * Lookup64: xcm::v2::traits::Error
+   * Lookup68: xcm::v2::traits::Error
    **/
   XcmV2TraitsError: {
     _enum: {
@@ -651,7 +777,7 @@
     }
   },
   /**
-   * Lookup66: pallet_xcm::pallet::Event<T>
+   * Lookup70: pallet_xcm::pallet::Event<T>
    **/
   PalletXcmEvent: {
     _enum: {
@@ -675,7 +801,7 @@
     }
   },
   /**
-   * Lookup67: xcm::v2::traits::Outcome
+   * Lookup71: xcm::v2::traits::Outcome
    **/
   XcmV2TraitsOutcome: {
     _enum: {
@@ -685,11 +811,11 @@
     }
   },
   /**
-   * Lookup68: xcm::v2::Xcm<RuntimeCall>
+   * Lookup72: xcm::v2::Xcm<RuntimeCall>
    **/
   XcmV2Xcm: 'Vec<XcmV2Instruction>',
   /**
-   * Lookup70: xcm::v2::Instruction<RuntimeCall>
+   * Lookup74: xcm::v2::Instruction<RuntimeCall>
    **/
   XcmV2Instruction: {
     _enum: {
@@ -787,7 +913,7 @@
     }
   },
   /**
-   * Lookup71: xcm::v2::Response
+   * Lookup75: xcm::v2::Response
    **/
   XcmV2Response: {
     _enum: {
@@ -798,19 +924,19 @@
     }
   },
   /**
-   * Lookup74: xcm::v0::OriginKind
+   * Lookup78: xcm::v0::OriginKind
    **/
   XcmV0OriginKind: {
     _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
   },
   /**
-   * Lookup75: xcm::double_encoded::DoubleEncoded<T>
+   * Lookup79: xcm::double_encoded::DoubleEncoded<T>
    **/
   XcmDoubleEncoded: {
     encoded: 'Bytes'
   },
   /**
-   * Lookup76: xcm::v1::multiasset::MultiAssetFilter
+   * Lookup80: xcm::v1::multiasset::MultiAssetFilter
    **/
   XcmV1MultiassetMultiAssetFilter: {
     _enum: {
@@ -819,7 +945,7 @@
     }
   },
   /**
-   * Lookup77: xcm::v1::multiasset::WildMultiAsset
+   * Lookup81: xcm::v1::multiasset::WildMultiAsset
    **/
   XcmV1MultiassetWildMultiAsset: {
     _enum: {
@@ -831,13 +957,13 @@
     }
   },
   /**
-   * Lookup78: xcm::v1::multiasset::WildFungibility
+   * Lookup82: xcm::v1::multiasset::WildFungibility
    **/
   XcmV1MultiassetWildFungibility: {
     _enum: ['Fungible', 'NonFungible']
   },
   /**
-   * Lookup79: xcm::v2::WeightLimit
+   * Lookup83: xcm::v2::WeightLimit
    **/
   XcmV2WeightLimit: {
     _enum: {
@@ -846,7 +972,7 @@
     }
   },
   /**
-   * Lookup81: xcm::VersionedMultiAssets
+   * Lookup85: xcm::VersionedMultiAssets
    **/
   XcmVersionedMultiAssets: {
     _enum: {
@@ -855,7 +981,7 @@
     }
   },
   /**
-   * Lookup83: xcm::v0::multi_asset::MultiAsset
+   * Lookup87: xcm::v0::multi_asset::MultiAsset
    **/
   XcmV0MultiAsset: {
     _enum: {
@@ -894,7 +1020,7 @@
     }
   },
   /**
-   * Lookup84: xcm::v0::multi_location::MultiLocation
+   * Lookup88: xcm::v0::multi_location::MultiLocation
    **/
   XcmV0MultiLocation: {
     _enum: {
@@ -910,7 +1036,7 @@
     }
   },
   /**
-   * Lookup85: xcm::v0::junction::Junction
+   * Lookup89: xcm::v0::junction::Junction
    **/
   XcmV0Junction: {
     _enum: {
@@ -939,7 +1065,7 @@
     }
   },
   /**
-   * Lookup86: xcm::VersionedMultiLocation
+   * Lookup90: xcm::VersionedMultiLocation
    **/
   XcmVersionedMultiLocation: {
     _enum: {
@@ -948,7 +1074,7 @@
     }
   },
   /**
-   * Lookup87: cumulus_pallet_xcm::pallet::Event<T>
+   * Lookup91: cumulus_pallet_xcm::pallet::Event<T>
    **/
   CumulusPalletXcmEvent: {
     _enum: {
@@ -958,7 +1084,7 @@
     }
   },
   /**
-   * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>
+   * Lookup92: cumulus_pallet_dmp_queue::pallet::Event<T>
    **/
   CumulusPalletDmpQueueEvent: {
     _enum: {
@@ -989,7 +1115,7 @@
     }
   },
   /**
-   * Lookup89: pallet_configuration::pallet::Event<T>
+   * Lookup93: pallet_configuration::pallet::Event<T>
    **/
   PalletConfigurationEvent: {
     _enum: {
@@ -1005,7 +1131,7 @@
     }
   },
   /**
-   * Lookup92: pallet_common::pallet::Event<T>
+   * Lookup96: pallet_common::pallet::Event<T>
    **/
   PalletCommonEvent: {
     _enum: {
@@ -1034,7 +1160,7 @@
     }
   },
   /**
-   * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+   * Lookup99: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
    **/
   PalletEvmAccountBasicCrossAccountIdRepr: {
     _enum: {
@@ -1043,116 +1169,15 @@
     }
   },
   /**
-   * Lookup99: pallet_structure::pallet::Event<T>
+   * Lookup103: pallet_structure::pallet::Event<T>
    **/
   PalletStructureEvent: {
     _enum: {
       Executed: 'Result<Null, SpRuntimeDispatchError>'
-    }
-  },
-  /**
-   * Lookup100: pallet_rmrk_core::pallet::Event<T>
-   **/
-  PalletRmrkCoreEvent: {
-    _enum: {
-      CollectionCreated: {
-        issuer: 'AccountId32',
-        collectionId: 'u32',
-      },
-      CollectionDestroyed: {
-        issuer: 'AccountId32',
-        collectionId: 'u32',
-      },
-      IssuerChanged: {
-        oldIssuer: 'AccountId32',
-        newIssuer: 'AccountId32',
-        collectionId: 'u32',
-      },
-      CollectionLocked: {
-        issuer: 'AccountId32',
-        collectionId: 'u32',
-      },
-      NftMinted: {
-        owner: 'AccountId32',
-        collectionId: 'u32',
-        nftId: 'u32',
-      },
-      NFTBurned: {
-        owner: 'AccountId32',
-        nftId: 'u32',
-      },
-      NFTSent: {
-        sender: 'AccountId32',
-        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
-        collectionId: 'u32',
-        nftId: 'u32',
-        approvalRequired: 'bool',
-      },
-      NFTAccepted: {
-        sender: 'AccountId32',
-        recipient: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
-        collectionId: 'u32',
-        nftId: 'u32',
-      },
-      NFTRejected: {
-        sender: 'AccountId32',
-        collectionId: 'u32',
-        nftId: 'u32',
-      },
-      PropertySet: {
-        collectionId: 'u32',
-        maybeNftId: 'Option<u32>',
-        key: 'Bytes',
-        value: 'Bytes',
-      },
-      ResourceAdded: {
-        nftId: 'u32',
-        resourceId: 'u32',
-      },
-      ResourceRemoval: {
-        nftId: 'u32',
-        resourceId: 'u32',
-      },
-      ResourceAccepted: {
-        nftId: 'u32',
-        resourceId: 'u32',
-      },
-      ResourceRemovalAccepted: {
-        nftId: 'u32',
-        resourceId: 'u32',
-      },
-      PrioritySet: {
-        collectionId: 'u32',
-        nftId: 'u32'
-      }
     }
   },
   /**
-   * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
-   **/
-  RmrkTraitsNftAccountIdOrCollectionNftTuple: {
-    _enum: {
-      AccountId: 'AccountId32',
-      CollectionAndNftTuple: '(u32,u32)'
-    }
-  },
-  /**
-   * Lookup104: pallet_rmrk_equip::pallet::Event<T>
-   **/
-  PalletRmrkEquipEvent: {
-    _enum: {
-      BaseCreated: {
-        issuer: 'AccountId32',
-        baseId: 'u32',
-      },
-      EquippablesUpdated: {
-        baseId: 'u32',
-        slotId: 'u32'
-      }
-    }
-  },
-  /**
-   * Lookup105: pallet_app_promotion::pallet::Event<T>
+   * Lookup104: pallet_app_promotion::pallet::Event<T>
    **/
   PalletAppPromotionEvent: {
     _enum: {
@@ -1163,7 +1188,7 @@
     }
   },
   /**
-   * Lookup106: pallet_foreign_assets::module::Event<T>
+   * Lookup105: pallet_foreign_assets::module::Event<T>
    **/
   PalletForeignAssetsModuleEvent: {
     _enum: {
@@ -1188,7 +1213,7 @@
     }
   },
   /**
-   * Lookup107: pallet_foreign_assets::module::AssetMetadata<Balance>
+   * Lookup106: pallet_foreign_assets::module::AssetMetadata<Balance>
    **/
   PalletForeignAssetsModuleAssetMetadata: {
     name: 'Bytes',
@@ -1197,7 +1222,7 @@
     minimalBalance: 'u128'
   },
   /**
-   * Lookup108: pallet_evm::pallet::Event<T>
+   * Lookup107: pallet_evm::pallet::Event<T>
    **/
   PalletEvmEvent: {
     _enum: {
@@ -1219,7 +1244,7 @@
     }
   },
   /**
-   * Lookup109: ethereum::log::Log
+   * Lookup108: ethereum::log::Log
    **/
   EthereumLog: {
     address: 'H160',
@@ -1227,7 +1252,7 @@
     data: 'Bytes'
   },
   /**
-   * Lookup111: pallet_ethereum::pallet::Event
+   * Lookup110: pallet_ethereum::pallet::Event
    **/
   PalletEthereumEvent: {
     _enum: {
@@ -1240,7 +1265,7 @@
     }
   },
   /**
-   * Lookup112: evm_core::error::ExitReason
+   * Lookup111: evm_core::error::ExitReason
    **/
   EvmCoreErrorExitReason: {
     _enum: {
@@ -1251,13 +1276,13 @@
     }
   },
   /**
-   * Lookup113: evm_core::error::ExitSucceed
+   * Lookup112: evm_core::error::ExitSucceed
    **/
   EvmCoreErrorExitSucceed: {
     _enum: ['Stopped', 'Returned', 'Suicided']
   },
   /**
-   * Lookup114: evm_core::error::ExitError
+   * Lookup113: evm_core::error::ExitError
    **/
   EvmCoreErrorExitError: {
     _enum: {
@@ -1275,7 +1300,8 @@
       PCUnderflow: 'Null',
       CreateEmpty: 'Null',
       Other: 'Text',
-      InvalidCode: 'Null'
+      __Unused14: 'Null',
+      InvalidCode: 'u8'
     }
   },
   /**
@@ -1551,28 +1577,135 @@
     _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
   },
   /**
-   * Lookup172: pallet_balances::BalanceLock<Balance>
+   * Lookup172: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>
+   **/
+  PalletAuthorshipUncleEntryItem: {
+    _enum: {
+      InclusionHeight: 'u32',
+      Uncle: '(H256,Option<AccountId32>)'
+    }
+  },
+  /**
+   * Lookup174: pallet_authorship::pallet::Call<T>
+   **/
+  PalletAuthorshipCall: {
+    _enum: {
+      set_uncles: {
+        newUncles: 'Vec<SpRuntimeHeader>'
+      }
+    }
+  },
+  /**
+   * Lookup176: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>
+   **/
+  SpRuntimeHeader: {
+    parentHash: 'H256',
+    number: 'Compact<u32>',
+    stateRoot: 'H256',
+    extrinsicsRoot: 'H256',
+    digest: 'SpRuntimeDigest'
+  },
+  /**
+   * Lookup177: sp_runtime::traits::BlakeTwo256
+   **/
+  SpRuntimeBlakeTwo256: 'Null',
+  /**
+   * Lookup178: pallet_authorship::pallet::Error<T>
+   **/
+  PalletAuthorshipError: {
+    _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']
+  },
+  /**
+   * Lookup181: pallet_collator_selection::pallet::Call<T>
    **/
+  PalletCollatorSelectionCall: {
+    _enum: {
+      add_invulnerable: {
+        _alias: {
+          new_: 'new',
+        },
+        new_: 'AccountId32',
+      },
+      remove_invulnerable: {
+        who: 'AccountId32',
+      },
+      get_license: 'Null',
+      onboard: 'Null',
+      offboard: 'Null',
+      release_license: 'Null',
+      force_release_license: {
+        who: 'AccountId32'
+      }
+    }
+  },
+  /**
+   * Lookup182: pallet_collator_selection::pallet::Error<T>
+   **/
+  PalletCollatorSelectionError: {
+    _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']
+  },
+  /**
+   * Lookup185: opal_runtime::runtime_common::SessionKeys
+   **/
+  OpalRuntimeRuntimeCommonSessionKeys: {
+    aura: 'SpConsensusAuraSr25519AppSr25519Public'
+  },
+  /**
+   * Lookup186: sp_consensus_aura::sr25519::app_sr25519::Public
+   **/
+  SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
+  /**
+   * Lookup187: sp_core::sr25519::Public
+   **/
+  SpCoreSr25519Public: '[u8;32]',
+  /**
+   * Lookup190: sp_core::crypto::KeyTypeId
+   **/
+  SpCoreCryptoKeyTypeId: '[u8;4]',
+  /**
+   * Lookup191: pallet_session::pallet::Call<T>
+   **/
+  PalletSessionCall: {
+    _enum: {
+      set_keys: {
+        _alias: {
+          keys_: 'keys',
+        },
+        keys_: 'OpalRuntimeRuntimeCommonSessionKeys',
+        proof: 'Bytes',
+      },
+      purge_keys: 'Null'
+    }
+  },
+  /**
+   * Lookup192: pallet_session::pallet::Error<T>
+   **/
+  PalletSessionError: {
+    _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
+  },
+  /**
+   * Lookup194: pallet_balances::BalanceLock<Balance>
+   **/
   PalletBalancesBalanceLock: {
     id: '[u8;8]',
     amount: 'u128',
     reasons: 'PalletBalancesReasons'
   },
   /**
-   * Lookup173: pallet_balances::Reasons
+   * Lookup195: pallet_balances::Reasons
    **/
   PalletBalancesReasons: {
     _enum: ['Fee', 'Misc', 'All']
   },
   /**
-   * Lookup176: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+   * Lookup198: pallet_balances::ReserveData<ReserveIdentifier, Balance>
    **/
   PalletBalancesReserveData: {
     id: '[u8;16]',
     amount: 'u128'
   },
   /**
-   * Lookup178: pallet_balances::pallet::Call<T, I>
+   * Lookup200: pallet_balances::pallet::Call<T, I>
    **/
   PalletBalancesCall: {
     _enum: {
@@ -1605,13 +1738,13 @@
     }
   },
   /**
-   * Lookup181: pallet_balances::pallet::Error<T, I>
+   * Lookup203: pallet_balances::pallet::Error<T, I>
    **/
   PalletBalancesError: {
     _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
   },
   /**
-   * Lookup183: pallet_timestamp::pallet::Call<T>
+   * Lookup205: pallet_timestamp::pallet::Call<T>
    **/
   PalletTimestampCall: {
     _enum: {
@@ -1621,13 +1754,13 @@
     }
   },
   /**
-   * Lookup185: pallet_transaction_payment::Releases
+   * Lookup207: pallet_transaction_payment::Releases
    **/
   PalletTransactionPaymentReleases: {
     _enum: ['V1Ancient', 'V2']
   },
   /**
-   * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+   * Lookup208: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
    **/
   PalletTreasuryProposal: {
     proposer: 'AccountId32',
@@ -1636,7 +1769,7 @@
     bond: 'u128'
   },
   /**
-   * Lookup189: pallet_treasury::pallet::Call<T, I>
+   * Lookup210: pallet_treasury::pallet::Call<T, I>
    **/
   PalletTreasuryCall: {
     _enum: {
@@ -1660,17 +1793,17 @@
     }
   },
   /**
-   * Lookup191: frame_support::PalletId
+   * Lookup212: frame_support::PalletId
    **/
   FrameSupportPalletId: '[u8;8]',
   /**
-   * Lookup192: pallet_treasury::pallet::Error<T, I>
+   * Lookup213: pallet_treasury::pallet::Error<T, I>
    **/
   PalletTreasuryError: {
     _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
   },
   /**
-   * Lookup193: pallet_sudo::pallet::Call<T>
+   * Lookup214: pallet_sudo::pallet::Call<T>
    **/
   PalletSudoCall: {
     _enum: {
@@ -1694,7 +1827,7 @@
     }
   },
   /**
-   * Lookup195: orml_vesting::module::Call<T>
+   * Lookup216: orml_vesting::module::Call<T>
    **/
   OrmlVestingModuleCall: {
     _enum: {
@@ -1713,7 +1846,7 @@
     }
   },
   /**
-   * Lookup197: orml_xtokens::module::Call<T>
+   * Lookup218: orml_xtokens::module::Call<T>
    **/
   OrmlXtokensModuleCall: {
     _enum: {
@@ -1756,7 +1889,7 @@
     }
   },
   /**
-   * Lookup198: xcm::VersionedMultiAsset
+   * Lookup219: xcm::VersionedMultiAsset
    **/
   XcmVersionedMultiAsset: {
     _enum: {
@@ -1765,7 +1898,7 @@
     }
   },
   /**
-   * Lookup201: orml_tokens::module::Call<T>
+   * Lookup222: orml_tokens::module::Call<T>
    **/
   OrmlTokensModuleCall: {
     _enum: {
@@ -1799,7 +1932,160 @@
     }
   },
   /**
-   * Lookup202: cumulus_pallet_xcmp_queue::pallet::Call<T>
+   * Lookup223: pallet_identity::pallet::Call<T>
+   **/
+  PalletIdentityCall: {
+    _enum: {
+      add_registrar: {
+        account: 'MultiAddress',
+      },
+      set_identity: {
+        info: 'PalletIdentityIdentityInfo',
+      },
+      set_subs: {
+        subs: 'Vec<(AccountId32,Data)>',
+      },
+      clear_identity: 'Null',
+      request_judgement: {
+        regIndex: 'Compact<u32>',
+        maxFee: 'Compact<u128>',
+      },
+      cancel_request: {
+        regIndex: 'u32',
+      },
+      set_fee: {
+        index: 'Compact<u32>',
+        fee: 'Compact<u128>',
+      },
+      set_account_id: {
+        _alias: {
+          new_: 'new',
+        },
+        index: 'Compact<u32>',
+        new_: 'MultiAddress',
+      },
+      set_fields: {
+        index: 'Compact<u32>',
+        fields: 'PalletIdentityBitFlags',
+      },
+      provide_judgement: {
+        regIndex: 'Compact<u32>',
+        target: 'MultiAddress',
+        judgement: 'PalletIdentityJudgement',
+        identity: 'H256',
+      },
+      kill_identity: {
+        target: 'MultiAddress',
+      },
+      add_sub: {
+        sub: 'MultiAddress',
+        data: 'Data',
+      },
+      rename_sub: {
+        sub: 'MultiAddress',
+        data: 'Data',
+      },
+      remove_sub: {
+        sub: 'MultiAddress',
+      },
+      quit_sub: 'Null',
+      force_insert_identities: {
+        identities: 'Vec<(AccountId32,PalletIdentityRegistration)>',
+      },
+      force_remove_identities: {
+        identities: 'Vec<AccountId32>',
+      },
+      force_set_subs: {
+        subs: 'Vec<(AccountId32,(u128,Vec<(AccountId32,Data)>))>'
+      }
+    }
+  },
+  /**
+   * Lookup224: pallet_identity::types::IdentityInfo<FieldLimit>
+   **/
+  PalletIdentityIdentityInfo: {
+    additional: 'Vec<(Data,Data)>',
+    display: 'Data',
+    legal: 'Data',
+    web: 'Data',
+    riot: 'Data',
+    email: 'Data',
+    pgpFingerprint: 'Option<[u8;20]>',
+    image: 'Data',
+    twitter: 'Data'
+  },
+  /**
+   * Lookup260: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
+   **/
+  PalletIdentityBitFlags: {
+    _bitLength: 64,
+    Display: 1,
+    Legal: 2,
+    Web: 4,
+    Riot: 8,
+    Email: 16,
+    PgpFingerprint: 32,
+    Image: 64,
+    Twitter: 128
+  },
+  /**
+   * Lookup261: pallet_identity::types::IdentityField
+   **/
+  PalletIdentityIdentityField: {
+    _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']
+  },
+  /**
+   * Lookup262: pallet_identity::types::Judgement<Balance>
+   **/
+  PalletIdentityJudgement: {
+    _enum: {
+      Unknown: 'Null',
+      FeePaid: 'u128',
+      Reasonable: 'Null',
+      KnownGood: 'Null',
+      OutOfDate: 'Null',
+      LowQuality: 'Null',
+      Erroneous: 'Null'
+    }
+  },
+  /**
+   * Lookup265: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
+   **/
+  PalletIdentityRegistration: {
+    judgements: 'Vec<(u32,PalletIdentityJudgement)>',
+    deposit: 'u128',
+    info: 'PalletIdentityIdentityInfo'
+  },
+  /**
+   * Lookup273: pallet_preimage::pallet::Call<T>
+   **/
+  PalletPreimageCall: {
+    _enum: {
+      note_preimage: {
+        bytes: 'Bytes',
+      },
+      unnote_preimage: {
+        _alias: {
+          hash_: 'hash',
+        },
+        hash_: 'H256',
+      },
+      request_preimage: {
+        _alias: {
+          hash_: 'hash',
+        },
+        hash_: 'H256',
+      },
+      unrequest_preimage: {
+        _alias: {
+          hash_: 'hash',
+        },
+        hash_: 'H256'
+      }
+    }
+  },
+  /**
+   * Lookup274: cumulus_pallet_xcmp_queue::pallet::Call<T>
    **/
   CumulusPalletXcmpQueueCall: {
     _enum: {
@@ -1848,7 +2134,7 @@
     }
   },
   /**
-   * Lookup203: pallet_xcm::pallet::Call<T>
+   * Lookup275: pallet_xcm::pallet::Call<T>
    **/
   PalletXcmCall: {
     _enum: {
@@ -1902,7 +2188,7 @@
     }
   },
   /**
-   * Lookup204: xcm::VersionedXcm<RuntimeCall>
+   * Lookup276: xcm::VersionedXcm<RuntimeCall>
    **/
   XcmVersionedXcm: {
     _enum: {
@@ -1912,7 +2198,7 @@
     }
   },
   /**
-   * Lookup205: xcm::v0::Xcm<RuntimeCall>
+   * Lookup277: xcm::v0::Xcm<RuntimeCall>
    **/
   XcmV0Xcm: {
     _enum: {
@@ -1966,7 +2252,7 @@
     }
   },
   /**
-   * Lookup207: xcm::v0::order::Order<RuntimeCall>
+   * Lookup279: xcm::v0::order::Order<RuntimeCall>
    **/
   XcmV0Order: {
     _enum: {
@@ -2009,7 +2295,7 @@
     }
   },
   /**
-   * Lookup209: xcm::v0::Response
+   * Lookup281: xcm::v0::Response
    **/
   XcmV0Response: {
     _enum: {
@@ -2017,7 +2303,7 @@
     }
   },
   /**
-   * Lookup210: xcm::v1::Xcm<RuntimeCall>
+   * Lookup282: xcm::v1::Xcm<RuntimeCall>
    **/
   XcmV1Xcm: {
     _enum: {
@@ -2076,7 +2362,7 @@
     }
   },
   /**
-   * Lookup212: xcm::v1::order::Order<RuntimeCall>
+   * Lookup284: xcm::v1::order::Order<RuntimeCall>
    **/
   XcmV1Order: {
     _enum: {
@@ -2121,7 +2407,7 @@
     }
   },
   /**
-   * Lookup214: xcm::v1::Response
+   * Lookup286: xcm::v1::Response
    **/
   XcmV1Response: {
     _enum: {
@@ -2130,11 +2416,11 @@
     }
   },
   /**
-   * Lookup228: cumulus_pallet_xcm::pallet::Call<T>
+   * Lookup300: cumulus_pallet_xcm::pallet::Call<T>
    **/
   CumulusPalletXcmCall: 'Null',
   /**
-   * Lookup229: cumulus_pallet_dmp_queue::pallet::Call<T>
+   * Lookup301: cumulus_pallet_dmp_queue::pallet::Call<T>
    **/
   CumulusPalletDmpQueueCall: {
     _enum: {
@@ -2145,7 +2431,7 @@
     }
   },
   /**
-   * Lookup230: pallet_inflation::pallet::Call<T>
+   * Lookup302: pallet_inflation::pallet::Call<T>
    **/
   PalletInflationCall: {
     _enum: {
@@ -2155,7 +2441,7 @@
     }
   },
   /**
-   * Lookup231: pallet_unique::Call<T>
+   * Lookup303: pallet_unique::Call<T>
    **/
   PalletUniqueCall: {
     _enum: {
@@ -2306,7 +2592,7 @@
     }
   },
   /**
-   * Lookup236: up_data_structs::CollectionMode
+   * Lookup308: up_data_structs::CollectionMode
    **/
   UpDataStructsCollectionMode: {
     _enum: {
@@ -2316,7 +2602,7 @@
     }
   },
   /**
-   * Lookup237: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+   * Lookup309: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCreateCollectionData: {
     mode: 'UpDataStructsCollectionMode',
@@ -2331,13 +2617,13 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup239: up_data_structs::AccessMode
+   * Lookup311: up_data_structs::AccessMode
    **/
   UpDataStructsAccessMode: {
     _enum: ['Normal', 'AllowList']
   },
   /**
-   * Lookup241: up_data_structs::CollectionLimits
+   * Lookup313: up_data_structs::CollectionLimits
    **/
   UpDataStructsCollectionLimits: {
     accountTokenOwnershipLimit: 'Option<u32>',
@@ -2351,7 +2637,7 @@
     transfersEnabled: 'Option<bool>'
   },
   /**
-   * Lookup243: up_data_structs::SponsoringRateLimit
+   * Lookup315: up_data_structs::SponsoringRateLimit
    **/
   UpDataStructsSponsoringRateLimit: {
     _enum: {
@@ -2360,7 +2646,7 @@
     }
   },
   /**
-   * Lookup246: up_data_structs::CollectionPermissions
+   * Lookup318: up_data_structs::CollectionPermissions
    **/
   UpDataStructsCollectionPermissions: {
     access: 'Option<UpDataStructsAccessMode>',
@@ -2368,7 +2654,7 @@
     nesting: 'Option<UpDataStructsNestingPermissions>'
   },
   /**
-   * Lookup248: up_data_structs::NestingPermissions
+   * Lookup320: up_data_structs::NestingPermissions
    **/
   UpDataStructsNestingPermissions: {
     tokenOwner: 'bool',
@@ -2376,18 +2662,18 @@
     restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
   },
   /**
-   * Lookup250: up_data_structs::OwnerRestrictedSet
+   * Lookup322: up_data_structs::OwnerRestrictedSet
    **/
   UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
   /**
-   * Lookup255: up_data_structs::PropertyKeyPermission
+   * Lookup327: up_data_structs::PropertyKeyPermission
    **/
   UpDataStructsPropertyKeyPermission: {
     key: 'Bytes',
     permission: 'UpDataStructsPropertyPermission'
   },
   /**
-   * Lookup256: up_data_structs::PropertyPermission
+   * Lookup328: up_data_structs::PropertyPermission
    **/
   UpDataStructsPropertyPermission: {
     mutable: 'bool',
@@ -2395,14 +2681,14 @@
     tokenOwner: 'bool'
   },
   /**
-   * Lookup259: up_data_structs::Property
+   * Lookup331: up_data_structs::Property
    **/
   UpDataStructsProperty: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup262: up_data_structs::CreateItemData
+   * Lookup334: up_data_structs::CreateItemData
    **/
   UpDataStructsCreateItemData: {
     _enum: {
@@ -2412,26 +2698,26 @@
     }
   },
   /**
-   * Lookup263: up_data_structs::CreateNftData
+   * Lookup335: up_data_structs::CreateNftData
    **/
   UpDataStructsCreateNftData: {
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup264: up_data_structs::CreateFungibleData
+   * Lookup336: up_data_structs::CreateFungibleData
    **/
   UpDataStructsCreateFungibleData: {
     value: 'u128'
   },
   /**
-   * Lookup265: up_data_structs::CreateReFungibleData
+   * Lookup337: up_data_structs::CreateReFungibleData
    **/
   UpDataStructsCreateReFungibleData: {
     pieces: 'u128',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup268: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup340: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateItemExData: {
     _enum: {
@@ -2442,14 +2728,14 @@
     }
   },
   /**
-   * Lookup270: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup342: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateNftExData: {
     properties: 'Vec<UpDataStructsProperty>',
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup277: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup349: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateRefungibleExSingleOwner: {
     user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2457,14 +2743,14 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup279: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup351: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateRefungibleExMultipleOwners: {
     users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup280: pallet_configuration::pallet::Call<T>
+   * Lookup352: pallet_configuration::pallet::Call<T>
    **/
   PalletConfigurationCall: {
     _enum: {
@@ -2492,7 +2778,7 @@
     }
   },
   /**
-   * Lookup285: pallet_configuration::AppPromotionConfiguration<BlockNumber>
+   * Lookup357: pallet_configuration::AppPromotionConfiguration<BlockNumber>
    **/
   PalletConfigurationAppPromotionConfiguration: {
     recalculationInterval: 'Option<u32>',
@@ -2501,220 +2787,16 @@
     maxStakersPerCalculation: 'Option<u8>'
   },
   /**
-   * Lookup289: pallet_template_transaction_payment::Call<T>
+   * Lookup361: pallet_template_transaction_payment::Call<T>
    **/
   PalletTemplateTransactionPaymentCall: 'Null',
   /**
-   * Lookup290: pallet_structure::pallet::Call<T>
+   * Lookup362: pallet_structure::pallet::Call<T>
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup291: pallet_rmrk_core::pallet::Call<T>
-   **/
-  PalletRmrkCoreCall: {
-    _enum: {
-      create_collection: {
-        metadata: 'Bytes',
-        max: 'Option<u32>',
-        symbol: 'Bytes',
-      },
-      destroy_collection: {
-        collectionId: 'u32',
-      },
-      change_collection_issuer: {
-        collectionId: 'u32',
-        newIssuer: 'MultiAddress',
-      },
-      lock_collection: {
-        collectionId: 'u32',
-      },
-      mint_nft: {
-        owner: 'Option<AccountId32>',
-        collectionId: 'u32',
-        recipient: 'Option<AccountId32>',
-        royaltyAmount: 'Option<Permill>',
-        metadata: 'Bytes',
-        transferable: 'bool',
-        resources: 'Option<Vec<RmrkTraitsResourceResourceTypes>>',
-      },
-      burn_nft: {
-        collectionId: 'u32',
-        nftId: 'u32',
-        maxBurns: 'u32',
-      },
-      send: {
-        rmrkCollectionId: 'u32',
-        rmrkNftId: 'u32',
-        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
-      },
-      accept_nft: {
-        rmrkCollectionId: 'u32',
-        rmrkNftId: 'u32',
-        newOwner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
-      },
-      reject_nft: {
-        rmrkCollectionId: 'u32',
-        rmrkNftId: 'u32',
-      },
-      accept_resource: {
-        rmrkCollectionId: 'u32',
-        rmrkNftId: 'u32',
-        resourceId: 'u32',
-      },
-      accept_resource_removal: {
-        rmrkCollectionId: 'u32',
-        rmrkNftId: 'u32',
-        resourceId: 'u32',
-      },
-      set_property: {
-        rmrkCollectionId: 'Compact<u32>',
-        maybeNftId: 'Option<u32>',
-        key: 'Bytes',
-        value: 'Bytes',
-      },
-      set_priority: {
-        rmrkCollectionId: 'u32',
-        rmrkNftId: 'u32',
-        priorities: 'Vec<u32>',
-      },
-      add_basic_resource: {
-        rmrkCollectionId: 'u32',
-        nftId: 'u32',
-        resource: 'RmrkTraitsResourceBasicResource',
-      },
-      add_composable_resource: {
-        rmrkCollectionId: 'u32',
-        nftId: 'u32',
-        resource: 'RmrkTraitsResourceComposableResource',
-      },
-      add_slot_resource: {
-        rmrkCollectionId: 'u32',
-        nftId: 'u32',
-        resource: 'RmrkTraitsResourceSlotResource',
-      },
-      remove_resource: {
-        rmrkCollectionId: 'u32',
-        nftId: 'u32',
-        resourceId: 'u32'
-      }
-    }
-  },
-  /**
-   * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsResourceResourceTypes: {
-    _enum: {
-      Basic: 'RmrkTraitsResourceBasicResource',
-      Composable: 'RmrkTraitsResourceComposableResource',
-      Slot: 'RmrkTraitsResourceSlotResource'
-    }
-  },
-  /**
-   * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsResourceBasicResource: {
-    src: 'Option<Bytes>',
-    metadata: 'Option<Bytes>',
-    license: 'Option<Bytes>',
-    thumb: 'Option<Bytes>'
-  },
-  /**
-   * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsResourceComposableResource: {
-    parts: 'Vec<u32>',
-    base: 'u32',
-    src: 'Option<Bytes>',
-    metadata: 'Option<Bytes>',
-    license: 'Option<Bytes>',
-    thumb: 'Option<Bytes>'
-  },
-  /**
-   * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsResourceSlotResource: {
-    base: 'u32',
-    src: 'Option<Bytes>',
-    metadata: 'Option<Bytes>',
-    slot: 'u32',
-    license: 'Option<Bytes>',
-    thumb: 'Option<Bytes>'
-  },
-  /**
-   * Lookup305: pallet_rmrk_equip::pallet::Call<T>
-   **/
-  PalletRmrkEquipCall: {
-    _enum: {
-      create_base: {
-        baseType: 'Bytes',
-        symbol: 'Bytes',
-        parts: 'Vec<RmrkTraitsPartPartType>',
-      },
-      theme_add: {
-        baseId: 'u32',
-        theme: 'RmrkTraitsTheme',
-      },
-      equippable: {
-        baseId: 'u32',
-        slotId: 'u32',
-        equippables: 'RmrkTraitsPartEquippableList'
-      }
-    }
-  },
-  /**
-   * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup363: pallet_app_promotion::pallet::Call<T>
    **/
-  RmrkTraitsPartPartType: {
-    _enum: {
-      FixedPart: 'RmrkTraitsPartFixedPart',
-      SlotPart: 'RmrkTraitsPartSlotPart'
-    }
-  },
-  /**
-   * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsPartFixedPart: {
-    id: 'u32',
-    z: 'u32',
-    src: 'Bytes'
-  },
-  /**
-   * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsPartSlotPart: {
-    id: 'u32',
-    equippable: 'RmrkTraitsPartEquippableList',
-    src: 'Bytes',
-    z: 'u32'
-  },
-  /**
-   * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsPartEquippableList: {
-    _enum: {
-      All: 'Null',
-      Empty: 'Null',
-      Custom: 'Vec<u32>'
-    }
-  },
-  /**
-   * Lookup314: 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>>
-   **/
-  RmrkTraitsTheme: {
-    name: 'Bytes',
-    properties: 'Vec<RmrkTraitsThemeThemeProperty>',
-    inherit: 'bool'
-  },
-  /**
-   * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsThemeThemeProperty: {
-    key: 'Bytes',
-    value: 'Bytes'
-  },
-  /**
-   * Lookup318: pallet_app_promotion::pallet::Call<T>
-   **/
   PalletAppPromotionCall: {
     _enum: {
       set_admin_address: {
@@ -2723,7 +2805,7 @@
       stake: {
         amount: 'u128',
       },
-      unstake: 'Null',
+      unstake_all: 'Null',
       sponsor_collection: {
         collectionId: 'u32',
       },
@@ -2737,12 +2819,15 @@
         contractId: 'H160',
       },
       payout_stakers: {
-        stakersNumber: 'Option<u8>'
+        stakersNumber: 'Option<u8>',
+      },
+      unstake_partial: {
+        amount: 'u128'
       }
     }
   },
   /**
-   * Lookup319: pallet_foreign_assets::module::Call<T>
+   * Lookup364: pallet_foreign_assets::module::Call<T>
    **/
   PalletForeignAssetsModuleCall: {
     _enum: {
@@ -2759,7 +2844,7 @@
     }
   },
   /**
-   * Lookup320: pallet_evm::pallet::Call<T>
+   * Lookup365: pallet_evm::pallet::Call<T>
    **/
   PalletEvmCall: {
     _enum: {
@@ -2802,7 +2887,7 @@
     }
   },
   /**
-   * Lookup326: pallet_ethereum::pallet::Call<T>
+   * Lookup371: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -2812,7 +2897,7 @@
     }
   },
   /**
-   * Lookup327: ethereum::transaction::TransactionV2
+   * Lookup372: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -2822,7 +2907,7 @@
     }
   },
   /**
-   * Lookup328: ethereum::transaction::LegacyTransaction
+   * Lookup373: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -2834,7 +2919,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup329: ethereum::transaction::TransactionAction
+   * Lookup374: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -2843,7 +2928,7 @@
     }
   },
   /**
-   * Lookup330: ethereum::transaction::TransactionSignature
+   * Lookup375: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -2851,7 +2936,7 @@
     s: 'H256'
   },
   /**
-   * Lookup332: ethereum::transaction::EIP2930Transaction
+   * Lookup377: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -2867,14 +2952,14 @@
     s: 'H256'
   },
   /**
-   * Lookup334: ethereum::transaction::AccessListItem
+   * Lookup379: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup335: ethereum::transaction::EIP1559Transaction
+   * Lookup380: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -2891,7 +2976,7 @@
     s: 'H256'
   },
   /**
-   * Lookup336: pallet_evm_migration::pallet::Call<T>
+   * Lookup381: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -2910,18 +2995,29 @@
         logs: 'Vec<EthereumLog>',
       },
       insert_events: {
-        events: 'Vec<Bytes>'
-      }
+        events: 'Vec<Bytes>',
+      },
+      remove_rmrk_data: 'Null'
     }
   },
   /**
-   * Lookup340: pallet_maintenance::pallet::Call<T>
+   * Lookup385: pallet_maintenance::pallet::Call<T>
    **/
   PalletMaintenanceCall: {
-    _enum: ['enable', 'disable']
+    _enum: {
+      enable: 'Null',
+      disable: 'Null',
+      execute_preimage: {
+        _alias: {
+          hash_: 'hash',
+        },
+        hash_: 'H256',
+        weightBound: 'SpWeightsWeightV2Weight'
+      }
+    }
   },
   /**
-   * Lookup341: pallet_test_utils::pallet::Call<T>
+   * Lookup386: pallet_test_utils::pallet::Call<T>
    **/
   PalletTestUtilsCall: {
     _enum: {
@@ -2940,32 +3036,32 @@
     }
   },
   /**
-   * Lookup343: pallet_sudo::pallet::Error<T>
+   * Lookup388: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup345: orml_vesting::module::Error<T>
+   * Lookup390: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup346: orml_xtokens::module::Error<T>
+   * Lookup391: orml_xtokens::module::Error<T>
    **/
   OrmlXtokensModuleError: {
     _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
   },
   /**
-   * Lookup349: orml_tokens::BalanceLock<Balance>
+   * Lookup394: orml_tokens::BalanceLock<Balance>
    **/
   OrmlTokensBalanceLock: {
     id: '[u8;8]',
     amount: 'u128'
   },
   /**
-   * Lookup351: orml_tokens::AccountData<Balance>
+   * Lookup396: orml_tokens::AccountData<Balance>
    **/
   OrmlTokensAccountData: {
     free: 'u128',
@@ -2973,20 +3069,56 @@
     frozen: 'u128'
   },
   /**
-   * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+   * Lookup398: orml_tokens::ReserveData<ReserveIdentifier, Balance>
    **/
   OrmlTokensReserveData: {
     id: 'Null',
     amount: 'u128'
   },
   /**
-   * Lookup355: orml_tokens::module::Error<T>
+   * Lookup400: orml_tokens::module::Error<T>
    **/
   OrmlTokensModuleError: {
     _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
   },
   /**
-   * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup405: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
+   **/
+  PalletIdentityRegistrarInfo: {
+    account: 'AccountId32',
+    fee: 'u128',
+    fields: 'PalletIdentityBitFlags'
+  },
+  /**
+   * Lookup407: pallet_identity::pallet::Error<T>
+   **/
+  PalletIdentityError: {
+    _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
+  },
+  /**
+   * Lookup408: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
+   **/
+  PalletPreimageRequestStatus: {
+    _enum: {
+      Unrequested: {
+        deposit: '(AccountId32,u128)',
+        len: 'u32',
+      },
+      Requested: {
+        deposit: 'Option<(AccountId32,u128)>',
+        count: 'u32',
+        len: 'Option<u32>'
+      }
+    }
+  },
+  /**
+   * Lookup413: pallet_preimage::pallet::Error<T>
+   **/
+  PalletPreimageError: {
+    _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
+  },
+  /**
+   * Lookup415: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -2994,19 +3126,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup358: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup416: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup419: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup422: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -3016,13 +3148,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup423: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup425: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -3033,29 +3165,29 @@
     xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup427: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup370: pallet_xcm::pallet::Error<T>
+   * Lookup428: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
   },
   /**
-   * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup429: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup372: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup430: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup431: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -3063,25 +3195,25 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup434: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup380: pallet_unique::Error<T>
+   * Lookup438: pallet_unique::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
   },
   /**
-   * Lookup381: pallet_configuration::pallet::Error<T>
+   * Lookup439: pallet_configuration::pallet::Error<T>
    **/
   PalletConfigurationError: {
     _enum: ['InconsistentConfiguration']
   },
   /**
-   * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup440: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -3095,7 +3227,7 @@
     flags: '[u8;1]'
   },
   /**
-   * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup441: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipStateAccountId32: {
     _enum: {
@@ -3105,7 +3237,7 @@
     }
   },
   /**
-   * Lookup385: up_data_structs::Properties
+   * Lookup442: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3113,15 +3245,15 @@
     spaceLimit: 'u32'
   },
   /**
-   * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup443: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup448: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup398: up_data_structs::CollectionStats
+   * Lookup455: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -3129,18 +3261,18 @@
     alive: 'u32'
   },
   /**
-   * Lookup399: up_data_structs::TokenChild
+   * Lookup456: up_data_structs::TokenChild
    **/
   UpDataStructsTokenChild: {
     token: 'u32',
     collection: 'u32'
   },
   /**
-   * Lookup400: PhantomType::up_data_structs<T>
+   * Lookup457: PhantomType::up_data_structs<T>
    **/
-  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',
+  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',
   /**
-   * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup459: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     properties: 'Vec<UpDataStructsProperty>',
@@ -3148,7 +3280,7 @@
     pieces: 'u128'
   },
   /**
-   * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup461: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -3165,73 +3297,15 @@
     flags: 'UpDataStructsRpcCollectionFlags'
   },
   /**
-   * Lookup405: up_data_structs::RpcCollectionFlags
+   * Lookup462: up_data_structs::RpcCollectionFlags
    **/
   UpDataStructsRpcCollectionFlags: {
     foreign: 'bool',
     erc721metadata: 'bool'
   },
   /**
-   * Lookup406: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
-   **/
-  RmrkTraitsCollectionCollectionInfo: {
-    issuer: 'AccountId32',
-    metadata: 'Bytes',
-    max: 'Option<u32>',
-    symbol: 'Bytes',
-    nftsCount: 'u32'
-  },
-  /**
-   * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsNftNftInfo: {
-    owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
-    royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
-    metadata: 'Bytes',
-    equipped: 'bool',
-    pending: 'bool'
-  },
-  /**
-   * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+   * Lookup463: up_pov_estimate_rpc::PovInfo
    **/
-  RmrkTraitsNftRoyaltyInfo: {
-    recipient: 'AccountId32',
-    amount: 'Permill'
-  },
-  /**
-   * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsResourceResourceInfo: {
-    id: 'u32',
-    resource: 'RmrkTraitsResourceResourceTypes',
-    pending: 'bool',
-    pendingRemoval: 'bool'
-  },
-  /**
-   * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsPropertyPropertyInfo: {
-    key: 'Bytes',
-    value: 'Bytes'
-  },
-  /**
-   * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
-   **/
-  RmrkTraitsBaseBaseInfo: {
-    issuer: 'AccountId32',
-    baseType: 'Bytes',
-    symbol: 'Bytes'
-  },
-  /**
-   * Lookup413: rmrk_traits::nft::NftChild
-   **/
-  RmrkTraitsNftNftChild: {
-    collectionId: 'u32',
-    nftId: 'u32'
-  },
-  /**
-   * Lookup414: up_pov_estimate_rpc::PovInfo
-   **/
   UpPovEstimateRpcPovInfo: {
     proofSize: 'u64',
     compactProofSize: 'u64',
@@ -3240,7 +3314,7 @@
     keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
   },
   /**
-   * Lookup417: sp_runtime::transaction_validity::TransactionValidityError
+   * Lookup466: sp_runtime::transaction_validity::TransactionValidityError
    **/
   SpRuntimeTransactionValidityTransactionValidityError: {
     _enum: {
@@ -3249,7 +3323,7 @@
     }
   },
   /**
-   * Lookup418: sp_runtime::transaction_validity::InvalidTransaction
+   * Lookup467: sp_runtime::transaction_validity::InvalidTransaction
    **/
   SpRuntimeTransactionValidityInvalidTransaction: {
     _enum: {
@@ -3267,7 +3341,7 @@
     }
   },
   /**
-   * Lookup419: sp_runtime::transaction_validity::UnknownTransaction
+   * Lookup468: sp_runtime::transaction_validity::UnknownTransaction
    **/
   SpRuntimeTransactionValidityUnknownTransaction: {
     _enum: {
@@ -3277,86 +3351,74 @@
     }
   },
   /**
-   * Lookup421: up_pov_estimate_rpc::TrieKeyValue
+   * Lookup470: up_pov_estimate_rpc::TrieKeyValue
    **/
   UpPovEstimateRpcTrieKeyValue: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup423: pallet_common::pallet::Error<T>
+   * Lookup472: pallet_common::pallet::Error<T>
    **/
   PalletCommonError: {
     _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
   },
   /**
-   * Lookup425: pallet_fungible::pallet::Error<T>
+   * Lookup474: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
   },
   /**
-   * Lookup429: pallet_refungible::pallet::Error<T>
+   * Lookup478: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup430: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup479: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup432: up_data_structs::PropertyScope
+   * Lookup481: up_data_structs::PropertyScope
    **/
   UpDataStructsPropertyScope: {
     _enum: ['None', 'Rmrk']
   },
   /**
-   * Lookup435: pallet_nonfungible::pallet::Error<T>
+   * Lookup484: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
   },
   /**
-   * Lookup436: pallet_structure::pallet::Error<T>
+   * Lookup485: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
-    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
+    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']
   },
   /**
-   * Lookup437: pallet_rmrk_core::pallet::Error<T>
-   **/
-  PalletRmrkCoreError: {
-    _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
-  },
-  /**
-   * Lookup439: pallet_rmrk_equip::pallet::Error<T>
-   **/
-  PalletRmrkEquipError: {
-    _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
-  },
-  /**
-   * Lookup445: pallet_app_promotion::pallet::Error<T>
+   * Lookup490: pallet_app_promotion::pallet::Error<T>
    **/
   PalletAppPromotionError: {
-    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
+    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']
   },
   /**
-   * Lookup446: pallet_foreign_assets::module::Error<T>
+   * Lookup491: pallet_foreign_assets::module::Error<T>
    **/
   PalletForeignAssetsModuleError: {
     _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
   },
   /**
-   * Lookup448: pallet_evm::pallet::Error<T>
+   * Lookup493: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
   },
   /**
-   * Lookup451: fp_rpc::TransactionStatus
+   * Lookup496: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -3368,11 +3430,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup453: ethbloom::Bloom
+   * Lookup498: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup455: ethereum::receipt::ReceiptV3
+   * Lookup500: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -3382,7 +3444,7 @@
     }
   },
   /**
-   * Lookup456: ethereum::receipt::EIP658ReceiptData
+   * Lookup501: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -3391,7 +3453,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup457: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup502: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -3399,7 +3461,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup458: ethereum::header::Header
+   * Lookup503: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -3419,23 +3481,23 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup459: ethereum_types::hash::H64
+   * Lookup504: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup464: pallet_ethereum::pallet::Error<T>
+   * Lookup509: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup465: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup510: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup466: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup511: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
     _enum: {
@@ -3445,35 +3507,35 @@
     }
   },
   /**
-   * Lookup467: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup512: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup473: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup518: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
   },
   /**
-   * Lookup474: pallet_evm_migration::pallet::Error<T>
+   * Lookup519: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
   },
   /**
-   * Lookup475: pallet_maintenance::pallet::Error<T>
+   * Lookup520: pallet_maintenance::pallet::Error<T>
    **/
   PalletMaintenanceError: 'Null',
   /**
-   * Lookup476: pallet_test_utils::pallet::Error<T>
+   * Lookup521: pallet_test_utils::pallet::Error<T>
    **/
   PalletTestUtilsError: {
     _enum: ['TestPalletDisabled', 'TriggerRollback']
   },
   /**
-   * Lookup478: sp_runtime::MultiSignature
+   * Lookup523: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -3483,55 +3545,55 @@
     }
   },
   /**
-   * Lookup479: sp_core::ed25519::Signature
+   * Lookup524: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup481: sp_core::sr25519::Signature
+   * Lookup526: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup482: sp_core::ecdsa::Signature
+   * Lookup527: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup485: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup530: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup486: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+   * Lookup531: frame_system::extensions::check_tx_version::CheckTxVersion<T>
    **/
   FrameSystemExtensionsCheckTxVersion: 'Null',
   /**
-   * Lookup487: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup532: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup490: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup535: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup491: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup536: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup492: opal_runtime::runtime_common::maintenance::CheckMaintenance
+   * Lookup537: opal_runtime::runtime_common::maintenance::CheckMaintenance
    **/
   OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
   /**
-   * Lookup493: opal_runtime::runtime_common::identity::DisableIdentityCalls
+   * Lookup538: opal_runtime::runtime_common::identity::DisableIdentityCalls
    **/
   OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
   /**
-   * Lookup494: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup539: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup495: opal_runtime::Runtime
+   * Lookup540: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup496: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup541: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
    **/
   PalletEthereumFakeTransactionFinalizer: 'Null'
 };
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, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, 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, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, 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, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, 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, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, 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, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, 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, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, 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, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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 {
@@ -76,6 +76,7 @@
     OpalRuntimeRuntime: OpalRuntimeRuntime;
     OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
     OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+    OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
     OrmlTokensAccountData: OrmlTokensAccountData;
     OrmlTokensBalanceLock: OrmlTokensBalanceLock;
     OrmlTokensModuleCall: OrmlTokensModuleCall;
@@ -92,6 +93,9 @@
     PalletAppPromotionCall: PalletAppPromotionCall;
     PalletAppPromotionError: PalletAppPromotionError;
     PalletAppPromotionEvent: PalletAppPromotionEvent;
+    PalletAuthorshipCall: PalletAuthorshipCall;
+    PalletAuthorshipError: PalletAuthorshipError;
+    PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
     PalletBalancesAccountData: PalletBalancesAccountData;
     PalletBalancesBalanceLock: PalletBalancesBalanceLock;
     PalletBalancesCall: PalletBalancesCall;
@@ -99,6 +103,9 @@
     PalletBalancesEvent: PalletBalancesEvent;
     PalletBalancesReasons: PalletBalancesReasons;
     PalletBalancesReserveData: PalletBalancesReserveData;
+    PalletCollatorSelectionCall: PalletCollatorSelectionCall;
+    PalletCollatorSelectionError: PalletCollatorSelectionError;
+    PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
     PalletCommonError: PalletCommonError;
     PalletCommonEvent: PalletCommonEvent;
     PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
@@ -127,19 +134,29 @@
     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;
     PalletMaintenanceEvent: PalletMaintenanceEvent;
     PalletNonfungibleError: PalletNonfungibleError;
     PalletNonfungibleItemData: PalletNonfungibleItemData;
+    PalletPreimageCall: PalletPreimageCall;
+    PalletPreimageError: PalletPreimageError;
+    PalletPreimageEvent: PalletPreimageEvent;
+    PalletPreimageRequestStatus: PalletPreimageRequestStatus;
     PalletRefungibleError: PalletRefungibleError;
-    PalletRmrkCoreCall: PalletRmrkCoreCall;
-    PalletRmrkCoreError: PalletRmrkCoreError;
-    PalletRmrkCoreEvent: PalletRmrkCoreEvent;
-    PalletRmrkEquipCall: PalletRmrkEquipCall;
-    PalletRmrkEquipError: PalletRmrkEquipError;
-    PalletRmrkEquipEvent: PalletRmrkEquipEvent;
+    PalletSessionCall: PalletSessionCall;
+    PalletSessionError: PalletSessionError;
+    PalletSessionEvent: PalletSessionEvent;
     PalletStructureCall: PalletStructureCall;
     PalletStructureError: PalletStructureError;
     PalletStructureEvent: PalletStructureEvent;
@@ -172,31 +189,18 @@
     PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
     PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
     PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
-    RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;
-    RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;
-    RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;
-    RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;
-    RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;
-    RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;
-    RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;
-    RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;
-    RmrkTraitsPartPartType: RmrkTraitsPartPartType;
-    RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;
-    RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;
-    RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;
-    RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;
-    RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;
-    RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;
-    RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;
-    RmrkTraitsTheme: RmrkTraitsTheme;
-    RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;
+    SpArithmeticArithmeticError: SpArithmeticArithmeticError;
+    SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
+    SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
     SpCoreEcdsaSignature: SpCoreEcdsaSignature;
     SpCoreEd25519Signature: SpCoreEd25519Signature;
+    SpCoreSr25519Public: SpCoreSr25519Public;
     SpCoreSr25519Signature: SpCoreSr25519Signature;
-    SpRuntimeArithmeticError: SpRuntimeArithmeticError;
+    SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
     SpRuntimeDigest: SpRuntimeDigest;
     SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
     SpRuntimeDispatchError: SpRuntimeDispatchError;
+    SpRuntimeHeader: SpRuntimeHeader;
     SpRuntimeModuleError: SpRuntimeModuleError;
     SpRuntimeMultiSignature: SpRuntimeMultiSignature;
     SpRuntimeTokenError: SpRuntimeTokenError;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
before · tests/src/interfaces/types-lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14  /** @name FrameSystemAccountInfo (3) */15  interface FrameSystemAccountInfo extends Struct {16    readonly nonce: u32;17    readonly consumers: u32;18    readonly providers: u32;19    readonly sufficients: u32;20    readonly data: PalletBalancesAccountData;21  }2223  /** @name PalletBalancesAccountData (5) */24  interface PalletBalancesAccountData extends Struct {25    readonly free: u128;26    readonly reserved: u128;27    readonly miscFrozen: u128;28    readonly feeFrozen: u128;29  }3031  /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32  interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33    readonly normal: SpWeightsWeightV2Weight;34    readonly operational: SpWeightsWeightV2Weight;35    readonly mandatory: SpWeightsWeightV2Weight;36  }3738  /** @name SpWeightsWeightV2Weight (8) */39  interface SpWeightsWeightV2Weight extends Struct {40    readonly refTime: Compact<u64>;41    readonly proofSize: Compact<u64>;42  }4344  /** @name SpRuntimeDigest (13) */45  interface SpRuntimeDigest extends Struct {46    readonly logs: Vec<SpRuntimeDigestDigestItem>;47  }4849  /** @name SpRuntimeDigestDigestItem (15) */50  interface SpRuntimeDigestDigestItem extends Enum {51    readonly isOther: boolean;52    readonly asOther: Bytes;53    readonly isConsensus: boolean;54    readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55    readonly isSeal: boolean;56    readonly asSeal: ITuple<[U8aFixed, Bytes]>;57    readonly isPreRuntime: boolean;58    readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59    readonly isRuntimeEnvironmentUpdated: boolean;60    readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61  }6263  /** @name FrameSystemEventRecord (18) */64  interface FrameSystemEventRecord extends Struct {65    readonly phase: FrameSystemPhase;66    readonly event: Event;67    readonly topics: Vec<H256>;68  }6970  /** @name FrameSystemEvent (20) */71  interface FrameSystemEvent extends Enum {72    readonly isExtrinsicSuccess: boolean;73    readonly asExtrinsicSuccess: {74      readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75    } & Struct;76    readonly isExtrinsicFailed: boolean;77    readonly asExtrinsicFailed: {78      readonly dispatchError: SpRuntimeDispatchError;79      readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80    } & Struct;81    readonly isCodeUpdated: boolean;82    readonly isNewAccount: boolean;83    readonly asNewAccount: {84      readonly account: AccountId32;85    } & Struct;86    readonly isKilledAccount: boolean;87    readonly asKilledAccount: {88      readonly account: AccountId32;89    } & Struct;90    readonly isRemarked: boolean;91    readonly asRemarked: {92      readonly sender: AccountId32;93      readonly hash_: H256;94    } & Struct;95    readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96  }9798  /** @name FrameSupportDispatchDispatchInfo (21) */99  interface FrameSupportDispatchDispatchInfo extends Struct {100    readonly weight: SpWeightsWeightV2Weight;101    readonly class: FrameSupportDispatchDispatchClass;102    readonly paysFee: FrameSupportDispatchPays;103  }104105  /** @name FrameSupportDispatchDispatchClass (22) */106  interface FrameSupportDispatchDispatchClass extends Enum {107    readonly isNormal: boolean;108    readonly isOperational: boolean;109    readonly isMandatory: boolean;110    readonly type: 'Normal' | 'Operational' | 'Mandatory';111  }112113  /** @name FrameSupportDispatchPays (23) */114  interface FrameSupportDispatchPays extends Enum {115    readonly isYes: boolean;116    readonly isNo: boolean;117    readonly type: 'Yes' | 'No';118  }119120  /** @name SpRuntimeDispatchError (24) */121  interface SpRuntimeDispatchError extends Enum {122    readonly isOther: boolean;123    readonly isCannotLookup: boolean;124    readonly isBadOrigin: boolean;125    readonly isModule: boolean;126    readonly asModule: SpRuntimeModuleError;127    readonly isConsumerRemaining: boolean;128    readonly isNoProviders: boolean;129    readonly isTooManyConsumers: boolean;130    readonly isToken: boolean;131    readonly asToken: SpRuntimeTokenError;132    readonly isArithmetic: boolean;133    readonly asArithmetic: SpRuntimeArithmeticError;134    readonly isTransactional: boolean;135    readonly asTransactional: SpRuntimeTransactionalError;136    readonly isExhausted: boolean;137    readonly isCorruption: boolean;138    readonly isUnavailable: boolean;139    readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140  }141142  /** @name SpRuntimeModuleError (25) */143  interface SpRuntimeModuleError extends Struct {144    readonly index: u8;145    readonly error: U8aFixed;146  }147148  /** @name SpRuntimeTokenError (26) */149  interface SpRuntimeTokenError extends Enum {150    readonly isNoFunds: boolean;151    readonly isWouldDie: boolean;152    readonly isBelowMinimum: boolean;153    readonly isCannotCreate: boolean;154    readonly isUnknownAsset: boolean;155    readonly isFrozen: boolean;156    readonly isUnsupported: boolean;157    readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158  }159160  /** @name SpRuntimeArithmeticError (27) */161  interface SpRuntimeArithmeticError extends Enum {162    readonly isUnderflow: boolean;163    readonly isOverflow: boolean;164    readonly isDivisionByZero: boolean;165    readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166  }167168  /** @name SpRuntimeTransactionalError (28) */169  interface SpRuntimeTransactionalError extends Enum {170    readonly isLimitReached: boolean;171    readonly isNoLayer: boolean;172    readonly type: 'LimitReached' | 'NoLayer';173  }174175  /** @name CumulusPalletParachainSystemEvent (29) */176  interface CumulusPalletParachainSystemEvent extends Enum {177    readonly isValidationFunctionStored: boolean;178    readonly isValidationFunctionApplied: boolean;179    readonly asValidationFunctionApplied: {180      readonly relayChainBlockNum: u32;181    } & Struct;182    readonly isValidationFunctionDiscarded: boolean;183    readonly isUpgradeAuthorized: boolean;184    readonly asUpgradeAuthorized: {185      readonly codeHash: H256;186    } & Struct;187    readonly isDownwardMessagesReceived: boolean;188    readonly asDownwardMessagesReceived: {189      readonly count: u32;190    } & Struct;191    readonly isDownwardMessagesProcessed: boolean;192    readonly asDownwardMessagesProcessed: {193      readonly weightUsed: SpWeightsWeightV2Weight;194      readonly dmqHead: H256;195    } & Struct;196    readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197  }198199  /** @name PalletBalancesEvent (30) */200  interface PalletBalancesEvent extends Enum {201    readonly isEndowed: boolean;202    readonly asEndowed: {203      readonly account: AccountId32;204      readonly freeBalance: u128;205    } & Struct;206    readonly isDustLost: boolean;207    readonly asDustLost: {208      readonly account: AccountId32;209      readonly amount: u128;210    } & Struct;211    readonly isTransfer: boolean;212    readonly asTransfer: {213      readonly from: AccountId32;214      readonly to: AccountId32;215      readonly amount: u128;216    } & Struct;217    readonly isBalanceSet: boolean;218    readonly asBalanceSet: {219      readonly who: AccountId32;220      readonly free: u128;221      readonly reserved: u128;222    } & Struct;223    readonly isReserved: boolean;224    readonly asReserved: {225      readonly who: AccountId32;226      readonly amount: u128;227    } & Struct;228    readonly isUnreserved: boolean;229    readonly asUnreserved: {230      readonly who: AccountId32;231      readonly amount: u128;232    } & Struct;233    readonly isReserveRepatriated: boolean;234    readonly asReserveRepatriated: {235      readonly from: AccountId32;236      readonly to: AccountId32;237      readonly amount: u128;238      readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239    } & Struct;240    readonly isDeposit: boolean;241    readonly asDeposit: {242      readonly who: AccountId32;243      readonly amount: u128;244    } & Struct;245    readonly isWithdraw: boolean;246    readonly asWithdraw: {247      readonly who: AccountId32;248      readonly amount: u128;249    } & Struct;250    readonly isSlashed: boolean;251    readonly asSlashed: {252      readonly who: AccountId32;253      readonly amount: u128;254    } & Struct;255    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256  }257258  /** @name FrameSupportTokensMiscBalanceStatus (31) */259  interface FrameSupportTokensMiscBalanceStatus extends Enum {260    readonly isFree: boolean;261    readonly isReserved: boolean;262    readonly type: 'Free' | 'Reserved';263  }264265  /** @name PalletTransactionPaymentEvent (32) */266  interface PalletTransactionPaymentEvent extends Enum {267    readonly isTransactionFeePaid: boolean;268    readonly asTransactionFeePaid: {269      readonly who: AccountId32;270      readonly actualFee: u128;271      readonly tip: u128;272    } & Struct;273    readonly type: 'TransactionFeePaid';274  }275276  /** @name PalletTreasuryEvent (33) */277  interface PalletTreasuryEvent extends Enum {278    readonly isProposed: boolean;279    readonly asProposed: {280      readonly proposalIndex: u32;281    } & Struct;282    readonly isSpending: boolean;283    readonly asSpending: {284      readonly budgetRemaining: u128;285    } & Struct;286    readonly isAwarded: boolean;287    readonly asAwarded: {288      readonly proposalIndex: u32;289      readonly award: u128;290      readonly account: AccountId32;291    } & Struct;292    readonly isRejected: boolean;293    readonly asRejected: {294      readonly proposalIndex: u32;295      readonly slashed: u128;296    } & Struct;297    readonly isBurnt: boolean;298    readonly asBurnt: {299      readonly burntFunds: u128;300    } & Struct;301    readonly isRollover: boolean;302    readonly asRollover: {303      readonly rolloverBalance: u128;304    } & Struct;305    readonly isDeposit: boolean;306    readonly asDeposit: {307      readonly value: u128;308    } & Struct;309    readonly isSpendApproved: boolean;310    readonly asSpendApproved: {311      readonly proposalIndex: u32;312      readonly amount: u128;313      readonly beneficiary: AccountId32;314    } & Struct;315    readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316  }317318  /** @name PalletSudoEvent (34) */319  interface PalletSudoEvent extends Enum {320    readonly isSudid: boolean;321    readonly asSudid: {322      readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323    } & Struct;324    readonly isKeyChanged: boolean;325    readonly asKeyChanged: {326      readonly oldSudoer: Option<AccountId32>;327    } & Struct;328    readonly isSudoAsDone: boolean;329    readonly asSudoAsDone: {330      readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331    } & Struct;332    readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333  }334335  /** @name OrmlVestingModuleEvent (38) */336  interface OrmlVestingModuleEvent extends Enum {337    readonly isVestingScheduleAdded: boolean;338    readonly asVestingScheduleAdded: {339      readonly from: AccountId32;340      readonly to: AccountId32;341      readonly vestingSchedule: OrmlVestingVestingSchedule;342    } & Struct;343    readonly isClaimed: boolean;344    readonly asClaimed: {345      readonly who: AccountId32;346      readonly amount: u128;347    } & Struct;348    readonly isVestingSchedulesUpdated: boolean;349    readonly asVestingSchedulesUpdated: {350      readonly who: AccountId32;351    } & Struct;352    readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353  }354355  /** @name OrmlVestingVestingSchedule (39) */356  interface OrmlVestingVestingSchedule extends Struct {357    readonly start: u32;358    readonly period: u32;359    readonly periodCount: u32;360    readonly perPeriod: Compact<u128>;361  }362363  /** @name OrmlXtokensModuleEvent (41) */364  interface OrmlXtokensModuleEvent extends Enum {365    readonly isTransferredMultiAssets: boolean;366    readonly asTransferredMultiAssets: {367      readonly sender: AccountId32;368      readonly assets: XcmV1MultiassetMultiAssets;369      readonly fee: XcmV1MultiAsset;370      readonly dest: XcmV1MultiLocation;371    } & Struct;372    readonly type: 'TransferredMultiAssets';373  }374375  /** @name XcmV1MultiassetMultiAssets (42) */376  interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378  /** @name XcmV1MultiAsset (44) */379  interface XcmV1MultiAsset extends Struct {380    readonly id: XcmV1MultiassetAssetId;381    readonly fun: XcmV1MultiassetFungibility;382  }383384  /** @name XcmV1MultiassetAssetId (45) */385  interface XcmV1MultiassetAssetId extends Enum {386    readonly isConcrete: boolean;387    readonly asConcrete: XcmV1MultiLocation;388    readonly isAbstract: boolean;389    readonly asAbstract: Bytes;390    readonly type: 'Concrete' | 'Abstract';391  }392393  /** @name XcmV1MultiLocation (46) */394  interface XcmV1MultiLocation extends Struct {395    readonly parents: u8;396    readonly interior: XcmV1MultilocationJunctions;397  }398399  /** @name XcmV1MultilocationJunctions (47) */400  interface XcmV1MultilocationJunctions extends Enum {401    readonly isHere: boolean;402    readonly isX1: boolean;403    readonly asX1: XcmV1Junction;404    readonly isX2: boolean;405    readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406    readonly isX3: boolean;407    readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408    readonly isX4: boolean;409    readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410    readonly isX5: boolean;411    readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412    readonly isX6: boolean;413    readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414    readonly isX7: boolean;415    readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416    readonly isX8: boolean;417    readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418    readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419  }420421  /** @name XcmV1Junction (48) */422  interface XcmV1Junction extends Enum {423    readonly isParachain: boolean;424    readonly asParachain: Compact<u32>;425    readonly isAccountId32: boolean;426    readonly asAccountId32: {427      readonly network: XcmV0JunctionNetworkId;428      readonly id: U8aFixed;429    } & Struct;430    readonly isAccountIndex64: boolean;431    readonly asAccountIndex64: {432      readonly network: XcmV0JunctionNetworkId;433      readonly index: Compact<u64>;434    } & Struct;435    readonly isAccountKey20: boolean;436    readonly asAccountKey20: {437      readonly network: XcmV0JunctionNetworkId;438      readonly key: U8aFixed;439    } & Struct;440    readonly isPalletInstance: boolean;441    readonly asPalletInstance: u8;442    readonly isGeneralIndex: boolean;443    readonly asGeneralIndex: Compact<u128>;444    readonly isGeneralKey: boolean;445    readonly asGeneralKey: Bytes;446    readonly isOnlyChild: boolean;447    readonly isPlurality: boolean;448    readonly asPlurality: {449      readonly id: XcmV0JunctionBodyId;450      readonly part: XcmV0JunctionBodyPart;451    } & Struct;452    readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453  }454455  /** @name XcmV0JunctionNetworkId (50) */456  interface XcmV0JunctionNetworkId extends Enum {457    readonly isAny: boolean;458    readonly isNamed: boolean;459    readonly asNamed: Bytes;460    readonly isPolkadot: boolean;461    readonly isKusama: boolean;462    readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463  }464465  /** @name XcmV0JunctionBodyId (53) */466  interface XcmV0JunctionBodyId extends Enum {467    readonly isUnit: boolean;468    readonly isNamed: boolean;469    readonly asNamed: Bytes;470    readonly isIndex: boolean;471    readonly asIndex: Compact<u32>;472    readonly isExecutive: boolean;473    readonly isTechnical: boolean;474    readonly isLegislative: boolean;475    readonly isJudicial: boolean;476    readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477  }478479  /** @name XcmV0JunctionBodyPart (54) */480  interface XcmV0JunctionBodyPart extends Enum {481    readonly isVoice: boolean;482    readonly isMembers: boolean;483    readonly asMembers: {484      readonly count: Compact<u32>;485    } & Struct;486    readonly isFraction: boolean;487    readonly asFraction: {488      readonly nom: Compact<u32>;489      readonly denom: Compact<u32>;490    } & Struct;491    readonly isAtLeastProportion: boolean;492    readonly asAtLeastProportion: {493      readonly nom: Compact<u32>;494      readonly denom: Compact<u32>;495    } & Struct;496    readonly isMoreThanProportion: boolean;497    readonly asMoreThanProportion: {498      readonly nom: Compact<u32>;499      readonly denom: Compact<u32>;500    } & Struct;501    readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502  }503504  /** @name XcmV1MultiassetFungibility (55) */505  interface XcmV1MultiassetFungibility extends Enum {506    readonly isFungible: boolean;507    readonly asFungible: Compact<u128>;508    readonly isNonFungible: boolean;509    readonly asNonFungible: XcmV1MultiassetAssetInstance;510    readonly type: 'Fungible' | 'NonFungible';511  }512513  /** @name XcmV1MultiassetAssetInstance (56) */514  interface XcmV1MultiassetAssetInstance extends Enum {515    readonly isUndefined: boolean;516    readonly isIndex: boolean;517    readonly asIndex: Compact<u128>;518    readonly isArray4: boolean;519    readonly asArray4: U8aFixed;520    readonly isArray8: boolean;521    readonly asArray8: U8aFixed;522    readonly isArray16: boolean;523    readonly asArray16: U8aFixed;524    readonly isArray32: boolean;525    readonly asArray32: U8aFixed;526    readonly isBlob: boolean;527    readonly asBlob: Bytes;528    readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529  }530531  /** @name OrmlTokensModuleEvent (59) */532  interface OrmlTokensModuleEvent extends Enum {533    readonly isEndowed: boolean;534    readonly asEndowed: {535      readonly currencyId: PalletForeignAssetsAssetIds;536      readonly who: AccountId32;537      readonly amount: u128;538    } & Struct;539    readonly isDustLost: boolean;540    readonly asDustLost: {541      readonly currencyId: PalletForeignAssetsAssetIds;542      readonly who: AccountId32;543      readonly amount: u128;544    } & Struct;545    readonly isTransfer: boolean;546    readonly asTransfer: {547      readonly currencyId: PalletForeignAssetsAssetIds;548      readonly from: AccountId32;549      readonly to: AccountId32;550      readonly amount: u128;551    } & Struct;552    readonly isReserved: boolean;553    readonly asReserved: {554      readonly currencyId: PalletForeignAssetsAssetIds;555      readonly who: AccountId32;556      readonly amount: u128;557    } & Struct;558    readonly isUnreserved: boolean;559    readonly asUnreserved: {560      readonly currencyId: PalletForeignAssetsAssetIds;561      readonly who: AccountId32;562      readonly amount: u128;563    } & Struct;564    readonly isReserveRepatriated: boolean;565    readonly asReserveRepatriated: {566      readonly currencyId: PalletForeignAssetsAssetIds;567      readonly from: AccountId32;568      readonly to: AccountId32;569      readonly amount: u128;570      readonly status: FrameSupportTokensMiscBalanceStatus;571    } & Struct;572    readonly isBalanceSet: boolean;573    readonly asBalanceSet: {574      readonly currencyId: PalletForeignAssetsAssetIds;575      readonly who: AccountId32;576      readonly free: u128;577      readonly reserved: u128;578    } & Struct;579    readonly isTotalIssuanceSet: boolean;580    readonly asTotalIssuanceSet: {581      readonly currencyId: PalletForeignAssetsAssetIds;582      readonly amount: u128;583    } & Struct;584    readonly isWithdrawn: boolean;585    readonly asWithdrawn: {586      readonly currencyId: PalletForeignAssetsAssetIds;587      readonly who: AccountId32;588      readonly amount: u128;589    } & Struct;590    readonly isSlashed: boolean;591    readonly asSlashed: {592      readonly currencyId: PalletForeignAssetsAssetIds;593      readonly who: AccountId32;594      readonly freeAmount: u128;595      readonly reservedAmount: u128;596    } & Struct;597    readonly isDeposited: boolean;598    readonly asDeposited: {599      readonly currencyId: PalletForeignAssetsAssetIds;600      readonly who: AccountId32;601      readonly amount: u128;602    } & Struct;603    readonly isLockSet: boolean;604    readonly asLockSet: {605      readonly lockId: U8aFixed;606      readonly currencyId: PalletForeignAssetsAssetIds;607      readonly who: AccountId32;608      readonly amount: u128;609    } & Struct;610    readonly isLockRemoved: boolean;611    readonly asLockRemoved: {612      readonly lockId: U8aFixed;613      readonly currencyId: PalletForeignAssetsAssetIds;614      readonly who: AccountId32;615    } & Struct;616    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617  }618619  /** @name PalletForeignAssetsAssetIds (60) */620  interface PalletForeignAssetsAssetIds extends Enum {621    readonly isForeignAssetId: boolean;622    readonly asForeignAssetId: u32;623    readonly isNativeAssetId: boolean;624    readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625    readonly type: 'ForeignAssetId' | 'NativeAssetId';626  }627628  /** @name PalletForeignAssetsNativeCurrency (61) */629  interface PalletForeignAssetsNativeCurrency extends Enum {630    readonly isHere: boolean;631    readonly isParent: boolean;632    readonly type: 'Here' | 'Parent';633  }634635  /** @name CumulusPalletXcmpQueueEvent (62) */636  interface CumulusPalletXcmpQueueEvent extends Enum {637    readonly isSuccess: boolean;638    readonly asSuccess: {639      readonly messageHash: Option<H256>;640      readonly weight: SpWeightsWeightV2Weight;641    } & Struct;642    readonly isFail: boolean;643    readonly asFail: {644      readonly messageHash: Option<H256>;645      readonly error: XcmV2TraitsError;646      readonly weight: SpWeightsWeightV2Weight;647    } & Struct;648    readonly isBadVersion: boolean;649    readonly asBadVersion: {650      readonly messageHash: Option<H256>;651    } & Struct;652    readonly isBadFormat: boolean;653    readonly asBadFormat: {654      readonly messageHash: Option<H256>;655    } & Struct;656    readonly isUpwardMessageSent: boolean;657    readonly asUpwardMessageSent: {658      readonly messageHash: Option<H256>;659    } & Struct;660    readonly isXcmpMessageSent: boolean;661    readonly asXcmpMessageSent: {662      readonly messageHash: Option<H256>;663    } & Struct;664    readonly isOverweightEnqueued: boolean;665    readonly asOverweightEnqueued: {666      readonly sender: u32;667      readonly sentAt: u32;668      readonly index: u64;669      readonly required: SpWeightsWeightV2Weight;670    } & Struct;671    readonly isOverweightServiced: boolean;672    readonly asOverweightServiced: {673      readonly index: u64;674      readonly used: SpWeightsWeightV2Weight;675    } & Struct;676    readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677  }678679  /** @name XcmV2TraitsError (64) */680  interface XcmV2TraitsError extends Enum {681    readonly isOverflow: boolean;682    readonly isUnimplemented: boolean;683    readonly isUntrustedReserveLocation: boolean;684    readonly isUntrustedTeleportLocation: boolean;685    readonly isMultiLocationFull: boolean;686    readonly isMultiLocationNotInvertible: boolean;687    readonly isBadOrigin: boolean;688    readonly isInvalidLocation: boolean;689    readonly isAssetNotFound: boolean;690    readonly isFailedToTransactAsset: boolean;691    readonly isNotWithdrawable: boolean;692    readonly isLocationCannotHold: boolean;693    readonly isExceedsMaxMessageSize: boolean;694    readonly isDestinationUnsupported: boolean;695    readonly isTransport: boolean;696    readonly isUnroutable: boolean;697    readonly isUnknownClaim: boolean;698    readonly isFailedToDecode: boolean;699    readonly isMaxWeightInvalid: boolean;700    readonly isNotHoldingFees: boolean;701    readonly isTooExpensive: boolean;702    readonly isTrap: boolean;703    readonly asTrap: u64;704    readonly isUnhandledXcmVersion: boolean;705    readonly isWeightLimitReached: boolean;706    readonly asWeightLimitReached: u64;707    readonly isBarrier: boolean;708    readonly isWeightNotComputable: boolean;709    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';710  }711712  /** @name PalletXcmEvent (66) */713  interface PalletXcmEvent extends Enum {714    readonly isAttempted: boolean;715    readonly asAttempted: XcmV2TraitsOutcome;716    readonly isSent: boolean;717    readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718    readonly isUnexpectedResponse: boolean;719    readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720    readonly isResponseReady: boolean;721    readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722    readonly isNotified: boolean;723    readonly asNotified: ITuple<[u64, u8, u8]>;724    readonly isNotifyOverweight: boolean;725    readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726    readonly isNotifyDispatchError: boolean;727    readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728    readonly isNotifyDecodeFailed: boolean;729    readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730    readonly isInvalidResponder: boolean;731    readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732    readonly isInvalidResponderVersion: boolean;733    readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734    readonly isResponseTaken: boolean;735    readonly asResponseTaken: u64;736    readonly isAssetsTrapped: boolean;737    readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738    readonly isVersionChangeNotified: boolean;739    readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740    readonly isSupportedVersionChanged: boolean;741    readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742    readonly isNotifyTargetSendFail: boolean;743    readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744    readonly isNotifyTargetMigrationFail: boolean;745    readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746    readonly isAssetsClaimed: boolean;747    readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748    readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749  }750751  /** @name XcmV2TraitsOutcome (67) */752  interface XcmV2TraitsOutcome extends Enum {753    readonly isComplete: boolean;754    readonly asComplete: u64;755    readonly isIncomplete: boolean;756    readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757    readonly isError: boolean;758    readonly asError: XcmV2TraitsError;759    readonly type: 'Complete' | 'Incomplete' | 'Error';760  }761762  /** @name XcmV2Xcm (68) */763  interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765  /** @name XcmV2Instruction (70) */766  interface XcmV2Instruction extends Enum {767    readonly isWithdrawAsset: boolean;768    readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769    readonly isReserveAssetDeposited: boolean;770    readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771    readonly isReceiveTeleportedAsset: boolean;772    readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773    readonly isQueryResponse: boolean;774    readonly asQueryResponse: {775      readonly queryId: Compact<u64>;776      readonly response: XcmV2Response;777      readonly maxWeight: Compact<u64>;778    } & Struct;779    readonly isTransferAsset: boolean;780    readonly asTransferAsset: {781      readonly assets: XcmV1MultiassetMultiAssets;782      readonly beneficiary: XcmV1MultiLocation;783    } & Struct;784    readonly isTransferReserveAsset: boolean;785    readonly asTransferReserveAsset: {786      readonly assets: XcmV1MultiassetMultiAssets;787      readonly dest: XcmV1MultiLocation;788      readonly xcm: XcmV2Xcm;789    } & Struct;790    readonly isTransact: boolean;791    readonly asTransact: {792      readonly originType: XcmV0OriginKind;793      readonly requireWeightAtMost: Compact<u64>;794      readonly call: XcmDoubleEncoded;795    } & Struct;796    readonly isHrmpNewChannelOpenRequest: boolean;797    readonly asHrmpNewChannelOpenRequest: {798      readonly sender: Compact<u32>;799      readonly maxMessageSize: Compact<u32>;800      readonly maxCapacity: Compact<u32>;801    } & Struct;802    readonly isHrmpChannelAccepted: boolean;803    readonly asHrmpChannelAccepted: {804      readonly recipient: Compact<u32>;805    } & Struct;806    readonly isHrmpChannelClosing: boolean;807    readonly asHrmpChannelClosing: {808      readonly initiator: Compact<u32>;809      readonly sender: Compact<u32>;810      readonly recipient: Compact<u32>;811    } & Struct;812    readonly isClearOrigin: boolean;813    readonly isDescendOrigin: boolean;814    readonly asDescendOrigin: XcmV1MultilocationJunctions;815    readonly isReportError: boolean;816    readonly asReportError: {817      readonly queryId: Compact<u64>;818      readonly dest: XcmV1MultiLocation;819      readonly maxResponseWeight: Compact<u64>;820    } & Struct;821    readonly isDepositAsset: boolean;822    readonly asDepositAsset: {823      readonly assets: XcmV1MultiassetMultiAssetFilter;824      readonly maxAssets: Compact<u32>;825      readonly beneficiary: XcmV1MultiLocation;826    } & Struct;827    readonly isDepositReserveAsset: boolean;828    readonly asDepositReserveAsset: {829      readonly assets: XcmV1MultiassetMultiAssetFilter;830      readonly maxAssets: Compact<u32>;831      readonly dest: XcmV1MultiLocation;832      readonly xcm: XcmV2Xcm;833    } & Struct;834    readonly isExchangeAsset: boolean;835    readonly asExchangeAsset: {836      readonly give: XcmV1MultiassetMultiAssetFilter;837      readonly receive: XcmV1MultiassetMultiAssets;838    } & Struct;839    readonly isInitiateReserveWithdraw: boolean;840    readonly asInitiateReserveWithdraw: {841      readonly assets: XcmV1MultiassetMultiAssetFilter;842      readonly reserve: XcmV1MultiLocation;843      readonly xcm: XcmV2Xcm;844    } & Struct;845    readonly isInitiateTeleport: boolean;846    readonly asInitiateTeleport: {847      readonly assets: XcmV1MultiassetMultiAssetFilter;848      readonly dest: XcmV1MultiLocation;849      readonly xcm: XcmV2Xcm;850    } & Struct;851    readonly isQueryHolding: boolean;852    readonly asQueryHolding: {853      readonly queryId: Compact<u64>;854      readonly dest: XcmV1MultiLocation;855      readonly assets: XcmV1MultiassetMultiAssetFilter;856      readonly maxResponseWeight: Compact<u64>;857    } & Struct;858    readonly isBuyExecution: boolean;859    readonly asBuyExecution: {860      readonly fees: XcmV1MultiAsset;861      readonly weightLimit: XcmV2WeightLimit;862    } & Struct;863    readonly isRefundSurplus: boolean;864    readonly isSetErrorHandler: boolean;865    readonly asSetErrorHandler: XcmV2Xcm;866    readonly isSetAppendix: boolean;867    readonly asSetAppendix: XcmV2Xcm;868    readonly isClearError: boolean;869    readonly isClaimAsset: boolean;870    readonly asClaimAsset: {871      readonly assets: XcmV1MultiassetMultiAssets;872      readonly ticket: XcmV1MultiLocation;873    } & Struct;874    readonly isTrap: boolean;875    readonly asTrap: Compact<u64>;876    readonly isSubscribeVersion: boolean;877    readonly asSubscribeVersion: {878      readonly queryId: Compact<u64>;879      readonly maxResponseWeight: Compact<u64>;880    } & Struct;881    readonly isUnsubscribeVersion: boolean;882    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';883  }884885  /** @name XcmV2Response (71) */886  interface XcmV2Response extends Enum {887    readonly isNull: boolean;888    readonly isAssets: boolean;889    readonly asAssets: XcmV1MultiassetMultiAssets;890    readonly isExecutionResult: boolean;891    readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892    readonly isVersion: boolean;893    readonly asVersion: u32;894    readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895  }896897  /** @name XcmV0OriginKind (74) */898  interface XcmV0OriginKind extends Enum {899    readonly isNative: boolean;900    readonly isSovereignAccount: boolean;901    readonly isSuperuser: boolean;902    readonly isXcm: boolean;903    readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904  }905906  /** @name XcmDoubleEncoded (75) */907  interface XcmDoubleEncoded extends Struct {908    readonly encoded: Bytes;909  }910911  /** @name XcmV1MultiassetMultiAssetFilter (76) */912  interface XcmV1MultiassetMultiAssetFilter extends Enum {913    readonly isDefinite: boolean;914    readonly asDefinite: XcmV1MultiassetMultiAssets;915    readonly isWild: boolean;916    readonly asWild: XcmV1MultiassetWildMultiAsset;917    readonly type: 'Definite' | 'Wild';918  }919920  /** @name XcmV1MultiassetWildMultiAsset (77) */921  interface XcmV1MultiassetWildMultiAsset extends Enum {922    readonly isAll: boolean;923    readonly isAllOf: boolean;924    readonly asAllOf: {925      readonly id: XcmV1MultiassetAssetId;926      readonly fun: XcmV1MultiassetWildFungibility;927    } & Struct;928    readonly type: 'All' | 'AllOf';929  }930931  /** @name XcmV1MultiassetWildFungibility (78) */932  interface XcmV1MultiassetWildFungibility extends Enum {933    readonly isFungible: boolean;934    readonly isNonFungible: boolean;935    readonly type: 'Fungible' | 'NonFungible';936  }937938  /** @name XcmV2WeightLimit (79) */939  interface XcmV2WeightLimit extends Enum {940    readonly isUnlimited: boolean;941    readonly isLimited: boolean;942    readonly asLimited: Compact<u64>;943    readonly type: 'Unlimited' | 'Limited';944  }945946  /** @name XcmVersionedMultiAssets (81) */947  interface XcmVersionedMultiAssets extends Enum {948    readonly isV0: boolean;949    readonly asV0: Vec<XcmV0MultiAsset>;950    readonly isV1: boolean;951    readonly asV1: XcmV1MultiassetMultiAssets;952    readonly type: 'V0' | 'V1';953  }954955  /** @name XcmV0MultiAsset (83) */956  interface XcmV0MultiAsset extends Enum {957    readonly isNone: boolean;958    readonly isAll: boolean;959    readonly isAllFungible: boolean;960    readonly isAllNonFungible: boolean;961    readonly isAllAbstractFungible: boolean;962    readonly asAllAbstractFungible: {963      readonly id: Bytes;964    } & Struct;965    readonly isAllAbstractNonFungible: boolean;966    readonly asAllAbstractNonFungible: {967      readonly class: Bytes;968    } & Struct;969    readonly isAllConcreteFungible: boolean;970    readonly asAllConcreteFungible: {971      readonly id: XcmV0MultiLocation;972    } & Struct;973    readonly isAllConcreteNonFungible: boolean;974    readonly asAllConcreteNonFungible: {975      readonly class: XcmV0MultiLocation;976    } & Struct;977    readonly isAbstractFungible: boolean;978    readonly asAbstractFungible: {979      readonly id: Bytes;980      readonly amount: Compact<u128>;981    } & Struct;982    readonly isAbstractNonFungible: boolean;983    readonly asAbstractNonFungible: {984      readonly class: Bytes;985      readonly instance: XcmV1MultiassetAssetInstance;986    } & Struct;987    readonly isConcreteFungible: boolean;988    readonly asConcreteFungible: {989      readonly id: XcmV0MultiLocation;990      readonly amount: Compact<u128>;991    } & Struct;992    readonly isConcreteNonFungible: boolean;993    readonly asConcreteNonFungible: {994      readonly class: XcmV0MultiLocation;995      readonly instance: XcmV1MultiassetAssetInstance;996    } & Struct;997    readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998  }9991000  /** @name XcmV0MultiLocation (84) */1001  interface XcmV0MultiLocation extends Enum {1002    readonly isNull: boolean;1003    readonly isX1: boolean;1004    readonly asX1: XcmV0Junction;1005    readonly isX2: boolean;1006    readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007    readonly isX3: boolean;1008    readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009    readonly isX4: boolean;1010    readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011    readonly isX5: boolean;1012    readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013    readonly isX6: boolean;1014    readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015    readonly isX7: boolean;1016    readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017    readonly isX8: boolean;1018    readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019    readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020  }10211022  /** @name XcmV0Junction (85) */1023  interface XcmV0Junction extends Enum {1024    readonly isParent: boolean;1025    readonly isParachain: boolean;1026    readonly asParachain: Compact<u32>;1027    readonly isAccountId32: boolean;1028    readonly asAccountId32: {1029      readonly network: XcmV0JunctionNetworkId;1030      readonly id: U8aFixed;1031    } & Struct;1032    readonly isAccountIndex64: boolean;1033    readonly asAccountIndex64: {1034      readonly network: XcmV0JunctionNetworkId;1035      readonly index: Compact<u64>;1036    } & Struct;1037    readonly isAccountKey20: boolean;1038    readonly asAccountKey20: {1039      readonly network: XcmV0JunctionNetworkId;1040      readonly key: U8aFixed;1041    } & Struct;1042    readonly isPalletInstance: boolean;1043    readonly asPalletInstance: u8;1044    readonly isGeneralIndex: boolean;1045    readonly asGeneralIndex: Compact<u128>;1046    readonly isGeneralKey: boolean;1047    readonly asGeneralKey: Bytes;1048    readonly isOnlyChild: boolean;1049    readonly isPlurality: boolean;1050    readonly asPlurality: {1051      readonly id: XcmV0JunctionBodyId;1052      readonly part: XcmV0JunctionBodyPart;1053    } & Struct;1054    readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055  }10561057  /** @name XcmVersionedMultiLocation (86) */1058  interface XcmVersionedMultiLocation extends Enum {1059    readonly isV0: boolean;1060    readonly asV0: XcmV0MultiLocation;1061    readonly isV1: boolean;1062    readonly asV1: XcmV1MultiLocation;1063    readonly type: 'V0' | 'V1';1064  }10651066  /** @name CumulusPalletXcmEvent (87) */1067  interface CumulusPalletXcmEvent extends Enum {1068    readonly isInvalidFormat: boolean;1069    readonly asInvalidFormat: U8aFixed;1070    readonly isUnsupportedVersion: boolean;1071    readonly asUnsupportedVersion: U8aFixed;1072    readonly isExecutedDownward: boolean;1073    readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075  }10761077  /** @name CumulusPalletDmpQueueEvent (88) */1078  interface CumulusPalletDmpQueueEvent extends Enum {1079    readonly isInvalidFormat: boolean;1080    readonly asInvalidFormat: {1081      readonly messageId: U8aFixed;1082    } & Struct;1083    readonly isUnsupportedVersion: boolean;1084    readonly asUnsupportedVersion: {1085      readonly messageId: U8aFixed;1086    } & Struct;1087    readonly isExecutedDownward: boolean;1088    readonly asExecutedDownward: {1089      readonly messageId: U8aFixed;1090      readonly outcome: XcmV2TraitsOutcome;1091    } & Struct;1092    readonly isWeightExhausted: boolean;1093    readonly asWeightExhausted: {1094      readonly messageId: U8aFixed;1095      readonly remainingWeight: SpWeightsWeightV2Weight;1096      readonly requiredWeight: SpWeightsWeightV2Weight;1097    } & Struct;1098    readonly isOverweightEnqueued: boolean;1099    readonly asOverweightEnqueued: {1100      readonly messageId: U8aFixed;1101      readonly overweightIndex: u64;1102      readonly requiredWeight: SpWeightsWeightV2Weight;1103    } & Struct;1104    readonly isOverweightServiced: boolean;1105    readonly asOverweightServiced: {1106      readonly overweightIndex: u64;1107      readonly weightUsed: SpWeightsWeightV2Weight;1108    } & Struct;1109    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110  }11111112  /** @name PalletConfigurationEvent (89) */1113  interface PalletConfigurationEvent extends Enum {1114    readonly isNewDesiredCollators: boolean;1115    readonly asNewDesiredCollators: {1116      readonly desiredCollators: Option<u32>;1117    } & Struct;1118    readonly isNewCollatorLicenseBond: boolean;1119    readonly asNewCollatorLicenseBond: {1120      readonly bondCost: Option<u128>;1121    } & Struct;1122    readonly isNewCollatorKickThreshold: boolean;1123    readonly asNewCollatorKickThreshold: {1124      readonly lengthInBlocks: Option<u32>;1125    } & Struct;1126    readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1127  }11281129  /** @name PalletCommonEvent (92) */1130  interface PalletCommonEvent extends Enum {1131    readonly isCollectionCreated: boolean;1132    readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1133    readonly isCollectionDestroyed: boolean;1134    readonly asCollectionDestroyed: u32;1135    readonly isItemCreated: boolean;1136    readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1137    readonly isItemDestroyed: boolean;1138    readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1139    readonly isTransfer: boolean;1140    readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1141    readonly isApproved: boolean;1142    readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1143    readonly isApprovedForAll: boolean;1144    readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1145    readonly isCollectionPropertySet: boolean;1146    readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1147    readonly isCollectionPropertyDeleted: boolean;1148    readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1149    readonly isTokenPropertySet: boolean;1150    readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1151    readonly isTokenPropertyDeleted: boolean;1152    readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1153    readonly isPropertyPermissionSet: boolean;1154    readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1155    readonly isAllowListAddressAdded: boolean;1156    readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1157    readonly isAllowListAddressRemoved: boolean;1158    readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1159    readonly isCollectionAdminAdded: boolean;1160    readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1161    readonly isCollectionAdminRemoved: boolean;1162    readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1163    readonly isCollectionLimitSet: boolean;1164    readonly asCollectionLimitSet: u32;1165    readonly isCollectionOwnerChanged: boolean;1166    readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1167    readonly isCollectionPermissionSet: boolean;1168    readonly asCollectionPermissionSet: u32;1169    readonly isCollectionSponsorSet: boolean;1170    readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1171    readonly isSponsorshipConfirmed: boolean;1172    readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1173    readonly isCollectionSponsorRemoved: boolean;1174    readonly asCollectionSponsorRemoved: u32;1175    readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1176  }11771178  /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */1179  interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1180    readonly isSubstrate: boolean;1181    readonly asSubstrate: AccountId32;1182    readonly isEthereum: boolean;1183    readonly asEthereum: H160;1184    readonly type: 'Substrate' | 'Ethereum';1185  }11861187  /** @name PalletStructureEvent (99) */1188  interface PalletStructureEvent extends Enum {1189    readonly isExecuted: boolean;1190    readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1191    readonly type: 'Executed';1192  }11931194  /** @name PalletRmrkCoreEvent (100) */1195  interface PalletRmrkCoreEvent extends Enum {1196    readonly isCollectionCreated: boolean;1197    readonly asCollectionCreated: {1198      readonly issuer: AccountId32;1199      readonly collectionId: u32;1200    } & Struct;1201    readonly isCollectionDestroyed: boolean;1202    readonly asCollectionDestroyed: {1203      readonly issuer: AccountId32;1204      readonly collectionId: u32;1205    } & Struct;1206    readonly isIssuerChanged: boolean;1207    readonly asIssuerChanged: {1208      readonly oldIssuer: AccountId32;1209      readonly newIssuer: AccountId32;1210      readonly collectionId: u32;1211    } & Struct;1212    readonly isCollectionLocked: boolean;1213    readonly asCollectionLocked: {1214      readonly issuer: AccountId32;1215      readonly collectionId: u32;1216    } & Struct;1217    readonly isNftMinted: boolean;1218    readonly asNftMinted: {1219      readonly owner: AccountId32;1220      readonly collectionId: u32;1221      readonly nftId: u32;1222    } & Struct;1223    readonly isNftBurned: boolean;1224    readonly asNftBurned: {1225      readonly owner: AccountId32;1226      readonly nftId: u32;1227    } & Struct;1228    readonly isNftSent: boolean;1229    readonly asNftSent: {1230      readonly sender: AccountId32;1231      readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1232      readonly collectionId: u32;1233      readonly nftId: u32;1234      readonly approvalRequired: bool;1235    } & Struct;1236    readonly isNftAccepted: boolean;1237    readonly asNftAccepted: {1238      readonly sender: AccountId32;1239      readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1240      readonly collectionId: u32;1241      readonly nftId: u32;1242    } & Struct;1243    readonly isNftRejected: boolean;1244    readonly asNftRejected: {1245      readonly sender: AccountId32;1246      readonly collectionId: u32;1247      readonly nftId: u32;1248    } & Struct;1249    readonly isPropertySet: boolean;1250    readonly asPropertySet: {1251      readonly collectionId: u32;1252      readonly maybeNftId: Option<u32>;1253      readonly key: Bytes;1254      readonly value: Bytes;1255    } & Struct;1256    readonly isResourceAdded: boolean;1257    readonly asResourceAdded: {1258      readonly nftId: u32;1259      readonly resourceId: u32;1260    } & Struct;1261    readonly isResourceRemoval: boolean;1262    readonly asResourceRemoval: {1263      readonly nftId: u32;1264      readonly resourceId: u32;1265    } & Struct;1266    readonly isResourceAccepted: boolean;1267    readonly asResourceAccepted: {1268      readonly nftId: u32;1269      readonly resourceId: u32;1270    } & Struct;1271    readonly isResourceRemovalAccepted: boolean;1272    readonly asResourceRemovalAccepted: {1273      readonly nftId: u32;1274      readonly resourceId: u32;1275    } & Struct;1276    readonly isPrioritySet: boolean;1277    readonly asPrioritySet: {1278      readonly collectionId: u32;1279      readonly nftId: u32;1280    } & Struct;1281    readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1282  }12831284  /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1285  interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1286    readonly isAccountId: boolean;1287    readonly asAccountId: AccountId32;1288    readonly isCollectionAndNftTuple: boolean;1289    readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1290    readonly type: 'AccountId' | 'CollectionAndNftTuple';1291  }12921293  /** @name PalletRmrkEquipEvent (104) */1294  interface PalletRmrkEquipEvent extends Enum {1295    readonly isBaseCreated: boolean;1296    readonly asBaseCreated: {1297      readonly issuer: AccountId32;1298      readonly baseId: u32;1299    } & Struct;1300    readonly isEquippablesUpdated: boolean;1301    readonly asEquippablesUpdated: {1302      readonly baseId: u32;1303      readonly slotId: u32;1304    } & Struct;1305    readonly type: 'BaseCreated' | 'EquippablesUpdated';1306  }13071308  /** @name PalletAppPromotionEvent (105) */1309  interface PalletAppPromotionEvent extends Enum {1310    readonly isStakingRecalculation: boolean;1311    readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1312    readonly isStake: boolean;1313    readonly asStake: ITuple<[AccountId32, u128]>;1314    readonly isUnstake: boolean;1315    readonly asUnstake: ITuple<[AccountId32, u128]>;1316    readonly isSetAdmin: boolean;1317    readonly asSetAdmin: AccountId32;1318    readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1319  }13201321  /** @name PalletForeignAssetsModuleEvent (106) */1322  interface PalletForeignAssetsModuleEvent extends Enum {1323    readonly isForeignAssetRegistered: boolean;1324    readonly asForeignAssetRegistered: {1325      readonly assetId: u32;1326      readonly assetAddress: XcmV1MultiLocation;1327      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1328    } & Struct;1329    readonly isForeignAssetUpdated: boolean;1330    readonly asForeignAssetUpdated: {1331      readonly assetId: u32;1332      readonly assetAddress: XcmV1MultiLocation;1333      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1334    } & Struct;1335    readonly isAssetRegistered: boolean;1336    readonly asAssetRegistered: {1337      readonly assetId: PalletForeignAssetsAssetIds;1338      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1339    } & Struct;1340    readonly isAssetUpdated: boolean;1341    readonly asAssetUpdated: {1342      readonly assetId: PalletForeignAssetsAssetIds;1343      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1344    } & Struct;1345    readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1346  }13471348  /** @name PalletForeignAssetsModuleAssetMetadata (107) */1349  interface PalletForeignAssetsModuleAssetMetadata extends Struct {1350    readonly name: Bytes;1351    readonly symbol: Bytes;1352    readonly decimals: u8;1353    readonly minimalBalance: u128;1354  }13551356  /** @name PalletEvmEvent (108) */1357  interface PalletEvmEvent extends Enum {1358    readonly isLog: boolean;1359    readonly asLog: {1360      readonly log: EthereumLog;1361    } & Struct;1362    readonly isCreated: boolean;1363    readonly asCreated: {1364      readonly address: H160;1365    } & Struct;1366    readonly isCreatedFailed: boolean;1367    readonly asCreatedFailed: {1368      readonly address: H160;1369    } & Struct;1370    readonly isExecuted: boolean;1371    readonly asExecuted: {1372      readonly address: H160;1373    } & Struct;1374    readonly isExecutedFailed: boolean;1375    readonly asExecutedFailed: {1376      readonly address: H160;1377    } & Struct;1378    readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1379  }13801381  /** @name EthereumLog (109) */1382  interface EthereumLog extends Struct {1383    readonly address: H160;1384    readonly topics: Vec<H256>;1385    readonly data: Bytes;1386  }13871388  /** @name PalletEthereumEvent (111) */1389  interface PalletEthereumEvent extends Enum {1390    readonly isExecuted: boolean;1391    readonly asExecuted: {1392      readonly from: H160;1393      readonly to: H160;1394      readonly transactionHash: H256;1395      readonly exitReason: EvmCoreErrorExitReason;1396    } & Struct;1397    readonly type: 'Executed';1398  }13991400  /** @name EvmCoreErrorExitReason (112) */1401  interface EvmCoreErrorExitReason extends Enum {1402    readonly isSucceed: boolean;1403    readonly asSucceed: EvmCoreErrorExitSucceed;1404    readonly isError: boolean;1405    readonly asError: EvmCoreErrorExitError;1406    readonly isRevert: boolean;1407    readonly asRevert: EvmCoreErrorExitRevert;1408    readonly isFatal: boolean;1409    readonly asFatal: EvmCoreErrorExitFatal;1410    readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1411  }14121413  /** @name EvmCoreErrorExitSucceed (113) */1414  interface EvmCoreErrorExitSucceed extends Enum {1415    readonly isStopped: boolean;1416    readonly isReturned: boolean;1417    readonly isSuicided: boolean;1418    readonly type: 'Stopped' | 'Returned' | 'Suicided';1419  }14201421  /** @name EvmCoreErrorExitError (114) */1422  interface EvmCoreErrorExitError extends Enum {1423    readonly isStackUnderflow: boolean;1424    readonly isStackOverflow: boolean;1425    readonly isInvalidJump: boolean;1426    readonly isInvalidRange: boolean;1427    readonly isDesignatedInvalid: boolean;1428    readonly isCallTooDeep: boolean;1429    readonly isCreateCollision: boolean;1430    readonly isCreateContractLimit: boolean;1431    readonly isOutOfOffset: boolean;1432    readonly isOutOfGas: boolean;1433    readonly isOutOfFund: boolean;1434    readonly isPcUnderflow: boolean;1435    readonly isCreateEmpty: boolean;1436    readonly isOther: boolean;1437    readonly asOther: Text;1438    readonly isInvalidCode: boolean;1439    readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1440  }14411442  /** @name EvmCoreErrorExitRevert (117) */1443  interface EvmCoreErrorExitRevert extends Enum {1444    readonly isReverted: boolean;1445    readonly type: 'Reverted';1446  }14471448  /** @name EvmCoreErrorExitFatal (118) */1449  interface EvmCoreErrorExitFatal extends Enum {1450    readonly isNotSupported: boolean;1451    readonly isUnhandledInterrupt: boolean;1452    readonly isCallErrorAsFatal: boolean;1453    readonly asCallErrorAsFatal: EvmCoreErrorExitError;1454    readonly isOther: boolean;1455    readonly asOther: Text;1456    readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1457  }14581459  /** @name PalletEvmContractHelpersEvent (119) */1460  interface PalletEvmContractHelpersEvent extends Enum {1461    readonly isContractSponsorSet: boolean;1462    readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1463    readonly isContractSponsorshipConfirmed: boolean;1464    readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1465    readonly isContractSponsorRemoved: boolean;1466    readonly asContractSponsorRemoved: H160;1467    readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1468  }14691470  /** @name PalletEvmMigrationEvent (120) */1471  interface PalletEvmMigrationEvent extends Enum {1472    readonly isTestEvent: boolean;1473    readonly type: 'TestEvent';1474  }14751476  /** @name PalletMaintenanceEvent (121) */1477  interface PalletMaintenanceEvent extends Enum {1478    readonly isMaintenanceEnabled: boolean;1479    readonly isMaintenanceDisabled: boolean;1480    readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1481  }14821483  /** @name PalletTestUtilsEvent (122) */1484  interface PalletTestUtilsEvent extends Enum {1485    readonly isValueIsSet: boolean;1486    readonly isShouldRollback: boolean;1487    readonly isBatchCompleted: boolean;1488    readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1489  }14901491  /** @name FrameSystemPhase (123) */1492  interface FrameSystemPhase extends Enum {1493    readonly isApplyExtrinsic: boolean;1494    readonly asApplyExtrinsic: u32;1495    readonly isFinalization: boolean;1496    readonly isInitialization: boolean;1497    readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1498  }14991500  /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1501  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1502    readonly specVersion: Compact<u32>;1503    readonly specName: Text;1504  }15051506  /** @name FrameSystemCall (127) */1507  interface FrameSystemCall extends Enum {1508    readonly isRemark: boolean;1509    readonly asRemark: {1510      readonly remark: Bytes;1511    } & Struct;1512    readonly isSetHeapPages: boolean;1513    readonly asSetHeapPages: {1514      readonly pages: u64;1515    } & Struct;1516    readonly isSetCode: boolean;1517    readonly asSetCode: {1518      readonly code: Bytes;1519    } & Struct;1520    readonly isSetCodeWithoutChecks: boolean;1521    readonly asSetCodeWithoutChecks: {1522      readonly code: Bytes;1523    } & Struct;1524    readonly isSetStorage: boolean;1525    readonly asSetStorage: {1526      readonly items: Vec<ITuple<[Bytes, Bytes]>>;1527    } & Struct;1528    readonly isKillStorage: boolean;1529    readonly asKillStorage: {1530      readonly keys_: Vec<Bytes>;1531    } & Struct;1532    readonly isKillPrefix: boolean;1533    readonly asKillPrefix: {1534      readonly prefix: Bytes;1535      readonly subkeys: u32;1536    } & Struct;1537    readonly isRemarkWithEvent: boolean;1538    readonly asRemarkWithEvent: {1539      readonly remark: Bytes;1540    } & Struct;1541    readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1542  }15431544  /** @name FrameSystemLimitsBlockWeights (131) */1545  interface FrameSystemLimitsBlockWeights extends Struct {1546    readonly baseBlock: SpWeightsWeightV2Weight;1547    readonly maxBlock: SpWeightsWeightV2Weight;1548    readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1549  }15501551  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */1552  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1553    readonly normal: FrameSystemLimitsWeightsPerClass;1554    readonly operational: FrameSystemLimitsWeightsPerClass;1555    readonly mandatory: FrameSystemLimitsWeightsPerClass;1556  }15571558  /** @name FrameSystemLimitsWeightsPerClass (133) */1559  interface FrameSystemLimitsWeightsPerClass extends Struct {1560    readonly baseExtrinsic: SpWeightsWeightV2Weight;1561    readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1562    readonly maxTotal: Option<SpWeightsWeightV2Weight>;1563    readonly reserved: Option<SpWeightsWeightV2Weight>;1564  }15651566  /** @name FrameSystemLimitsBlockLength (135) */1567  interface FrameSystemLimitsBlockLength extends Struct {1568    readonly max: FrameSupportDispatchPerDispatchClassU32;1569  }15701571  /** @name FrameSupportDispatchPerDispatchClassU32 (136) */1572  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1573    readonly normal: u32;1574    readonly operational: u32;1575    readonly mandatory: u32;1576  }15771578  /** @name SpWeightsRuntimeDbWeight (137) */1579  interface SpWeightsRuntimeDbWeight extends Struct {1580    readonly read: u64;1581    readonly write: u64;1582  }15831584  /** @name SpVersionRuntimeVersion (138) */1585  interface SpVersionRuntimeVersion extends Struct {1586    readonly specName: Text;1587    readonly implName: Text;1588    readonly authoringVersion: u32;1589    readonly specVersion: u32;1590    readonly implVersion: u32;1591    readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1592    readonly transactionVersion: u32;1593    readonly stateVersion: u8;1594  }15951596  /** @name FrameSystemError (143) */1597  interface FrameSystemError extends Enum {1598    readonly isInvalidSpecName: boolean;1599    readonly isSpecVersionNeedsToIncrease: boolean;1600    readonly isFailedToExtractRuntimeVersion: boolean;1601    readonly isNonDefaultComposite: boolean;1602    readonly isNonZeroRefCount: boolean;1603    readonly isCallFiltered: boolean;1604    readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1605  }16061607  /** @name PolkadotPrimitivesV2PersistedValidationData (144) */1608  interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1609    readonly parentHead: Bytes;1610    readonly relayParentNumber: u32;1611    readonly relayParentStorageRoot: H256;1612    readonly maxPovSize: u32;1613  }16141615  /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */1616  interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1617    readonly isPresent: boolean;1618    readonly type: 'Present';1619  }16201621  /** @name SpTrieStorageProof (148) */1622  interface SpTrieStorageProof extends Struct {1623    readonly trieNodes: BTreeSet<Bytes>;1624  }16251626  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */1627  interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1628    readonly dmqMqcHead: H256;1629    readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1630    readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1631    readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1632  }16331634  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */1635  interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1636    readonly maxCapacity: u32;1637    readonly maxTotalSize: u32;1638    readonly maxMessageSize: u32;1639    readonly msgCount: u32;1640    readonly totalSize: u32;1641    readonly mqcHead: Option<H256>;1642  }16431644  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */1645  interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1646    readonly maxCodeSize: u32;1647    readonly maxHeadDataSize: u32;1648    readonly maxUpwardQueueCount: u32;1649    readonly maxUpwardQueueSize: u32;1650    readonly maxUpwardMessageSize: u32;1651    readonly maxUpwardMessageNumPerCandidate: u32;1652    readonly hrmpMaxMessageNumPerCandidate: u32;1653    readonly validationUpgradeCooldown: u32;1654    readonly validationUpgradeDelay: u32;1655  }16561657  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */1658  interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1659    readonly recipient: u32;1660    readonly data: Bytes;1661  }16621663  /** @name CumulusPalletParachainSystemCall (161) */1664  interface CumulusPalletParachainSystemCall extends Enum {1665    readonly isSetValidationData: boolean;1666    readonly asSetValidationData: {1667      readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1668    } & Struct;1669    readonly isSudoSendUpwardMessage: boolean;1670    readonly asSudoSendUpwardMessage: {1671      readonly message: Bytes;1672    } & Struct;1673    readonly isAuthorizeUpgrade: boolean;1674    readonly asAuthorizeUpgrade: {1675      readonly codeHash: H256;1676    } & Struct;1677    readonly isEnactAuthorizedUpgrade: boolean;1678    readonly asEnactAuthorizedUpgrade: {1679      readonly code: Bytes;1680    } & Struct;1681    readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1682  }16831684  /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */1685  interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1686    readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1687    readonly relayChainState: SpTrieStorageProof;1688    readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1689    readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1690  }16911692  /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */1693  interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1694    readonly sentAt: u32;1695    readonly msg: Bytes;1696  }16971698  /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */1699  interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1700    readonly sentAt: u32;1701    readonly data: Bytes;1702  }17031704  /** @name CumulusPalletParachainSystemError (170) */1705  interface CumulusPalletParachainSystemError extends Enum {1706    readonly isOverlappingUpgrades: boolean;1707    readonly isProhibitedByPolkadot: boolean;1708    readonly isTooBig: boolean;1709    readonly isValidationDataNotAvailable: boolean;1710    readonly isHostConfigurationNotAvailable: boolean;1711    readonly isNotScheduled: boolean;1712    readonly isNothingAuthorized: boolean;1713    readonly isUnauthorized: boolean;1714    readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1715  }17161717  /** @name PalletBalancesBalanceLock (172) */1718  interface PalletBalancesBalanceLock extends Struct {1719    readonly id: U8aFixed;1720    readonly amount: u128;1721    readonly reasons: PalletBalancesReasons;1722  }17231724  /** @name PalletBalancesReasons (173) */1725  interface PalletBalancesReasons extends Enum {1726    readonly isFee: boolean;1727    readonly isMisc: boolean;1728    readonly isAll: boolean;1729    readonly type: 'Fee' | 'Misc' | 'All';1730  }17311732  /** @name PalletBalancesReserveData (176) */1733  interface PalletBalancesReserveData extends Struct {1734    readonly id: U8aFixed;1735    readonly amount: u128;1736  }17371738  /** @name PalletBalancesCall (178) */1739  interface PalletBalancesCall extends Enum {1740    readonly isTransfer: boolean;1741    readonly asTransfer: {1742      readonly dest: MultiAddress;1743      readonly value: Compact<u128>;1744    } & Struct;1745    readonly isSetBalance: boolean;1746    readonly asSetBalance: {1747      readonly who: MultiAddress;1748      readonly newFree: Compact<u128>;1749      readonly newReserved: Compact<u128>;1750    } & Struct;1751    readonly isForceTransfer: boolean;1752    readonly asForceTransfer: {1753      readonly source: MultiAddress;1754      readonly dest: MultiAddress;1755      readonly value: Compact<u128>;1756    } & Struct;1757    readonly isTransferKeepAlive: boolean;1758    readonly asTransferKeepAlive: {1759      readonly dest: MultiAddress;1760      readonly value: Compact<u128>;1761    } & Struct;1762    readonly isTransferAll: boolean;1763    readonly asTransferAll: {1764      readonly dest: MultiAddress;1765      readonly keepAlive: bool;1766    } & Struct;1767    readonly isForceUnreserve: boolean;1768    readonly asForceUnreserve: {1769      readonly who: MultiAddress;1770      readonly amount: u128;1771    } & Struct;1772    readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1773  }17741775  /** @name PalletBalancesError (181) */1776  interface PalletBalancesError extends Enum {1777    readonly isVestingBalance: boolean;1778    readonly isLiquidityRestrictions: boolean;1779    readonly isInsufficientBalance: boolean;1780    readonly isExistentialDeposit: boolean;1781    readonly isKeepAlive: boolean;1782    readonly isExistingVestingSchedule: boolean;1783    readonly isDeadAccount: boolean;1784    readonly isTooManyReserves: boolean;1785    readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1786  }17871788  /** @name PalletTimestampCall (183) */1789  interface PalletTimestampCall extends Enum {1790    readonly isSet: boolean;1791    readonly asSet: {1792      readonly now: Compact<u64>;1793    } & Struct;1794    readonly type: 'Set';1795  }17961797  /** @name PalletTransactionPaymentReleases (185) */1798  interface PalletTransactionPaymentReleases extends Enum {1799    readonly isV1Ancient: boolean;1800    readonly isV2: boolean;1801    readonly type: 'V1Ancient' | 'V2';1802  }18031804  /** @name PalletTreasuryProposal (186) */1805  interface PalletTreasuryProposal extends Struct {1806    readonly proposer: AccountId32;1807    readonly value: u128;1808    readonly beneficiary: AccountId32;1809    readonly bond: u128;1810  }18111812  /** @name PalletTreasuryCall (189) */1813  interface PalletTreasuryCall extends Enum {1814    readonly isProposeSpend: boolean;1815    readonly asProposeSpend: {1816      readonly value: Compact<u128>;1817      readonly beneficiary: MultiAddress;1818    } & Struct;1819    readonly isRejectProposal: boolean;1820    readonly asRejectProposal: {1821      readonly proposalId: Compact<u32>;1822    } & Struct;1823    readonly isApproveProposal: boolean;1824    readonly asApproveProposal: {1825      readonly proposalId: Compact<u32>;1826    } & Struct;1827    readonly isSpend: boolean;1828    readonly asSpend: {1829      readonly amount: Compact<u128>;1830      readonly beneficiary: MultiAddress;1831    } & Struct;1832    readonly isRemoveApproval: boolean;1833    readonly asRemoveApproval: {1834      readonly proposalId: Compact<u32>;1835    } & Struct;1836    readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1837  }18381839  /** @name FrameSupportPalletId (191) */1840  interface FrameSupportPalletId extends U8aFixed {}18411842  /** @name PalletTreasuryError (192) */1843  interface PalletTreasuryError extends Enum {1844    readonly isInsufficientProposersBalance: boolean;1845    readonly isInvalidIndex: boolean;1846    readonly isTooManyApprovals: boolean;1847    readonly isInsufficientPermission: boolean;1848    readonly isProposalNotApproved: boolean;1849    readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1850  }18511852  /** @name PalletSudoCall (193) */1853  interface PalletSudoCall extends Enum {1854    readonly isSudo: boolean;1855    readonly asSudo: {1856      readonly call: Call;1857    } & Struct;1858    readonly isSudoUncheckedWeight: boolean;1859    readonly asSudoUncheckedWeight: {1860      readonly call: Call;1861      readonly weight: SpWeightsWeightV2Weight;1862    } & Struct;1863    readonly isSetKey: boolean;1864    readonly asSetKey: {1865      readonly new_: MultiAddress;1866    } & Struct;1867    readonly isSudoAs: boolean;1868    readonly asSudoAs: {1869      readonly who: MultiAddress;1870      readonly call: Call;1871    } & Struct;1872    readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1873  }18741875  /** @name OrmlVestingModuleCall (195) */1876  interface OrmlVestingModuleCall extends Enum {1877    readonly isClaim: boolean;1878    readonly isVestedTransfer: boolean;1879    readonly asVestedTransfer: {1880      readonly dest: MultiAddress;1881      readonly schedule: OrmlVestingVestingSchedule;1882    } & Struct;1883    readonly isUpdateVestingSchedules: boolean;1884    readonly asUpdateVestingSchedules: {1885      readonly who: MultiAddress;1886      readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1887    } & Struct;1888    readonly isClaimFor: boolean;1889    readonly asClaimFor: {1890      readonly dest: MultiAddress;1891    } & Struct;1892    readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1893  }18941895  /** @name OrmlXtokensModuleCall (197) */1896  interface OrmlXtokensModuleCall extends Enum {1897    readonly isTransfer: boolean;1898    readonly asTransfer: {1899      readonly currencyId: PalletForeignAssetsAssetIds;1900      readonly amount: u128;1901      readonly dest: XcmVersionedMultiLocation;1902      readonly destWeightLimit: XcmV2WeightLimit;1903    } & Struct;1904    readonly isTransferMultiasset: boolean;1905    readonly asTransferMultiasset: {1906      readonly asset: XcmVersionedMultiAsset;1907      readonly dest: XcmVersionedMultiLocation;1908      readonly destWeightLimit: XcmV2WeightLimit;1909    } & Struct;1910    readonly isTransferWithFee: boolean;1911    readonly asTransferWithFee: {1912      readonly currencyId: PalletForeignAssetsAssetIds;1913      readonly amount: u128;1914      readonly fee: u128;1915      readonly dest: XcmVersionedMultiLocation;1916      readonly destWeightLimit: XcmV2WeightLimit;1917    } & Struct;1918    readonly isTransferMultiassetWithFee: boolean;1919    readonly asTransferMultiassetWithFee: {1920      readonly asset: XcmVersionedMultiAsset;1921      readonly fee: XcmVersionedMultiAsset;1922      readonly dest: XcmVersionedMultiLocation;1923      readonly destWeightLimit: XcmV2WeightLimit;1924    } & Struct;1925    readonly isTransferMulticurrencies: boolean;1926    readonly asTransferMulticurrencies: {1927      readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1928      readonly feeItem: u32;1929      readonly dest: XcmVersionedMultiLocation;1930      readonly destWeightLimit: XcmV2WeightLimit;1931    } & Struct;1932    readonly isTransferMultiassets: boolean;1933    readonly asTransferMultiassets: {1934      readonly assets: XcmVersionedMultiAssets;1935      readonly feeItem: u32;1936      readonly dest: XcmVersionedMultiLocation;1937      readonly destWeightLimit: XcmV2WeightLimit;1938    } & Struct;1939    readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1940  }19411942  /** @name XcmVersionedMultiAsset (198) */1943  interface XcmVersionedMultiAsset extends Enum {1944    readonly isV0: boolean;1945    readonly asV0: XcmV0MultiAsset;1946    readonly isV1: boolean;1947    readonly asV1: XcmV1MultiAsset;1948    readonly type: 'V0' | 'V1';1949  }19501951  /** @name OrmlTokensModuleCall (201) */1952  interface OrmlTokensModuleCall extends Enum {1953    readonly isTransfer: boolean;1954    readonly asTransfer: {1955      readonly dest: MultiAddress;1956      readonly currencyId: PalletForeignAssetsAssetIds;1957      readonly amount: Compact<u128>;1958    } & Struct;1959    readonly isTransferAll: boolean;1960    readonly asTransferAll: {1961      readonly dest: MultiAddress;1962      readonly currencyId: PalletForeignAssetsAssetIds;1963      readonly keepAlive: bool;1964    } & Struct;1965    readonly isTransferKeepAlive: boolean;1966    readonly asTransferKeepAlive: {1967      readonly dest: MultiAddress;1968      readonly currencyId: PalletForeignAssetsAssetIds;1969      readonly amount: Compact<u128>;1970    } & Struct;1971    readonly isForceTransfer: boolean;1972    readonly asForceTransfer: {1973      readonly source: MultiAddress;1974      readonly dest: MultiAddress;1975      readonly currencyId: PalletForeignAssetsAssetIds;1976      readonly amount: Compact<u128>;1977    } & Struct;1978    readonly isSetBalance: boolean;1979    readonly asSetBalance: {1980      readonly who: MultiAddress;1981      readonly currencyId: PalletForeignAssetsAssetIds;1982      readonly newFree: Compact<u128>;1983      readonly newReserved: Compact<u128>;1984    } & Struct;1985    readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1986  }19871988  /** @name CumulusPalletXcmpQueueCall (202) */1989  interface CumulusPalletXcmpQueueCall extends Enum {1990    readonly isServiceOverweight: boolean;1991    readonly asServiceOverweight: {1992      readonly index: u64;1993      readonly weightLimit: u64;1994    } & Struct;1995    readonly isSuspendXcmExecution: boolean;1996    readonly isResumeXcmExecution: boolean;1997    readonly isUpdateSuspendThreshold: boolean;1998    readonly asUpdateSuspendThreshold: {1999      readonly new_: u32;2000    } & Struct;2001    readonly isUpdateDropThreshold: boolean;2002    readonly asUpdateDropThreshold: {2003      readonly new_: u32;2004    } & Struct;2005    readonly isUpdateResumeThreshold: boolean;2006    readonly asUpdateResumeThreshold: {2007      readonly new_: u32;2008    } & Struct;2009    readonly isUpdateThresholdWeight: boolean;2010    readonly asUpdateThresholdWeight: {2011      readonly new_: u64;2012    } & Struct;2013    readonly isUpdateWeightRestrictDecay: boolean;2014    readonly asUpdateWeightRestrictDecay: {2015      readonly new_: u64;2016    } & Struct;2017    readonly isUpdateXcmpMaxIndividualWeight: boolean;2018    readonly asUpdateXcmpMaxIndividualWeight: {2019      readonly new_: u64;2020    } & Struct;2021    readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2022  }20232024  /** @name PalletXcmCall (203) */2025  interface PalletXcmCall extends Enum {2026    readonly isSend: boolean;2027    readonly asSend: {2028      readonly dest: XcmVersionedMultiLocation;2029      readonly message: XcmVersionedXcm;2030    } & Struct;2031    readonly isTeleportAssets: boolean;2032    readonly asTeleportAssets: {2033      readonly dest: XcmVersionedMultiLocation;2034      readonly beneficiary: XcmVersionedMultiLocation;2035      readonly assets: XcmVersionedMultiAssets;2036      readonly feeAssetItem: u32;2037    } & Struct;2038    readonly isReserveTransferAssets: boolean;2039    readonly asReserveTransferAssets: {2040      readonly dest: XcmVersionedMultiLocation;2041      readonly beneficiary: XcmVersionedMultiLocation;2042      readonly assets: XcmVersionedMultiAssets;2043      readonly feeAssetItem: u32;2044    } & Struct;2045    readonly isExecute: boolean;2046    readonly asExecute: {2047      readonly message: XcmVersionedXcm;2048      readonly maxWeight: u64;2049    } & Struct;2050    readonly isForceXcmVersion: boolean;2051    readonly asForceXcmVersion: {2052      readonly location: XcmV1MultiLocation;2053      readonly xcmVersion: u32;2054    } & Struct;2055    readonly isForceDefaultXcmVersion: boolean;2056    readonly asForceDefaultXcmVersion: {2057      readonly maybeXcmVersion: Option<u32>;2058    } & Struct;2059    readonly isForceSubscribeVersionNotify: boolean;2060    readonly asForceSubscribeVersionNotify: {2061      readonly location: XcmVersionedMultiLocation;2062    } & Struct;2063    readonly isForceUnsubscribeVersionNotify: boolean;2064    readonly asForceUnsubscribeVersionNotify: {2065      readonly location: XcmVersionedMultiLocation;2066    } & Struct;2067    readonly isLimitedReserveTransferAssets: boolean;2068    readonly asLimitedReserveTransferAssets: {2069      readonly dest: XcmVersionedMultiLocation;2070      readonly beneficiary: XcmVersionedMultiLocation;2071      readonly assets: XcmVersionedMultiAssets;2072      readonly feeAssetItem: u32;2073      readonly weightLimit: XcmV2WeightLimit;2074    } & Struct;2075    readonly isLimitedTeleportAssets: boolean;2076    readonly asLimitedTeleportAssets: {2077      readonly dest: XcmVersionedMultiLocation;2078      readonly beneficiary: XcmVersionedMultiLocation;2079      readonly assets: XcmVersionedMultiAssets;2080      readonly feeAssetItem: u32;2081      readonly weightLimit: XcmV2WeightLimit;2082    } & Struct;2083    readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2084  }20852086  /** @name XcmVersionedXcm (204) */2087  interface XcmVersionedXcm extends Enum {2088    readonly isV0: boolean;2089    readonly asV0: XcmV0Xcm;2090    readonly isV1: boolean;2091    readonly asV1: XcmV1Xcm;2092    readonly isV2: boolean;2093    readonly asV2: XcmV2Xcm;2094    readonly type: 'V0' | 'V1' | 'V2';2095  }20962097  /** @name XcmV0Xcm (205) */2098  interface XcmV0Xcm extends Enum {2099    readonly isWithdrawAsset: boolean;2100    readonly asWithdrawAsset: {2101      readonly assets: Vec<XcmV0MultiAsset>;2102      readonly effects: Vec<XcmV0Order>;2103    } & Struct;2104    readonly isReserveAssetDeposit: boolean;2105    readonly asReserveAssetDeposit: {2106      readonly assets: Vec<XcmV0MultiAsset>;2107      readonly effects: Vec<XcmV0Order>;2108    } & Struct;2109    readonly isTeleportAsset: boolean;2110    readonly asTeleportAsset: {2111      readonly assets: Vec<XcmV0MultiAsset>;2112      readonly effects: Vec<XcmV0Order>;2113    } & Struct;2114    readonly isQueryResponse: boolean;2115    readonly asQueryResponse: {2116      readonly queryId: Compact<u64>;2117      readonly response: XcmV0Response;2118    } & Struct;2119    readonly isTransferAsset: boolean;2120    readonly asTransferAsset: {2121      readonly assets: Vec<XcmV0MultiAsset>;2122      readonly dest: XcmV0MultiLocation;2123    } & Struct;2124    readonly isTransferReserveAsset: boolean;2125    readonly asTransferReserveAsset: {2126      readonly assets: Vec<XcmV0MultiAsset>;2127      readonly dest: XcmV0MultiLocation;2128      readonly effects: Vec<XcmV0Order>;2129    } & Struct;2130    readonly isTransact: boolean;2131    readonly asTransact: {2132      readonly originType: XcmV0OriginKind;2133      readonly requireWeightAtMost: u64;2134      readonly call: XcmDoubleEncoded;2135    } & Struct;2136    readonly isHrmpNewChannelOpenRequest: boolean;2137    readonly asHrmpNewChannelOpenRequest: {2138      readonly sender: Compact<u32>;2139      readonly maxMessageSize: Compact<u32>;2140      readonly maxCapacity: Compact<u32>;2141    } & Struct;2142    readonly isHrmpChannelAccepted: boolean;2143    readonly asHrmpChannelAccepted: {2144      readonly recipient: Compact<u32>;2145    } & Struct;2146    readonly isHrmpChannelClosing: boolean;2147    readonly asHrmpChannelClosing: {2148      readonly initiator: Compact<u32>;2149      readonly sender: Compact<u32>;2150      readonly recipient: Compact<u32>;2151    } & Struct;2152    readonly isRelayedFrom: boolean;2153    readonly asRelayedFrom: {2154      readonly who: XcmV0MultiLocation;2155      readonly message: XcmV0Xcm;2156    } & Struct;2157    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2158  }21592160  /** @name XcmV0Order (207) */2161  interface XcmV0Order extends Enum {2162    readonly isNull: boolean;2163    readonly isDepositAsset: boolean;2164    readonly asDepositAsset: {2165      readonly assets: Vec<XcmV0MultiAsset>;2166      readonly dest: XcmV0MultiLocation;2167    } & Struct;2168    readonly isDepositReserveAsset: boolean;2169    readonly asDepositReserveAsset: {2170      readonly assets: Vec<XcmV0MultiAsset>;2171      readonly dest: XcmV0MultiLocation;2172      readonly effects: Vec<XcmV0Order>;2173    } & Struct;2174    readonly isExchangeAsset: boolean;2175    readonly asExchangeAsset: {2176      readonly give: Vec<XcmV0MultiAsset>;2177      readonly receive: Vec<XcmV0MultiAsset>;2178    } & Struct;2179    readonly isInitiateReserveWithdraw: boolean;2180    readonly asInitiateReserveWithdraw: {2181      readonly assets: Vec<XcmV0MultiAsset>;2182      readonly reserve: XcmV0MultiLocation;2183      readonly effects: Vec<XcmV0Order>;2184    } & Struct;2185    readonly isInitiateTeleport: boolean;2186    readonly asInitiateTeleport: {2187      readonly assets: Vec<XcmV0MultiAsset>;2188      readonly dest: XcmV0MultiLocation;2189      readonly effects: Vec<XcmV0Order>;2190    } & Struct;2191    readonly isQueryHolding: boolean;2192    readonly asQueryHolding: {2193      readonly queryId: Compact<u64>;2194      readonly dest: XcmV0MultiLocation;2195      readonly assets: Vec<XcmV0MultiAsset>;2196    } & Struct;2197    readonly isBuyExecution: boolean;2198    readonly asBuyExecution: {2199      readonly fees: XcmV0MultiAsset;2200      readonly weight: u64;2201      readonly debt: u64;2202      readonly haltOnError: bool;2203      readonly xcm: Vec<XcmV0Xcm>;2204    } & Struct;2205    readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2206  }22072208  /** @name XcmV0Response (209) */2209  interface XcmV0Response extends Enum {2210    readonly isAssets: boolean;2211    readonly asAssets: Vec<XcmV0MultiAsset>;2212    readonly type: 'Assets';2213  }22142215  /** @name XcmV1Xcm (210) */2216  interface XcmV1Xcm extends Enum {2217    readonly isWithdrawAsset: boolean;2218    readonly asWithdrawAsset: {2219      readonly assets: XcmV1MultiassetMultiAssets;2220      readonly effects: Vec<XcmV1Order>;2221    } & Struct;2222    readonly isReserveAssetDeposited: boolean;2223    readonly asReserveAssetDeposited: {2224      readonly assets: XcmV1MultiassetMultiAssets;2225      readonly effects: Vec<XcmV1Order>;2226    } & Struct;2227    readonly isReceiveTeleportedAsset: boolean;2228    readonly asReceiveTeleportedAsset: {2229      readonly assets: XcmV1MultiassetMultiAssets;2230      readonly effects: Vec<XcmV1Order>;2231    } & Struct;2232    readonly isQueryResponse: boolean;2233    readonly asQueryResponse: {2234      readonly queryId: Compact<u64>;2235      readonly response: XcmV1Response;2236    } & Struct;2237    readonly isTransferAsset: boolean;2238    readonly asTransferAsset: {2239      readonly assets: XcmV1MultiassetMultiAssets;2240      readonly beneficiary: XcmV1MultiLocation;2241    } & Struct;2242    readonly isTransferReserveAsset: boolean;2243    readonly asTransferReserveAsset: {2244      readonly assets: XcmV1MultiassetMultiAssets;2245      readonly dest: XcmV1MultiLocation;2246      readonly effects: Vec<XcmV1Order>;2247    } & Struct;2248    readonly isTransact: boolean;2249    readonly asTransact: {2250      readonly originType: XcmV0OriginKind;2251      readonly requireWeightAtMost: u64;2252      readonly call: XcmDoubleEncoded;2253    } & Struct;2254    readonly isHrmpNewChannelOpenRequest: boolean;2255    readonly asHrmpNewChannelOpenRequest: {2256      readonly sender: Compact<u32>;2257      readonly maxMessageSize: Compact<u32>;2258      readonly maxCapacity: Compact<u32>;2259    } & Struct;2260    readonly isHrmpChannelAccepted: boolean;2261    readonly asHrmpChannelAccepted: {2262      readonly recipient: Compact<u32>;2263    } & Struct;2264    readonly isHrmpChannelClosing: boolean;2265    readonly asHrmpChannelClosing: {2266      readonly initiator: Compact<u32>;2267      readonly sender: Compact<u32>;2268      readonly recipient: Compact<u32>;2269    } & Struct;2270    readonly isRelayedFrom: boolean;2271    readonly asRelayedFrom: {2272      readonly who: XcmV1MultilocationJunctions;2273      readonly message: XcmV1Xcm;2274    } & Struct;2275    readonly isSubscribeVersion: boolean;2276    readonly asSubscribeVersion: {2277      readonly queryId: Compact<u64>;2278      readonly maxResponseWeight: Compact<u64>;2279    } & Struct;2280    readonly isUnsubscribeVersion: boolean;2281    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2282  }22832284  /** @name XcmV1Order (212) */2285  interface XcmV1Order extends Enum {2286    readonly isNoop: boolean;2287    readonly isDepositAsset: boolean;2288    readonly asDepositAsset: {2289      readonly assets: XcmV1MultiassetMultiAssetFilter;2290      readonly maxAssets: u32;2291      readonly beneficiary: XcmV1MultiLocation;2292    } & Struct;2293    readonly isDepositReserveAsset: boolean;2294    readonly asDepositReserveAsset: {2295      readonly assets: XcmV1MultiassetMultiAssetFilter;2296      readonly maxAssets: u32;2297      readonly dest: XcmV1MultiLocation;2298      readonly effects: Vec<XcmV1Order>;2299    } & Struct;2300    readonly isExchangeAsset: boolean;2301    readonly asExchangeAsset: {2302      readonly give: XcmV1MultiassetMultiAssetFilter;2303      readonly receive: XcmV1MultiassetMultiAssets;2304    } & Struct;2305    readonly isInitiateReserveWithdraw: boolean;2306    readonly asInitiateReserveWithdraw: {2307      readonly assets: XcmV1MultiassetMultiAssetFilter;2308      readonly reserve: XcmV1MultiLocation;2309      readonly effects: Vec<XcmV1Order>;2310    } & Struct;2311    readonly isInitiateTeleport: boolean;2312    readonly asInitiateTeleport: {2313      readonly assets: XcmV1MultiassetMultiAssetFilter;2314      readonly dest: XcmV1MultiLocation;2315      readonly effects: Vec<XcmV1Order>;2316    } & Struct;2317    readonly isQueryHolding: boolean;2318    readonly asQueryHolding: {2319      readonly queryId: Compact<u64>;2320      readonly dest: XcmV1MultiLocation;2321      readonly assets: XcmV1MultiassetMultiAssetFilter;2322    } & Struct;2323    readonly isBuyExecution: boolean;2324    readonly asBuyExecution: {2325      readonly fees: XcmV1MultiAsset;2326      readonly weight: u64;2327      readonly debt: u64;2328      readonly haltOnError: bool;2329      readonly instructions: Vec<XcmV1Xcm>;2330    } & Struct;2331    readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2332  }23332334  /** @name XcmV1Response (214) */2335  interface XcmV1Response extends Enum {2336    readonly isAssets: boolean;2337    readonly asAssets: XcmV1MultiassetMultiAssets;2338    readonly isVersion: boolean;2339    readonly asVersion: u32;2340    readonly type: 'Assets' | 'Version';2341  }23422343  /** @name CumulusPalletXcmCall (228) */2344  type CumulusPalletXcmCall = Null;23452346  /** @name CumulusPalletDmpQueueCall (229) */2347  interface CumulusPalletDmpQueueCall extends Enum {2348    readonly isServiceOverweight: boolean;2349    readonly asServiceOverweight: {2350      readonly index: u64;2351      readonly weightLimit: u64;2352    } & Struct;2353    readonly type: 'ServiceOverweight';2354  }23552356  /** @name PalletInflationCall (230) */2357  interface PalletInflationCall extends Enum {2358    readonly isStartInflation: boolean;2359    readonly asStartInflation: {2360      readonly inflationStartRelayBlock: u32;2361    } & Struct;2362    readonly type: 'StartInflation';2363  }23642365  /** @name PalletUniqueCall (231) */2366  interface PalletUniqueCall extends Enum {2367    readonly isCreateCollection: boolean;2368    readonly asCreateCollection: {2369      readonly collectionName: Vec<u16>;2370      readonly collectionDescription: Vec<u16>;2371      readonly tokenPrefix: Bytes;2372      readonly mode: UpDataStructsCollectionMode;2373    } & Struct;2374    readonly isCreateCollectionEx: boolean;2375    readonly asCreateCollectionEx: {2376      readonly data: UpDataStructsCreateCollectionData;2377    } & Struct;2378    readonly isDestroyCollection: boolean;2379    readonly asDestroyCollection: {2380      readonly collectionId: u32;2381    } & Struct;2382    readonly isAddToAllowList: boolean;2383    readonly asAddToAllowList: {2384      readonly collectionId: u32;2385      readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2386    } & Struct;2387    readonly isRemoveFromAllowList: boolean;2388    readonly asRemoveFromAllowList: {2389      readonly collectionId: u32;2390      readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2391    } & Struct;2392    readonly isChangeCollectionOwner: boolean;2393    readonly asChangeCollectionOwner: {2394      readonly collectionId: u32;2395      readonly newOwner: AccountId32;2396    } & Struct;2397    readonly isAddCollectionAdmin: boolean;2398    readonly asAddCollectionAdmin: {2399      readonly collectionId: u32;2400      readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2401    } & Struct;2402    readonly isRemoveCollectionAdmin: boolean;2403    readonly asRemoveCollectionAdmin: {2404      readonly collectionId: u32;2405      readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2406    } & Struct;2407    readonly isSetCollectionSponsor: boolean;2408    readonly asSetCollectionSponsor: {2409      readonly collectionId: u32;2410      readonly newSponsor: AccountId32;2411    } & Struct;2412    readonly isConfirmSponsorship: boolean;2413    readonly asConfirmSponsorship: {2414      readonly collectionId: u32;2415    } & Struct;2416    readonly isRemoveCollectionSponsor: boolean;2417    readonly asRemoveCollectionSponsor: {2418      readonly collectionId: u32;2419    } & Struct;2420    readonly isCreateItem: boolean;2421    readonly asCreateItem: {2422      readonly collectionId: u32;2423      readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2424      readonly data: UpDataStructsCreateItemData;2425    } & Struct;2426    readonly isCreateMultipleItems: boolean;2427    readonly asCreateMultipleItems: {2428      readonly collectionId: u32;2429      readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2430      readonly itemsData: Vec<UpDataStructsCreateItemData>;2431    } & Struct;2432    readonly isSetCollectionProperties: boolean;2433    readonly asSetCollectionProperties: {2434      readonly collectionId: u32;2435      readonly properties: Vec<UpDataStructsProperty>;2436    } & Struct;2437    readonly isDeleteCollectionProperties: boolean;2438    readonly asDeleteCollectionProperties: {2439      readonly collectionId: u32;2440      readonly propertyKeys: Vec<Bytes>;2441    } & Struct;2442    readonly isSetTokenProperties: boolean;2443    readonly asSetTokenProperties: {2444      readonly collectionId: u32;2445      readonly tokenId: u32;2446      readonly properties: Vec<UpDataStructsProperty>;2447    } & Struct;2448    readonly isDeleteTokenProperties: boolean;2449    readonly asDeleteTokenProperties: {2450      readonly collectionId: u32;2451      readonly tokenId: u32;2452      readonly propertyKeys: Vec<Bytes>;2453    } & Struct;2454    readonly isSetTokenPropertyPermissions: boolean;2455    readonly asSetTokenPropertyPermissions: {2456      readonly collectionId: u32;2457      readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2458    } & Struct;2459    readonly isCreateMultipleItemsEx: boolean;2460    readonly asCreateMultipleItemsEx: {2461      readonly collectionId: u32;2462      readonly data: UpDataStructsCreateItemExData;2463    } & Struct;2464    readonly isSetTransfersEnabledFlag: boolean;2465    readonly asSetTransfersEnabledFlag: {2466      readonly collectionId: u32;2467      readonly value: bool;2468    } & Struct;2469    readonly isBurnItem: boolean;2470    readonly asBurnItem: {2471      readonly collectionId: u32;2472      readonly itemId: u32;2473      readonly value: u128;2474    } & Struct;2475    readonly isBurnFrom: boolean;2476    readonly asBurnFrom: {2477      readonly collectionId: u32;2478      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2479      readonly itemId: u32;2480      readonly value: u128;2481    } & Struct;2482    readonly isTransfer: boolean;2483    readonly asTransfer: {2484      readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2485      readonly collectionId: u32;2486      readonly itemId: u32;2487      readonly value: u128;2488    } & Struct;2489    readonly isApprove: boolean;2490    readonly asApprove: {2491      readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2492      readonly collectionId: u32;2493      readonly itemId: u32;2494      readonly amount: u128;2495    } & Struct;2496    readonly isApproveFrom: boolean;2497    readonly asApproveFrom: {2498      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2499      readonly to: PalletEvmAccountBasicCrossAccountIdRepr;2500      readonly collectionId: u32;2501      readonly itemId: u32;2502      readonly amount: u128;2503    } & Struct;2504    readonly isTransferFrom: boolean;2505    readonly asTransferFrom: {2506      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2507      readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2508      readonly collectionId: u32;2509      readonly itemId: u32;2510      readonly value: u128;2511    } & Struct;2512    readonly isSetCollectionLimits: boolean;2513    readonly asSetCollectionLimits: {2514      readonly collectionId: u32;2515      readonly newLimit: UpDataStructsCollectionLimits;2516    } & Struct;2517    readonly isSetCollectionPermissions: boolean;2518    readonly asSetCollectionPermissions: {2519      readonly collectionId: u32;2520      readonly newPermission: UpDataStructsCollectionPermissions;2521    } & Struct;2522    readonly isRepartition: boolean;2523    readonly asRepartition: {2524      readonly collectionId: u32;2525      readonly tokenId: u32;2526      readonly amount: u128;2527    } & Struct;2528    readonly isSetAllowanceForAll: boolean;2529    readonly asSetAllowanceForAll: {2530      readonly collectionId: u32;2531      readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2532      readonly approve: bool;2533    } & Struct;2534    readonly isForceRepairCollection: boolean;2535    readonly asForceRepairCollection: {2536      readonly collectionId: u32;2537    } & Struct;2538    readonly isForceRepairItem: boolean;2539    readonly asForceRepairItem: {2540      readonly collectionId: u32;2541      readonly itemId: u32;2542    } & Struct;2543    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' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2544  }25452546  /** @name UpDataStructsCollectionMode (236) */2547  interface UpDataStructsCollectionMode extends Enum {2548    readonly isNft: boolean;2549    readonly isFungible: boolean;2550    readonly asFungible: u8;2551    readonly isReFungible: boolean;2552    readonly type: 'Nft' | 'Fungible' | 'ReFungible';2553  }25542555  /** @name UpDataStructsCreateCollectionData (237) */2556  interface UpDataStructsCreateCollectionData extends Struct {2557    readonly mode: UpDataStructsCollectionMode;2558    readonly access: Option<UpDataStructsAccessMode>;2559    readonly name: Vec<u16>;2560    readonly description: Vec<u16>;2561    readonly tokenPrefix: Bytes;2562    readonly pendingSponsor: Option<AccountId32>;2563    readonly limits: Option<UpDataStructsCollectionLimits>;2564    readonly permissions: Option<UpDataStructsCollectionPermissions>;2565    readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2566    readonly properties: Vec<UpDataStructsProperty>;2567  }25682569  /** @name UpDataStructsAccessMode (239) */2570  interface UpDataStructsAccessMode extends Enum {2571    readonly isNormal: boolean;2572    readonly isAllowList: boolean;2573    readonly type: 'Normal' | 'AllowList';2574  }25752576  /** @name UpDataStructsCollectionLimits (241) */2577  interface UpDataStructsCollectionLimits extends Struct {2578    readonly accountTokenOwnershipLimit: Option<u32>;2579    readonly sponsoredDataSize: Option<u32>;2580    readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2581    readonly tokenLimit: Option<u32>;2582    readonly sponsorTransferTimeout: Option<u32>;2583    readonly sponsorApproveTimeout: Option<u32>;2584    readonly ownerCanTransfer: Option<bool>;2585    readonly ownerCanDestroy: Option<bool>;2586    readonly transfersEnabled: Option<bool>;2587  }25882589  /** @name UpDataStructsSponsoringRateLimit (243) */2590  interface UpDataStructsSponsoringRateLimit extends Enum {2591    readonly isSponsoringDisabled: boolean;2592    readonly isBlocks: boolean;2593    readonly asBlocks: u32;2594    readonly type: 'SponsoringDisabled' | 'Blocks';2595  }25962597  /** @name UpDataStructsCollectionPermissions (246) */2598  interface UpDataStructsCollectionPermissions extends Struct {2599    readonly access: Option<UpDataStructsAccessMode>;2600    readonly mintMode: Option<bool>;2601    readonly nesting: Option<UpDataStructsNestingPermissions>;2602  }26032604  /** @name UpDataStructsNestingPermissions (248) */2605  interface UpDataStructsNestingPermissions extends Struct {2606    readonly tokenOwner: bool;2607    readonly collectionAdmin: bool;2608    readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2609  }26102611  /** @name UpDataStructsOwnerRestrictedSet (250) */2612  interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26132614  /** @name UpDataStructsPropertyKeyPermission (255) */2615  interface UpDataStructsPropertyKeyPermission extends Struct {2616    readonly key: Bytes;2617    readonly permission: UpDataStructsPropertyPermission;2618  }26192620  /** @name UpDataStructsPropertyPermission (256) */2621  interface UpDataStructsPropertyPermission extends Struct {2622    readonly mutable: bool;2623    readonly collectionAdmin: bool;2624    readonly tokenOwner: bool;2625  }26262627  /** @name UpDataStructsProperty (259) */2628  interface UpDataStructsProperty extends Struct {2629    readonly key: Bytes;2630    readonly value: Bytes;2631  }26322633  /** @name UpDataStructsCreateItemData (262) */2634  interface UpDataStructsCreateItemData extends Enum {2635    readonly isNft: boolean;2636    readonly asNft: UpDataStructsCreateNftData;2637    readonly isFungible: boolean;2638    readonly asFungible: UpDataStructsCreateFungibleData;2639    readonly isReFungible: boolean;2640    readonly asReFungible: UpDataStructsCreateReFungibleData;2641    readonly type: 'Nft' | 'Fungible' | 'ReFungible';2642  }26432644  /** @name UpDataStructsCreateNftData (263) */2645  interface UpDataStructsCreateNftData extends Struct {2646    readonly properties: Vec<UpDataStructsProperty>;2647  }26482649  /** @name UpDataStructsCreateFungibleData (264) */2650  interface UpDataStructsCreateFungibleData extends Struct {2651    readonly value: u128;2652  }26532654  /** @name UpDataStructsCreateReFungibleData (265) */2655  interface UpDataStructsCreateReFungibleData extends Struct {2656    readonly pieces: u128;2657    readonly properties: Vec<UpDataStructsProperty>;2658  }26592660  /** @name UpDataStructsCreateItemExData (268) */2661  interface UpDataStructsCreateItemExData extends Enum {2662    readonly isNft: boolean;2663    readonly asNft: Vec<UpDataStructsCreateNftExData>;2664    readonly isFungible: boolean;2665    readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2666    readonly isRefungibleMultipleItems: boolean;2667    readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2668    readonly isRefungibleMultipleOwners: boolean;2669    readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2670    readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2671  }26722673  /** @name UpDataStructsCreateNftExData (270) */2674  interface UpDataStructsCreateNftExData extends Struct {2675    readonly properties: Vec<UpDataStructsProperty>;2676    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2677  }26782679  /** @name UpDataStructsCreateRefungibleExSingleOwner (277) */2680  interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2681    readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2682    readonly pieces: u128;2683    readonly properties: Vec<UpDataStructsProperty>;2684  }26852686  /** @name UpDataStructsCreateRefungibleExMultipleOwners (279) */2687  interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2688    readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2689    readonly properties: Vec<UpDataStructsProperty>;2690  }26912692  /** @name PalletConfigurationCall (280) */2693  interface PalletConfigurationCall extends Enum {2694    readonly isSetWeightToFeeCoefficientOverride: boolean;2695    readonly asSetWeightToFeeCoefficientOverride: {2696      readonly coeff: Option<u64>;2697    } & Struct;2698    readonly isSetMinGasPriceOverride: boolean;2699    readonly asSetMinGasPriceOverride: {2700      readonly coeff: Option<u64>;2701    } & Struct;2702    readonly isSetXcmAllowedLocations: boolean;2703    readonly asSetXcmAllowedLocations: {2704      readonly locations: Option<Vec<XcmV1MultiLocation>>;2705    } & Struct;2706    readonly isSetAppPromotionConfigurationOverride: boolean;2707    readonly asSetAppPromotionConfigurationOverride: {2708      readonly configuration: PalletConfigurationAppPromotionConfiguration;2709    } & Struct;2710    readonly isSetCollatorSelectionDesiredCollators: boolean;2711    readonly asSetCollatorSelectionDesiredCollators: {2712      readonly max: Option<u32>;2713    } & Struct;2714    readonly isSetCollatorSelectionLicenseBond: boolean;2715    readonly asSetCollatorSelectionLicenseBond: {2716      readonly amount: Option<u128>;2717    } & Struct;2718    readonly isSetCollatorSelectionKickThreshold: boolean;2719    readonly asSetCollatorSelectionKickThreshold: {2720      readonly threshold: Option<u32>;2721    } & Struct;2722    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';2723  }27242725  /** @name PalletConfigurationAppPromotionConfiguration (285) */2726  interface PalletConfigurationAppPromotionConfiguration extends Struct {2727    readonly recalculationInterval: Option<u32>;2728    readonly pendingInterval: Option<u32>;2729    readonly intervalIncome: Option<Perbill>;2730    readonly maxStakersPerCalculation: Option<u8>;2731  }27322733  /** @name PalletTemplateTransactionPaymentCall (289) */2734  type PalletTemplateTransactionPaymentCall = Null;27352736  /** @name PalletStructureCall (290) */2737  type PalletStructureCall = Null;27382739  /** @name PalletRmrkCoreCall (291) */2740  interface PalletRmrkCoreCall extends Enum {2741    readonly isCreateCollection: boolean;2742    readonly asCreateCollection: {2743      readonly metadata: Bytes;2744      readonly max: Option<u32>;2745      readonly symbol: Bytes;2746    } & Struct;2747    readonly isDestroyCollection: boolean;2748    readonly asDestroyCollection: {2749      readonly collectionId: u32;2750    } & Struct;2751    readonly isChangeCollectionIssuer: boolean;2752    readonly asChangeCollectionIssuer: {2753      readonly collectionId: u32;2754      readonly newIssuer: MultiAddress;2755    } & Struct;2756    readonly isLockCollection: boolean;2757    readonly asLockCollection: {2758      readonly collectionId: u32;2759    } & Struct;2760    readonly isMintNft: boolean;2761    readonly asMintNft: {2762      readonly owner: Option<AccountId32>;2763      readonly collectionId: u32;2764      readonly recipient: Option<AccountId32>;2765      readonly royaltyAmount: Option<Permill>;2766      readonly metadata: Bytes;2767      readonly transferable: bool;2768      readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2769    } & Struct;2770    readonly isBurnNft: boolean;2771    readonly asBurnNft: {2772      readonly collectionId: u32;2773      readonly nftId: u32;2774      readonly maxBurns: u32;2775    } & Struct;2776    readonly isSend: boolean;2777    readonly asSend: {2778      readonly rmrkCollectionId: u32;2779      readonly rmrkNftId: u32;2780      readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2781    } & Struct;2782    readonly isAcceptNft: boolean;2783    readonly asAcceptNft: {2784      readonly rmrkCollectionId: u32;2785      readonly rmrkNftId: u32;2786      readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2787    } & Struct;2788    readonly isRejectNft: boolean;2789    readonly asRejectNft: {2790      readonly rmrkCollectionId: u32;2791      readonly rmrkNftId: u32;2792    } & Struct;2793    readonly isAcceptResource: boolean;2794    readonly asAcceptResource: {2795      readonly rmrkCollectionId: u32;2796      readonly rmrkNftId: u32;2797      readonly resourceId: u32;2798    } & Struct;2799    readonly isAcceptResourceRemoval: boolean;2800    readonly asAcceptResourceRemoval: {2801      readonly rmrkCollectionId: u32;2802      readonly rmrkNftId: u32;2803      readonly resourceId: u32;2804    } & Struct;2805    readonly isSetProperty: boolean;2806    readonly asSetProperty: {2807      readonly rmrkCollectionId: Compact<u32>;2808      readonly maybeNftId: Option<u32>;2809      readonly key: Bytes;2810      readonly value: Bytes;2811    } & Struct;2812    readonly isSetPriority: boolean;2813    readonly asSetPriority: {2814      readonly rmrkCollectionId: u32;2815      readonly rmrkNftId: u32;2816      readonly priorities: Vec<u32>;2817    } & Struct;2818    readonly isAddBasicResource: boolean;2819    readonly asAddBasicResource: {2820      readonly rmrkCollectionId: u32;2821      readonly nftId: u32;2822      readonly resource: RmrkTraitsResourceBasicResource;2823    } & Struct;2824    readonly isAddComposableResource: boolean;2825    readonly asAddComposableResource: {2826      readonly rmrkCollectionId: u32;2827      readonly nftId: u32;2828      readonly resource: RmrkTraitsResourceComposableResource;2829    } & Struct;2830    readonly isAddSlotResource: boolean;2831    readonly asAddSlotResource: {2832      readonly rmrkCollectionId: u32;2833      readonly nftId: u32;2834      readonly resource: RmrkTraitsResourceSlotResource;2835    } & Struct;2836    readonly isRemoveResource: boolean;2837    readonly asRemoveResource: {2838      readonly rmrkCollectionId: u32;2839      readonly nftId: u32;2840      readonly resourceId: u32;2841    } & Struct;2842    readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2843  }28442845  /** @name RmrkTraitsResourceResourceTypes (297) */2846  interface RmrkTraitsResourceResourceTypes extends Enum {2847    readonly isBasic: boolean;2848    readonly asBasic: RmrkTraitsResourceBasicResource;2849    readonly isComposable: boolean;2850    readonly asComposable: RmrkTraitsResourceComposableResource;2851    readonly isSlot: boolean;2852    readonly asSlot: RmrkTraitsResourceSlotResource;2853    readonly type: 'Basic' | 'Composable' | 'Slot';2854  }28552856  /** @name RmrkTraitsResourceBasicResource (299) */2857  interface RmrkTraitsResourceBasicResource extends Struct {2858    readonly src: Option<Bytes>;2859    readonly metadata: Option<Bytes>;2860    readonly license: Option<Bytes>;2861    readonly thumb: Option<Bytes>;2862  }28632864  /** @name RmrkTraitsResourceComposableResource (301) */2865  interface RmrkTraitsResourceComposableResource extends Struct {2866    readonly parts: Vec<u32>;2867    readonly base: u32;2868    readonly src: Option<Bytes>;2869    readonly metadata: Option<Bytes>;2870    readonly license: Option<Bytes>;2871    readonly thumb: Option<Bytes>;2872  }28732874  /** @name RmrkTraitsResourceSlotResource (302) */2875  interface RmrkTraitsResourceSlotResource extends Struct {2876    readonly base: u32;2877    readonly src: Option<Bytes>;2878    readonly metadata: Option<Bytes>;2879    readonly slot: u32;2880    readonly license: Option<Bytes>;2881    readonly thumb: Option<Bytes>;2882  }28832884  /** @name PalletRmrkEquipCall (305) */2885  interface PalletRmrkEquipCall extends Enum {2886    readonly isCreateBase: boolean;2887    readonly asCreateBase: {2888      readonly baseType: Bytes;2889      readonly symbol: Bytes;2890      readonly parts: Vec<RmrkTraitsPartPartType>;2891    } & Struct;2892    readonly isThemeAdd: boolean;2893    readonly asThemeAdd: {2894      readonly baseId: u32;2895      readonly theme: RmrkTraitsTheme;2896    } & Struct;2897    readonly isEquippable: boolean;2898    readonly asEquippable: {2899      readonly baseId: u32;2900      readonly slotId: u32;2901      readonly equippables: RmrkTraitsPartEquippableList;2902    } & Struct;2903    readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2904  }29052906  /** @name RmrkTraitsPartPartType (308) */2907  interface RmrkTraitsPartPartType extends Enum {2908    readonly isFixedPart: boolean;2909    readonly asFixedPart: RmrkTraitsPartFixedPart;2910    readonly isSlotPart: boolean;2911    readonly asSlotPart: RmrkTraitsPartSlotPart;2912    readonly type: 'FixedPart' | 'SlotPart';2913  }29142915  /** @name RmrkTraitsPartFixedPart (310) */2916  interface RmrkTraitsPartFixedPart extends Struct {2917    readonly id: u32;2918    readonly z: u32;2919    readonly src: Bytes;2920  }29212922  /** @name RmrkTraitsPartSlotPart (311) */2923  interface RmrkTraitsPartSlotPart extends Struct {2924    readonly id: u32;2925    readonly equippable: RmrkTraitsPartEquippableList;2926    readonly src: Bytes;2927    readonly z: u32;2928  }29292930  /** @name RmrkTraitsPartEquippableList (312) */2931  interface RmrkTraitsPartEquippableList extends Enum {2932    readonly isAll: boolean;2933    readonly isEmpty: boolean;2934    readonly isCustom: boolean;2935    readonly asCustom: Vec<u32>;2936    readonly type: 'All' | 'Empty' | 'Custom';2937  }29382939  /** @name RmrkTraitsTheme (314) */2940  interface RmrkTraitsTheme extends Struct {2941    readonly name: Bytes;2942    readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2943    readonly inherit: bool;2944  }29452946  /** @name RmrkTraitsThemeThemeProperty (316) */2947  interface RmrkTraitsThemeThemeProperty extends Struct {2948    readonly key: Bytes;2949    readonly value: Bytes;2950  }29512952  /** @name PalletAppPromotionCall (318) */2953  interface PalletAppPromotionCall extends Enum {2954    readonly isSetAdminAddress: boolean;2955    readonly asSetAdminAddress: {2956      readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2957    } & Struct;2958    readonly isStake: boolean;2959    readonly asStake: {2960      readonly amount: u128;2961    } & Struct;2962    readonly isUnstake: boolean;2963    readonly isSponsorCollection: boolean;2964    readonly asSponsorCollection: {2965      readonly collectionId: u32;2966    } & Struct;2967    readonly isStopSponsoringCollection: boolean;2968    readonly asStopSponsoringCollection: {2969      readonly collectionId: u32;2970    } & Struct;2971    readonly isSponsorContract: boolean;2972    readonly asSponsorContract: {2973      readonly contractId: H160;2974    } & Struct;2975    readonly isStopSponsoringContract: boolean;2976    readonly asStopSponsoringContract: {2977      readonly contractId: H160;2978    } & Struct;2979    readonly isPayoutStakers: boolean;2980    readonly asPayoutStakers: {2981      readonly stakersNumber: Option<u8>;2982    } & Struct;2983    readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2984  }29852986  /** @name PalletForeignAssetsModuleCall (319) */2987  interface PalletForeignAssetsModuleCall extends Enum {2988    readonly isRegisterForeignAsset: boolean;2989    readonly asRegisterForeignAsset: {2990      readonly owner: AccountId32;2991      readonly location: XcmVersionedMultiLocation;2992      readonly metadata: PalletForeignAssetsModuleAssetMetadata;2993    } & Struct;2994    readonly isUpdateForeignAsset: boolean;2995    readonly asUpdateForeignAsset: {2996      readonly foreignAssetId: u32;2997      readonly location: XcmVersionedMultiLocation;2998      readonly metadata: PalletForeignAssetsModuleAssetMetadata;2999    } & Struct;3000    readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3001  }30023003  /** @name PalletEvmCall (320) */3004  interface PalletEvmCall extends Enum {3005    readonly isWithdraw: boolean;3006    readonly asWithdraw: {3007      readonly address: H160;3008      readonly value: u128;3009    } & Struct;3010    readonly isCall: boolean;3011    readonly asCall: {3012      readonly source: H160;3013      readonly target: H160;3014      readonly input: Bytes;3015      readonly value: U256;3016      readonly gasLimit: u64;3017      readonly maxFeePerGas: U256;3018      readonly maxPriorityFeePerGas: Option<U256>;3019      readonly nonce: Option<U256>;3020      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3021    } & Struct;3022    readonly isCreate: boolean;3023    readonly asCreate: {3024      readonly source: H160;3025      readonly init: Bytes;3026      readonly value: U256;3027      readonly gasLimit: u64;3028      readonly maxFeePerGas: U256;3029      readonly maxPriorityFeePerGas: Option<U256>;3030      readonly nonce: Option<U256>;3031      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3032    } & Struct;3033    readonly isCreate2: boolean;3034    readonly asCreate2: {3035      readonly source: H160;3036      readonly init: Bytes;3037      readonly salt: H256;3038      readonly value: U256;3039      readonly gasLimit: u64;3040      readonly maxFeePerGas: U256;3041      readonly maxPriorityFeePerGas: Option<U256>;3042      readonly nonce: Option<U256>;3043      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3044    } & Struct;3045    readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3046  }30473048  /** @name PalletEthereumCall (326) */3049  interface PalletEthereumCall extends Enum {3050    readonly isTransact: boolean;3051    readonly asTransact: {3052      readonly transaction: EthereumTransactionTransactionV2;3053    } & Struct;3054    readonly type: 'Transact';3055  }30563057  /** @name EthereumTransactionTransactionV2 (327) */3058  interface EthereumTransactionTransactionV2 extends Enum {3059    readonly isLegacy: boolean;3060    readonly asLegacy: EthereumTransactionLegacyTransaction;3061    readonly isEip2930: boolean;3062    readonly asEip2930: EthereumTransactionEip2930Transaction;3063    readonly isEip1559: boolean;3064    readonly asEip1559: EthereumTransactionEip1559Transaction;3065    readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3066  }30673068  /** @name EthereumTransactionLegacyTransaction (328) */3069  interface EthereumTransactionLegacyTransaction extends Struct {3070    readonly nonce: U256;3071    readonly gasPrice: U256;3072    readonly gasLimit: U256;3073    readonly action: EthereumTransactionTransactionAction;3074    readonly value: U256;3075    readonly input: Bytes;3076    readonly signature: EthereumTransactionTransactionSignature;3077  }30783079  /** @name EthereumTransactionTransactionAction (329) */3080  interface EthereumTransactionTransactionAction extends Enum {3081    readonly isCall: boolean;3082    readonly asCall: H160;3083    readonly isCreate: boolean;3084    readonly type: 'Call' | 'Create';3085  }30863087  /** @name EthereumTransactionTransactionSignature (330) */3088  interface EthereumTransactionTransactionSignature extends Struct {3089    readonly v: u64;3090    readonly r: H256;3091    readonly s: H256;3092  }30933094  /** @name EthereumTransactionEip2930Transaction (332) */3095  interface EthereumTransactionEip2930Transaction extends Struct {3096    readonly chainId: u64;3097    readonly nonce: U256;3098    readonly gasPrice: U256;3099    readonly gasLimit: U256;3100    readonly action: EthereumTransactionTransactionAction;3101    readonly value: U256;3102    readonly input: Bytes;3103    readonly accessList: Vec<EthereumTransactionAccessListItem>;3104    readonly oddYParity: bool;3105    readonly r: H256;3106    readonly s: H256;3107  }31083109  /** @name EthereumTransactionAccessListItem (334) */3110  interface EthereumTransactionAccessListItem extends Struct {3111    readonly address: H160;3112    readonly storageKeys: Vec<H256>;3113  }31143115  /** @name EthereumTransactionEip1559Transaction (335) */3116  interface EthereumTransactionEip1559Transaction extends Struct {3117    readonly chainId: u64;3118    readonly nonce: U256;3119    readonly maxPriorityFeePerGas: U256;3120    readonly maxFeePerGas: U256;3121    readonly gasLimit: U256;3122    readonly action: EthereumTransactionTransactionAction;3123    readonly value: U256;3124    readonly input: Bytes;3125    readonly accessList: Vec<EthereumTransactionAccessListItem>;3126    readonly oddYParity: bool;3127    readonly r: H256;3128    readonly s: H256;3129  }31303131  /** @name PalletEvmMigrationCall (336) */3132  interface PalletEvmMigrationCall extends Enum {3133    readonly isBegin: boolean;3134    readonly asBegin: {3135      readonly address: H160;3136    } & Struct;3137    readonly isSetData: boolean;3138    readonly asSetData: {3139      readonly address: H160;3140      readonly data: Vec<ITuple<[H256, H256]>>;3141    } & Struct;3142    readonly isFinish: boolean;3143    readonly asFinish: {3144      readonly address: H160;3145      readonly code: Bytes;3146    } & Struct;3147    readonly isInsertEthLogs: boolean;3148    readonly asInsertEthLogs: {3149      readonly logs: Vec<EthereumLog>;3150    } & Struct;3151    readonly isInsertEvents: boolean;3152    readonly asInsertEvents: {3153      readonly events: Vec<Bytes>;3154    } & Struct;3155    readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3156  }31573158  /** @name PalletMaintenanceCall (340) */3159  interface PalletMaintenanceCall extends Enum {3160    readonly isEnable: boolean;3161    readonly isDisable: boolean;3162    readonly type: 'Enable' | 'Disable';3163  }31643165  /** @name PalletTestUtilsCall (341) */3166  interface PalletTestUtilsCall extends Enum {3167    readonly isEnable: boolean;3168    readonly isSetTestValue: boolean;3169    readonly asSetTestValue: {3170      readonly value: u32;3171    } & Struct;3172    readonly isSetTestValueAndRollback: boolean;3173    readonly asSetTestValueAndRollback: {3174      readonly value: u32;3175    } & Struct;3176    readonly isIncTestValue: boolean;3177    readonly isJustTakeFee: boolean;3178    readonly isBatchAll: boolean;3179    readonly asBatchAll: {3180      readonly calls: Vec<Call>;3181    } & Struct;3182    readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3183  }31843185  /** @name PalletSudoError (343) */3186  interface PalletSudoError extends Enum {3187    readonly isRequireSudo: boolean;3188    readonly type: 'RequireSudo';3189  }31903191  /** @name OrmlVestingModuleError (345) */3192  interface OrmlVestingModuleError extends Enum {3193    readonly isZeroVestingPeriod: boolean;3194    readonly isZeroVestingPeriodCount: boolean;3195    readonly isInsufficientBalanceToLock: boolean;3196    readonly isTooManyVestingSchedules: boolean;3197    readonly isAmountLow: boolean;3198    readonly isMaxVestingSchedulesExceeded: boolean;3199    readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3200  }32013202  /** @name OrmlXtokensModuleError (346) */3203  interface OrmlXtokensModuleError extends Enum {3204    readonly isAssetHasNoReserve: boolean;3205    readonly isNotCrossChainTransfer: boolean;3206    readonly isInvalidDest: boolean;3207    readonly isNotCrossChainTransferableCurrency: boolean;3208    readonly isUnweighableMessage: boolean;3209    readonly isXcmExecutionFailed: boolean;3210    readonly isCannotReanchor: boolean;3211    readonly isInvalidAncestry: boolean;3212    readonly isInvalidAsset: boolean;3213    readonly isDestinationNotInvertible: boolean;3214    readonly isBadVersion: boolean;3215    readonly isDistinctReserveForAssetAndFee: boolean;3216    readonly isZeroFee: boolean;3217    readonly isZeroAmount: boolean;3218    readonly isTooManyAssetsBeingSent: boolean;3219    readonly isAssetIndexNonExistent: boolean;3220    readonly isFeeNotEnough: boolean;3221    readonly isNotSupportedMultiLocation: boolean;3222    readonly isMinXcmFeeNotDefined: boolean;3223    readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3224  }32253226  /** @name OrmlTokensBalanceLock (349) */3227  interface OrmlTokensBalanceLock extends Struct {3228    readonly id: U8aFixed;3229    readonly amount: u128;3230  }32313232  /** @name OrmlTokensAccountData (351) */3233  interface OrmlTokensAccountData extends Struct {3234    readonly free: u128;3235    readonly reserved: u128;3236    readonly frozen: u128;3237  }32383239  /** @name OrmlTokensReserveData (353) */3240  interface OrmlTokensReserveData extends Struct {3241    readonly id: Null;3242    readonly amount: u128;3243  }32443245  /** @name OrmlTokensModuleError (355) */3246  interface OrmlTokensModuleError extends Enum {3247    readonly isBalanceTooLow: boolean;3248    readonly isAmountIntoBalanceFailed: boolean;3249    readonly isLiquidityRestrictions: boolean;3250    readonly isMaxLocksExceeded: boolean;3251    readonly isKeepAlive: boolean;3252    readonly isExistentialDeposit: boolean;3253    readonly isDeadAccount: boolean;3254    readonly isTooManyReserves: boolean;3255    readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3256  }32573258  /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3259  interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3260    readonly sender: u32;3261    readonly state: CumulusPalletXcmpQueueInboundState;3262    readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3263  }32643265  /** @name CumulusPalletXcmpQueueInboundState (358) */3266  interface CumulusPalletXcmpQueueInboundState extends Enum {3267    readonly isOk: boolean;3268    readonly isSuspended: boolean;3269    readonly type: 'Ok' | 'Suspended';3270  }32713272  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3273  interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3274    readonly isConcatenatedVersionedXcm: boolean;3275    readonly isConcatenatedEncodedBlob: boolean;3276    readonly isSignals: boolean;3277    readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3278  }32793280  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3281  interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3282    readonly recipient: u32;3283    readonly state: CumulusPalletXcmpQueueOutboundState;3284    readonly signalsExist: bool;3285    readonly firstIndex: u16;3286    readonly lastIndex: u16;3287  }32883289  /** @name CumulusPalletXcmpQueueOutboundState (365) */3290  interface CumulusPalletXcmpQueueOutboundState extends Enum {3291    readonly isOk: boolean;3292    readonly isSuspended: boolean;3293    readonly type: 'Ok' | 'Suspended';3294  }32953296  /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3297  interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3298    readonly suspendThreshold: u32;3299    readonly dropThreshold: u32;3300    readonly resumeThreshold: u32;3301    readonly thresholdWeight: SpWeightsWeightV2Weight;3302    readonly weightRestrictDecay: SpWeightsWeightV2Weight;3303    readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3304  }33053306  /** @name CumulusPalletXcmpQueueError (369) */3307  interface CumulusPalletXcmpQueueError extends Enum {3308    readonly isFailedToSend: boolean;3309    readonly isBadXcmOrigin: boolean;3310    readonly isBadXcm: boolean;3311    readonly isBadOverweightIndex: boolean;3312    readonly isWeightOverLimit: boolean;3313    readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3314  }33153316  /** @name PalletXcmError (370) */3317  interface PalletXcmError extends Enum {3318    readonly isUnreachable: boolean;3319    readonly isSendFailure: boolean;3320    readonly isFiltered: boolean;3321    readonly isUnweighableMessage: boolean;3322    readonly isDestinationNotInvertible: boolean;3323    readonly isEmpty: boolean;3324    readonly isCannotReanchor: boolean;3325    readonly isTooManyAssets: boolean;3326    readonly isInvalidOrigin: boolean;3327    readonly isBadVersion: boolean;3328    readonly isBadLocation: boolean;3329    readonly isNoSubscription: boolean;3330    readonly isAlreadySubscribed: boolean;3331    readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3332  }33333334  /** @name CumulusPalletXcmError (371) */3335  type CumulusPalletXcmError = Null;33363337  /** @name CumulusPalletDmpQueueConfigData (372) */3338  interface CumulusPalletDmpQueueConfigData extends Struct {3339    readonly maxIndividual: SpWeightsWeightV2Weight;3340  }33413342  /** @name CumulusPalletDmpQueuePageIndexData (373) */3343  interface CumulusPalletDmpQueuePageIndexData extends Struct {3344    readonly beginUsed: u32;3345    readonly endUsed: u32;3346    readonly overweightCount: u64;3347  }33483349  /** @name CumulusPalletDmpQueueError (376) */3350  interface CumulusPalletDmpQueueError extends Enum {3351    readonly isUnknown: boolean;3352    readonly isOverLimit: boolean;3353    readonly type: 'Unknown' | 'OverLimit';3354  }33553356  /** @name PalletUniqueError (380) */3357  interface PalletUniqueError extends Enum {3358    readonly isCollectionDecimalPointLimitExceeded: boolean;3359    readonly isEmptyArgument: boolean;3360    readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3361    readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3362  }33633364  /** @name PalletConfigurationError (381) */3365  interface PalletConfigurationError extends Enum {3366    readonly isInconsistentConfiguration: boolean;3367    readonly type: 'InconsistentConfiguration';3368  }33693370  /** @name UpDataStructsCollection (382) */3371  interface UpDataStructsCollection extends Struct {3372    readonly owner: AccountId32;3373    readonly mode: UpDataStructsCollectionMode;3374    readonly name: Vec<u16>;3375    readonly description: Vec<u16>;3376    readonly tokenPrefix: Bytes;3377    readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3378    readonly limits: UpDataStructsCollectionLimits;3379    readonly permissions: UpDataStructsCollectionPermissions;3380    readonly flags: U8aFixed;3381  }33823383  /** @name UpDataStructsSponsorshipStateAccountId32 (383) */3384  interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3385    readonly isDisabled: boolean;3386    readonly isUnconfirmed: boolean;3387    readonly asUnconfirmed: AccountId32;3388    readonly isConfirmed: boolean;3389    readonly asConfirmed: AccountId32;3390    readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3391  }33923393  /** @name UpDataStructsProperties (385) */3394  interface UpDataStructsProperties extends Struct {3395    readonly map: UpDataStructsPropertiesMapBoundedVec;3396    readonly consumedSpace: u32;3397    readonly spaceLimit: u32;3398  }33993400  /** @name UpDataStructsPropertiesMapBoundedVec (386) */3401  interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}34023403  /** @name UpDataStructsPropertiesMapPropertyPermission (391) */3404  interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}34053406  /** @name UpDataStructsCollectionStats (398) */3407  interface UpDataStructsCollectionStats extends Struct {3408    readonly created: u32;3409    readonly destroyed: u32;3410    readonly alive: u32;3411  }34123413  /** @name UpDataStructsTokenChild (399) */3414  interface UpDataStructsTokenChild extends Struct {3415    readonly token: u32;3416    readonly collection: u32;3417  }34183419  /** @name PhantomTypeUpDataStructs (400) */3420  interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}34213422  /** @name UpDataStructsTokenData (402) */3423  interface UpDataStructsTokenData extends Struct {3424    readonly properties: Vec<UpDataStructsProperty>;3425    readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3426    readonly pieces: u128;3427  }34283429  /** @name UpDataStructsRpcCollection (404) */3430  interface UpDataStructsRpcCollection extends Struct {3431    readonly owner: AccountId32;3432    readonly mode: UpDataStructsCollectionMode;3433    readonly name: Vec<u16>;3434    readonly description: Vec<u16>;3435    readonly tokenPrefix: Bytes;3436    readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3437    readonly limits: UpDataStructsCollectionLimits;3438    readonly permissions: UpDataStructsCollectionPermissions;3439    readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3440    readonly properties: Vec<UpDataStructsProperty>;3441    readonly readOnly: bool;3442    readonly flags: UpDataStructsRpcCollectionFlags;3443  }34443445  /** @name UpDataStructsRpcCollectionFlags (405) */3446  interface UpDataStructsRpcCollectionFlags extends Struct {3447    readonly foreign: bool;3448    readonly erc721metadata: bool;3449  }34503451  /** @name RmrkTraitsCollectionCollectionInfo (406) */3452  interface RmrkTraitsCollectionCollectionInfo extends Struct {3453    readonly issuer: AccountId32;3454    readonly metadata: Bytes;3455    readonly max: Option<u32>;3456    readonly symbol: Bytes;3457    readonly nftsCount: u32;3458  }34593460  /** @name RmrkTraitsNftNftInfo (407) */3461  interface RmrkTraitsNftNftInfo extends Struct {3462    readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3463    readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3464    readonly metadata: Bytes;3465    readonly equipped: bool;3466    readonly pending: bool;3467  }34683469  /** @name RmrkTraitsNftRoyaltyInfo (409) */3470  interface RmrkTraitsNftRoyaltyInfo extends Struct {3471    readonly recipient: AccountId32;3472    readonly amount: Permill;3473  }34743475  /** @name RmrkTraitsResourceResourceInfo (410) */3476  interface RmrkTraitsResourceResourceInfo extends Struct {3477    readonly id: u32;3478    readonly resource: RmrkTraitsResourceResourceTypes;3479    readonly pending: bool;3480    readonly pendingRemoval: bool;3481  }34823483  /** @name RmrkTraitsPropertyPropertyInfo (411) */3484  interface RmrkTraitsPropertyPropertyInfo extends Struct {3485    readonly key: Bytes;3486    readonly value: Bytes;3487  }34883489  /** @name RmrkTraitsBaseBaseInfo (412) */3490  interface RmrkTraitsBaseBaseInfo extends Struct {3491    readonly issuer: AccountId32;3492    readonly baseType: Bytes;3493    readonly symbol: Bytes;3494  }34953496  /** @name RmrkTraitsNftNftChild (413) */3497  interface RmrkTraitsNftNftChild extends Struct {3498    readonly collectionId: u32;3499    readonly nftId: u32;3500  }35013502  /** @name UpPovEstimateRpcPovInfo (414) */3503  interface UpPovEstimateRpcPovInfo extends Struct {3504    readonly proofSize: u64;3505    readonly compactProofSize: u64;3506    readonly compressedProofSize: u64;3507    readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;3508    readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3509  }35103511  /** @name SpRuntimeTransactionValidityTransactionValidityError (417) */3512  interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3513    readonly isInvalid: boolean;3514    readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3515    readonly isUnknown: boolean;3516    readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;3517    readonly type: 'Invalid' | 'Unknown';3518  }35193520  /** @name SpRuntimeTransactionValidityInvalidTransaction (418) */3521  interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3522    readonly isCall: boolean;3523    readonly isPayment: boolean;3524    readonly isFuture: boolean;3525    readonly isStale: boolean;3526    readonly isBadProof: boolean;3527    readonly isAncientBirthBlock: boolean;3528    readonly isExhaustsResources: boolean;3529    readonly isCustom: boolean;3530    readonly asCustom: u8;3531    readonly isBadMandatory: boolean;3532    readonly isMandatoryValidation: boolean;3533    readonly isBadSigner: boolean;3534    readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3535  }35363537  /** @name SpRuntimeTransactionValidityUnknownTransaction (419) */3538  interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3539    readonly isCannotLookup: boolean;3540    readonly isNoUnsignedValidator: boolean;3541    readonly isCustom: boolean;3542    readonly asCustom: u8;3543    readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3544  }35453546  /** @name UpPovEstimateRpcTrieKeyValue (421) */3547  interface UpPovEstimateRpcTrieKeyValue extends Struct {3548    readonly key: Bytes;3549    readonly value: Bytes;3550  }35513552  /** @name PalletCommonError (423) */3553  interface PalletCommonError extends Enum {3554    readonly isCollectionNotFound: boolean;3555    readonly isMustBeTokenOwner: boolean;3556    readonly isNoPermission: boolean;3557    readonly isCantDestroyNotEmptyCollection: boolean;3558    readonly isPublicMintingNotAllowed: boolean;3559    readonly isAddressNotInAllowlist: boolean;3560    readonly isCollectionNameLimitExceeded: boolean;3561    readonly isCollectionDescriptionLimitExceeded: boolean;3562    readonly isCollectionTokenPrefixLimitExceeded: boolean;3563    readonly isTotalCollectionsLimitExceeded: boolean;3564    readonly isCollectionAdminCountExceeded: boolean;3565    readonly isCollectionLimitBoundsExceeded: boolean;3566    readonly isOwnerPermissionsCantBeReverted: boolean;3567    readonly isTransferNotAllowed: boolean;3568    readonly isAccountTokenLimitExceeded: boolean;3569    readonly isCollectionTokenLimitExceeded: boolean;3570    readonly isMetadataFlagFrozen: boolean;3571    readonly isTokenNotFound: boolean;3572    readonly isTokenValueTooLow: boolean;3573    readonly isApprovedValueTooLow: boolean;3574    readonly isCantApproveMoreThanOwned: boolean;3575    readonly isAddressIsNotEthMirror: boolean;3576    readonly isAddressIsZero: boolean;3577    readonly isUnsupportedOperation: boolean;3578    readonly isNotSufficientFounds: boolean;3579    readonly isUserIsNotAllowedToNest: boolean;3580    readonly isSourceCollectionIsNotAllowedToNest: boolean;3581    readonly isCollectionFieldSizeExceeded: boolean;3582    readonly isNoSpaceForProperty: boolean;3583    readonly isPropertyLimitReached: boolean;3584    readonly isPropertyKeyIsTooLong: boolean;3585    readonly isInvalidCharacterInPropertyKey: boolean;3586    readonly isEmptyPropertyKey: boolean;3587    readonly isCollectionIsExternal: boolean;3588    readonly isCollectionIsInternal: boolean;3589    readonly isConfirmSponsorshipFail: boolean;3590    readonly isUserIsNotCollectionAdmin: boolean;3591    readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3592  }35933594  /** @name PalletFungibleError (425) */3595  interface PalletFungibleError extends Enum {3596    readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3597    readonly isFungibleItemsHaveNoId: boolean;3598    readonly isFungibleItemsDontHaveData: boolean;3599    readonly isFungibleDisallowsNesting: boolean;3600    readonly isSettingPropertiesNotAllowed: boolean;3601    readonly isSettingAllowanceForAllNotAllowed: boolean;3602    readonly isFungibleTokensAreAlwaysValid: boolean;3603    readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3604  }36053606  /** @name PalletRefungibleError (429) */3607  interface PalletRefungibleError extends Enum {3608    readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3609    readonly isWrongRefungiblePieces: boolean;3610    readonly isRepartitionWhileNotOwningAllPieces: boolean;3611    readonly isRefungibleDisallowsNesting: boolean;3612    readonly isSettingPropertiesNotAllowed: boolean;3613    readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3614  }36153616  /** @name PalletNonfungibleItemData (430) */3617  interface PalletNonfungibleItemData extends Struct {3618    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3619  }36203621  /** @name UpDataStructsPropertyScope (432) */3622  interface UpDataStructsPropertyScope extends Enum {3623    readonly isNone: boolean;3624    readonly isRmrk: boolean;3625    readonly type: 'None' | 'Rmrk';3626  }36273628  /** @name PalletNonfungibleError (435) */3629  interface PalletNonfungibleError extends Enum {3630    readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3631    readonly isNonfungibleItemsHaveNoAmount: boolean;3632    readonly isCantBurnNftWithChildren: boolean;3633    readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3634  }36353636  /** @name PalletStructureError (436) */3637  interface PalletStructureError extends Enum {3638    readonly isOuroborosDetected: boolean;3639    readonly isDepthLimit: boolean;3640    readonly isBreadthLimit: boolean;3641    readonly isTokenNotFound: boolean;3642    readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3643  }36443645  /** @name PalletRmrkCoreError (437) */3646  interface PalletRmrkCoreError extends Enum {3647    readonly isCorruptedCollectionType: boolean;3648    readonly isRmrkPropertyKeyIsTooLong: boolean;3649    readonly isRmrkPropertyValueIsTooLong: boolean;3650    readonly isRmrkPropertyIsNotFound: boolean;3651    readonly isUnableToDecodeRmrkData: boolean;3652    readonly isCollectionNotEmpty: boolean;3653    readonly isNoAvailableCollectionId: boolean;3654    readonly isNoAvailableNftId: boolean;3655    readonly isCollectionUnknown: boolean;3656    readonly isNoPermission: boolean;3657    readonly isNonTransferable: boolean;3658    readonly isCollectionFullOrLocked: boolean;3659    readonly isResourceDoesntExist: boolean;3660    readonly isCannotSendToDescendentOrSelf: boolean;3661    readonly isCannotAcceptNonOwnedNft: boolean;3662    readonly isCannotRejectNonOwnedNft: boolean;3663    readonly isCannotRejectNonPendingNft: boolean;3664    readonly isResourceNotPending: boolean;3665    readonly isNoAvailableResourceId: boolean;3666    readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3667  }36683669  /** @name PalletRmrkEquipError (439) */3670  interface PalletRmrkEquipError extends Enum {3671    readonly isPermissionError: boolean;3672    readonly isNoAvailableBaseId: boolean;3673    readonly isNoAvailablePartId: boolean;3674    readonly isBaseDoesntExist: boolean;3675    readonly isNeedsDefaultThemeFirst: boolean;3676    readonly isPartDoesntExist: boolean;3677    readonly isNoEquippableOnFixedPart: boolean;3678    readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3679  }36803681  /** @name PalletAppPromotionError (445) */3682  interface PalletAppPromotionError extends Enum {3683    readonly isAdminNotSet: boolean;3684    readonly isNoPermission: boolean;3685    readonly isNotSufficientFunds: boolean;3686    readonly isPendingForBlockOverflow: boolean;3687    readonly isSponsorNotSet: boolean;3688    readonly isIncorrectLockedBalanceOperation: boolean;3689    readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3690  }36913692  /** @name PalletForeignAssetsModuleError (446) */3693  interface PalletForeignAssetsModuleError extends Enum {3694    readonly isBadLocation: boolean;3695    readonly isMultiLocationExisted: boolean;3696    readonly isAssetIdNotExists: boolean;3697    readonly isAssetIdExisted: boolean;3698    readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3699  }37003701  /** @name PalletEvmError (448) */3702  interface PalletEvmError extends Enum {3703    readonly isBalanceLow: boolean;3704    readonly isFeeOverflow: boolean;3705    readonly isPaymentOverflow: boolean;3706    readonly isWithdrawFailed: boolean;3707    readonly isGasPriceTooLow: boolean;3708    readonly isInvalidNonce: boolean;3709    readonly isGasLimitTooLow: boolean;3710    readonly isGasLimitTooHigh: boolean;3711    readonly isUndefined: boolean;3712    readonly isReentrancy: boolean;3713    readonly isTransactionMustComeFromEOA: boolean;3714    readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3715  }37163717  /** @name FpRpcTransactionStatus (451) */3718  interface FpRpcTransactionStatus extends Struct {3719    readonly transactionHash: H256;3720    readonly transactionIndex: u32;3721    readonly from: H160;3722    readonly to: Option<H160>;3723    readonly contractAddress: Option<H160>;3724    readonly logs: Vec<EthereumLog>;3725    readonly logsBloom: EthbloomBloom;3726  }37273728  /** @name EthbloomBloom (453) */3729  interface EthbloomBloom extends U8aFixed {}37303731  /** @name EthereumReceiptReceiptV3 (455) */3732  interface EthereumReceiptReceiptV3 extends Enum {3733    readonly isLegacy: boolean;3734    readonly asLegacy: EthereumReceiptEip658ReceiptData;3735    readonly isEip2930: boolean;3736    readonly asEip2930: EthereumReceiptEip658ReceiptData;3737    readonly isEip1559: boolean;3738    readonly asEip1559: EthereumReceiptEip658ReceiptData;3739    readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3740  }37413742  /** @name EthereumReceiptEip658ReceiptData (456) */3743  interface EthereumReceiptEip658ReceiptData extends Struct {3744    readonly statusCode: u8;3745    readonly usedGas: U256;3746    readonly logsBloom: EthbloomBloom;3747    readonly logs: Vec<EthereumLog>;3748  }37493750  /** @name EthereumBlock (457) */3751  interface EthereumBlock extends Struct {3752    readonly header: EthereumHeader;3753    readonly transactions: Vec<EthereumTransactionTransactionV2>;3754    readonly ommers: Vec<EthereumHeader>;3755  }37563757  /** @name EthereumHeader (458) */3758  interface EthereumHeader extends Struct {3759    readonly parentHash: H256;3760    readonly ommersHash: H256;3761    readonly beneficiary: H160;3762    readonly stateRoot: H256;3763    readonly transactionsRoot: H256;3764    readonly receiptsRoot: H256;3765    readonly logsBloom: EthbloomBloom;3766    readonly difficulty: U256;3767    readonly number: U256;3768    readonly gasLimit: U256;3769    readonly gasUsed: U256;3770    readonly timestamp: u64;3771    readonly extraData: Bytes;3772    readonly mixHash: H256;3773    readonly nonce: EthereumTypesHashH64;3774  }37753776  /** @name EthereumTypesHashH64 (459) */3777  interface EthereumTypesHashH64 extends U8aFixed {}37783779  /** @name PalletEthereumError (464) */3780  interface PalletEthereumError extends Enum {3781    readonly isInvalidSignature: boolean;3782    readonly isPreLogExists: boolean;3783    readonly type: 'InvalidSignature' | 'PreLogExists';3784  }37853786  /** @name PalletEvmCoderSubstrateError (465) */3787  interface PalletEvmCoderSubstrateError extends Enum {3788    readonly isOutOfGas: boolean;3789    readonly isOutOfFund: boolean;3790    readonly type: 'OutOfGas' | 'OutOfFund';3791  }37923793  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (466) */3794  interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3795    readonly isDisabled: boolean;3796    readonly isUnconfirmed: boolean;3797    readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3798    readonly isConfirmed: boolean;3799    readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3800    readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3801  }38023803  /** @name PalletEvmContractHelpersSponsoringModeT (467) */3804  interface PalletEvmContractHelpersSponsoringModeT extends Enum {3805    readonly isDisabled: boolean;3806    readonly isAllowlisted: boolean;3807    readonly isGenerous: boolean;3808    readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3809  }38103811  /** @name PalletEvmContractHelpersError (473) */3812  interface PalletEvmContractHelpersError extends Enum {3813    readonly isNoPermission: boolean;3814    readonly isNoPendingSponsor: boolean;3815    readonly isTooManyMethodsHaveSponsoredLimit: boolean;3816    readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3817  }38183819  /** @name PalletEvmMigrationError (474) */3820  interface PalletEvmMigrationError extends Enum {3821    readonly isAccountNotEmpty: boolean;3822    readonly isAccountIsNotMigrating: boolean;3823    readonly isBadEvent: boolean;3824    readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3825  }38263827  /** @name PalletMaintenanceError (475) */3828  type PalletMaintenanceError = Null;38293830  /** @name PalletTestUtilsError (476) */3831  interface PalletTestUtilsError extends Enum {3832    readonly isTestPalletDisabled: boolean;3833    readonly isTriggerRollback: boolean;3834    readonly type: 'TestPalletDisabled' | 'TriggerRollback';3835  }38363837  /** @name SpRuntimeMultiSignature (478) */3838  interface SpRuntimeMultiSignature extends Enum {3839    readonly isEd25519: boolean;3840    readonly asEd25519: SpCoreEd25519Signature;3841    readonly isSr25519: boolean;3842    readonly asSr25519: SpCoreSr25519Signature;3843    readonly isEcdsa: boolean;3844    readonly asEcdsa: SpCoreEcdsaSignature;3845    readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3846  }38473848  /** @name SpCoreEd25519Signature (479) */3849  interface SpCoreEd25519Signature extends U8aFixed {}38503851  /** @name SpCoreSr25519Signature (481) */3852  interface SpCoreSr25519Signature extends U8aFixed {}38533854  /** @name SpCoreEcdsaSignature (482) */3855  interface SpCoreEcdsaSignature extends U8aFixed {}38563857  /** @name FrameSystemExtensionsCheckSpecVersion (485) */3858  type FrameSystemExtensionsCheckSpecVersion = Null;38593860  /** @name FrameSystemExtensionsCheckTxVersion (486) */3861  type FrameSystemExtensionsCheckTxVersion = Null;38623863  /** @name FrameSystemExtensionsCheckGenesis (487) */3864  type FrameSystemExtensionsCheckGenesis = Null;38653866  /** @name FrameSystemExtensionsCheckNonce (490) */3867  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}38683869  /** @name FrameSystemExtensionsCheckWeight (491) */3870  type FrameSystemExtensionsCheckWeight = Null;38713872  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (492) */3873  type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;38743875  /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (493) */3876  type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;38773878  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (494) */3879  interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}38803881  /** @name OpalRuntimeRuntime (495) */3882  type OpalRuntimeRuntime = Null;38833884  /** @name PalletEthereumFakeTransactionFinalizer (496) */3885  type PalletEthereumFakeTransactionFinalizer = Null;38863887} // declare module
after · tests/src/interfaces/types-lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { Data } from '@polkadot/types';9import 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';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';12import type { Event } from '@polkadot/types/interfaces/system';1314declare module '@polkadot/types/lookup' {15  /** @name FrameSystemAccountInfo (3) */16  interface FrameSystemAccountInfo extends Struct {17    readonly nonce: u32;18    readonly consumers: u32;19    readonly providers: u32;20    readonly sufficients: u32;21    readonly data: PalletBalancesAccountData;22  }2324  /** @name PalletBalancesAccountData (5) */25  interface PalletBalancesAccountData extends Struct {26    readonly free: u128;27    readonly reserved: u128;28    readonly miscFrozen: u128;29    readonly feeFrozen: u128;30  }3132  /** @name FrameSupportDispatchPerDispatchClassWeight (7) */33  interface FrameSupportDispatchPerDispatchClassWeight extends Struct {34    readonly normal: SpWeightsWeightV2Weight;35    readonly operational: SpWeightsWeightV2Weight;36    readonly mandatory: SpWeightsWeightV2Weight;37  }3839  /** @name SpWeightsWeightV2Weight (8) */40  interface SpWeightsWeightV2Weight extends Struct {41    readonly refTime: Compact<u64>;42    readonly proofSize: Compact<u64>;43  }4445  /** @name SpRuntimeDigest (13) */46  interface SpRuntimeDigest extends Struct {47    readonly logs: Vec<SpRuntimeDigestDigestItem>;48  }4950  /** @name SpRuntimeDigestDigestItem (15) */51  interface SpRuntimeDigestDigestItem extends Enum {52    readonly isOther: boolean;53    readonly asOther: Bytes;54    readonly isConsensus: boolean;55    readonly asConsensus: ITuple<[U8aFixed, Bytes]>;56    readonly isSeal: boolean;57    readonly asSeal: ITuple<[U8aFixed, Bytes]>;58    readonly isPreRuntime: boolean;59    readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;60    readonly isRuntimeEnvironmentUpdated: boolean;61    readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';62  }6364  /** @name FrameSystemEventRecord (18) */65  interface FrameSystemEventRecord extends Struct {66    readonly phase: FrameSystemPhase;67    readonly event: Event;68    readonly topics: Vec<H256>;69  }7071  /** @name FrameSystemEvent (20) */72  interface FrameSystemEvent extends Enum {73    readonly isExtrinsicSuccess: boolean;74    readonly asExtrinsicSuccess: {75      readonly dispatchInfo: FrameSupportDispatchDispatchInfo;76    } & Struct;77    readonly isExtrinsicFailed: boolean;78    readonly asExtrinsicFailed: {79      readonly dispatchError: SpRuntimeDispatchError;80      readonly dispatchInfo: FrameSupportDispatchDispatchInfo;81    } & Struct;82    readonly isCodeUpdated: boolean;83    readonly isNewAccount: boolean;84    readonly asNewAccount: {85      readonly account: AccountId32;86    } & Struct;87    readonly isKilledAccount: boolean;88    readonly asKilledAccount: {89      readonly account: AccountId32;90    } & Struct;91    readonly isRemarked: boolean;92    readonly asRemarked: {93      readonly sender: AccountId32;94      readonly hash_: H256;95    } & Struct;96    readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';97  }9899  /** @name FrameSupportDispatchDispatchInfo (21) */100  interface FrameSupportDispatchDispatchInfo extends Struct {101    readonly weight: SpWeightsWeightV2Weight;102    readonly class: FrameSupportDispatchDispatchClass;103    readonly paysFee: FrameSupportDispatchPays;104  }105106  /** @name FrameSupportDispatchDispatchClass (22) */107  interface FrameSupportDispatchDispatchClass extends Enum {108    readonly isNormal: boolean;109    readonly isOperational: boolean;110    readonly isMandatory: boolean;111    readonly type: 'Normal' | 'Operational' | 'Mandatory';112  }113114  /** @name FrameSupportDispatchPays (23) */115  interface FrameSupportDispatchPays extends Enum {116    readonly isYes: boolean;117    readonly isNo: boolean;118    readonly type: 'Yes' | 'No';119  }120121  /** @name SpRuntimeDispatchError (24) */122  interface SpRuntimeDispatchError extends Enum {123    readonly isOther: boolean;124    readonly isCannotLookup: boolean;125    readonly isBadOrigin: boolean;126    readonly isModule: boolean;127    readonly asModule: SpRuntimeModuleError;128    readonly isConsumerRemaining: boolean;129    readonly isNoProviders: boolean;130    readonly isTooManyConsumers: boolean;131    readonly isToken: boolean;132    readonly asToken: SpRuntimeTokenError;133    readonly isArithmetic: boolean;134    readonly asArithmetic: SpArithmeticArithmeticError;135    readonly isTransactional: boolean;136    readonly asTransactional: SpRuntimeTransactionalError;137    readonly isExhausted: boolean;138    readonly isCorruption: boolean;139    readonly isUnavailable: boolean;140    readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';141  }142143  /** @name SpRuntimeModuleError (25) */144  interface SpRuntimeModuleError extends Struct {145    readonly index: u8;146    readonly error: U8aFixed;147  }148149  /** @name SpRuntimeTokenError (26) */150  interface SpRuntimeTokenError extends Enum {151    readonly isNoFunds: boolean;152    readonly isWouldDie: boolean;153    readonly isBelowMinimum: boolean;154    readonly isCannotCreate: boolean;155    readonly isUnknownAsset: boolean;156    readonly isFrozen: boolean;157    readonly isUnsupported: boolean;158    readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';159  }160161  /** @name SpArithmeticArithmeticError (27) */162  interface SpArithmeticArithmeticError extends Enum {163    readonly isUnderflow: boolean;164    readonly isOverflow: boolean;165    readonly isDivisionByZero: boolean;166    readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';167  }168169  /** @name SpRuntimeTransactionalError (28) */170  interface SpRuntimeTransactionalError extends Enum {171    readonly isLimitReached: boolean;172    readonly isNoLayer: boolean;173    readonly type: 'LimitReached' | 'NoLayer';174  }175176  /** @name CumulusPalletParachainSystemEvent (29) */177  interface CumulusPalletParachainSystemEvent extends Enum {178    readonly isValidationFunctionStored: boolean;179    readonly isValidationFunctionApplied: boolean;180    readonly asValidationFunctionApplied: {181      readonly relayChainBlockNum: u32;182    } & Struct;183    readonly isValidationFunctionDiscarded: boolean;184    readonly isUpgradeAuthorized: boolean;185    readonly asUpgradeAuthorized: {186      readonly codeHash: H256;187    } & Struct;188    readonly isDownwardMessagesReceived: boolean;189    readonly asDownwardMessagesReceived: {190      readonly count: u32;191    } & Struct;192    readonly isDownwardMessagesProcessed: boolean;193    readonly asDownwardMessagesProcessed: {194      readonly weightUsed: SpWeightsWeightV2Weight;195      readonly dmqHead: H256;196    } & Struct;197    readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';198  }199200  /** @name PalletCollatorSelectionEvent (30) */201  interface PalletCollatorSelectionEvent extends Enum {202    readonly isInvulnerableAdded: boolean;203    readonly asInvulnerableAdded: {204      readonly invulnerable: AccountId32;205    } & Struct;206    readonly isInvulnerableRemoved: boolean;207    readonly asInvulnerableRemoved: {208      readonly invulnerable: AccountId32;209    } & Struct;210    readonly isLicenseObtained: boolean;211    readonly asLicenseObtained: {212      readonly accountId: AccountId32;213      readonly deposit: u128;214    } & Struct;215    readonly isLicenseReleased: boolean;216    readonly asLicenseReleased: {217      readonly accountId: AccountId32;218      readonly depositReturned: u128;219    } & Struct;220    readonly isCandidateAdded: boolean;221    readonly asCandidateAdded: {222      readonly accountId: AccountId32;223    } & Struct;224    readonly isCandidateRemoved: boolean;225    readonly asCandidateRemoved: {226      readonly accountId: AccountId32;227    } & Struct;228    readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';229  }230231  /** @name PalletSessionEvent (31) */232  interface PalletSessionEvent extends Enum {233    readonly isNewSession: boolean;234    readonly asNewSession: {235      readonly sessionIndex: u32;236    } & Struct;237    readonly type: 'NewSession';238  }239240  /** @name PalletBalancesEvent (32) */241  interface PalletBalancesEvent extends Enum {242    readonly isEndowed: boolean;243    readonly asEndowed: {244      readonly account: AccountId32;245      readonly freeBalance: u128;246    } & Struct;247    readonly isDustLost: boolean;248    readonly asDustLost: {249      readonly account: AccountId32;250      readonly amount: u128;251    } & Struct;252    readonly isTransfer: boolean;253    readonly asTransfer: {254      readonly from: AccountId32;255      readonly to: AccountId32;256      readonly amount: u128;257    } & Struct;258    readonly isBalanceSet: boolean;259    readonly asBalanceSet: {260      readonly who: AccountId32;261      readonly free: u128;262      readonly reserved: u128;263    } & Struct;264    readonly isReserved: boolean;265    readonly asReserved: {266      readonly who: AccountId32;267      readonly amount: u128;268    } & Struct;269    readonly isUnreserved: boolean;270    readonly asUnreserved: {271      readonly who: AccountId32;272      readonly amount: u128;273    } & Struct;274    readonly isReserveRepatriated: boolean;275    readonly asReserveRepatriated: {276      readonly from: AccountId32;277      readonly to: AccountId32;278      readonly amount: u128;279      readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;280    } & Struct;281    readonly isDeposit: boolean;282    readonly asDeposit: {283      readonly who: AccountId32;284      readonly amount: u128;285    } & Struct;286    readonly isWithdraw: boolean;287    readonly asWithdraw: {288      readonly who: AccountId32;289      readonly amount: u128;290    } & Struct;291    readonly isSlashed: boolean;292    readonly asSlashed: {293      readonly who: AccountId32;294      readonly amount: u128;295    } & Struct;296    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';297  }298299  /** @name FrameSupportTokensMiscBalanceStatus (33) */300  interface FrameSupportTokensMiscBalanceStatus extends Enum {301    readonly isFree: boolean;302    readonly isReserved: boolean;303    readonly type: 'Free' | 'Reserved';304  }305306  /** @name PalletTransactionPaymentEvent (34) */307  interface PalletTransactionPaymentEvent extends Enum {308    readonly isTransactionFeePaid: boolean;309    readonly asTransactionFeePaid: {310      readonly who: AccountId32;311      readonly actualFee: u128;312      readonly tip: u128;313    } & Struct;314    readonly type: 'TransactionFeePaid';315  }316317  /** @name PalletTreasuryEvent (35) */318  interface PalletTreasuryEvent extends Enum {319    readonly isProposed: boolean;320    readonly asProposed: {321      readonly proposalIndex: u32;322    } & Struct;323    readonly isSpending: boolean;324    readonly asSpending: {325      readonly budgetRemaining: u128;326    } & Struct;327    readonly isAwarded: boolean;328    readonly asAwarded: {329      readonly proposalIndex: u32;330      readonly award: u128;331      readonly account: AccountId32;332    } & Struct;333    readonly isRejected: boolean;334    readonly asRejected: {335      readonly proposalIndex: u32;336      readonly slashed: u128;337    } & Struct;338    readonly isBurnt: boolean;339    readonly asBurnt: {340      readonly burntFunds: u128;341    } & Struct;342    readonly isRollover: boolean;343    readonly asRollover: {344      readonly rolloverBalance: u128;345    } & Struct;346    readonly isDeposit: boolean;347    readonly asDeposit: {348      readonly value: u128;349    } & Struct;350    readonly isSpendApproved: boolean;351    readonly asSpendApproved: {352      readonly proposalIndex: u32;353      readonly amount: u128;354      readonly beneficiary: AccountId32;355    } & Struct;356    readonly isUpdatedInactive: boolean;357    readonly asUpdatedInactive: {358      readonly reactivated: u128;359      readonly deactivated: u128;360    } & Struct;361    readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';362  }363364  /** @name PalletSudoEvent (36) */365  interface PalletSudoEvent extends Enum {366    readonly isSudid: boolean;367    readonly asSudid: {368      readonly sudoResult: Result<Null, SpRuntimeDispatchError>;369    } & Struct;370    readonly isKeyChanged: boolean;371    readonly asKeyChanged: {372      readonly oldSudoer: Option<AccountId32>;373    } & Struct;374    readonly isSudoAsDone: boolean;375    readonly asSudoAsDone: {376      readonly sudoResult: Result<Null, SpRuntimeDispatchError>;377    } & Struct;378    readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';379  }380381  /** @name OrmlVestingModuleEvent (40) */382  interface OrmlVestingModuleEvent extends Enum {383    readonly isVestingScheduleAdded: boolean;384    readonly asVestingScheduleAdded: {385      readonly from: AccountId32;386      readonly to: AccountId32;387      readonly vestingSchedule: OrmlVestingVestingSchedule;388    } & Struct;389    readonly isClaimed: boolean;390    readonly asClaimed: {391      readonly who: AccountId32;392      readonly amount: u128;393    } & Struct;394    readonly isVestingSchedulesUpdated: boolean;395    readonly asVestingSchedulesUpdated: {396      readonly who: AccountId32;397    } & Struct;398    readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';399  }400401  /** @name OrmlVestingVestingSchedule (41) */402  interface OrmlVestingVestingSchedule extends Struct {403    readonly start: u32;404    readonly period: u32;405    readonly periodCount: u32;406    readonly perPeriod: Compact<u128>;407  }408409  /** @name OrmlXtokensModuleEvent (43) */410  interface OrmlXtokensModuleEvent extends Enum {411    readonly isTransferredMultiAssets: boolean;412    readonly asTransferredMultiAssets: {413      readonly sender: AccountId32;414      readonly assets: XcmV1MultiassetMultiAssets;415      readonly fee: XcmV1MultiAsset;416      readonly dest: XcmV1MultiLocation;417    } & Struct;418    readonly type: 'TransferredMultiAssets';419  }420421  /** @name XcmV1MultiassetMultiAssets (44) */422  interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}423424  /** @name XcmV1MultiAsset (46) */425  interface XcmV1MultiAsset extends Struct {426    readonly id: XcmV1MultiassetAssetId;427    readonly fun: XcmV1MultiassetFungibility;428  }429430  /** @name XcmV1MultiassetAssetId (47) */431  interface XcmV1MultiassetAssetId extends Enum {432    readonly isConcrete: boolean;433    readonly asConcrete: XcmV1MultiLocation;434    readonly isAbstract: boolean;435    readonly asAbstract: Bytes;436    readonly type: 'Concrete' | 'Abstract';437  }438439  /** @name XcmV1MultiLocation (48) */440  interface XcmV1MultiLocation extends Struct {441    readonly parents: u8;442    readonly interior: XcmV1MultilocationJunctions;443  }444445  /** @name XcmV1MultilocationJunctions (49) */446  interface XcmV1MultilocationJunctions extends Enum {447    readonly isHere: boolean;448    readonly isX1: boolean;449    readonly asX1: XcmV1Junction;450    readonly isX2: boolean;451    readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;452    readonly isX3: boolean;453    readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;454    readonly isX4: boolean;455    readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;456    readonly isX5: boolean;457    readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;458    readonly isX6: boolean;459    readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;460    readonly isX7: boolean;461    readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;462    readonly isX8: boolean;463    readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;464    readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';465  }466467  /** @name XcmV1Junction (50) */468  interface XcmV1Junction extends Enum {469    readonly isParachain: boolean;470    readonly asParachain: Compact<u32>;471    readonly isAccountId32: boolean;472    readonly asAccountId32: {473      readonly network: XcmV0JunctionNetworkId;474      readonly id: U8aFixed;475    } & Struct;476    readonly isAccountIndex64: boolean;477    readonly asAccountIndex64: {478      readonly network: XcmV0JunctionNetworkId;479      readonly index: Compact<u64>;480    } & Struct;481    readonly isAccountKey20: boolean;482    readonly asAccountKey20: {483      readonly network: XcmV0JunctionNetworkId;484      readonly key: U8aFixed;485    } & Struct;486    readonly isPalletInstance: boolean;487    readonly asPalletInstance: u8;488    readonly isGeneralIndex: boolean;489    readonly asGeneralIndex: Compact<u128>;490    readonly isGeneralKey: boolean;491    readonly asGeneralKey: Bytes;492    readonly isOnlyChild: boolean;493    readonly isPlurality: boolean;494    readonly asPlurality: {495      readonly id: XcmV0JunctionBodyId;496      readonly part: XcmV0JunctionBodyPart;497    } & Struct;498    readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';499  }500501  /** @name XcmV0JunctionNetworkId (52) */502  interface XcmV0JunctionNetworkId extends Enum {503    readonly isAny: boolean;504    readonly isNamed: boolean;505    readonly asNamed: Bytes;506    readonly isPolkadot: boolean;507    readonly isKusama: boolean;508    readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';509  }510511  /** @name XcmV0JunctionBodyId (55) */512  interface XcmV0JunctionBodyId extends Enum {513    readonly isUnit: boolean;514    readonly isNamed: boolean;515    readonly asNamed: Bytes;516    readonly isIndex: boolean;517    readonly asIndex: Compact<u32>;518    readonly isExecutive: boolean;519    readonly isTechnical: boolean;520    readonly isLegislative: boolean;521    readonly isJudicial: boolean;522    readonly isDefense: boolean;523    readonly isAdministration: boolean;524    readonly isTreasury: boolean;525    readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';526  }527528  /** @name XcmV0JunctionBodyPart (56) */529  interface XcmV0JunctionBodyPart extends Enum {530    readonly isVoice: boolean;531    readonly isMembers: boolean;532    readonly asMembers: {533      readonly count: Compact<u32>;534    } & Struct;535    readonly isFraction: boolean;536    readonly asFraction: {537      readonly nom: Compact<u32>;538      readonly denom: Compact<u32>;539    } & Struct;540    readonly isAtLeastProportion: boolean;541    readonly asAtLeastProportion: {542      readonly nom: Compact<u32>;543      readonly denom: Compact<u32>;544    } & Struct;545    readonly isMoreThanProportion: boolean;546    readonly asMoreThanProportion: {547      readonly nom: Compact<u32>;548      readonly denom: Compact<u32>;549    } & Struct;550    readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';551  }552553  /** @name XcmV1MultiassetFungibility (57) */554  interface XcmV1MultiassetFungibility extends Enum {555    readonly isFungible: boolean;556    readonly asFungible: Compact<u128>;557    readonly isNonFungible: boolean;558    readonly asNonFungible: XcmV1MultiassetAssetInstance;559    readonly type: 'Fungible' | 'NonFungible';560  }561562  /** @name XcmV1MultiassetAssetInstance (58) */563  interface XcmV1MultiassetAssetInstance extends Enum {564    readonly isUndefined: boolean;565    readonly isIndex: boolean;566    readonly asIndex: Compact<u128>;567    readonly isArray4: boolean;568    readonly asArray4: U8aFixed;569    readonly isArray8: boolean;570    readonly asArray8: U8aFixed;571    readonly isArray16: boolean;572    readonly asArray16: U8aFixed;573    readonly isArray32: boolean;574    readonly asArray32: U8aFixed;575    readonly isBlob: boolean;576    readonly asBlob: Bytes;577    readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';578  }579580  /** @name OrmlTokensModuleEvent (61) */581  interface OrmlTokensModuleEvent extends Enum {582    readonly isEndowed: boolean;583    readonly asEndowed: {584      readonly currencyId: PalletForeignAssetsAssetIds;585      readonly who: AccountId32;586      readonly amount: u128;587    } & Struct;588    readonly isDustLost: boolean;589    readonly asDustLost: {590      readonly currencyId: PalletForeignAssetsAssetIds;591      readonly who: AccountId32;592      readonly amount: u128;593    } & Struct;594    readonly isTransfer: boolean;595    readonly asTransfer: {596      readonly currencyId: PalletForeignAssetsAssetIds;597      readonly from: AccountId32;598      readonly to: AccountId32;599      readonly amount: u128;600    } & Struct;601    readonly isReserved: boolean;602    readonly asReserved: {603      readonly currencyId: PalletForeignAssetsAssetIds;604      readonly who: AccountId32;605      readonly amount: u128;606    } & Struct;607    readonly isUnreserved: boolean;608    readonly asUnreserved: {609      readonly currencyId: PalletForeignAssetsAssetIds;610      readonly who: AccountId32;611      readonly amount: u128;612    } & Struct;613    readonly isReserveRepatriated: boolean;614    readonly asReserveRepatriated: {615      readonly currencyId: PalletForeignAssetsAssetIds;616      readonly from: AccountId32;617      readonly to: AccountId32;618      readonly amount: u128;619      readonly status: FrameSupportTokensMiscBalanceStatus;620    } & Struct;621    readonly isBalanceSet: boolean;622    readonly asBalanceSet: {623      readonly currencyId: PalletForeignAssetsAssetIds;624      readonly who: AccountId32;625      readonly free: u128;626      readonly reserved: u128;627    } & Struct;628    readonly isTotalIssuanceSet: boolean;629    readonly asTotalIssuanceSet: {630      readonly currencyId: PalletForeignAssetsAssetIds;631      readonly amount: u128;632    } & Struct;633    readonly isWithdrawn: boolean;634    readonly asWithdrawn: {635      readonly currencyId: PalletForeignAssetsAssetIds;636      readonly who: AccountId32;637      readonly amount: u128;638    } & Struct;639    readonly isSlashed: boolean;640    readonly asSlashed: {641      readonly currencyId: PalletForeignAssetsAssetIds;642      readonly who: AccountId32;643      readonly freeAmount: u128;644      readonly reservedAmount: u128;645    } & Struct;646    readonly isDeposited: boolean;647    readonly asDeposited: {648      readonly currencyId: PalletForeignAssetsAssetIds;649      readonly who: AccountId32;650      readonly amount: u128;651    } & Struct;652    readonly isLockSet: boolean;653    readonly asLockSet: {654      readonly lockId: U8aFixed;655      readonly currencyId: PalletForeignAssetsAssetIds;656      readonly who: AccountId32;657      readonly amount: u128;658    } & Struct;659    readonly isLockRemoved: boolean;660    readonly asLockRemoved: {661      readonly lockId: U8aFixed;662      readonly currencyId: PalletForeignAssetsAssetIds;663      readonly who: AccountId32;664    } & Struct;665    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';666  }667668  /** @name PalletForeignAssetsAssetIds (62) */669  interface PalletForeignAssetsAssetIds extends Enum {670    readonly isForeignAssetId: boolean;671    readonly asForeignAssetId: u32;672    readonly isNativeAssetId: boolean;673    readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;674    readonly type: 'ForeignAssetId' | 'NativeAssetId';675  }676677  /** @name PalletForeignAssetsNativeCurrency (63) */678  interface PalletForeignAssetsNativeCurrency extends Enum {679    readonly isHere: boolean;680    readonly isParent: boolean;681    readonly type: 'Here' | 'Parent';682  }683684  /** @name PalletIdentityEvent (64) */685  interface PalletIdentityEvent extends Enum {686    readonly isIdentitySet: boolean;687    readonly asIdentitySet: {688      readonly who: AccountId32;689    } & Struct;690    readonly isIdentityCleared: boolean;691    readonly asIdentityCleared: {692      readonly who: AccountId32;693      readonly deposit: u128;694    } & Struct;695    readonly isIdentityKilled: boolean;696    readonly asIdentityKilled: {697      readonly who: AccountId32;698      readonly deposit: u128;699    } & Struct;700    readonly isIdentitiesInserted: boolean;701    readonly asIdentitiesInserted: {702      readonly amount: u32;703    } & Struct;704    readonly isIdentitiesRemoved: boolean;705    readonly asIdentitiesRemoved: {706      readonly amount: u32;707    } & Struct;708    readonly isJudgementRequested: boolean;709    readonly asJudgementRequested: {710      readonly who: AccountId32;711      readonly registrarIndex: u32;712    } & Struct;713    readonly isJudgementUnrequested: boolean;714    readonly asJudgementUnrequested: {715      readonly who: AccountId32;716      readonly registrarIndex: u32;717    } & Struct;718    readonly isJudgementGiven: boolean;719    readonly asJudgementGiven: {720      readonly target: AccountId32;721      readonly registrarIndex: u32;722    } & Struct;723    readonly isRegistrarAdded: boolean;724    readonly asRegistrarAdded: {725      readonly registrarIndex: u32;726    } & Struct;727    readonly isSubIdentityAdded: boolean;728    readonly asSubIdentityAdded: {729      readonly sub: AccountId32;730      readonly main: AccountId32;731      readonly deposit: u128;732    } & Struct;733    readonly isSubIdentityRemoved: boolean;734    readonly asSubIdentityRemoved: {735      readonly sub: AccountId32;736      readonly main: AccountId32;737      readonly deposit: u128;738    } & Struct;739    readonly isSubIdentityRevoked: boolean;740    readonly asSubIdentityRevoked: {741      readonly sub: AccountId32;742      readonly main: AccountId32;743      readonly deposit: u128;744    } & Struct;745    readonly isSubIdentitiesInserted: boolean;746    readonly asSubIdentitiesInserted: {747      readonly amount: u32;748    } & Struct;749    readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';750  }751752  /** @name PalletPreimageEvent (65) */753  interface PalletPreimageEvent extends Enum {754    readonly isNoted: boolean;755    readonly asNoted: {756      readonly hash_: H256;757    } & Struct;758    readonly isRequested: boolean;759    readonly asRequested: {760      readonly hash_: H256;761    } & Struct;762    readonly isCleared: boolean;763    readonly asCleared: {764      readonly hash_: H256;765    } & Struct;766    readonly type: 'Noted' | 'Requested' | 'Cleared';767  }768769  /** @name CumulusPalletXcmpQueueEvent (66) */770  interface CumulusPalletXcmpQueueEvent extends Enum {771    readonly isSuccess: boolean;772    readonly asSuccess: {773      readonly messageHash: Option<H256>;774      readonly weight: SpWeightsWeightV2Weight;775    } & Struct;776    readonly isFail: boolean;777    readonly asFail: {778      readonly messageHash: Option<H256>;779      readonly error: XcmV2TraitsError;780      readonly weight: SpWeightsWeightV2Weight;781    } & Struct;782    readonly isBadVersion: boolean;783    readonly asBadVersion: {784      readonly messageHash: Option<H256>;785    } & Struct;786    readonly isBadFormat: boolean;787    readonly asBadFormat: {788      readonly messageHash: Option<H256>;789    } & Struct;790    readonly isUpwardMessageSent: boolean;791    readonly asUpwardMessageSent: {792      readonly messageHash: Option<H256>;793    } & Struct;794    readonly isXcmpMessageSent: boolean;795    readonly asXcmpMessageSent: {796      readonly messageHash: Option<H256>;797    } & Struct;798    readonly isOverweightEnqueued: boolean;799    readonly asOverweightEnqueued: {800      readonly sender: u32;801      readonly sentAt: u32;802      readonly index: u64;803      readonly required: SpWeightsWeightV2Weight;804    } & Struct;805    readonly isOverweightServiced: boolean;806    readonly asOverweightServiced: {807      readonly index: u64;808      readonly used: SpWeightsWeightV2Weight;809    } & Struct;810    readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';811  }812813  /** @name XcmV2TraitsError (68) */814  interface XcmV2TraitsError extends Enum {815    readonly isOverflow: boolean;816    readonly isUnimplemented: boolean;817    readonly isUntrustedReserveLocation: boolean;818    readonly isUntrustedTeleportLocation: boolean;819    readonly isMultiLocationFull: boolean;820    readonly isMultiLocationNotInvertible: boolean;821    readonly isBadOrigin: boolean;822    readonly isInvalidLocation: boolean;823    readonly isAssetNotFound: boolean;824    readonly isFailedToTransactAsset: boolean;825    readonly isNotWithdrawable: boolean;826    readonly isLocationCannotHold: boolean;827    readonly isExceedsMaxMessageSize: boolean;828    readonly isDestinationUnsupported: boolean;829    readonly isTransport: boolean;830    readonly isUnroutable: boolean;831    readonly isUnknownClaim: boolean;832    readonly isFailedToDecode: boolean;833    readonly isMaxWeightInvalid: boolean;834    readonly isNotHoldingFees: boolean;835    readonly isTooExpensive: boolean;836    readonly isTrap: boolean;837    readonly asTrap: u64;838    readonly isUnhandledXcmVersion: boolean;839    readonly isWeightLimitReached: boolean;840    readonly asWeightLimitReached: u64;841    readonly isBarrier: boolean;842    readonly isWeightNotComputable: boolean;843    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';844  }845846  /** @name PalletXcmEvent (70) */847  interface PalletXcmEvent extends Enum {848    readonly isAttempted: boolean;849    readonly asAttempted: XcmV2TraitsOutcome;850    readonly isSent: boolean;851    readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;852    readonly isUnexpectedResponse: boolean;853    readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;854    readonly isResponseReady: boolean;855    readonly asResponseReady: ITuple<[u64, XcmV2Response]>;856    readonly isNotified: boolean;857    readonly asNotified: ITuple<[u64, u8, u8]>;858    readonly isNotifyOverweight: boolean;859    readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;860    readonly isNotifyDispatchError: boolean;861    readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;862    readonly isNotifyDecodeFailed: boolean;863    readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;864    readonly isInvalidResponder: boolean;865    readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;866    readonly isInvalidResponderVersion: boolean;867    readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;868    readonly isResponseTaken: boolean;869    readonly asResponseTaken: u64;870    readonly isAssetsTrapped: boolean;871    readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;872    readonly isVersionChangeNotified: boolean;873    readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;874    readonly isSupportedVersionChanged: boolean;875    readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;876    readonly isNotifyTargetSendFail: boolean;877    readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;878    readonly isNotifyTargetMigrationFail: boolean;879    readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;880    readonly isAssetsClaimed: boolean;881    readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;882    readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';883  }884885  /** @name XcmV2TraitsOutcome (71) */886  interface XcmV2TraitsOutcome extends Enum {887    readonly isComplete: boolean;888    readonly asComplete: u64;889    readonly isIncomplete: boolean;890    readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;891    readonly isError: boolean;892    readonly asError: XcmV2TraitsError;893    readonly type: 'Complete' | 'Incomplete' | 'Error';894  }895896  /** @name XcmV2Xcm (72) */897  interface XcmV2Xcm extends Vec<XcmV2Instruction> {}898899  /** @name XcmV2Instruction (74) */900  interface XcmV2Instruction extends Enum {901    readonly isWithdrawAsset: boolean;902    readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;903    readonly isReserveAssetDeposited: boolean;904    readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;905    readonly isReceiveTeleportedAsset: boolean;906    readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;907    readonly isQueryResponse: boolean;908    readonly asQueryResponse: {909      readonly queryId: Compact<u64>;910      readonly response: XcmV2Response;911      readonly maxWeight: Compact<u64>;912    } & Struct;913    readonly isTransferAsset: boolean;914    readonly asTransferAsset: {915      readonly assets: XcmV1MultiassetMultiAssets;916      readonly beneficiary: XcmV1MultiLocation;917    } & Struct;918    readonly isTransferReserveAsset: boolean;919    readonly asTransferReserveAsset: {920      readonly assets: XcmV1MultiassetMultiAssets;921      readonly dest: XcmV1MultiLocation;922      readonly xcm: XcmV2Xcm;923    } & Struct;924    readonly isTransact: boolean;925    readonly asTransact: {926      readonly originType: XcmV0OriginKind;927      readonly requireWeightAtMost: Compact<u64>;928      readonly call: XcmDoubleEncoded;929    } & Struct;930    readonly isHrmpNewChannelOpenRequest: boolean;931    readonly asHrmpNewChannelOpenRequest: {932      readonly sender: Compact<u32>;933      readonly maxMessageSize: Compact<u32>;934      readonly maxCapacity: Compact<u32>;935    } & Struct;936    readonly isHrmpChannelAccepted: boolean;937    readonly asHrmpChannelAccepted: {938      readonly recipient: Compact<u32>;939    } & Struct;940    readonly isHrmpChannelClosing: boolean;941    readonly asHrmpChannelClosing: {942      readonly initiator: Compact<u32>;943      readonly sender: Compact<u32>;944      readonly recipient: Compact<u32>;945    } & Struct;946    readonly isClearOrigin: boolean;947    readonly isDescendOrigin: boolean;948    readonly asDescendOrigin: XcmV1MultilocationJunctions;949    readonly isReportError: boolean;950    readonly asReportError: {951      readonly queryId: Compact<u64>;952      readonly dest: XcmV1MultiLocation;953      readonly maxResponseWeight: Compact<u64>;954    } & Struct;955    readonly isDepositAsset: boolean;956    readonly asDepositAsset: {957      readonly assets: XcmV1MultiassetMultiAssetFilter;958      readonly maxAssets: Compact<u32>;959      readonly beneficiary: XcmV1MultiLocation;960    } & Struct;961    readonly isDepositReserveAsset: boolean;962    readonly asDepositReserveAsset: {963      readonly assets: XcmV1MultiassetMultiAssetFilter;964      readonly maxAssets: Compact<u32>;965      readonly dest: XcmV1MultiLocation;966      readonly xcm: XcmV2Xcm;967    } & Struct;968    readonly isExchangeAsset: boolean;969    readonly asExchangeAsset: {970      readonly give: XcmV1MultiassetMultiAssetFilter;971      readonly receive: XcmV1MultiassetMultiAssets;972    } & Struct;973    readonly isInitiateReserveWithdraw: boolean;974    readonly asInitiateReserveWithdraw: {975      readonly assets: XcmV1MultiassetMultiAssetFilter;976      readonly reserve: XcmV1MultiLocation;977      readonly xcm: XcmV2Xcm;978    } & Struct;979    readonly isInitiateTeleport: boolean;980    readonly asInitiateTeleport: {981      readonly assets: XcmV1MultiassetMultiAssetFilter;982      readonly dest: XcmV1MultiLocation;983      readonly xcm: XcmV2Xcm;984    } & Struct;985    readonly isQueryHolding: boolean;986    readonly asQueryHolding: {987      readonly queryId: Compact<u64>;988      readonly dest: XcmV1MultiLocation;989      readonly assets: XcmV1MultiassetMultiAssetFilter;990      readonly maxResponseWeight: Compact<u64>;991    } & Struct;992    readonly isBuyExecution: boolean;993    readonly asBuyExecution: {994      readonly fees: XcmV1MultiAsset;995      readonly weightLimit: XcmV2WeightLimit;996    } & Struct;997    readonly isRefundSurplus: boolean;998    readonly isSetErrorHandler: boolean;999    readonly asSetErrorHandler: XcmV2Xcm;1000    readonly isSetAppendix: boolean;1001    readonly asSetAppendix: XcmV2Xcm;1002    readonly isClearError: boolean;1003    readonly isClaimAsset: boolean;1004    readonly asClaimAsset: {1005      readonly assets: XcmV1MultiassetMultiAssets;1006      readonly ticket: XcmV1MultiLocation;1007    } & Struct;1008    readonly isTrap: boolean;1009    readonly asTrap: Compact<u64>;1010    readonly isSubscribeVersion: boolean;1011    readonly asSubscribeVersion: {1012      readonly queryId: Compact<u64>;1013      readonly maxResponseWeight: Compact<u64>;1014    } & Struct;1015    readonly isUnsubscribeVersion: boolean;1016    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';1017  }10181019  /** @name XcmV2Response (75) */1020  interface XcmV2Response extends Enum {1021    readonly isNull: boolean;1022    readonly isAssets: boolean;1023    readonly asAssets: XcmV1MultiassetMultiAssets;1024    readonly isExecutionResult: boolean;1025    readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1026    readonly isVersion: boolean;1027    readonly asVersion: u32;1028    readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1029  }10301031  /** @name XcmV0OriginKind (78) */1032  interface XcmV0OriginKind extends Enum {1033    readonly isNative: boolean;1034    readonly isSovereignAccount: boolean;1035    readonly isSuperuser: boolean;1036    readonly isXcm: boolean;1037    readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';1038  }10391040  /** @name XcmDoubleEncoded (79) */1041  interface XcmDoubleEncoded extends Struct {1042    readonly encoded: Bytes;1043  }10441045  /** @name XcmV1MultiassetMultiAssetFilter (80) */1046  interface XcmV1MultiassetMultiAssetFilter extends Enum {1047    readonly isDefinite: boolean;1048    readonly asDefinite: XcmV1MultiassetMultiAssets;1049    readonly isWild: boolean;1050    readonly asWild: XcmV1MultiassetWildMultiAsset;1051    readonly type: 'Definite' | 'Wild';1052  }10531054  /** @name XcmV1MultiassetWildMultiAsset (81) */1055  interface XcmV1MultiassetWildMultiAsset extends Enum {1056    readonly isAll: boolean;1057    readonly isAllOf: boolean;1058    readonly asAllOf: {1059      readonly id: XcmV1MultiassetAssetId;1060      readonly fun: XcmV1MultiassetWildFungibility;1061    } & Struct;1062    readonly type: 'All' | 'AllOf';1063  }10641065  /** @name XcmV1MultiassetWildFungibility (82) */1066  interface XcmV1MultiassetWildFungibility extends Enum {1067    readonly isFungible: boolean;1068    readonly isNonFungible: boolean;1069    readonly type: 'Fungible' | 'NonFungible';1070  }10711072  /** @name XcmV2WeightLimit (83) */1073  interface XcmV2WeightLimit extends Enum {1074    readonly isUnlimited: boolean;1075    readonly isLimited: boolean;1076    readonly asLimited: Compact<u64>;1077    readonly type: 'Unlimited' | 'Limited';1078  }10791080  /** @name XcmVersionedMultiAssets (85) */1081  interface XcmVersionedMultiAssets extends Enum {1082    readonly isV0: boolean;1083    readonly asV0: Vec<XcmV0MultiAsset>;1084    readonly isV1: boolean;1085    readonly asV1: XcmV1MultiassetMultiAssets;1086    readonly type: 'V0' | 'V1';1087  }10881089  /** @name XcmV0MultiAsset (87) */1090  interface XcmV0MultiAsset extends Enum {1091    readonly isNone: boolean;1092    readonly isAll: boolean;1093    readonly isAllFungible: boolean;1094    readonly isAllNonFungible: boolean;1095    readonly isAllAbstractFungible: boolean;1096    readonly asAllAbstractFungible: {1097      readonly id: Bytes;1098    } & Struct;1099    readonly isAllAbstractNonFungible: boolean;1100    readonly asAllAbstractNonFungible: {1101      readonly class: Bytes;1102    } & Struct;1103    readonly isAllConcreteFungible: boolean;1104    readonly asAllConcreteFungible: {1105      readonly id: XcmV0MultiLocation;1106    } & Struct;1107    readonly isAllConcreteNonFungible: boolean;1108    readonly asAllConcreteNonFungible: {1109      readonly class: XcmV0MultiLocation;1110    } & Struct;1111    readonly isAbstractFungible: boolean;1112    readonly asAbstractFungible: {1113      readonly id: Bytes;1114      readonly amount: Compact<u128>;1115    } & Struct;1116    readonly isAbstractNonFungible: boolean;1117    readonly asAbstractNonFungible: {1118      readonly class: Bytes;1119      readonly instance: XcmV1MultiassetAssetInstance;1120    } & Struct;1121    readonly isConcreteFungible: boolean;1122    readonly asConcreteFungible: {1123      readonly id: XcmV0MultiLocation;1124      readonly amount: Compact<u128>;1125    } & Struct;1126    readonly isConcreteNonFungible: boolean;1127    readonly asConcreteNonFungible: {1128      readonly class: XcmV0MultiLocation;1129      readonly instance: XcmV1MultiassetAssetInstance;1130    } & Struct;1131    readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';1132  }11331134  /** @name XcmV0MultiLocation (88) */1135  interface XcmV0MultiLocation extends Enum {1136    readonly isNull: boolean;1137    readonly isX1: boolean;1138    readonly asX1: XcmV0Junction;1139    readonly isX2: boolean;1140    readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1141    readonly isX3: boolean;1142    readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1143    readonly isX4: boolean;1144    readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1145    readonly isX5: boolean;1146    readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1147    readonly isX6: boolean;1148    readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1149    readonly isX7: boolean;1150    readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1151    readonly isX8: boolean;1152    readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1153    readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1154  }11551156  /** @name XcmV0Junction (89) */1157  interface XcmV0Junction extends Enum {1158    readonly isParent: boolean;1159    readonly isParachain: boolean;1160    readonly asParachain: Compact<u32>;1161    readonly isAccountId32: boolean;1162    readonly asAccountId32: {1163      readonly network: XcmV0JunctionNetworkId;1164      readonly id: U8aFixed;1165    } & Struct;1166    readonly isAccountIndex64: boolean;1167    readonly asAccountIndex64: {1168      readonly network: XcmV0JunctionNetworkId;1169      readonly index: Compact<u64>;1170    } & Struct;1171    readonly isAccountKey20: boolean;1172    readonly asAccountKey20: {1173      readonly network: XcmV0JunctionNetworkId;1174      readonly key: U8aFixed;1175    } & Struct;1176    readonly isPalletInstance: boolean;1177    readonly asPalletInstance: u8;1178    readonly isGeneralIndex: boolean;1179    readonly asGeneralIndex: Compact<u128>;1180    readonly isGeneralKey: boolean;1181    readonly asGeneralKey: Bytes;1182    readonly isOnlyChild: boolean;1183    readonly isPlurality: boolean;1184    readonly asPlurality: {1185      readonly id: XcmV0JunctionBodyId;1186      readonly part: XcmV0JunctionBodyPart;1187    } & Struct;1188    readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1189  }11901191  /** @name XcmVersionedMultiLocation (90) */1192  interface XcmVersionedMultiLocation extends Enum {1193    readonly isV0: boolean;1194    readonly asV0: XcmV0MultiLocation;1195    readonly isV1: boolean;1196    readonly asV1: XcmV1MultiLocation;1197    readonly type: 'V0' | 'V1';1198  }11991200  /** @name CumulusPalletXcmEvent (91) */1201  interface CumulusPalletXcmEvent extends Enum {1202    readonly isInvalidFormat: boolean;1203    readonly asInvalidFormat: U8aFixed;1204    readonly isUnsupportedVersion: boolean;1205    readonly asUnsupportedVersion: U8aFixed;1206    readonly isExecutedDownward: boolean;1207    readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1208    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1209  }12101211  /** @name CumulusPalletDmpQueueEvent (92) */1212  interface CumulusPalletDmpQueueEvent extends Enum {1213    readonly isInvalidFormat: boolean;1214    readonly asInvalidFormat: {1215      readonly messageId: U8aFixed;1216    } & Struct;1217    readonly isUnsupportedVersion: boolean;1218    readonly asUnsupportedVersion: {1219      readonly messageId: U8aFixed;1220    } & Struct;1221    readonly isExecutedDownward: boolean;1222    readonly asExecutedDownward: {1223      readonly messageId: U8aFixed;1224      readonly outcome: XcmV2TraitsOutcome;1225    } & Struct;1226    readonly isWeightExhausted: boolean;1227    readonly asWeightExhausted: {1228      readonly messageId: U8aFixed;1229      readonly remainingWeight: SpWeightsWeightV2Weight;1230      readonly requiredWeight: SpWeightsWeightV2Weight;1231    } & Struct;1232    readonly isOverweightEnqueued: boolean;1233    readonly asOverweightEnqueued: {1234      readonly messageId: U8aFixed;1235      readonly overweightIndex: u64;1236      readonly requiredWeight: SpWeightsWeightV2Weight;1237    } & Struct;1238    readonly isOverweightServiced: boolean;1239    readonly asOverweightServiced: {1240      readonly overweightIndex: u64;1241      readonly weightUsed: SpWeightsWeightV2Weight;1242    } & Struct;1243    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1244  }12451246  /** @name PalletConfigurationEvent (93) */1247  interface PalletConfigurationEvent extends Enum {1248    readonly isNewDesiredCollators: boolean;1249    readonly asNewDesiredCollators: {1250      readonly desiredCollators: Option<u32>;1251    } & Struct;1252    readonly isNewCollatorLicenseBond: boolean;1253    readonly asNewCollatorLicenseBond: {1254      readonly bondCost: Option<u128>;1255    } & Struct;1256    readonly isNewCollatorKickThreshold: boolean;1257    readonly asNewCollatorKickThreshold: {1258      readonly lengthInBlocks: Option<u32>;1259    } & Struct;1260    readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1261  }12621263  /** @name PalletCommonEvent (96) */1264  interface PalletCommonEvent extends Enum {1265    readonly isCollectionCreated: boolean;1266    readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1267    readonly isCollectionDestroyed: boolean;1268    readonly asCollectionDestroyed: u32;1269    readonly isItemCreated: boolean;1270    readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1271    readonly isItemDestroyed: boolean;1272    readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1273    readonly isTransfer: boolean;1274    readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1275    readonly isApproved: boolean;1276    readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1277    readonly isApprovedForAll: boolean;1278    readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1279    readonly isCollectionPropertySet: boolean;1280    readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1281    readonly isCollectionPropertyDeleted: boolean;1282    readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1283    readonly isTokenPropertySet: boolean;1284    readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1285    readonly isTokenPropertyDeleted: boolean;1286    readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1287    readonly isPropertyPermissionSet: boolean;1288    readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1289    readonly isAllowListAddressAdded: boolean;1290    readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1291    readonly isAllowListAddressRemoved: boolean;1292    readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1293    readonly isCollectionAdminAdded: boolean;1294    readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1295    readonly isCollectionAdminRemoved: boolean;1296    readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1297    readonly isCollectionLimitSet: boolean;1298    readonly asCollectionLimitSet: u32;1299    readonly isCollectionOwnerChanged: boolean;1300    readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1301    readonly isCollectionPermissionSet: boolean;1302    readonly asCollectionPermissionSet: u32;1303    readonly isCollectionSponsorSet: boolean;1304    readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1305    readonly isSponsorshipConfirmed: boolean;1306    readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1307    readonly isCollectionSponsorRemoved: boolean;1308    readonly asCollectionSponsorRemoved: u32;1309    readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1310  }13111312  /** @name PalletEvmAccountBasicCrossAccountIdRepr (99) */1313  interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1314    readonly isSubstrate: boolean;1315    readonly asSubstrate: AccountId32;1316    readonly isEthereum: boolean;1317    readonly asEthereum: H160;1318    readonly type: 'Substrate' | 'Ethereum';1319  }13201321  /** @name PalletStructureEvent (103) */1322  interface PalletStructureEvent extends Enum {1323    readonly isExecuted: boolean;1324    readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1325    readonly type: 'Executed';1326  }13271328  /** @name PalletAppPromotionEvent (104) */1329  interface PalletAppPromotionEvent extends Enum {1330    readonly isStakingRecalculation: boolean;1331    readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1332    readonly isStake: boolean;1333    readonly asStake: ITuple<[AccountId32, u128]>;1334    readonly isUnstake: boolean;1335    readonly asUnstake: ITuple<[AccountId32, u128]>;1336    readonly isSetAdmin: boolean;1337    readonly asSetAdmin: AccountId32;1338    readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1339  }13401341  /** @name PalletForeignAssetsModuleEvent (105) */1342  interface PalletForeignAssetsModuleEvent extends Enum {1343    readonly isForeignAssetRegistered: boolean;1344    readonly asForeignAssetRegistered: {1345      readonly assetId: u32;1346      readonly assetAddress: XcmV1MultiLocation;1347      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1348    } & Struct;1349    readonly isForeignAssetUpdated: boolean;1350    readonly asForeignAssetUpdated: {1351      readonly assetId: u32;1352      readonly assetAddress: XcmV1MultiLocation;1353      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1354    } & Struct;1355    readonly isAssetRegistered: boolean;1356    readonly asAssetRegistered: {1357      readonly assetId: PalletForeignAssetsAssetIds;1358      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1359    } & Struct;1360    readonly isAssetUpdated: boolean;1361    readonly asAssetUpdated: {1362      readonly assetId: PalletForeignAssetsAssetIds;1363      readonly metadata: PalletForeignAssetsModuleAssetMetadata;1364    } & Struct;1365    readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1366  }13671368  /** @name PalletForeignAssetsModuleAssetMetadata (106) */1369  interface PalletForeignAssetsModuleAssetMetadata extends Struct {1370    readonly name: Bytes;1371    readonly symbol: Bytes;1372    readonly decimals: u8;1373    readonly minimalBalance: u128;1374  }13751376  /** @name PalletEvmEvent (107) */1377  interface PalletEvmEvent extends Enum {1378    readonly isLog: boolean;1379    readonly asLog: {1380      readonly log: EthereumLog;1381    } & Struct;1382    readonly isCreated: boolean;1383    readonly asCreated: {1384      readonly address: H160;1385    } & Struct;1386    readonly isCreatedFailed: boolean;1387    readonly asCreatedFailed: {1388      readonly address: H160;1389    } & Struct;1390    readonly isExecuted: boolean;1391    readonly asExecuted: {1392      readonly address: H160;1393    } & Struct;1394    readonly isExecutedFailed: boolean;1395    readonly asExecutedFailed: {1396      readonly address: H160;1397    } & Struct;1398    readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1399  }14001401  /** @name EthereumLog (108) */1402  interface EthereumLog extends Struct {1403    readonly address: H160;1404    readonly topics: Vec<H256>;1405    readonly data: Bytes;1406  }14071408  /** @name PalletEthereumEvent (110) */1409  interface PalletEthereumEvent extends Enum {1410    readonly isExecuted: boolean;1411    readonly asExecuted: {1412      readonly from: H160;1413      readonly to: H160;1414      readonly transactionHash: H256;1415      readonly exitReason: EvmCoreErrorExitReason;1416    } & Struct;1417    readonly type: 'Executed';1418  }14191420  /** @name EvmCoreErrorExitReason (111) */1421  interface EvmCoreErrorExitReason extends Enum {1422    readonly isSucceed: boolean;1423    readonly asSucceed: EvmCoreErrorExitSucceed;1424    readonly isError: boolean;1425    readonly asError: EvmCoreErrorExitError;1426    readonly isRevert: boolean;1427    readonly asRevert: EvmCoreErrorExitRevert;1428    readonly isFatal: boolean;1429    readonly asFatal: EvmCoreErrorExitFatal;1430    readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1431  }14321433  /** @name EvmCoreErrorExitSucceed (112) */1434  interface EvmCoreErrorExitSucceed extends Enum {1435    readonly isStopped: boolean;1436    readonly isReturned: boolean;1437    readonly isSuicided: boolean;1438    readonly type: 'Stopped' | 'Returned' | 'Suicided';1439  }14401441  /** @name EvmCoreErrorExitError (113) */1442  interface EvmCoreErrorExitError extends Enum {1443    readonly isStackUnderflow: boolean;1444    readonly isStackOverflow: boolean;1445    readonly isInvalidJump: boolean;1446    readonly isInvalidRange: boolean;1447    readonly isDesignatedInvalid: boolean;1448    readonly isCallTooDeep: boolean;1449    readonly isCreateCollision: boolean;1450    readonly isCreateContractLimit: boolean;1451    readonly isOutOfOffset: boolean;1452    readonly isOutOfGas: boolean;1453    readonly isOutOfFund: boolean;1454    readonly isPcUnderflow: boolean;1455    readonly isCreateEmpty: boolean;1456    readonly isOther: boolean;1457    readonly asOther: Text;1458    readonly isInvalidCode: boolean;1459    readonly asInvalidCode: u8;1460    readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1461  }14621463  /** @name EvmCoreErrorExitRevert (117) */1464  interface EvmCoreErrorExitRevert extends Enum {1465    readonly isReverted: boolean;1466    readonly type: 'Reverted';1467  }14681469  /** @name EvmCoreErrorExitFatal (118) */1470  interface EvmCoreErrorExitFatal extends Enum {1471    readonly isNotSupported: boolean;1472    readonly isUnhandledInterrupt: boolean;1473    readonly isCallErrorAsFatal: boolean;1474    readonly asCallErrorAsFatal: EvmCoreErrorExitError;1475    readonly isOther: boolean;1476    readonly asOther: Text;1477    readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1478  }14791480  /** @name PalletEvmContractHelpersEvent (119) */1481  interface PalletEvmContractHelpersEvent extends Enum {1482    readonly isContractSponsorSet: boolean;1483    readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1484    readonly isContractSponsorshipConfirmed: boolean;1485    readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1486    readonly isContractSponsorRemoved: boolean;1487    readonly asContractSponsorRemoved: H160;1488    readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1489  }14901491  /** @name PalletEvmMigrationEvent (120) */1492  interface PalletEvmMigrationEvent extends Enum {1493    readonly isTestEvent: boolean;1494    readonly type: 'TestEvent';1495  }14961497  /** @name PalletMaintenanceEvent (121) */1498  interface PalletMaintenanceEvent extends Enum {1499    readonly isMaintenanceEnabled: boolean;1500    readonly isMaintenanceDisabled: boolean;1501    readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1502  }15031504  /** @name PalletTestUtilsEvent (122) */1505  interface PalletTestUtilsEvent extends Enum {1506    readonly isValueIsSet: boolean;1507    readonly isShouldRollback: boolean;1508    readonly isBatchCompleted: boolean;1509    readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1510  }15111512  /** @name FrameSystemPhase (123) */1513  interface FrameSystemPhase extends Enum {1514    readonly isApplyExtrinsic: boolean;1515    readonly asApplyExtrinsic: u32;1516    readonly isFinalization: boolean;1517    readonly isInitialization: boolean;1518    readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1519  }15201521  /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1522  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1523    readonly specVersion: Compact<u32>;1524    readonly specName: Text;1525  }15261527  /** @name FrameSystemCall (127) */1528  interface FrameSystemCall extends Enum {1529    readonly isRemark: boolean;1530    readonly asRemark: {1531      readonly remark: Bytes;1532    } & Struct;1533    readonly isSetHeapPages: boolean;1534    readonly asSetHeapPages: {1535      readonly pages: u64;1536    } & Struct;1537    readonly isSetCode: boolean;1538    readonly asSetCode: {1539      readonly code: Bytes;1540    } & Struct;1541    readonly isSetCodeWithoutChecks: boolean;1542    readonly asSetCodeWithoutChecks: {1543      readonly code: Bytes;1544    } & Struct;1545    readonly isSetStorage: boolean;1546    readonly asSetStorage: {1547      readonly items: Vec<ITuple<[Bytes, Bytes]>>;1548    } & Struct;1549    readonly isKillStorage: boolean;1550    readonly asKillStorage: {1551      readonly keys_: Vec<Bytes>;1552    } & Struct;1553    readonly isKillPrefix: boolean;1554    readonly asKillPrefix: {1555      readonly prefix: Bytes;1556      readonly subkeys: u32;1557    } & Struct;1558    readonly isRemarkWithEvent: boolean;1559    readonly asRemarkWithEvent: {1560      readonly remark: Bytes;1561    } & Struct;1562    readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1563  }15641565  /** @name FrameSystemLimitsBlockWeights (131) */1566  interface FrameSystemLimitsBlockWeights extends Struct {1567    readonly baseBlock: SpWeightsWeightV2Weight;1568    readonly maxBlock: SpWeightsWeightV2Weight;1569    readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1570  }15711572  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */1573  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1574    readonly normal: FrameSystemLimitsWeightsPerClass;1575    readonly operational: FrameSystemLimitsWeightsPerClass;1576    readonly mandatory: FrameSystemLimitsWeightsPerClass;1577  }15781579  /** @name FrameSystemLimitsWeightsPerClass (133) */1580  interface FrameSystemLimitsWeightsPerClass extends Struct {1581    readonly baseExtrinsic: SpWeightsWeightV2Weight;1582    readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1583    readonly maxTotal: Option<SpWeightsWeightV2Weight>;1584    readonly reserved: Option<SpWeightsWeightV2Weight>;1585  }15861587  /** @name FrameSystemLimitsBlockLength (135) */1588  interface FrameSystemLimitsBlockLength extends Struct {1589    readonly max: FrameSupportDispatchPerDispatchClassU32;1590  }15911592  /** @name FrameSupportDispatchPerDispatchClassU32 (136) */1593  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1594    readonly normal: u32;1595    readonly operational: u32;1596    readonly mandatory: u32;1597  }15981599  /** @name SpWeightsRuntimeDbWeight (137) */1600  interface SpWeightsRuntimeDbWeight extends Struct {1601    readonly read: u64;1602    readonly write: u64;1603  }16041605  /** @name SpVersionRuntimeVersion (138) */1606  interface SpVersionRuntimeVersion extends Struct {1607    readonly specName: Text;1608    readonly implName: Text;1609    readonly authoringVersion: u32;1610    readonly specVersion: u32;1611    readonly implVersion: u32;1612    readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1613    readonly transactionVersion: u32;1614    readonly stateVersion: u8;1615  }16161617  /** @name FrameSystemError (143) */1618  interface FrameSystemError extends Enum {1619    readonly isInvalidSpecName: boolean;1620    readonly isSpecVersionNeedsToIncrease: boolean;1621    readonly isFailedToExtractRuntimeVersion: boolean;1622    readonly isNonDefaultComposite: boolean;1623    readonly isNonZeroRefCount: boolean;1624    readonly isCallFiltered: boolean;1625    readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1626  }16271628  /** @name PolkadotPrimitivesV2PersistedValidationData (144) */1629  interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1630    readonly parentHead: Bytes;1631    readonly relayParentNumber: u32;1632    readonly relayParentStorageRoot: H256;1633    readonly maxPovSize: u32;1634  }16351636  /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */1637  interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1638    readonly isPresent: boolean;1639    readonly type: 'Present';1640  }16411642  /** @name SpTrieStorageProof (148) */1643  interface SpTrieStorageProof extends Struct {1644    readonly trieNodes: BTreeSet<Bytes>;1645  }16461647  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */1648  interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1649    readonly dmqMqcHead: H256;1650    readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1651    readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1652    readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1653  }16541655  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */1656  interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1657    readonly maxCapacity: u32;1658    readonly maxTotalSize: u32;1659    readonly maxMessageSize: u32;1660    readonly msgCount: u32;1661    readonly totalSize: u32;1662    readonly mqcHead: Option<H256>;1663  }16641665  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */1666  interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1667    readonly maxCodeSize: u32;1668    readonly maxHeadDataSize: u32;1669    readonly maxUpwardQueueCount: u32;1670    readonly maxUpwardQueueSize: u32;1671    readonly maxUpwardMessageSize: u32;1672    readonly maxUpwardMessageNumPerCandidate: u32;1673    readonly hrmpMaxMessageNumPerCandidate: u32;1674    readonly validationUpgradeCooldown: u32;1675    readonly validationUpgradeDelay: u32;1676  }16771678  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */1679  interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1680    readonly recipient: u32;1681    readonly data: Bytes;1682  }16831684  /** @name CumulusPalletParachainSystemCall (161) */1685  interface CumulusPalletParachainSystemCall extends Enum {1686    readonly isSetValidationData: boolean;1687    readonly asSetValidationData: {1688      readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1689    } & Struct;1690    readonly isSudoSendUpwardMessage: boolean;1691    readonly asSudoSendUpwardMessage: {1692      readonly message: Bytes;1693    } & Struct;1694    readonly isAuthorizeUpgrade: boolean;1695    readonly asAuthorizeUpgrade: {1696      readonly codeHash: H256;1697    } & Struct;1698    readonly isEnactAuthorizedUpgrade: boolean;1699    readonly asEnactAuthorizedUpgrade: {1700      readonly code: Bytes;1701    } & Struct;1702    readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1703  }17041705  /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */1706  interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1707    readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1708    readonly relayChainState: SpTrieStorageProof;1709    readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1710    readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1711  }17121713  /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */1714  interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1715    readonly sentAt: u32;1716    readonly msg: Bytes;1717  }17181719  /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */1720  interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1721    readonly sentAt: u32;1722    readonly data: Bytes;1723  }17241725  /** @name CumulusPalletParachainSystemError (170) */1726  interface CumulusPalletParachainSystemError extends Enum {1727    readonly isOverlappingUpgrades: boolean;1728    readonly isProhibitedByPolkadot: boolean;1729    readonly isTooBig: boolean;1730    readonly isValidationDataNotAvailable: boolean;1731    readonly isHostConfigurationNotAvailable: boolean;1732    readonly isNotScheduled: boolean;1733    readonly isNothingAuthorized: boolean;1734    readonly isUnauthorized: boolean;1735    readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1736  }17371738  /** @name PalletAuthorshipUncleEntryItem (172) */1739  interface PalletAuthorshipUncleEntryItem extends Enum {1740    readonly isInclusionHeight: boolean;1741    readonly asInclusionHeight: u32;1742    readonly isUncle: boolean;1743    readonly asUncle: ITuple<[H256, Option<AccountId32>]>;1744    readonly type: 'InclusionHeight' | 'Uncle';1745  }17461747  /** @name PalletAuthorshipCall (174) */1748  interface PalletAuthorshipCall extends Enum {1749    readonly isSetUncles: boolean;1750    readonly asSetUncles: {1751      readonly newUncles: Vec<SpRuntimeHeader>;1752    } & Struct;1753    readonly type: 'SetUncles';1754  }17551756  /** @name SpRuntimeHeader (176) */1757  interface SpRuntimeHeader extends Struct {1758    readonly parentHash: H256;1759    readonly number: Compact<u32>;1760    readonly stateRoot: H256;1761    readonly extrinsicsRoot: H256;1762    readonly digest: SpRuntimeDigest;1763  }17641765  /** @name SpRuntimeBlakeTwo256 (177) */1766  type SpRuntimeBlakeTwo256 = Null;17671768  /** @name PalletAuthorshipError (178) */1769  interface PalletAuthorshipError extends Enum {1770    readonly isInvalidUncleParent: boolean;1771    readonly isUnclesAlreadySet: boolean;1772    readonly isTooManyUncles: boolean;1773    readonly isGenesisUncle: boolean;1774    readonly isTooHighUncle: boolean;1775    readonly isUncleAlreadyIncluded: boolean;1776    readonly isOldUncle: boolean;1777    readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';1778  }17791780  /** @name PalletCollatorSelectionCall (181) */1781  interface PalletCollatorSelectionCall extends Enum {1782    readonly isAddInvulnerable: boolean;1783    readonly asAddInvulnerable: {1784      readonly new_: AccountId32;1785    } & Struct;1786    readonly isRemoveInvulnerable: boolean;1787    readonly asRemoveInvulnerable: {1788      readonly who: AccountId32;1789    } & Struct;1790    readonly isGetLicense: boolean;1791    readonly isOnboard: boolean;1792    readonly isOffboard: boolean;1793    readonly isReleaseLicense: boolean;1794    readonly isForceReleaseLicense: boolean;1795    readonly asForceReleaseLicense: {1796      readonly who: AccountId32;1797    } & Struct;1798    readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1799  }18001801  /** @name PalletCollatorSelectionError (182) */1802  interface PalletCollatorSelectionError extends Enum {1803    readonly isTooManyCandidates: boolean;1804    readonly isUnknown: boolean;1805    readonly isPermission: boolean;1806    readonly isAlreadyHoldingLicense: boolean;1807    readonly isNoLicense: boolean;1808    readonly isAlreadyCandidate: boolean;1809    readonly isNotCandidate: boolean;1810    readonly isTooManyInvulnerables: boolean;1811    readonly isTooFewInvulnerables: boolean;1812    readonly isAlreadyInvulnerable: boolean;1813    readonly isNotInvulnerable: boolean;1814    readonly isNoAssociatedValidatorId: boolean;1815    readonly isValidatorNotRegistered: boolean;1816    readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1817  }18181819  /** @name OpalRuntimeRuntimeCommonSessionKeys (185) */1820  interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {1821    readonly aura: SpConsensusAuraSr25519AppSr25519Public;1822  }18231824  /** @name SpConsensusAuraSr25519AppSr25519Public (186) */1825  interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}18261827  /** @name SpCoreSr25519Public (187) */1828  interface SpCoreSr25519Public extends U8aFixed {}18291830  /** @name SpCoreCryptoKeyTypeId (190) */1831  interface SpCoreCryptoKeyTypeId extends U8aFixed {}18321833  /** @name PalletSessionCall (191) */1834  interface PalletSessionCall extends Enum {1835    readonly isSetKeys: boolean;1836    readonly asSetKeys: {1837      readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;1838      readonly proof: Bytes;1839    } & Struct;1840    readonly isPurgeKeys: boolean;1841    readonly type: 'SetKeys' | 'PurgeKeys';1842  }18431844  /** @name PalletSessionError (192) */1845  interface PalletSessionError extends Enum {1846    readonly isInvalidProof: boolean;1847    readonly isNoAssociatedValidatorId: boolean;1848    readonly isDuplicatedKey: boolean;1849    readonly isNoKeys: boolean;1850    readonly isNoAccount: boolean;1851    readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';1852  }18531854  /** @name PalletBalancesBalanceLock (194) */1855  interface PalletBalancesBalanceLock extends Struct {1856    readonly id: U8aFixed;1857    readonly amount: u128;1858    readonly reasons: PalletBalancesReasons;1859  }18601861  /** @name PalletBalancesReasons (195) */1862  interface PalletBalancesReasons extends Enum {1863    readonly isFee: boolean;1864    readonly isMisc: boolean;1865    readonly isAll: boolean;1866    readonly type: 'Fee' | 'Misc' | 'All';1867  }18681869  /** @name PalletBalancesReserveData (198) */1870  interface PalletBalancesReserveData extends Struct {1871    readonly id: U8aFixed;1872    readonly amount: u128;1873  }18741875  /** @name PalletBalancesCall (200) */1876  interface PalletBalancesCall extends Enum {1877    readonly isTransfer: boolean;1878    readonly asTransfer: {1879      readonly dest: MultiAddress;1880      readonly value: Compact<u128>;1881    } & Struct;1882    readonly isSetBalance: boolean;1883    readonly asSetBalance: {1884      readonly who: MultiAddress;1885      readonly newFree: Compact<u128>;1886      readonly newReserved: Compact<u128>;1887    } & Struct;1888    readonly isForceTransfer: boolean;1889    readonly asForceTransfer: {1890      readonly source: MultiAddress;1891      readonly dest: MultiAddress;1892      readonly value: Compact<u128>;1893    } & Struct;1894    readonly isTransferKeepAlive: boolean;1895    readonly asTransferKeepAlive: {1896      readonly dest: MultiAddress;1897      readonly value: Compact<u128>;1898    } & Struct;1899    readonly isTransferAll: boolean;1900    readonly asTransferAll: {1901      readonly dest: MultiAddress;1902      readonly keepAlive: bool;1903    } & Struct;1904    readonly isForceUnreserve: boolean;1905    readonly asForceUnreserve: {1906      readonly who: MultiAddress;1907      readonly amount: u128;1908    } & Struct;1909    readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1910  }19111912  /** @name PalletBalancesError (203) */1913  interface PalletBalancesError extends Enum {1914    readonly isVestingBalance: boolean;1915    readonly isLiquidityRestrictions: boolean;1916    readonly isInsufficientBalance: boolean;1917    readonly isExistentialDeposit: boolean;1918    readonly isKeepAlive: boolean;1919    readonly isExistingVestingSchedule: boolean;1920    readonly isDeadAccount: boolean;1921    readonly isTooManyReserves: boolean;1922    readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1923  }19241925  /** @name PalletTimestampCall (205) */1926  interface PalletTimestampCall extends Enum {1927    readonly isSet: boolean;1928    readonly asSet: {1929      readonly now: Compact<u64>;1930    } & Struct;1931    readonly type: 'Set';1932  }19331934  /** @name PalletTransactionPaymentReleases (207) */1935  interface PalletTransactionPaymentReleases extends Enum {1936    readonly isV1Ancient: boolean;1937    readonly isV2: boolean;1938    readonly type: 'V1Ancient' | 'V2';1939  }19401941  /** @name PalletTreasuryProposal (208) */1942  interface PalletTreasuryProposal extends Struct {1943    readonly proposer: AccountId32;1944    readonly value: u128;1945    readonly beneficiary: AccountId32;1946    readonly bond: u128;1947  }19481949  /** @name PalletTreasuryCall (210) */1950  interface PalletTreasuryCall extends Enum {1951    readonly isProposeSpend: boolean;1952    readonly asProposeSpend: {1953      readonly value: Compact<u128>;1954      readonly beneficiary: MultiAddress;1955    } & Struct;1956    readonly isRejectProposal: boolean;1957    readonly asRejectProposal: {1958      readonly proposalId: Compact<u32>;1959    } & Struct;1960    readonly isApproveProposal: boolean;1961    readonly asApproveProposal: {1962      readonly proposalId: Compact<u32>;1963    } & Struct;1964    readonly isSpend: boolean;1965    readonly asSpend: {1966      readonly amount: Compact<u128>;1967      readonly beneficiary: MultiAddress;1968    } & Struct;1969    readonly isRemoveApproval: boolean;1970    readonly asRemoveApproval: {1971      readonly proposalId: Compact<u32>;1972    } & Struct;1973    readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1974  }19751976  /** @name FrameSupportPalletId (212) */1977  interface FrameSupportPalletId extends U8aFixed {}19781979  /** @name PalletTreasuryError (213) */1980  interface PalletTreasuryError extends Enum {1981    readonly isInsufficientProposersBalance: boolean;1982    readonly isInvalidIndex: boolean;1983    readonly isTooManyApprovals: boolean;1984    readonly isInsufficientPermission: boolean;1985    readonly isProposalNotApproved: boolean;1986    readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1987  }19881989  /** @name PalletSudoCall (214) */1990  interface PalletSudoCall extends Enum {1991    readonly isSudo: boolean;1992    readonly asSudo: {1993      readonly call: Call;1994    } & Struct;1995    readonly isSudoUncheckedWeight: boolean;1996    readonly asSudoUncheckedWeight: {1997      readonly call: Call;1998      readonly weight: SpWeightsWeightV2Weight;1999    } & Struct;2000    readonly isSetKey: boolean;2001    readonly asSetKey: {2002      readonly new_: MultiAddress;2003    } & Struct;2004    readonly isSudoAs: boolean;2005    readonly asSudoAs: {2006      readonly who: MultiAddress;2007      readonly call: Call;2008    } & Struct;2009    readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2010  }20112012  /** @name OrmlVestingModuleCall (216) */2013  interface OrmlVestingModuleCall extends Enum {2014    readonly isClaim: boolean;2015    readonly isVestedTransfer: boolean;2016    readonly asVestedTransfer: {2017      readonly dest: MultiAddress;2018      readonly schedule: OrmlVestingVestingSchedule;2019    } & Struct;2020    readonly isUpdateVestingSchedules: boolean;2021    readonly asUpdateVestingSchedules: {2022      readonly who: MultiAddress;2023      readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;2024    } & Struct;2025    readonly isClaimFor: boolean;2026    readonly asClaimFor: {2027      readonly dest: MultiAddress;2028    } & Struct;2029    readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';2030  }20312032  /** @name OrmlXtokensModuleCall (218) */2033  interface OrmlXtokensModuleCall extends Enum {2034    readonly isTransfer: boolean;2035    readonly asTransfer: {2036      readonly currencyId: PalletForeignAssetsAssetIds;2037      readonly amount: u128;2038      readonly dest: XcmVersionedMultiLocation;2039      readonly destWeightLimit: XcmV2WeightLimit;2040    } & Struct;2041    readonly isTransferMultiasset: boolean;2042    readonly asTransferMultiasset: {2043      readonly asset: XcmVersionedMultiAsset;2044      readonly dest: XcmVersionedMultiLocation;2045      readonly destWeightLimit: XcmV2WeightLimit;2046    } & Struct;2047    readonly isTransferWithFee: boolean;2048    readonly asTransferWithFee: {2049      readonly currencyId: PalletForeignAssetsAssetIds;2050      readonly amount: u128;2051      readonly fee: u128;2052      readonly dest: XcmVersionedMultiLocation;2053      readonly destWeightLimit: XcmV2WeightLimit;2054    } & Struct;2055    readonly isTransferMultiassetWithFee: boolean;2056    readonly asTransferMultiassetWithFee: {2057      readonly asset: XcmVersionedMultiAsset;2058      readonly fee: XcmVersionedMultiAsset;2059      readonly dest: XcmVersionedMultiLocation;2060      readonly destWeightLimit: XcmV2WeightLimit;2061    } & Struct;2062    readonly isTransferMulticurrencies: boolean;2063    readonly asTransferMulticurrencies: {2064      readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;2065      readonly feeItem: u32;2066      readonly dest: XcmVersionedMultiLocation;2067      readonly destWeightLimit: XcmV2WeightLimit;2068    } & Struct;2069    readonly isTransferMultiassets: boolean;2070    readonly asTransferMultiassets: {2071      readonly assets: XcmVersionedMultiAssets;2072      readonly feeItem: u32;2073      readonly dest: XcmVersionedMultiLocation;2074      readonly destWeightLimit: XcmV2WeightLimit;2075    } & Struct;2076    readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';2077  }20782079  /** @name XcmVersionedMultiAsset (219) */2080  interface XcmVersionedMultiAsset extends Enum {2081    readonly isV0: boolean;2082    readonly asV0: XcmV0MultiAsset;2083    readonly isV1: boolean;2084    readonly asV1: XcmV1MultiAsset;2085    readonly type: 'V0' | 'V1';2086  }20872088  /** @name OrmlTokensModuleCall (222) */2089  interface OrmlTokensModuleCall extends Enum {2090    readonly isTransfer: boolean;2091    readonly asTransfer: {2092      readonly dest: MultiAddress;2093      readonly currencyId: PalletForeignAssetsAssetIds;2094      readonly amount: Compact<u128>;2095    } & Struct;2096    readonly isTransferAll: boolean;2097    readonly asTransferAll: {2098      readonly dest: MultiAddress;2099      readonly currencyId: PalletForeignAssetsAssetIds;2100      readonly keepAlive: bool;2101    } & Struct;2102    readonly isTransferKeepAlive: boolean;2103    readonly asTransferKeepAlive: {2104      readonly dest: MultiAddress;2105      readonly currencyId: PalletForeignAssetsAssetIds;2106      readonly amount: Compact<u128>;2107    } & Struct;2108    readonly isForceTransfer: boolean;2109    readonly asForceTransfer: {2110      readonly source: MultiAddress;2111      readonly dest: MultiAddress;2112      readonly currencyId: PalletForeignAssetsAssetIds;2113      readonly amount: Compact<u128>;2114    } & Struct;2115    readonly isSetBalance: boolean;2116    readonly asSetBalance: {2117      readonly who: MultiAddress;2118      readonly currencyId: PalletForeignAssetsAssetIds;2119      readonly newFree: Compact<u128>;2120      readonly newReserved: Compact<u128>;2121    } & Struct;2122    readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2123  }21242125  /** @name PalletIdentityCall (223) */2126  interface PalletIdentityCall extends Enum {2127    readonly isAddRegistrar: boolean;2128    readonly asAddRegistrar: {2129      readonly account: MultiAddress;2130    } & Struct;2131    readonly isSetIdentity: boolean;2132    readonly asSetIdentity: {2133      readonly info: PalletIdentityIdentityInfo;2134    } & Struct;2135    readonly isSetSubs: boolean;2136    readonly asSetSubs: {2137      readonly subs: Vec<ITuple<[AccountId32, Data]>>;2138    } & Struct;2139    readonly isClearIdentity: boolean;2140    readonly isRequestJudgement: boolean;2141    readonly asRequestJudgement: {2142      readonly regIndex: Compact<u32>;2143      readonly maxFee: Compact<u128>;2144    } & Struct;2145    readonly isCancelRequest: boolean;2146    readonly asCancelRequest: {2147      readonly regIndex: u32;2148    } & Struct;2149    readonly isSetFee: boolean;2150    readonly asSetFee: {2151      readonly index: Compact<u32>;2152      readonly fee: Compact<u128>;2153    } & Struct;2154    readonly isSetAccountId: boolean;2155    readonly asSetAccountId: {2156      readonly index: Compact<u32>;2157      readonly new_: MultiAddress;2158    } & Struct;2159    readonly isSetFields: boolean;2160    readonly asSetFields: {2161      readonly index: Compact<u32>;2162      readonly fields: PalletIdentityBitFlags;2163    } & Struct;2164    readonly isProvideJudgement: boolean;2165    readonly asProvideJudgement: {2166      readonly regIndex: Compact<u32>;2167      readonly target: MultiAddress;2168      readonly judgement: PalletIdentityJudgement;2169      readonly identity: H256;2170    } & Struct;2171    readonly isKillIdentity: boolean;2172    readonly asKillIdentity: {2173      readonly target: MultiAddress;2174    } & Struct;2175    readonly isAddSub: boolean;2176    readonly asAddSub: {2177      readonly sub: MultiAddress;2178      readonly data: Data;2179    } & Struct;2180    readonly isRenameSub: boolean;2181    readonly asRenameSub: {2182      readonly sub: MultiAddress;2183      readonly data: Data;2184    } & Struct;2185    readonly isRemoveSub: boolean;2186    readonly asRemoveSub: {2187      readonly sub: MultiAddress;2188    } & Struct;2189    readonly isQuitSub: boolean;2190    readonly isForceInsertIdentities: boolean;2191    readonly asForceInsertIdentities: {2192      readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;2193    } & Struct;2194    readonly isForceRemoveIdentities: boolean;2195    readonly asForceRemoveIdentities: {2196      readonly identities: Vec<AccountId32>;2197    } & Struct;2198    readonly isForceSetSubs: boolean;2199    readonly asForceSetSubs: {2200      readonly subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>;2201    } & Struct;2202    readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';2203  }22042205  /** @name PalletIdentityIdentityInfo (224) */2206  interface PalletIdentityIdentityInfo extends Struct {2207    readonly additional: Vec<ITuple<[Data, Data]>>;2208    readonly display: Data;2209    readonly legal: Data;2210    readonly web: Data;2211    readonly riot: Data;2212    readonly email: Data;2213    readonly pgpFingerprint: Option<U8aFixed>;2214    readonly image: Data;2215    readonly twitter: Data;2216  }22172218  /** @name PalletIdentityBitFlags (260) */2219  interface PalletIdentityBitFlags extends Set {2220    readonly isDisplay: boolean;2221    readonly isLegal: boolean;2222    readonly isWeb: boolean;2223    readonly isRiot: boolean;2224    readonly isEmail: boolean;2225    readonly isPgpFingerprint: boolean;2226    readonly isImage: boolean;2227    readonly isTwitter: boolean;2228  }22292230  /** @name PalletIdentityIdentityField (261) */2231  interface PalletIdentityIdentityField extends Enum {2232    readonly isDisplay: boolean;2233    readonly isLegal: boolean;2234    readonly isWeb: boolean;2235    readonly isRiot: boolean;2236    readonly isEmail: boolean;2237    readonly isPgpFingerprint: boolean;2238    readonly isImage: boolean;2239    readonly isTwitter: boolean;2240    readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2241  }22422243  /** @name PalletIdentityJudgement (262) */2244  interface PalletIdentityJudgement extends Enum {2245    readonly isUnknown: boolean;2246    readonly isFeePaid: boolean;2247    readonly asFeePaid: u128;2248    readonly isReasonable: boolean;2249    readonly isKnownGood: boolean;2250    readonly isOutOfDate: boolean;2251    readonly isLowQuality: boolean;2252    readonly isErroneous: boolean;2253    readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';2254  }22552256  /** @name PalletIdentityRegistration (265) */2257  interface PalletIdentityRegistration extends Struct {2258    readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;2259    readonly deposit: u128;2260    readonly info: PalletIdentityIdentityInfo;2261  }22622263  /** @name PalletPreimageCall (273) */2264  interface PalletPreimageCall extends Enum {2265    readonly isNotePreimage: boolean;2266    readonly asNotePreimage: {2267      readonly bytes: Bytes;2268    } & Struct;2269    readonly isUnnotePreimage: boolean;2270    readonly asUnnotePreimage: {2271      readonly hash_: H256;2272    } & Struct;2273    readonly isRequestPreimage: boolean;2274    readonly asRequestPreimage: {2275      readonly hash_: H256;2276    } & Struct;2277    readonly isUnrequestPreimage: boolean;2278    readonly asUnrequestPreimage: {2279      readonly hash_: H256;2280    } & Struct;2281    readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2282  }22832284  /** @name CumulusPalletXcmpQueueCall (274) */2285  interface CumulusPalletXcmpQueueCall extends Enum {2286    readonly isServiceOverweight: boolean;2287    readonly asServiceOverweight: {2288      readonly index: u64;2289      readonly weightLimit: u64;2290    } & Struct;2291    readonly isSuspendXcmExecution: boolean;2292    readonly isResumeXcmExecution: boolean;2293    readonly isUpdateSuspendThreshold: boolean;2294    readonly asUpdateSuspendThreshold: {2295      readonly new_: u32;2296    } & Struct;2297    readonly isUpdateDropThreshold: boolean;2298    readonly asUpdateDropThreshold: {2299      readonly new_: u32;2300    } & Struct;2301    readonly isUpdateResumeThreshold: boolean;2302    readonly asUpdateResumeThreshold: {2303      readonly new_: u32;2304    } & Struct;2305    readonly isUpdateThresholdWeight: boolean;2306    readonly asUpdateThresholdWeight: {2307      readonly new_: u64;2308    } & Struct;2309    readonly isUpdateWeightRestrictDecay: boolean;2310    readonly asUpdateWeightRestrictDecay: {2311      readonly new_: u64;2312    } & Struct;2313    readonly isUpdateXcmpMaxIndividualWeight: boolean;2314    readonly asUpdateXcmpMaxIndividualWeight: {2315      readonly new_: u64;2316    } & Struct;2317    readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2318  }23192320  /** @name PalletXcmCall (275) */2321  interface PalletXcmCall extends Enum {2322    readonly isSend: boolean;2323    readonly asSend: {2324      readonly dest: XcmVersionedMultiLocation;2325      readonly message: XcmVersionedXcm;2326    } & Struct;2327    readonly isTeleportAssets: boolean;2328    readonly asTeleportAssets: {2329      readonly dest: XcmVersionedMultiLocation;2330      readonly beneficiary: XcmVersionedMultiLocation;2331      readonly assets: XcmVersionedMultiAssets;2332      readonly feeAssetItem: u32;2333    } & Struct;2334    readonly isReserveTransferAssets: boolean;2335    readonly asReserveTransferAssets: {2336      readonly dest: XcmVersionedMultiLocation;2337      readonly beneficiary: XcmVersionedMultiLocation;2338      readonly assets: XcmVersionedMultiAssets;2339      readonly feeAssetItem: u32;2340    } & Struct;2341    readonly isExecute: boolean;2342    readonly asExecute: {2343      readonly message: XcmVersionedXcm;2344      readonly maxWeight: u64;2345    } & Struct;2346    readonly isForceXcmVersion: boolean;2347    readonly asForceXcmVersion: {2348      readonly location: XcmV1MultiLocation;2349      readonly xcmVersion: u32;2350    } & Struct;2351    readonly isForceDefaultXcmVersion: boolean;2352    readonly asForceDefaultXcmVersion: {2353      readonly maybeXcmVersion: Option<u32>;2354    } & Struct;2355    readonly isForceSubscribeVersionNotify: boolean;2356    readonly asForceSubscribeVersionNotify: {2357      readonly location: XcmVersionedMultiLocation;2358    } & Struct;2359    readonly isForceUnsubscribeVersionNotify: boolean;2360    readonly asForceUnsubscribeVersionNotify: {2361      readonly location: XcmVersionedMultiLocation;2362    } & Struct;2363    readonly isLimitedReserveTransferAssets: boolean;2364    readonly asLimitedReserveTransferAssets: {2365      readonly dest: XcmVersionedMultiLocation;2366      readonly beneficiary: XcmVersionedMultiLocation;2367      readonly assets: XcmVersionedMultiAssets;2368      readonly feeAssetItem: u32;2369      readonly weightLimit: XcmV2WeightLimit;2370    } & Struct;2371    readonly isLimitedTeleportAssets: boolean;2372    readonly asLimitedTeleportAssets: {2373      readonly dest: XcmVersionedMultiLocation;2374      readonly beneficiary: XcmVersionedMultiLocation;2375      readonly assets: XcmVersionedMultiAssets;2376      readonly feeAssetItem: u32;2377      readonly weightLimit: XcmV2WeightLimit;2378    } & Struct;2379    readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2380  }23812382  /** @name XcmVersionedXcm (276) */2383  interface XcmVersionedXcm extends Enum {2384    readonly isV0: boolean;2385    readonly asV0: XcmV0Xcm;2386    readonly isV1: boolean;2387    readonly asV1: XcmV1Xcm;2388    readonly isV2: boolean;2389    readonly asV2: XcmV2Xcm;2390    readonly type: 'V0' | 'V1' | 'V2';2391  }23922393  /** @name XcmV0Xcm (277) */2394  interface XcmV0Xcm extends Enum {2395    readonly isWithdrawAsset: boolean;2396    readonly asWithdrawAsset: {2397      readonly assets: Vec<XcmV0MultiAsset>;2398      readonly effects: Vec<XcmV0Order>;2399    } & Struct;2400    readonly isReserveAssetDeposit: boolean;2401    readonly asReserveAssetDeposit: {2402      readonly assets: Vec<XcmV0MultiAsset>;2403      readonly effects: Vec<XcmV0Order>;2404    } & Struct;2405    readonly isTeleportAsset: boolean;2406    readonly asTeleportAsset: {2407      readonly assets: Vec<XcmV0MultiAsset>;2408      readonly effects: Vec<XcmV0Order>;2409    } & Struct;2410    readonly isQueryResponse: boolean;2411    readonly asQueryResponse: {2412      readonly queryId: Compact<u64>;2413      readonly response: XcmV0Response;2414    } & Struct;2415    readonly isTransferAsset: boolean;2416    readonly asTransferAsset: {2417      readonly assets: Vec<XcmV0MultiAsset>;2418      readonly dest: XcmV0MultiLocation;2419    } & Struct;2420    readonly isTransferReserveAsset: boolean;2421    readonly asTransferReserveAsset: {2422      readonly assets: Vec<XcmV0MultiAsset>;2423      readonly dest: XcmV0MultiLocation;2424      readonly effects: Vec<XcmV0Order>;2425    } & Struct;2426    readonly isTransact: boolean;2427    readonly asTransact: {2428      readonly originType: XcmV0OriginKind;2429      readonly requireWeightAtMost: u64;2430      readonly call: XcmDoubleEncoded;2431    } & Struct;2432    readonly isHrmpNewChannelOpenRequest: boolean;2433    readonly asHrmpNewChannelOpenRequest: {2434      readonly sender: Compact<u32>;2435      readonly maxMessageSize: Compact<u32>;2436      readonly maxCapacity: Compact<u32>;2437    } & Struct;2438    readonly isHrmpChannelAccepted: boolean;2439    readonly asHrmpChannelAccepted: {2440      readonly recipient: Compact<u32>;2441    } & Struct;2442    readonly isHrmpChannelClosing: boolean;2443    readonly asHrmpChannelClosing: {2444      readonly initiator: Compact<u32>;2445      readonly sender: Compact<u32>;2446      readonly recipient: Compact<u32>;2447    } & Struct;2448    readonly isRelayedFrom: boolean;2449    readonly asRelayedFrom: {2450      readonly who: XcmV0MultiLocation;2451      readonly message: XcmV0Xcm;2452    } & Struct;2453    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2454  }24552456  /** @name XcmV0Order (279) */2457  interface XcmV0Order extends Enum {2458    readonly isNull: boolean;2459    readonly isDepositAsset: boolean;2460    readonly asDepositAsset: {2461      readonly assets: Vec<XcmV0MultiAsset>;2462      readonly dest: XcmV0MultiLocation;2463    } & Struct;2464    readonly isDepositReserveAsset: boolean;2465    readonly asDepositReserveAsset: {2466      readonly assets: Vec<XcmV0MultiAsset>;2467      readonly dest: XcmV0MultiLocation;2468      readonly effects: Vec<XcmV0Order>;2469    } & Struct;2470    readonly isExchangeAsset: boolean;2471    readonly asExchangeAsset: {2472      readonly give: Vec<XcmV0MultiAsset>;2473      readonly receive: Vec<XcmV0MultiAsset>;2474    } & Struct;2475    readonly isInitiateReserveWithdraw: boolean;2476    readonly asInitiateReserveWithdraw: {2477      readonly assets: Vec<XcmV0MultiAsset>;2478      readonly reserve: XcmV0MultiLocation;2479      readonly effects: Vec<XcmV0Order>;2480    } & Struct;2481    readonly isInitiateTeleport: boolean;2482    readonly asInitiateTeleport: {2483      readonly assets: Vec<XcmV0MultiAsset>;2484      readonly dest: XcmV0MultiLocation;2485      readonly effects: Vec<XcmV0Order>;2486    } & Struct;2487    readonly isQueryHolding: boolean;2488    readonly asQueryHolding: {2489      readonly queryId: Compact<u64>;2490      readonly dest: XcmV0MultiLocation;2491      readonly assets: Vec<XcmV0MultiAsset>;2492    } & Struct;2493    readonly isBuyExecution: boolean;2494    readonly asBuyExecution: {2495      readonly fees: XcmV0MultiAsset;2496      readonly weight: u64;2497      readonly debt: u64;2498      readonly haltOnError: bool;2499      readonly xcm: Vec<XcmV0Xcm>;2500    } & Struct;2501    readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2502  }25032504  /** @name XcmV0Response (281) */2505  interface XcmV0Response extends Enum {2506    readonly isAssets: boolean;2507    readonly asAssets: Vec<XcmV0MultiAsset>;2508    readonly type: 'Assets';2509  }25102511  /** @name XcmV1Xcm (282) */2512  interface XcmV1Xcm extends Enum {2513    readonly isWithdrawAsset: boolean;2514    readonly asWithdrawAsset: {2515      readonly assets: XcmV1MultiassetMultiAssets;2516      readonly effects: Vec<XcmV1Order>;2517    } & Struct;2518    readonly isReserveAssetDeposited: boolean;2519    readonly asReserveAssetDeposited: {2520      readonly assets: XcmV1MultiassetMultiAssets;2521      readonly effects: Vec<XcmV1Order>;2522    } & Struct;2523    readonly isReceiveTeleportedAsset: boolean;2524    readonly asReceiveTeleportedAsset: {2525      readonly assets: XcmV1MultiassetMultiAssets;2526      readonly effects: Vec<XcmV1Order>;2527    } & Struct;2528    readonly isQueryResponse: boolean;2529    readonly asQueryResponse: {2530      readonly queryId: Compact<u64>;2531      readonly response: XcmV1Response;2532    } & Struct;2533    readonly isTransferAsset: boolean;2534    readonly asTransferAsset: {2535      readonly assets: XcmV1MultiassetMultiAssets;2536      readonly beneficiary: XcmV1MultiLocation;2537    } & Struct;2538    readonly isTransferReserveAsset: boolean;2539    readonly asTransferReserveAsset: {2540      readonly assets: XcmV1MultiassetMultiAssets;2541      readonly dest: XcmV1MultiLocation;2542      readonly effects: Vec<XcmV1Order>;2543    } & Struct;2544    readonly isTransact: boolean;2545    readonly asTransact: {2546      readonly originType: XcmV0OriginKind;2547      readonly requireWeightAtMost: u64;2548      readonly call: XcmDoubleEncoded;2549    } & Struct;2550    readonly isHrmpNewChannelOpenRequest: boolean;2551    readonly asHrmpNewChannelOpenRequest: {2552      readonly sender: Compact<u32>;2553      readonly maxMessageSize: Compact<u32>;2554      readonly maxCapacity: Compact<u32>;2555    } & Struct;2556    readonly isHrmpChannelAccepted: boolean;2557    readonly asHrmpChannelAccepted: {2558      readonly recipient: Compact<u32>;2559    } & Struct;2560    readonly isHrmpChannelClosing: boolean;2561    readonly asHrmpChannelClosing: {2562      readonly initiator: Compact<u32>;2563      readonly sender: Compact<u32>;2564      readonly recipient: Compact<u32>;2565    } & Struct;2566    readonly isRelayedFrom: boolean;2567    readonly asRelayedFrom: {2568      readonly who: XcmV1MultilocationJunctions;2569      readonly message: XcmV1Xcm;2570    } & Struct;2571    readonly isSubscribeVersion: boolean;2572    readonly asSubscribeVersion: {2573      readonly queryId: Compact<u64>;2574      readonly maxResponseWeight: Compact<u64>;2575    } & Struct;2576    readonly isUnsubscribeVersion: boolean;2577    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2578  }25792580  /** @name XcmV1Order (284) */2581  interface XcmV1Order extends Enum {2582    readonly isNoop: boolean;2583    readonly isDepositAsset: boolean;2584    readonly asDepositAsset: {2585      readonly assets: XcmV1MultiassetMultiAssetFilter;2586      readonly maxAssets: u32;2587      readonly beneficiary: XcmV1MultiLocation;2588    } & Struct;2589    readonly isDepositReserveAsset: boolean;2590    readonly asDepositReserveAsset: {2591      readonly assets: XcmV1MultiassetMultiAssetFilter;2592      readonly maxAssets: u32;2593      readonly dest: XcmV1MultiLocation;2594      readonly effects: Vec<XcmV1Order>;2595    } & Struct;2596    readonly isExchangeAsset: boolean;2597    readonly asExchangeAsset: {2598      readonly give: XcmV1MultiassetMultiAssetFilter;2599      readonly receive: XcmV1MultiassetMultiAssets;2600    } & Struct;2601    readonly isInitiateReserveWithdraw: boolean;2602    readonly asInitiateReserveWithdraw: {2603      readonly assets: XcmV1MultiassetMultiAssetFilter;2604      readonly reserve: XcmV1MultiLocation;2605      readonly effects: Vec<XcmV1Order>;2606    } & Struct;2607    readonly isInitiateTeleport: boolean;2608    readonly asInitiateTeleport: {2609      readonly assets: XcmV1MultiassetMultiAssetFilter;2610      readonly dest: XcmV1MultiLocation;2611      readonly effects: Vec<XcmV1Order>;2612    } & Struct;2613    readonly isQueryHolding: boolean;2614    readonly asQueryHolding: {2615      readonly queryId: Compact<u64>;2616      readonly dest: XcmV1MultiLocation;2617      readonly assets: XcmV1MultiassetMultiAssetFilter;2618    } & Struct;2619    readonly isBuyExecution: boolean;2620    readonly asBuyExecution: {2621      readonly fees: XcmV1MultiAsset;2622      readonly weight: u64;2623      readonly debt: u64;2624      readonly haltOnError: bool;2625      readonly instructions: Vec<XcmV1Xcm>;2626    } & Struct;2627    readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2628  }26292630  /** @name XcmV1Response (286) */2631  interface XcmV1Response extends Enum {2632    readonly isAssets: boolean;2633    readonly asAssets: XcmV1MultiassetMultiAssets;2634    readonly isVersion: boolean;2635    readonly asVersion: u32;2636    readonly type: 'Assets' | 'Version';2637  }26382639  /** @name CumulusPalletXcmCall (300) */2640  type CumulusPalletXcmCall = Null;26412642  /** @name CumulusPalletDmpQueueCall (301) */2643  interface CumulusPalletDmpQueueCall extends Enum {2644    readonly isServiceOverweight: boolean;2645    readonly asServiceOverweight: {2646      readonly index: u64;2647      readonly weightLimit: u64;2648    } & Struct;2649    readonly type: 'ServiceOverweight';2650  }26512652  /** @name PalletInflationCall (302) */2653  interface PalletInflationCall extends Enum {2654    readonly isStartInflation: boolean;2655    readonly asStartInflation: {2656      readonly inflationStartRelayBlock: u32;2657    } & Struct;2658    readonly type: 'StartInflation';2659  }26602661  /** @name PalletUniqueCall (303) */2662  interface PalletUniqueCall extends Enum {2663    readonly isCreateCollection: boolean;2664    readonly asCreateCollection: {2665      readonly collectionName: Vec<u16>;2666      readonly collectionDescription: Vec<u16>;2667      readonly tokenPrefix: Bytes;2668      readonly mode: UpDataStructsCollectionMode;2669    } & Struct;2670    readonly isCreateCollectionEx: boolean;2671    readonly asCreateCollectionEx: {2672      readonly data: UpDataStructsCreateCollectionData;2673    } & Struct;2674    readonly isDestroyCollection: boolean;2675    readonly asDestroyCollection: {2676      readonly collectionId: u32;2677    } & Struct;2678    readonly isAddToAllowList: boolean;2679    readonly asAddToAllowList: {2680      readonly collectionId: u32;2681      readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2682    } & Struct;2683    readonly isRemoveFromAllowList: boolean;2684    readonly asRemoveFromAllowList: {2685      readonly collectionId: u32;2686      readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2687    } & Struct;2688    readonly isChangeCollectionOwner: boolean;2689    readonly asChangeCollectionOwner: {2690      readonly collectionId: u32;2691      readonly newOwner: AccountId32;2692    } & Struct;2693    readonly isAddCollectionAdmin: boolean;2694    readonly asAddCollectionAdmin: {2695      readonly collectionId: u32;2696      readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2697    } & Struct;2698    readonly isRemoveCollectionAdmin: boolean;2699    readonly asRemoveCollectionAdmin: {2700      readonly collectionId: u32;2701      readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2702    } & Struct;2703    readonly isSetCollectionSponsor: boolean;2704    readonly asSetCollectionSponsor: {2705      readonly collectionId: u32;2706      readonly newSponsor: AccountId32;2707    } & Struct;2708    readonly isConfirmSponsorship: boolean;2709    readonly asConfirmSponsorship: {2710      readonly collectionId: u32;2711    } & Struct;2712    readonly isRemoveCollectionSponsor: boolean;2713    readonly asRemoveCollectionSponsor: {2714      readonly collectionId: u32;2715    } & Struct;2716    readonly isCreateItem: boolean;2717    readonly asCreateItem: {2718      readonly collectionId: u32;2719      readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2720      readonly data: UpDataStructsCreateItemData;2721    } & Struct;2722    readonly isCreateMultipleItems: boolean;2723    readonly asCreateMultipleItems: {2724      readonly collectionId: u32;2725      readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2726      readonly itemsData: Vec<UpDataStructsCreateItemData>;2727    } & Struct;2728    readonly isSetCollectionProperties: boolean;2729    readonly asSetCollectionProperties: {2730      readonly collectionId: u32;2731      readonly properties: Vec<UpDataStructsProperty>;2732    } & Struct;2733    readonly isDeleteCollectionProperties: boolean;2734    readonly asDeleteCollectionProperties: {2735      readonly collectionId: u32;2736      readonly propertyKeys: Vec<Bytes>;2737    } & Struct;2738    readonly isSetTokenProperties: boolean;2739    readonly asSetTokenProperties: {2740      readonly collectionId: u32;2741      readonly tokenId: u32;2742      readonly properties: Vec<UpDataStructsProperty>;2743    } & Struct;2744    readonly isDeleteTokenProperties: boolean;2745    readonly asDeleteTokenProperties: {2746      readonly collectionId: u32;2747      readonly tokenId: u32;2748      readonly propertyKeys: Vec<Bytes>;2749    } & Struct;2750    readonly isSetTokenPropertyPermissions: boolean;2751    readonly asSetTokenPropertyPermissions: {2752      readonly collectionId: u32;2753      readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2754    } & Struct;2755    readonly isCreateMultipleItemsEx: boolean;2756    readonly asCreateMultipleItemsEx: {2757      readonly collectionId: u32;2758      readonly data: UpDataStructsCreateItemExData;2759    } & Struct;2760    readonly isSetTransfersEnabledFlag: boolean;2761    readonly asSetTransfersEnabledFlag: {2762      readonly collectionId: u32;2763      readonly value: bool;2764    } & Struct;2765    readonly isBurnItem: boolean;2766    readonly asBurnItem: {2767      readonly collectionId: u32;2768      readonly itemId: u32;2769      readonly value: u128;2770    } & Struct;2771    readonly isBurnFrom: boolean;2772    readonly asBurnFrom: {2773      readonly collectionId: u32;2774      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2775      readonly itemId: u32;2776      readonly value: u128;2777    } & Struct;2778    readonly isTransfer: boolean;2779    readonly asTransfer: {2780      readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2781      readonly collectionId: u32;2782      readonly itemId: u32;2783      readonly value: u128;2784    } & Struct;2785    readonly isApprove: boolean;2786    readonly asApprove: {2787      readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2788      readonly collectionId: u32;2789      readonly itemId: u32;2790      readonly amount: u128;2791    } & Struct;2792    readonly isApproveFrom: boolean;2793    readonly asApproveFrom: {2794      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2795      readonly to: PalletEvmAccountBasicCrossAccountIdRepr;2796      readonly collectionId: u32;2797      readonly itemId: u32;2798      readonly amount: u128;2799    } & Struct;2800    readonly isTransferFrom: boolean;2801    readonly asTransferFrom: {2802      readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2803      readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2804      readonly collectionId: u32;2805      readonly itemId: u32;2806      readonly value: u128;2807    } & Struct;2808    readonly isSetCollectionLimits: boolean;2809    readonly asSetCollectionLimits: {2810      readonly collectionId: u32;2811      readonly newLimit: UpDataStructsCollectionLimits;2812    } & Struct;2813    readonly isSetCollectionPermissions: boolean;2814    readonly asSetCollectionPermissions: {2815      readonly collectionId: u32;2816      readonly newPermission: UpDataStructsCollectionPermissions;2817    } & Struct;2818    readonly isRepartition: boolean;2819    readonly asRepartition: {2820      readonly collectionId: u32;2821      readonly tokenId: u32;2822      readonly amount: u128;2823    } & Struct;2824    readonly isSetAllowanceForAll: boolean;2825    readonly asSetAllowanceForAll: {2826      readonly collectionId: u32;2827      readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2828      readonly approve: bool;2829    } & Struct;2830    readonly isForceRepairCollection: boolean;2831    readonly asForceRepairCollection: {2832      readonly collectionId: u32;2833    } & Struct;2834    readonly isForceRepairItem: boolean;2835    readonly asForceRepairItem: {2836      readonly collectionId: u32;2837      readonly itemId: u32;2838    } & Struct;2839    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' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2840  }28412842  /** @name UpDataStructsCollectionMode (308) */2843  interface UpDataStructsCollectionMode extends Enum {2844    readonly isNft: boolean;2845    readonly isFungible: boolean;2846    readonly asFungible: u8;2847    readonly isReFungible: boolean;2848    readonly type: 'Nft' | 'Fungible' | 'ReFungible';2849  }28502851  /** @name UpDataStructsCreateCollectionData (309) */2852  interface UpDataStructsCreateCollectionData extends Struct {2853    readonly mode: UpDataStructsCollectionMode;2854    readonly access: Option<UpDataStructsAccessMode>;2855    readonly name: Vec<u16>;2856    readonly description: Vec<u16>;2857    readonly tokenPrefix: Bytes;2858    readonly pendingSponsor: Option<AccountId32>;2859    readonly limits: Option<UpDataStructsCollectionLimits>;2860    readonly permissions: Option<UpDataStructsCollectionPermissions>;2861    readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2862    readonly properties: Vec<UpDataStructsProperty>;2863  }28642865  /** @name UpDataStructsAccessMode (311) */2866  interface UpDataStructsAccessMode extends Enum {2867    readonly isNormal: boolean;2868    readonly isAllowList: boolean;2869    readonly type: 'Normal' | 'AllowList';2870  }28712872  /** @name UpDataStructsCollectionLimits (313) */2873  interface UpDataStructsCollectionLimits extends Struct {2874    readonly accountTokenOwnershipLimit: Option<u32>;2875    readonly sponsoredDataSize: Option<u32>;2876    readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2877    readonly tokenLimit: Option<u32>;2878    readonly sponsorTransferTimeout: Option<u32>;2879    readonly sponsorApproveTimeout: Option<u32>;2880    readonly ownerCanTransfer: Option<bool>;2881    readonly ownerCanDestroy: Option<bool>;2882    readonly transfersEnabled: Option<bool>;2883  }28842885  /** @name UpDataStructsSponsoringRateLimit (315) */2886  interface UpDataStructsSponsoringRateLimit extends Enum {2887    readonly isSponsoringDisabled: boolean;2888    readonly isBlocks: boolean;2889    readonly asBlocks: u32;2890    readonly type: 'SponsoringDisabled' | 'Blocks';2891  }28922893  /** @name UpDataStructsCollectionPermissions (318) */2894  interface UpDataStructsCollectionPermissions extends Struct {2895    readonly access: Option<UpDataStructsAccessMode>;2896    readonly mintMode: Option<bool>;2897    readonly nesting: Option<UpDataStructsNestingPermissions>;2898  }28992900  /** @name UpDataStructsNestingPermissions (320) */2901  interface UpDataStructsNestingPermissions extends Struct {2902    readonly tokenOwner: bool;2903    readonly collectionAdmin: bool;2904    readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2905  }29062907  /** @name UpDataStructsOwnerRestrictedSet (322) */2908  interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}29092910  /** @name UpDataStructsPropertyKeyPermission (327) */2911  interface UpDataStructsPropertyKeyPermission extends Struct {2912    readonly key: Bytes;2913    readonly permission: UpDataStructsPropertyPermission;2914  }29152916  /** @name UpDataStructsPropertyPermission (328) */2917  interface UpDataStructsPropertyPermission extends Struct {2918    readonly mutable: bool;2919    readonly collectionAdmin: bool;2920    readonly tokenOwner: bool;2921  }29222923  /** @name UpDataStructsProperty (331) */2924  interface UpDataStructsProperty extends Struct {2925    readonly key: Bytes;2926    readonly value: Bytes;2927  }29282929  /** @name UpDataStructsCreateItemData (334) */2930  interface UpDataStructsCreateItemData extends Enum {2931    readonly isNft: boolean;2932    readonly asNft: UpDataStructsCreateNftData;2933    readonly isFungible: boolean;2934    readonly asFungible: UpDataStructsCreateFungibleData;2935    readonly isReFungible: boolean;2936    readonly asReFungible: UpDataStructsCreateReFungibleData;2937    readonly type: 'Nft' | 'Fungible' | 'ReFungible';2938  }29392940  /** @name UpDataStructsCreateNftData (335) */2941  interface UpDataStructsCreateNftData extends Struct {2942    readonly properties: Vec<UpDataStructsProperty>;2943  }29442945  /** @name UpDataStructsCreateFungibleData (336) */2946  interface UpDataStructsCreateFungibleData extends Struct {2947    readonly value: u128;2948  }29492950  /** @name UpDataStructsCreateReFungibleData (337) */2951  interface UpDataStructsCreateReFungibleData extends Struct {2952    readonly pieces: u128;2953    readonly properties: Vec<UpDataStructsProperty>;2954  }29552956  /** @name UpDataStructsCreateItemExData (340) */2957  interface UpDataStructsCreateItemExData extends Enum {2958    readonly isNft: boolean;2959    readonly asNft: Vec<UpDataStructsCreateNftExData>;2960    readonly isFungible: boolean;2961    readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2962    readonly isRefungibleMultipleItems: boolean;2963    readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2964    readonly isRefungibleMultipleOwners: boolean;2965    readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2966    readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2967  }29682969  /** @name UpDataStructsCreateNftExData (342) */2970  interface UpDataStructsCreateNftExData extends Struct {2971    readonly properties: Vec<UpDataStructsProperty>;2972    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2973  }29742975  /** @name UpDataStructsCreateRefungibleExSingleOwner (349) */2976  interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2977    readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2978    readonly pieces: u128;2979    readonly properties: Vec<UpDataStructsProperty>;2980  }29812982  /** @name UpDataStructsCreateRefungibleExMultipleOwners (351) */2983  interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2984    readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2985    readonly properties: Vec<UpDataStructsProperty>;2986  }29872988  /** @name PalletConfigurationCall (352) */2989  interface PalletConfigurationCall extends Enum {2990    readonly isSetWeightToFeeCoefficientOverride: boolean;2991    readonly asSetWeightToFeeCoefficientOverride: {2992      readonly coeff: Option<u64>;2993    } & Struct;2994    readonly isSetMinGasPriceOverride: boolean;2995    readonly asSetMinGasPriceOverride: {2996      readonly coeff: Option<u64>;2997    } & Struct;2998    readonly isSetXcmAllowedLocations: boolean;2999    readonly asSetXcmAllowedLocations: {3000      readonly locations: Option<Vec<XcmV1MultiLocation>>;3001    } & Struct;3002    readonly isSetAppPromotionConfigurationOverride: boolean;3003    readonly asSetAppPromotionConfigurationOverride: {3004      readonly configuration: PalletConfigurationAppPromotionConfiguration;3005    } & Struct;3006    readonly isSetCollatorSelectionDesiredCollators: boolean;3007    readonly asSetCollatorSelectionDesiredCollators: {3008      readonly max: Option<u32>;3009    } & Struct;3010    readonly isSetCollatorSelectionLicenseBond: boolean;3011    readonly asSetCollatorSelectionLicenseBond: {3012      readonly amount: Option<u128>;3013    } & Struct;3014    readonly isSetCollatorSelectionKickThreshold: boolean;3015    readonly asSetCollatorSelectionKickThreshold: {3016      readonly threshold: Option<u32>;3017    } & Struct;3018    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';3019  }30203021  /** @name PalletConfigurationAppPromotionConfiguration (357) */3022  interface PalletConfigurationAppPromotionConfiguration extends Struct {3023    readonly recalculationInterval: Option<u32>;3024    readonly pendingInterval: Option<u32>;3025    readonly intervalIncome: Option<Perbill>;3026    readonly maxStakersPerCalculation: Option<u8>;3027  }30283029  /** @name PalletTemplateTransactionPaymentCall (361) */3030  type PalletTemplateTransactionPaymentCall = Null;30313032  /** @name PalletStructureCall (362) */3033  type PalletStructureCall = Null;30343035  /** @name PalletAppPromotionCall (363) */3036  interface PalletAppPromotionCall extends Enum {3037    readonly isSetAdminAddress: boolean;3038    readonly asSetAdminAddress: {3039      readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;3040    } & Struct;3041    readonly isStake: boolean;3042    readonly asStake: {3043      readonly amount: u128;3044    } & Struct;3045    readonly isUnstakeAll: boolean;3046    readonly isSponsorCollection: boolean;3047    readonly asSponsorCollection: {3048      readonly collectionId: u32;3049    } & Struct;3050    readonly isStopSponsoringCollection: boolean;3051    readonly asStopSponsoringCollection: {3052      readonly collectionId: u32;3053    } & Struct;3054    readonly isSponsorContract: boolean;3055    readonly asSponsorContract: {3056      readonly contractId: H160;3057    } & Struct;3058    readonly isStopSponsoringContract: boolean;3059    readonly asStopSponsoringContract: {3060      readonly contractId: H160;3061    } & Struct;3062    readonly isPayoutStakers: boolean;3063    readonly asPayoutStakers: {3064      readonly stakersNumber: Option<u8>;3065    } & Struct;3066    readonly isUnstakePartial: boolean;3067    readonly asUnstakePartial: {3068      readonly amount: u128;3069    } & Struct;3070    readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';3071  }30723073  /** @name PalletForeignAssetsModuleCall (364) */3074  interface PalletForeignAssetsModuleCall extends Enum {3075    readonly isRegisterForeignAsset: boolean;3076    readonly asRegisterForeignAsset: {3077      readonly owner: AccountId32;3078      readonly location: XcmVersionedMultiLocation;3079      readonly metadata: PalletForeignAssetsModuleAssetMetadata;3080    } & Struct;3081    readonly isUpdateForeignAsset: boolean;3082    readonly asUpdateForeignAsset: {3083      readonly foreignAssetId: u32;3084      readonly location: XcmVersionedMultiLocation;3085      readonly metadata: PalletForeignAssetsModuleAssetMetadata;3086    } & Struct;3087    readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3088  }30893090  /** @name PalletEvmCall (365) */3091  interface PalletEvmCall extends Enum {3092    readonly isWithdraw: boolean;3093    readonly asWithdraw: {3094      readonly address: H160;3095      readonly value: u128;3096    } & Struct;3097    readonly isCall: boolean;3098    readonly asCall: {3099      readonly source: H160;3100      readonly target: H160;3101      readonly input: Bytes;3102      readonly value: U256;3103      readonly gasLimit: u64;3104      readonly maxFeePerGas: U256;3105      readonly maxPriorityFeePerGas: Option<U256>;3106      readonly nonce: Option<U256>;3107      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3108    } & Struct;3109    readonly isCreate: boolean;3110    readonly asCreate: {3111      readonly source: H160;3112      readonly init: Bytes;3113      readonly value: U256;3114      readonly gasLimit: u64;3115      readonly maxFeePerGas: U256;3116      readonly maxPriorityFeePerGas: Option<U256>;3117      readonly nonce: Option<U256>;3118      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3119    } & Struct;3120    readonly isCreate2: boolean;3121    readonly asCreate2: {3122      readonly source: H160;3123      readonly init: Bytes;3124      readonly salt: H256;3125      readonly value: U256;3126      readonly gasLimit: u64;3127      readonly maxFeePerGas: U256;3128      readonly maxPriorityFeePerGas: Option<U256>;3129      readonly nonce: Option<U256>;3130      readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3131    } & Struct;3132    readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3133  }31343135  /** @name PalletEthereumCall (371) */3136  interface PalletEthereumCall extends Enum {3137    readonly isTransact: boolean;3138    readonly asTransact: {3139      readonly transaction: EthereumTransactionTransactionV2;3140    } & Struct;3141    readonly type: 'Transact';3142  }31433144  /** @name EthereumTransactionTransactionV2 (372) */3145  interface EthereumTransactionTransactionV2 extends Enum {3146    readonly isLegacy: boolean;3147    readonly asLegacy: EthereumTransactionLegacyTransaction;3148    readonly isEip2930: boolean;3149    readonly asEip2930: EthereumTransactionEip2930Transaction;3150    readonly isEip1559: boolean;3151    readonly asEip1559: EthereumTransactionEip1559Transaction;3152    readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3153  }31543155  /** @name EthereumTransactionLegacyTransaction (373) */3156  interface EthereumTransactionLegacyTransaction extends Struct {3157    readonly nonce: U256;3158    readonly gasPrice: U256;3159    readonly gasLimit: U256;3160    readonly action: EthereumTransactionTransactionAction;3161    readonly value: U256;3162    readonly input: Bytes;3163    readonly signature: EthereumTransactionTransactionSignature;3164  }31653166  /** @name EthereumTransactionTransactionAction (374) */3167  interface EthereumTransactionTransactionAction extends Enum {3168    readonly isCall: boolean;3169    readonly asCall: H160;3170    readonly isCreate: boolean;3171    readonly type: 'Call' | 'Create';3172  }31733174  /** @name EthereumTransactionTransactionSignature (375) */3175  interface EthereumTransactionTransactionSignature extends Struct {3176    readonly v: u64;3177    readonly r: H256;3178    readonly s: H256;3179  }31803181  /** @name EthereumTransactionEip2930Transaction (377) */3182  interface EthereumTransactionEip2930Transaction extends Struct {3183    readonly chainId: u64;3184    readonly nonce: U256;3185    readonly gasPrice: U256;3186    readonly gasLimit: U256;3187    readonly action: EthereumTransactionTransactionAction;3188    readonly value: U256;3189    readonly input: Bytes;3190    readonly accessList: Vec<EthereumTransactionAccessListItem>;3191    readonly oddYParity: bool;3192    readonly r: H256;3193    readonly s: H256;3194  }31953196  /** @name EthereumTransactionAccessListItem (379) */3197  interface EthereumTransactionAccessListItem extends Struct {3198    readonly address: H160;3199    readonly storageKeys: Vec<H256>;3200  }32013202  /** @name EthereumTransactionEip1559Transaction (380) */3203  interface EthereumTransactionEip1559Transaction extends Struct {3204    readonly chainId: u64;3205    readonly nonce: U256;3206    readonly maxPriorityFeePerGas: U256;3207    readonly maxFeePerGas: U256;3208    readonly gasLimit: U256;3209    readonly action: EthereumTransactionTransactionAction;3210    readonly value: U256;3211    readonly input: Bytes;3212    readonly accessList: Vec<EthereumTransactionAccessListItem>;3213    readonly oddYParity: bool;3214    readonly r: H256;3215    readonly s: H256;3216  }32173218  /** @name PalletEvmMigrationCall (381) */3219  interface PalletEvmMigrationCall extends Enum {3220    readonly isBegin: boolean;3221    readonly asBegin: {3222      readonly address: H160;3223    } & Struct;3224    readonly isSetData: boolean;3225    readonly asSetData: {3226      readonly address: H160;3227      readonly data: Vec<ITuple<[H256, H256]>>;3228    } & Struct;3229    readonly isFinish: boolean;3230    readonly asFinish: {3231      readonly address: H160;3232      readonly code: Bytes;3233    } & Struct;3234    readonly isInsertEthLogs: boolean;3235    readonly asInsertEthLogs: {3236      readonly logs: Vec<EthereumLog>;3237    } & Struct;3238    readonly isInsertEvents: boolean;3239    readonly asInsertEvents: {3240      readonly events: Vec<Bytes>;3241    } & Struct;3242    readonly isRemoveRmrkData: boolean;3243    readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';3244  }32453246  /** @name PalletMaintenanceCall (385) */3247  interface PalletMaintenanceCall extends Enum {3248    readonly isEnable: boolean;3249    readonly isDisable: boolean;3250    readonly isExecutePreimage: boolean;3251    readonly asExecutePreimage: {3252      readonly hash_: H256;3253      readonly weightBound: SpWeightsWeightV2Weight;3254    } & Struct;3255    readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';3256  }32573258  /** @name PalletTestUtilsCall (386) */3259  interface PalletTestUtilsCall extends Enum {3260    readonly isEnable: boolean;3261    readonly isSetTestValue: boolean;3262    readonly asSetTestValue: {3263      readonly value: u32;3264    } & Struct;3265    readonly isSetTestValueAndRollback: boolean;3266    readonly asSetTestValueAndRollback: {3267      readonly value: u32;3268    } & Struct;3269    readonly isIncTestValue: boolean;3270    readonly isJustTakeFee: boolean;3271    readonly isBatchAll: boolean;3272    readonly asBatchAll: {3273      readonly calls: Vec<Call>;3274    } & Struct;3275    readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3276  }32773278  /** @name PalletSudoError (388) */3279  interface PalletSudoError extends Enum {3280    readonly isRequireSudo: boolean;3281    readonly type: 'RequireSudo';3282  }32833284  /** @name OrmlVestingModuleError (390) */3285  interface OrmlVestingModuleError extends Enum {3286    readonly isZeroVestingPeriod: boolean;3287    readonly isZeroVestingPeriodCount: boolean;3288    readonly isInsufficientBalanceToLock: boolean;3289    readonly isTooManyVestingSchedules: boolean;3290    readonly isAmountLow: boolean;3291    readonly isMaxVestingSchedulesExceeded: boolean;3292    readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3293  }32943295  /** @name OrmlXtokensModuleError (391) */3296  interface OrmlXtokensModuleError extends Enum {3297    readonly isAssetHasNoReserve: boolean;3298    readonly isNotCrossChainTransfer: boolean;3299    readonly isInvalidDest: boolean;3300    readonly isNotCrossChainTransferableCurrency: boolean;3301    readonly isUnweighableMessage: boolean;3302    readonly isXcmExecutionFailed: boolean;3303    readonly isCannotReanchor: boolean;3304    readonly isInvalidAncestry: boolean;3305    readonly isInvalidAsset: boolean;3306    readonly isDestinationNotInvertible: boolean;3307    readonly isBadVersion: boolean;3308    readonly isDistinctReserveForAssetAndFee: boolean;3309    readonly isZeroFee: boolean;3310    readonly isZeroAmount: boolean;3311    readonly isTooManyAssetsBeingSent: boolean;3312    readonly isAssetIndexNonExistent: boolean;3313    readonly isFeeNotEnough: boolean;3314    readonly isNotSupportedMultiLocation: boolean;3315    readonly isMinXcmFeeNotDefined: boolean;3316    readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3317  }33183319  /** @name OrmlTokensBalanceLock (394) */3320  interface OrmlTokensBalanceLock extends Struct {3321    readonly id: U8aFixed;3322    readonly amount: u128;3323  }33243325  /** @name OrmlTokensAccountData (396) */3326  interface OrmlTokensAccountData extends Struct {3327    readonly free: u128;3328    readonly reserved: u128;3329    readonly frozen: u128;3330  }33313332  /** @name OrmlTokensReserveData (398) */3333  interface OrmlTokensReserveData extends Struct {3334    readonly id: Null;3335    readonly amount: u128;3336  }33373338  /** @name OrmlTokensModuleError (400) */3339  interface OrmlTokensModuleError extends Enum {3340    readonly isBalanceTooLow: boolean;3341    readonly isAmountIntoBalanceFailed: boolean;3342    readonly isLiquidityRestrictions: boolean;3343    readonly isMaxLocksExceeded: boolean;3344    readonly isKeepAlive: boolean;3345    readonly isExistentialDeposit: boolean;3346    readonly isDeadAccount: boolean;3347    readonly isTooManyReserves: boolean;3348    readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3349  }33503351  /** @name PalletIdentityRegistrarInfo (405) */3352  interface PalletIdentityRegistrarInfo extends Struct {3353    readonly account: AccountId32;3354    readonly fee: u128;3355    readonly fields: PalletIdentityBitFlags;3356  }33573358  /** @name PalletIdentityError (407) */3359  interface PalletIdentityError extends Enum {3360    readonly isTooManySubAccounts: boolean;3361    readonly isNotFound: boolean;3362    readonly isNotNamed: boolean;3363    readonly isEmptyIndex: boolean;3364    readonly isFeeChanged: boolean;3365    readonly isNoIdentity: boolean;3366    readonly isStickyJudgement: boolean;3367    readonly isJudgementGiven: boolean;3368    readonly isInvalidJudgement: boolean;3369    readonly isInvalidIndex: boolean;3370    readonly isInvalidTarget: boolean;3371    readonly isTooManyFields: boolean;3372    readonly isTooManyRegistrars: boolean;3373    readonly isAlreadyClaimed: boolean;3374    readonly isNotSub: boolean;3375    readonly isNotOwned: boolean;3376    readonly isJudgementForDifferentIdentity: boolean;3377    readonly isJudgementPaymentFailed: boolean;3378    readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';3379  }33803381  /** @name PalletPreimageRequestStatus (408) */3382  interface PalletPreimageRequestStatus extends Enum {3383    readonly isUnrequested: boolean;3384    readonly asUnrequested: {3385      readonly deposit: ITuple<[AccountId32, u128]>;3386      readonly len: u32;3387    } & Struct;3388    readonly isRequested: boolean;3389    readonly asRequested: {3390      readonly deposit: Option<ITuple<[AccountId32, u128]>>;3391      readonly count: u32;3392      readonly len: Option<u32>;3393    } & Struct;3394    readonly type: 'Unrequested' | 'Requested';3395  }33963397  /** @name PalletPreimageError (413) */3398  interface PalletPreimageError extends Enum {3399    readonly isTooBig: boolean;3400    readonly isAlreadyNoted: boolean;3401    readonly isNotAuthorized: boolean;3402    readonly isNotNoted: boolean;3403    readonly isRequested: boolean;3404    readonly isNotRequested: boolean;3405    readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';3406  }34073408  /** @name CumulusPalletXcmpQueueInboundChannelDetails (415) */3409  interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3410    readonly sender: u32;3411    readonly state: CumulusPalletXcmpQueueInboundState;3412    readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3413  }34143415  /** @name CumulusPalletXcmpQueueInboundState (416) */3416  interface CumulusPalletXcmpQueueInboundState extends Enum {3417    readonly isOk: boolean;3418    readonly isSuspended: boolean;3419    readonly type: 'Ok' | 'Suspended';3420  }34213422  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (419) */3423  interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3424    readonly isConcatenatedVersionedXcm: boolean;3425    readonly isConcatenatedEncodedBlob: boolean;3426    readonly isSignals: boolean;3427    readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3428  }34293430  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (422) */3431  interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3432    readonly recipient: u32;3433    readonly state: CumulusPalletXcmpQueueOutboundState;3434    readonly signalsExist: bool;3435    readonly firstIndex: u16;3436    readonly lastIndex: u16;3437  }34383439  /** @name CumulusPalletXcmpQueueOutboundState (423) */3440  interface CumulusPalletXcmpQueueOutboundState extends Enum {3441    readonly isOk: boolean;3442    readonly isSuspended: boolean;3443    readonly type: 'Ok' | 'Suspended';3444  }34453446  /** @name CumulusPalletXcmpQueueQueueConfigData (425) */3447  interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3448    readonly suspendThreshold: u32;3449    readonly dropThreshold: u32;3450    readonly resumeThreshold: u32;3451    readonly thresholdWeight: SpWeightsWeightV2Weight;3452    readonly weightRestrictDecay: SpWeightsWeightV2Weight;3453    readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3454  }34553456  /** @name CumulusPalletXcmpQueueError (427) */3457  interface CumulusPalletXcmpQueueError extends Enum {3458    readonly isFailedToSend: boolean;3459    readonly isBadXcmOrigin: boolean;3460    readonly isBadXcm: boolean;3461    readonly isBadOverweightIndex: boolean;3462    readonly isWeightOverLimit: boolean;3463    readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3464  }34653466  /** @name PalletXcmError (428) */3467  interface PalletXcmError extends Enum {3468    readonly isUnreachable: boolean;3469    readonly isSendFailure: boolean;3470    readonly isFiltered: boolean;3471    readonly isUnweighableMessage: boolean;3472    readonly isDestinationNotInvertible: boolean;3473    readonly isEmpty: boolean;3474    readonly isCannotReanchor: boolean;3475    readonly isTooManyAssets: boolean;3476    readonly isInvalidOrigin: boolean;3477    readonly isBadVersion: boolean;3478    readonly isBadLocation: boolean;3479    readonly isNoSubscription: boolean;3480    readonly isAlreadySubscribed: boolean;3481    readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3482  }34833484  /** @name CumulusPalletXcmError (429) */3485  type CumulusPalletXcmError = Null;34863487  /** @name CumulusPalletDmpQueueConfigData (430) */3488  interface CumulusPalletDmpQueueConfigData extends Struct {3489    readonly maxIndividual: SpWeightsWeightV2Weight;3490  }34913492  /** @name CumulusPalletDmpQueuePageIndexData (431) */3493  interface CumulusPalletDmpQueuePageIndexData extends Struct {3494    readonly beginUsed: u32;3495    readonly endUsed: u32;3496    readonly overweightCount: u64;3497  }34983499  /** @name CumulusPalletDmpQueueError (434) */3500  interface CumulusPalletDmpQueueError extends Enum {3501    readonly isUnknown: boolean;3502    readonly isOverLimit: boolean;3503    readonly type: 'Unknown' | 'OverLimit';3504  }35053506  /** @name PalletUniqueError (438) */3507  interface PalletUniqueError extends Enum {3508    readonly isCollectionDecimalPointLimitExceeded: boolean;3509    readonly isEmptyArgument: boolean;3510    readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3511    readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3512  }35133514  /** @name PalletConfigurationError (439) */3515  interface PalletConfigurationError extends Enum {3516    readonly isInconsistentConfiguration: boolean;3517    readonly type: 'InconsistentConfiguration';3518  }35193520  /** @name UpDataStructsCollection (440) */3521  interface UpDataStructsCollection extends Struct {3522    readonly owner: AccountId32;3523    readonly mode: UpDataStructsCollectionMode;3524    readonly name: Vec<u16>;3525    readonly description: Vec<u16>;3526    readonly tokenPrefix: Bytes;3527    readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3528    readonly limits: UpDataStructsCollectionLimits;3529    readonly permissions: UpDataStructsCollectionPermissions;3530    readonly flags: U8aFixed;3531  }35323533  /** @name UpDataStructsSponsorshipStateAccountId32 (441) */3534  interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3535    readonly isDisabled: boolean;3536    readonly isUnconfirmed: boolean;3537    readonly asUnconfirmed: AccountId32;3538    readonly isConfirmed: boolean;3539    readonly asConfirmed: AccountId32;3540    readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3541  }35423543  /** @name UpDataStructsProperties (442) */3544  interface UpDataStructsProperties extends Struct {3545    readonly map: UpDataStructsPropertiesMapBoundedVec;3546    readonly consumedSpace: u32;3547    readonly spaceLimit: u32;3548  }35493550  /** @name UpDataStructsPropertiesMapBoundedVec (443) */3551  interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35523553  /** @name UpDataStructsPropertiesMapPropertyPermission (448) */3554  interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35553556  /** @name UpDataStructsCollectionStats (455) */3557  interface UpDataStructsCollectionStats extends Struct {3558    readonly created: u32;3559    readonly destroyed: u32;3560    readonly alive: u32;3561  }35623563  /** @name UpDataStructsTokenChild (456) */3564  interface UpDataStructsTokenChild extends Struct {3565    readonly token: u32;3566    readonly collection: u32;3567  }35683569  /** @name PhantomTypeUpDataStructs (457) */3570  interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}35713572  /** @name UpDataStructsTokenData (459) */3573  interface UpDataStructsTokenData extends Struct {3574    readonly properties: Vec<UpDataStructsProperty>;3575    readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3576    readonly pieces: u128;3577  }35783579  /** @name UpDataStructsRpcCollection (461) */3580  interface UpDataStructsRpcCollection extends Struct {3581    readonly owner: AccountId32;3582    readonly mode: UpDataStructsCollectionMode;3583    readonly name: Vec<u16>;3584    readonly description: Vec<u16>;3585    readonly tokenPrefix: Bytes;3586    readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3587    readonly limits: UpDataStructsCollectionLimits;3588    readonly permissions: UpDataStructsCollectionPermissions;3589    readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3590    readonly properties: Vec<UpDataStructsProperty>;3591    readonly readOnly: bool;3592    readonly flags: UpDataStructsRpcCollectionFlags;3593  }35943595  /** @name UpDataStructsRpcCollectionFlags (462) */3596  interface UpDataStructsRpcCollectionFlags extends Struct {3597    readonly foreign: bool;3598    readonly erc721metadata: bool;3599  }36003601  /** @name UpPovEstimateRpcPovInfo (463) */3602  interface UpPovEstimateRpcPovInfo extends Struct {3603    readonly proofSize: u64;3604    readonly compactProofSize: u64;3605    readonly compressedProofSize: u64;3606    readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;3607    readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3608  }36093610  /** @name SpRuntimeTransactionValidityTransactionValidityError (466) */3611  interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3612    readonly isInvalid: boolean;3613    readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3614    readonly isUnknown: boolean;3615    readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;3616    readonly type: 'Invalid' | 'Unknown';3617  }36183619  /** @name SpRuntimeTransactionValidityInvalidTransaction (467) */3620  interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3621    readonly isCall: boolean;3622    readonly isPayment: boolean;3623    readonly isFuture: boolean;3624    readonly isStale: boolean;3625    readonly isBadProof: boolean;3626    readonly isAncientBirthBlock: boolean;3627    readonly isExhaustsResources: boolean;3628    readonly isCustom: boolean;3629    readonly asCustom: u8;3630    readonly isBadMandatory: boolean;3631    readonly isMandatoryValidation: boolean;3632    readonly isBadSigner: boolean;3633    readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3634  }36353636  /** @name SpRuntimeTransactionValidityUnknownTransaction (468) */3637  interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3638    readonly isCannotLookup: boolean;3639    readonly isNoUnsignedValidator: boolean;3640    readonly isCustom: boolean;3641    readonly asCustom: u8;3642    readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3643  }36443645  /** @name UpPovEstimateRpcTrieKeyValue (470) */3646  interface UpPovEstimateRpcTrieKeyValue extends Struct {3647    readonly key: Bytes;3648    readonly value: Bytes;3649  }36503651  /** @name PalletCommonError (472) */3652  interface PalletCommonError extends Enum {3653    readonly isCollectionNotFound: boolean;3654    readonly isMustBeTokenOwner: boolean;3655    readonly isNoPermission: boolean;3656    readonly isCantDestroyNotEmptyCollection: boolean;3657    readonly isPublicMintingNotAllowed: boolean;3658    readonly isAddressNotInAllowlist: boolean;3659    readonly isCollectionNameLimitExceeded: boolean;3660    readonly isCollectionDescriptionLimitExceeded: boolean;3661    readonly isCollectionTokenPrefixLimitExceeded: boolean;3662    readonly isTotalCollectionsLimitExceeded: boolean;3663    readonly isCollectionAdminCountExceeded: boolean;3664    readonly isCollectionLimitBoundsExceeded: boolean;3665    readonly isOwnerPermissionsCantBeReverted: boolean;3666    readonly isTransferNotAllowed: boolean;3667    readonly isAccountTokenLimitExceeded: boolean;3668    readonly isCollectionTokenLimitExceeded: boolean;3669    readonly isMetadataFlagFrozen: boolean;3670    readonly isTokenNotFound: boolean;3671    readonly isTokenValueTooLow: boolean;3672    readonly isApprovedValueTooLow: boolean;3673    readonly isCantApproveMoreThanOwned: boolean;3674    readonly isAddressIsNotEthMirror: boolean;3675    readonly isAddressIsZero: boolean;3676    readonly isUnsupportedOperation: boolean;3677    readonly isNotSufficientFounds: boolean;3678    readonly isUserIsNotAllowedToNest: boolean;3679    readonly isSourceCollectionIsNotAllowedToNest: boolean;3680    readonly isCollectionFieldSizeExceeded: boolean;3681    readonly isNoSpaceForProperty: boolean;3682    readonly isPropertyLimitReached: boolean;3683    readonly isPropertyKeyIsTooLong: boolean;3684    readonly isInvalidCharacterInPropertyKey: boolean;3685    readonly isEmptyPropertyKey: boolean;3686    readonly isCollectionIsExternal: boolean;3687    readonly isCollectionIsInternal: boolean;3688    readonly isConfirmSponsorshipFail: boolean;3689    readonly isUserIsNotCollectionAdmin: boolean;3690    readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3691  }36923693  /** @name PalletFungibleError (474) */3694  interface PalletFungibleError extends Enum {3695    readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3696    readonly isFungibleItemsHaveNoId: boolean;3697    readonly isFungibleItemsDontHaveData: boolean;3698    readonly isFungibleDisallowsNesting: boolean;3699    readonly isSettingPropertiesNotAllowed: boolean;3700    readonly isSettingAllowanceForAllNotAllowed: boolean;3701    readonly isFungibleTokensAreAlwaysValid: boolean;3702    readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3703  }37043705  /** @name PalletRefungibleError (478) */3706  interface PalletRefungibleError extends Enum {3707    readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3708    readonly isWrongRefungiblePieces: boolean;3709    readonly isRepartitionWhileNotOwningAllPieces: boolean;3710    readonly isRefungibleDisallowsNesting: boolean;3711    readonly isSettingPropertiesNotAllowed: boolean;3712    readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3713  }37143715  /** @name PalletNonfungibleItemData (479) */3716  interface PalletNonfungibleItemData extends Struct {3717    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3718  }37193720  /** @name UpDataStructsPropertyScope (481) */3721  interface UpDataStructsPropertyScope extends Enum {3722    readonly isNone: boolean;3723    readonly isRmrk: boolean;3724    readonly type: 'None' | 'Rmrk';3725  }37263727  /** @name PalletNonfungibleError (484) */3728  interface PalletNonfungibleError extends Enum {3729    readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3730    readonly isNonfungibleItemsHaveNoAmount: boolean;3731    readonly isCantBurnNftWithChildren: boolean;3732    readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3733  }37343735  /** @name PalletStructureError (485) */3736  interface PalletStructureError extends Enum {3737    readonly isOuroborosDetected: boolean;3738    readonly isDepthLimit: boolean;3739    readonly isBreadthLimit: boolean;3740    readonly isTokenNotFound: boolean;3741    readonly isCantNestTokenUnderCollection: boolean;3742    readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';3743  }37443745  /** @name PalletAppPromotionError (490) */3746  interface PalletAppPromotionError extends Enum {3747    readonly isAdminNotSet: boolean;3748    readonly isNoPermission: boolean;3749    readonly isNotSufficientFunds: boolean;3750    readonly isPendingForBlockOverflow: boolean;3751    readonly isSponsorNotSet: boolean;3752    readonly isIncorrectLockedBalanceOperation: boolean;3753    readonly isInsufficientStakedBalance: boolean;3754    readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';3755  }37563757  /** @name PalletForeignAssetsModuleError (491) */3758  interface PalletForeignAssetsModuleError extends Enum {3759    readonly isBadLocation: boolean;3760    readonly isMultiLocationExisted: boolean;3761    readonly isAssetIdNotExists: boolean;3762    readonly isAssetIdExisted: boolean;3763    readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3764  }37653766  /** @name PalletEvmError (493) */3767  interface PalletEvmError extends Enum {3768    readonly isBalanceLow: boolean;3769    readonly isFeeOverflow: boolean;3770    readonly isPaymentOverflow: boolean;3771    readonly isWithdrawFailed: boolean;3772    readonly isGasPriceTooLow: boolean;3773    readonly isInvalidNonce: boolean;3774    readonly isGasLimitTooLow: boolean;3775    readonly isGasLimitTooHigh: boolean;3776    readonly isUndefined: boolean;3777    readonly isReentrancy: boolean;3778    readonly isTransactionMustComeFromEOA: boolean;3779    readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3780  }37813782  /** @name FpRpcTransactionStatus (496) */3783  interface FpRpcTransactionStatus extends Struct {3784    readonly transactionHash: H256;3785    readonly transactionIndex: u32;3786    readonly from: H160;3787    readonly to: Option<H160>;3788    readonly contractAddress: Option<H160>;3789    readonly logs: Vec<EthereumLog>;3790    readonly logsBloom: EthbloomBloom;3791  }37923793  /** @name EthbloomBloom (498) */3794  interface EthbloomBloom extends U8aFixed {}37953796  /** @name EthereumReceiptReceiptV3 (500) */3797  interface EthereumReceiptReceiptV3 extends Enum {3798    readonly isLegacy: boolean;3799    readonly asLegacy: EthereumReceiptEip658ReceiptData;3800    readonly isEip2930: boolean;3801    readonly asEip2930: EthereumReceiptEip658ReceiptData;3802    readonly isEip1559: boolean;3803    readonly asEip1559: EthereumReceiptEip658ReceiptData;3804    readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3805  }38063807  /** @name EthereumReceiptEip658ReceiptData (501) */3808  interface EthereumReceiptEip658ReceiptData extends Struct {3809    readonly statusCode: u8;3810    readonly usedGas: U256;3811    readonly logsBloom: EthbloomBloom;3812    readonly logs: Vec<EthereumLog>;3813  }38143815  /** @name EthereumBlock (502) */3816  interface EthereumBlock extends Struct {3817    readonly header: EthereumHeader;3818    readonly transactions: Vec<EthereumTransactionTransactionV2>;3819    readonly ommers: Vec<EthereumHeader>;3820  }38213822  /** @name EthereumHeader (503) */3823  interface EthereumHeader extends Struct {3824    readonly parentHash: H256;3825    readonly ommersHash: H256;3826    readonly beneficiary: H160;3827    readonly stateRoot: H256;3828    readonly transactionsRoot: H256;3829    readonly receiptsRoot: H256;3830    readonly logsBloom: EthbloomBloom;3831    readonly difficulty: U256;3832    readonly number: U256;3833    readonly gasLimit: U256;3834    readonly gasUsed: U256;3835    readonly timestamp: u64;3836    readonly extraData: Bytes;3837    readonly mixHash: H256;3838    readonly nonce: EthereumTypesHashH64;3839  }38403841  /** @name EthereumTypesHashH64 (504) */3842  interface EthereumTypesHashH64 extends U8aFixed {}38433844  /** @name PalletEthereumError (509) */3845  interface PalletEthereumError extends Enum {3846    readonly isInvalidSignature: boolean;3847    readonly isPreLogExists: boolean;3848    readonly type: 'InvalidSignature' | 'PreLogExists';3849  }38503851  /** @name PalletEvmCoderSubstrateError (510) */3852  interface PalletEvmCoderSubstrateError extends Enum {3853    readonly isOutOfGas: boolean;3854    readonly isOutOfFund: boolean;3855    readonly type: 'OutOfGas' | 'OutOfFund';3856  }38573858  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (511) */3859  interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3860    readonly isDisabled: boolean;3861    readonly isUnconfirmed: boolean;3862    readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3863    readonly isConfirmed: boolean;3864    readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3865    readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3866  }38673868  /** @name PalletEvmContractHelpersSponsoringModeT (512) */3869  interface PalletEvmContractHelpersSponsoringModeT extends Enum {3870    readonly isDisabled: boolean;3871    readonly isAllowlisted: boolean;3872    readonly isGenerous: boolean;3873    readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3874  }38753876  /** @name PalletEvmContractHelpersError (518) */3877  interface PalletEvmContractHelpersError extends Enum {3878    readonly isNoPermission: boolean;3879    readonly isNoPendingSponsor: boolean;3880    readonly isTooManyMethodsHaveSponsoredLimit: boolean;3881    readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3882  }38833884  /** @name PalletEvmMigrationError (519) */3885  interface PalletEvmMigrationError extends Enum {3886    readonly isAccountNotEmpty: boolean;3887    readonly isAccountIsNotMigrating: boolean;3888    readonly isBadEvent: boolean;3889    readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3890  }38913892  /** @name PalletMaintenanceError (520) */3893  type PalletMaintenanceError = Null;38943895  /** @name PalletTestUtilsError (521) */3896  interface PalletTestUtilsError extends Enum {3897    readonly isTestPalletDisabled: boolean;3898    readonly isTriggerRollback: boolean;3899    readonly type: 'TestPalletDisabled' | 'TriggerRollback';3900  }39013902  /** @name SpRuntimeMultiSignature (523) */3903  interface SpRuntimeMultiSignature extends Enum {3904    readonly isEd25519: boolean;3905    readonly asEd25519: SpCoreEd25519Signature;3906    readonly isSr25519: boolean;3907    readonly asSr25519: SpCoreSr25519Signature;3908    readonly isEcdsa: boolean;3909    readonly asEcdsa: SpCoreEcdsaSignature;3910    readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3911  }39123913  /** @name SpCoreEd25519Signature (524) */3914  interface SpCoreEd25519Signature extends U8aFixed {}39153916  /** @name SpCoreSr25519Signature (526) */3917  interface SpCoreSr25519Signature extends U8aFixed {}39183919  /** @name SpCoreEcdsaSignature (527) */3920  interface SpCoreEcdsaSignature extends U8aFixed {}39213922  /** @name FrameSystemExtensionsCheckSpecVersion (530) */3923  type FrameSystemExtensionsCheckSpecVersion = Null;39243925  /** @name FrameSystemExtensionsCheckTxVersion (531) */3926  type FrameSystemExtensionsCheckTxVersion = Null;39273928  /** @name FrameSystemExtensionsCheckGenesis (532) */3929  type FrameSystemExtensionsCheckGenesis = Null;39303931  /** @name FrameSystemExtensionsCheckNonce (535) */3932  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39333934  /** @name FrameSystemExtensionsCheckWeight (536) */3935  type FrameSystemExtensionsCheckWeight = Null;39363937  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (537) */3938  type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39393940  /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (538) */3941  type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;39423943  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (539) */3944  interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39453946  /** @name OpalRuntimeRuntime (540) */3947  type OpalRuntimeRuntime = Null;39483949  /** @name PalletEthereumFakeTransactionFinalizer (541) */3950  type PalletEthereumFakeTransactionFinalizer = Null;39513952} // declare module
modifiedtests/src/interfaces/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types.ts
+++ b/tests/src/interfaces/types.ts
@@ -3,6 +3,5 @@
 
 export * from './unique/types';
 export * from './appPromotion/types';
-export * from './rmrk/types';
 export * from './povinfo/types';
 export * from './default/types';
addedtests/src/maintenance.seqtest.tsdiffbeforeafterboth
--- /dev/null
+++ b/tests/src/maintenance.seqtest.ts
@@ -0,0 +1,368 @@
+// 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/>.
+
+import {IKeyringPair} from '@polkadot/types/types';
+import {ApiPromise} from '@polkadot/api';
+import {expect, itSched, itSub, Pallets, requirePalletsOrSkip, usingPlaygrounds} from './util';
+import {itEth} from './eth/util';
+import {UniqueHelper} from './util/playgrounds/unique';
+
+async function maintenanceEnabled(api: ApiPromise): Promise<boolean> {
+  return (await api.query.maintenance.enabled()).toJSON() as boolean;
+}
+
+describe('Integration Test: Maintenance Functionality', () => {
+  let superuser: IKeyringPair;
+  let donor: IKeyringPair;
+  let bob: IKeyringPair;
+
+  before(async function() {
+    await usingPlaygrounds(async (helper, privateKey) => {
+      requirePalletsOrSkip(this, helper, [Pallets.Maintenance]);
+      superuser = await privateKey('//Alice');
+      donor = await privateKey({filename: __filename});
+      [bob] = await helper.arrange.createAccounts([10000n], donor);
+
+    });
+  });
+
+  describe('Maintenance Mode', () => {
+    before(async function() {
+      await usingPlaygrounds(async (helper) => {
+        if (await maintenanceEnabled(helper.getApi())) {
+          console.warn('\tMaintenance mode was left enabled BEFORE the test suite! Disabling it now.');
+          await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', [])).to.be.fulfilled;
+        }
+      });
+    });
+
+    itSub('Allows superuser to enable and disable maintenance mode - and disallows anyone else', async ({helper}) => {
+      // Make sure non-sudo can't enable maintenance mode
+      await expect(helper.executeExtrinsic(superuser, 'api.tx.maintenance.enable', []), 'on commoner enabling MM')
+        .to.be.rejectedWith(/BadOrigin/);
+
+      // Set maintenance mode
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
+
+      // Make sure non-sudo can't disable maintenance mode
+      await expect(helper.executeExtrinsic(bob, 'api.tx.maintenance.disable', []), 'on commoner disabling MM')
+        .to.be.rejectedWith(/BadOrigin/);
+
+      // Disable maintenance mode
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
+    });
+
+    itSub('MM blocks unique pallet calls', async ({helper}) => {
+      // Can create an NFT collection before enabling the MM
+      const nftCollection = await helper.nft.mintCollection(bob, {
+        tokenPropertyPermissions: [{key: 'test', permission: {
+          collectionAdmin: true,
+          tokenOwner: true,
+          mutable: true,
+        }}],
+      });
+
+      // Can mint an NFT before enabling the MM
+      const nft = await nftCollection.mintToken(bob);
+
+      // Can create an FT collection before enabling the MM
+      const ftCollection = await helper.ft.mintCollection(superuser);
+
+      // Can mint an FT before enabling the MM
+      await expect(ftCollection.mint(superuser)).to.be.fulfilled;
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
+
+      // Unable to create a collection when the MM is enabled
+      await expect(helper.nft.mintCollection(superuser), 'cudo forbidden stuff')
+        .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
+
+      // Unable to set token properties when the MM is enabled
+      await expect(nft.setProperties(
+        bob,
+        [{key: 'test', value: 'test-val'}],
+      )).to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
+
+      // Unable to mint an NFT when the MM is enabled
+      await expect(nftCollection.mintToken(superuser))
+        .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
+
+      // Unable to mint an FT when the MM is enabled
+      await expect(ftCollection.mint(superuser))
+        .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
+
+      // Can create a collection after disabling the MM
+      await expect(helper.nft.mintCollection(bob), 'MM is disabled, the collection should be created').to.be.fulfilled;
+
+      // Can set token properties after disabling the MM
+      await nft.setProperties(bob, [{key: 'test', value: 'test-val'}]);
+
+      // Can mint an NFT after disabling the MM
+      await nftCollection.mintToken(bob);
+
+      // Can mint an FT after disabling the MM
+      await ftCollection.mint(superuser);
+    });
+
+    itSub.ifWithPallets('MM blocks unique pallet calls (Re-Fungible)', [Pallets.ReFungible], async ({helper}) => {
+      // Can create an RFT collection before enabling the MM
+      const rftCollection = await helper.rft.mintCollection(superuser);
+
+      // Can mint an RFT before enabling the MM
+      await expect(rftCollection.mintToken(superuser)).to.be.fulfilled;
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
+
+      // Unable to mint an RFT when the MM is enabled
+      await expect(rftCollection.mintToken(superuser))
+        .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
+
+      // Can mint an RFT after disabling the MM
+      await rftCollection.mintToken(superuser);
+    });
+
+    itSub('MM allows native token transfers and RPC calls', async ({helper}) => {
+      // We can use RPC before the MM is enabled
+      const totalCount = await helper.collection.getTotalCount();
+
+      // We can transfer funds before the MM is enabled
+      await expect(helper.balance.transferToSubstrate(superuser, bob.address, 2n)).to.be.fulfilled;
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
+
+      // RPCs work while in maintenance
+      expect(await helper.collection.getTotalCount()).to.be.deep.equal(totalCount);
+
+      // We still able to transfer funds
+      await expect(helper.balance.transferToSubstrate(bob, superuser.address, 1n)).to.be.fulfilled;
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
+
+      // RPCs work after maintenance
+      expect(await helper.collection.getTotalCount()).to.be.deep.equal(totalCount);
+
+      // Transfers work after maintenance
+      await expect(helper.balance.transferToSubstrate(bob, superuser.address, 1n)).to.be.fulfilled;
+    });
+
+    itSched.ifWithPallets('MM blocks scheduled calls and the scheduler itself', [Pallets.Scheduler], async (scheduleKind, {helper}) => {
+      const collection = await helper.nft.mintCollection(bob);
+
+      const nftBeforeMM = await collection.mintToken(bob);
+      const nftDuringMM = await collection.mintToken(bob);
+      const nftAfterMM = await collection.mintToken(bob);
+
+      const [
+        scheduledIdBeforeMM,
+        scheduledIdDuringMM,
+        scheduledIdBunkerThroughMM,
+        scheduledIdAttemptDuringMM,
+        scheduledIdAfterMM,
+      ] = scheduleKind == 'named'
+        ? helper.arrange.makeScheduledIds(5)
+        : new Array(5);
+
+      const blocksToWait = 6;
+
+      // Scheduling works before the maintenance
+      await nftBeforeMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdBeforeMM})
+        .transfer(bob, {Substrate: superuser.address});
+
+      await helper.wait.newBlocks(blocksToWait + 1);
+      expect(await nftBeforeMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});
+
+      // Schedule a transaction that should occur *during* the maintenance
+      await nftDuringMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdDuringMM})
+        .transfer(bob, {Substrate: superuser.address});
+
+      // Schedule a transaction that should occur *after* the maintenance
+      await nftDuringMM.scheduleAfter(blocksToWait * 2, {scheduledId: scheduledIdBunkerThroughMM})
+        .transfer(bob, {Substrate: superuser.address});
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
+
+      await helper.wait.newBlocks(blocksToWait + 1);
+      // The owner should NOT change since the scheduled transaction should be rejected
+      expect(await nftDuringMM.getOwner()).to.be.deep.equal({Substrate: bob.address});
+
+      // Any attempts to schedule a tx during the MM should be rejected
+      await expect(nftDuringMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdAttemptDuringMM})
+        .transfer(bob, {Substrate: superuser.address}))
+        .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
+
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
+
+      // Scheduling works after the maintenance
+      await nftAfterMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdAfterMM})
+        .transfer(bob, {Substrate: superuser.address});
+
+      await helper.wait.newBlocks(blocksToWait + 1);
+
+      expect(await nftAfterMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});
+      // The owner of the token scheduled for transaction *before* maintenance should now change *after* maintenance
+      expect(await nftDuringMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});
+    });
+
+    itEth('Disallows Ethereum transactions to execute while in maintenance', async ({helper}) => {
+      const owner = await helper.eth.createAccountWithBalance(donor);
+      const receiver = helper.eth.createAccount();
+
+      const {collectionAddress} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner, 'A', 'B', 'C', '');
+
+      // Set maintenance mode
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
+
+      const contract = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner);
+      const tokenId = await contract.methods.nextTokenId().call();
+      expect(tokenId).to.be.equal('1');
+
+      await expect(contract.methods.mintWithTokenURI(receiver, 'Test URI').send())
+        .to.be.rejectedWith(/Returned error: unknown error/);
+
+      await expect(contract.methods.ownerOf(tokenId).call()).rejectedWith(/token not found/);
+
+      // Disable maintenance mode
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
+    });
+
+    itSub('Allows to enable and disable MM repeatedly', async ({helper}) => {
+      // Set maintenance mode
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
+
+      // Disable maintenance mode
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+      expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
+    });
+
+    afterEach(async () => {
+      await usingPlaygrounds(async helper => {
+        if (helper.fetchMissingPalletNames([Pallets.Maintenance]).length != 0) return;
+        if (await maintenanceEnabled(helper.getApi())) {
+          console.warn('\tMaintenance mode was left enabled AFTER a test has finished! Be careful. Disabling it now.');
+          await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
+        }
+        expect(await maintenanceEnabled(helper.getApi()), 'Disastrous! Exited the test suite with maintenance mode on.').to.be.false;
+      });
+    });
+  });
+
+  describe('Preimage Execution', () => {
+    const preimageHashes: string[] = [];
+
+    async function notePreimage(helper: UniqueHelper, preimage: any): Promise<string> {
+      const result = await helper.preimage.notePreimage(bob, preimage);
+      const events = result.result.events.filter(x => x.event.method === 'Noted' && x.event.section === 'preimage');
+      const preimageHash = events[0].event.data[0].toHuman();
+      return preimageHash;
+    }
+
+    before(async function() {
+      await usingPlaygrounds(async (helper) => {
+        requirePalletsOrSkip(this, helper, [Pallets.Preimage, Pallets.Maintenance]);
+
+        // create a preimage to be operated with in the tests
+        const randomAccounts = await helper.arrange.createCrowd(10, 0n, superuser);
+        const randomIdentities = randomAccounts.map((acc, i) => [
+          acc.address, {
+            deposit: 0n,
+            judgements: [],
+            info: {
+              display: {
+                raw: `Random Account #${i}`,
+              },
+            },
+          },
+        ]);
+        const preimage = helper.constructApiCall('api.tx.identity.forceInsertIdentities', [randomIdentities]).method.toHex();
+        preimageHashes.push(await notePreimage(helper, preimage));
+      });
+    });
+
+    itSub('Successfully executes call in a preimage', async ({helper}) => {
+      const result = await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [
+        preimageHashes[0], {refTime: 10000000000, proofSize: 10000},
+      ])).to.be.fulfilled;
+
+      // preimage is executed, and an appropriate event is present
+      const events = result.result.events.filter((x: any) => x.event.method === 'IdentitiesInserted' && x.event.section === 'identity');
+      expect(events.length).to.be.equal(1);
+
+      // the preimage goes back to being unrequested
+      expect(await helper.preimage.getPreimageInfo(preimageHashes[0])).to.have.property('unrequested');
+    });
+
+    itSub('Does not allow execution of a preimage that would fail', async ({helper}) => {
+      const [zeroAccount] = await helper.arrange.createAccounts([0n], superuser);
+
+      const preimage = helper.constructApiCall('api.tx.balances.forceTransfer', [
+        {Id: zeroAccount.address}, {Id: superuser.address}, 1000n,
+      ]).method.toHex();
+      const preimageHash = await notePreimage(helper, preimage);
+      preimageHashes.push(preimageHash);
+
+      await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [
+        preimageHash, {refTime: 10000000000, proofSize: 10000},
+      ])).to.be.rejectedWith(/balances\.InsufficientBalance/);
+    });
+
+    itSub('Does not allow preimage execution with non-root', async ({helper}) => {
+      await expect(helper.executeExtrinsic(bob, 'api.tx.maintenance.executePreimage', [
+        preimageHashes[0], {refTime: 10000000000, proofSize: 10000},
+      ])).to.be.rejectedWith(/BadOrigin/);
+    });
+
+    itSub('Does not allow execution of non-existent preimages', async ({helper}) => {
+      await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [
+        '0x1010101010101010101010101010101010101010101010101010101010101010', {refTime: 10000000000, proofSize: 10000},
+      ])).to.be.rejectedWith(/Unavailable/);
+    });
+
+    itSub('Does not allow preimage execution with less than minimum weights', async ({helper}) => {
+      await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.executePreimage', [
+        preimageHashes[0], {refTime: 1000, proofSize: 100},
+      ])).to.be.rejectedWith(/Exhausted/);
+    });
+
+    after(async function() {
+      await usingPlaygrounds(async (helper) => {
+        if (helper.fetchMissingPalletNames([Pallets.Preimage, Pallets.Maintenance]).length != 0) return;
+
+        for (const hash of preimageHashes) {
+          await helper.preimage.unnotePreimage(bob, hash);
+        }
+      });
+    });
+  });
+});
deletedtests/src/maintenanceMode.seqtest.tsdiffbeforeafterboth
--- a/tests/src/maintenanceMode.seqtest.ts
+++ /dev/null
@@ -1,270 +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/>.
-
-import {IKeyringPair} from '@polkadot/types/types';
-import {ApiPromise} from '@polkadot/api';
-import {expect, itSched, itSub, Pallets, usingPlaygrounds} from './util';
-import {itEth} from './eth/util';
-
-async function maintenanceEnabled(api: ApiPromise): Promise<boolean> {
-  return (await api.query.maintenance.enabled()).toJSON() as boolean;
-}
-
-describe('Integration Test: Maintenance Mode', () => {
-  let superuser: IKeyringPair;
-  let donor: IKeyringPair;
-  let bob: IKeyringPair;
-
-  before(async () => {
-    await usingPlaygrounds(async (helper, privateKey) => {
-      superuser = await privateKey('//Alice');
-      donor = await privateKey({filename: __filename});
-      [bob] = await helper.arrange.createAccounts([100n], donor);
-
-      if (await maintenanceEnabled(helper.getApi())) {
-        console.warn('\tMaintenance mode was left enabled BEFORE the test suite! Disabling it now.');
-        await expect(helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', [])).to.be.fulfilled;
-      }
-    });
-  });
-
-  itSub('Allows superuser to enable and disable maintenance mode - and disallows anyone else', async ({helper}) => {
-    // Make sure non-sudo can't enable maintenance mode
-    await expect(helper.executeExtrinsic(superuser, 'api.tx.maintenance.enable', []), 'on commoner enabling MM')
-      .to.be.rejectedWith(/BadOrigin/);
-
-    // Set maintenance mode
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
-
-    // Make sure non-sudo can't disable maintenance mode
-    await expect(helper.executeExtrinsic(bob, 'api.tx.maintenance.disable', []), 'on commoner disabling MM')
-      .to.be.rejectedWith(/BadOrigin/);
-
-    // Disable maintenance mode
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
-  });
-
-  itSub('MM blocks unique pallet calls', async ({helper}) => {
-    // Can create an NFT collection before enabling the MM
-    const nftCollection = await helper.nft.mintCollection(bob, {
-      tokenPropertyPermissions: [{key: 'test', permission: {
-        collectionAdmin: true,
-        tokenOwner: true,
-        mutable: true,
-      }}],
-    });
-
-    // Can mint an NFT before enabling the MM
-    const nft = await nftCollection.mintToken(bob);
-
-    // Can create an FT collection before enabling the MM
-    const ftCollection = await helper.ft.mintCollection(superuser);
-
-    // Can mint an FT before enabling the MM
-    await expect(ftCollection.mint(superuser)).to.be.fulfilled;
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
-
-    // Unable to create a collection when the MM is enabled
-    await expect(helper.nft.mintCollection(superuser), 'cudo forbidden stuff')
-      .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
-
-    // Unable to set token properties when the MM is enabled
-    await expect(nft.setProperties(
-      bob,
-      [{key: 'test', value: 'test-val'}],
-    )).to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
-
-    // Unable to mint an NFT when the MM is enabled
-    await expect(nftCollection.mintToken(superuser))
-      .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
-
-    // Unable to mint an FT when the MM is enabled
-    await expect(ftCollection.mint(superuser))
-      .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
-
-    // Can create a collection after disabling the MM
-    await expect(helper.nft.mintCollection(bob), 'MM is disabled, the collection should be created').to.be.fulfilled;
-
-    // Can set token properties after disabling the MM
-    await nft.setProperties(bob, [{key: 'test', value: 'test-val'}]);
-
-    // Can mint an NFT after disabling the MM
-    await nftCollection.mintToken(bob);
-
-    // Can mint an FT after disabling the MM
-    await ftCollection.mint(superuser);
-  });
-
-  itSub.ifWithPallets('MM blocks unique pallet calls (Re-Fungible)', [Pallets.ReFungible], async ({helper}) => {
-    // Can create an RFT collection before enabling the MM
-    const rftCollection = await helper.rft.mintCollection(superuser);
-
-    // Can mint an RFT before enabling the MM
-    await expect(rftCollection.mintToken(superuser)).to.be.fulfilled;
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
-
-    // Unable to mint an RFT when the MM is enabled
-    await expect(rftCollection.mintToken(superuser))
-      .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
-
-    // Can mint an RFT after disabling the MM
-    await rftCollection.mintToken(superuser);
-  });
-
-  itSub('MM allows native token transfers and RPC calls', async ({helper}) => {
-    // We can use RPC before the MM is enabled
-    const totalCount = await helper.collection.getTotalCount();
-
-    // We can transfer funds before the MM is enabled
-    await expect(helper.balance.transferToSubstrate(superuser, bob.address, 2n)).to.be.fulfilled;
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
-
-    // RPCs work while in maintenance
-    expect(await helper.collection.getTotalCount()).to.be.deep.equal(totalCount);
-
-    // We still able to transfer funds
-    await expect(helper.balance.transferToSubstrate(bob, superuser.address, 1n)).to.be.fulfilled;
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
-
-    // RPCs work after maintenance
-    expect(await helper.collection.getTotalCount()).to.be.deep.equal(totalCount);
-
-    // Transfers work after maintenance
-    await expect(helper.balance.transferToSubstrate(bob, superuser.address, 1n)).to.be.fulfilled;
-  });
-
-  itSched.ifWithPallets('MM blocks scheduled calls and the scheduler itself', [Pallets.Scheduler], async (scheduleKind, {helper}) => {
-    const collection = await helper.nft.mintCollection(bob);
-
-    const nftBeforeMM = await collection.mintToken(bob);
-    const nftDuringMM = await collection.mintToken(bob);
-    const nftAfterMM = await collection.mintToken(bob);
-
-    const [
-      scheduledIdBeforeMM,
-      scheduledIdDuringMM,
-      scheduledIdBunkerThroughMM,
-      scheduledIdAttemptDuringMM,
-      scheduledIdAfterMM,
-    ] = scheduleKind == 'named'
-      ? helper.arrange.makeScheduledIds(5)
-      : new Array(5);
-
-    const blocksToWait = 6;
-
-    // Scheduling works before the maintenance
-    await nftBeforeMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdBeforeMM})
-      .transfer(bob, {Substrate: superuser.address});
-
-    await helper.wait.newBlocks(blocksToWait + 1);
-    expect(await nftBeforeMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});
-
-    // Schedule a transaction that should occur *during* the maintenance
-    await nftDuringMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdDuringMM})
-      .transfer(bob, {Substrate: superuser.address});
-
-    // Schedule a transaction that should occur *after* the maintenance
-    await nftDuringMM.scheduleAfter(blocksToWait * 2, {scheduledId: scheduledIdBunkerThroughMM})
-      .transfer(bob, {Substrate: superuser.address});
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
-
-    await helper.wait.newBlocks(blocksToWait + 1);
-    // The owner should NOT change since the scheduled transaction should be rejected
-    expect(await nftDuringMM.getOwner()).to.be.deep.equal({Substrate: bob.address});
-
-    // Any attempts to schedule a tx during the MM should be rejected
-    await expect(nftDuringMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdAttemptDuringMM})
-      .transfer(bob, {Substrate: superuser.address}))
-      .to.be.rejectedWith(/Invalid Transaction: Transaction call is not expected/);
-
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
-
-    // Scheduling works after the maintenance
-    await nftAfterMM.scheduleAfter(blocksToWait, {scheduledId: scheduledIdAfterMM})
-      .transfer(bob, {Substrate: superuser.address});
-
-    await helper.wait.newBlocks(blocksToWait + 1);
-
-    expect(await nftAfterMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});
-    // The owner of the token scheduled for transaction *before* maintenance should now change *after* maintenance
-    expect(await nftDuringMM.getOwner()).to.be.deep.equal({Substrate: superuser.address});
-  });
-
-  itEth('Disallows Ethereum transactions to execute while in maintenance', async ({helper}) => {
-    const owner = await helper.eth.createAccountWithBalance(donor);
-    const receiver = helper.eth.createAccount();
-
-    const {collectionAddress} = await helper.eth.createERC721MetadataCompatibleNFTCollection(owner, 'A', 'B', 'C', '');
-
-    // Set maintenance mode
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
-
-    const contract = await helper.ethNativeContract.collection(collectionAddress, 'nft', owner);
-    const tokenId = await contract.methods.nextTokenId().call();
-    expect(tokenId).to.be.equal('1');
-
-    await expect(contract.methods.mintWithTokenURI(receiver, 'Test URI').send())
-      .to.be.rejectedWith(/Returned error: unknown error/);
-
-    await expect(contract.methods.ownerOf(tokenId).call()).rejectedWith(/token not found/);
-
-    // Disable maintenance mode
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
-  });
-
-  itSub('Allows to enable and disable MM repeatedly', async ({helper}) => {
-    // Set maintenance mode
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.enable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is OFF when it should be ON').to.be.true;
-
-    // Disable maintenance mode
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-    expect(await maintenanceEnabled(helper.getApi()), 'MM is ON when it should be OFF').to.be.false;
-  });
-
-  afterEach(async () => {
-    await usingPlaygrounds(async helper => {
-      if (await maintenanceEnabled(helper.getApi())) {
-        console.warn('\tMaintenance mode was left enabled AFTER a test has finished! Be careful. Disabling it now.');
-        await helper.getSudo().executeExtrinsic(superuser, 'api.tx.maintenance.disable', []);
-      }
-      expect(await maintenanceEnabled(helper.getApi()), 'Disastrous! Exited the test suite with maintenance mode on.').to.be.false;
-    });
-  });
-});
modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
--- a/tests/src/pallet-presence.test.ts
+++ b/tests/src/pallet-presence.test.ts
@@ -66,6 +66,7 @@
       const foreignAssets = 'foreignassets';
       const appPromotion = 'apppromotion';
       const collatorSelection = ['authorship', 'session', 'collatorselection', 'identity'];
+      const preimage = ['preimage'];
       const testUtils = 'testutils';
 
       if (chain.eq('OPAL by UNIQUE')) {
@@ -75,6 +76,7 @@
           appPromotion,
           testUtils,
           ...collatorSelection,
+          ...preimage,
         );
       } else if (chain.eq('QUARTZ by UNIQUE') || chain.eq('SAPPHIRE by UNIQUE')) {
         requiredPallets.push(
@@ -82,6 +84,7 @@
           appPromotion,
           foreignAssets,
           ...collatorSelection,
+          ...preimage,
         );
       } else if (chain.eq('UNIQUE')) {
         // Insert Unique additional pallets here
modifiedtests/src/util/identitySetter.tsdiffbeforeafterboth
--- a/tests/src/util/identitySetter.ts
+++ b/tests/src/util/identitySetter.ts
@@ -1,13 +1,14 @@
 // Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
 // SPDX-License-Identifier: Apache-2.0
 //
-// Pulls identities and sub-identities from a chain and then uses sudo to force upload them into another.
+// Pulls identities and sub-identities from a chain and then makes a preimage to later force upload them into another.
 // Only changed or previously non-existent data are inserted.
 //
-// Usage: `yarn setIdentities [relay WS URL] [parachain WS URL] [sudo key]`
+// Usage: `yarn setIdentities [relay WS URL] [parachain WS URL] [user key]
 // Example: `yarn setIdentities wss://polkadot-rpc.dwellir.com ws://localhost:9944 escape pattern miracle train sudden cart adapt embark wedding alien lamp mesh`
 
 import {encodeAddress} from '@polkadot/keyring';
+import {IKeyringPair} from '@polkadot/types/types';
 import {usingPlaygrounds, Pallets} from './index';
 import {ChainHelperBase} from './playgrounds/unique';
 
@@ -81,6 +82,18 @@
   return (await helper.getApi().query.identity.superOf.entries()).map(([key, value]) => [extractAccountId(key), value as any]);
 }
 
+async function uploadPreimage(helper: ChainHelperBase, preimageMaker: IKeyringPair, preimage: string) {
+  try {
+    await helper.executeExtrinsic(preimageMaker, 'api.tx.preimage.notePreimage', [preimage]);
+  } catch(e: any) {
+    if (e.message.includes('AlreadyNoted')) {
+      console.warn('Warning: The same preimage already exists on the chain. Nothing was uploaded.');
+    } else {
+      console.error(e);
+    }
+  }
+}
+
 // The utility for pulling identity and sub-identity data
 const forceInsertIdentities = async (): Promise<void> => {
   let relaySS58Prefix = 0;
@@ -128,8 +141,10 @@
 
   await usingPlaygrounds(async (helper, privateKey) => {
     if (helper.fetchMissingPalletNames([Pallets.Identity]).length != 0) console.error('pallet-identity is not included in parachain.');
+    if (helper.fetchMissingPalletNames([Pallets.Preimage]).length != 0) console.error('pallet-preimage is not included in parachain.');
+
     try {
-      const superuser = await privateKey(key);
+      const preimageMaker = await privateKey(key);
       const ss58Format = helper.chain.getChainProperties().ss58Format;
       const paraIdentities = await getIdentities(helper);
       const identitiesToAdd: any[] = [];
@@ -158,13 +173,21 @@
       }
 
       if (identitiesToRemove.length != 0)
-        await helper.getSudo().executeExtrinsic(superuser, 'api.tx.identity.forceRemoveIdentities', [identitiesToRemove]);
+        await uploadPreimage(
+          helper,
+          preimageMaker,
+          helper.constructApiCall('api.tx.identity.forceRemoveIdentities', [identitiesToRemove]).method.toHex(),
+        );
       if (identitiesToAdd.length != 0)
-        await helper.getSudo().executeExtrinsic(superuser, 'api.tx.identity.forceInsertIdentities', [identitiesToAdd]);
+        await uploadPreimage(
+          helper,
+          preimageMaker,
+          helper.constructApiCall('api.tx.identity.forceInsertIdentities', [identitiesToAdd]).method.toHex(),
+        );
 
-      console.log(`Tried to upload ${identitiesToAdd.length} identities`
+      console.log(`Tried to push ${identitiesToAdd.length} identities`
         + ` and found ${identitiesToRemove.length} identities for potential removal.`
-        + ` Now there are ${(await helper.getApi().query.identity.identityOf.keys()).length}.`);
+        + ` Currently there are ${(await helper.getApi().query.identity.identityOf.keys()).length} identities on the chain.`);
 
       // fill sub-identities
       const paraSubs = await getSubs(helper);
@@ -187,10 +210,14 @@
       }
 
       if (subsToUpdate.length != 0)
-        await helper.getSudo().executeExtrinsic(superuser, 'api.tx.identity.forceSetSubs', [subsToUpdate]);
+        await uploadPreimage(
+          helper,
+          preimageMaker,
+          helper.constructApiCall('api.tx.identity.forceSetSubs', [subsToUpdate]).method.toHex(),
+        );
 
-      console.log(`Also tried to update ${subsToUpdate.length} identities with their sub-identities.`
-        + ` Now there are ${(await helper.getApi().query.identity.subsOf.keys()).length} identities with subs.`);
+      console.log(`Also tried to push ${subsToUpdate.length} identities with their sub-identities.`
+        + ` Currently there are ${(await helper.getApi().query.identity.subsOf.keys()).length} identities with subs.`);
     } catch (error) {
       console.error(error);
       throw Error('Error during setting identities');
modifiedtests/src/util/index.tsdiffbeforeafterboth
--- a/tests/src/util/index.ts
+++ b/tests/src/util/index.ts
@@ -114,6 +114,8 @@
   CollatorSelection = 'collatorselection',
   Session = 'session',
   Identity = 'identity',
+  Preimage = 'preimage',
+  Maintenance = 'maintenance',
   TestUtils = 'testutils',
 }
 
modifiedtests/src/util/playgrounds/unique.tsdiffbeforeafterboth
--- a/tests/src/util/playgrounds/unique.ts
+++ b/tests/src/util/playgrounds/unique.ts
@@ -2869,6 +2869,55 @@
   }
 }
 
+class PreimageGroup extends HelperGroup<UniqueHelper> {
+  async getPreimageInfo(h256: string) {
+    return (await this.helper.callRpc('api.query.preimage.statusFor', [h256])).toJSON();
+  }
+
+  /**
+   * Create a preimage with a hex or a byte array.
+   * @param signer keyring of the signer.
+   * @param bytes preimage encoded in hex or a byte array, e.g. an extrinsic call.
+   * @example await notePreimage(preimageMaker,
+   *   helper.constructApiCall('api.tx.identity.forceInsertIdentities', [identitiesToAdd]).method.toHex()
+   * );
+   * @returns promise of extrinsic execution.
+   */
+  notePreimage(signer: TSigner, bytes: string | Uint8Array) {
+    return this.helper.executeExtrinsic(signer, 'api.tx.preimage.notePreimage', [bytes]);
+  }
+
+  /**
+   * Delete an existing preimage and return the deposit.
+   * @param signer keyring of the signer - either the owner or the preimage manager (sudo).
+   * @param h256 hash of the preimage.
+   * @returns promise of extrinsic execution.
+   */
+  unnotePreimage(signer: TSigner, h256: string) {
+    return this.helper.executeExtrinsic(signer, 'api.tx.preimage.unnotePreimage', [h256]);
+  }
+
+  /**
+   * Request a preimage be uploaded to the chain without paying any fees or deposits.
+   * @param signer keyring of the signer - either the owner or the preimage manager (sudo).
+   * @param h256 hash of the preimage.
+   * @returns promise of extrinsic execution.
+   */
+  requestPreimage(signer: TSigner, h256: string) {
+    return this.helper.executeExtrinsic(signer, 'api.tx.preimage.requestPreimage', [h256]);
+  }
+
+  /**
+   * Clear a previously made request for a preimage.
+   * @param signer keyring of the signer - either the owner or the preimage manager (sudo).
+   * @param h256 hash of the preimage.
+   * @returns promise of extrinsic execution.
+   */
+  unrequestPreimage(signer: TSigner, h256: string) {
+    return this.helper.executeExtrinsic(signer, 'api.tx.preimage.unrequestPreimage', [h256]);
+  }
+}
+
 class ForeignAssetsGroup extends HelperGroup<UniqueHelper> {
   async register(signer: TSigner, ownerAddress: TSubstrateAccount, location: any, metadata: IForeignAssetMetadata) {
     await this.helper.executeExtrinsic(
@@ -3094,6 +3143,7 @@
   staking: StakingGroup;
   scheduler: SchedulerGroup;
   collatorSelection: CollatorSelectionGroup;
+  preimage: PreimageGroup;
   foreignAssets: ForeignAssetsGroup;
   xcm: XcmGroup<UniqueHelper>;
   xTokens: XTokensGroup<UniqueHelper>;
@@ -3110,6 +3160,7 @@
     this.staking = new StakingGroup(this);
     this.scheduler = new SchedulerGroup(this);
     this.collatorSelection = new CollatorSelectionGroup(this);
+    this.preimage = new PreimageGroup(this);
     this.foreignAssets = new ForeignAssetsGroup(this);
     this.xcm = new XcmGroup(this, 'polkadotXcm');
     this.xTokens = new XTokensGroup(this);