git.delta.rocks / unique-network / refs/commits / 258c7f483482

difftreelog

extensions yaml -> yml

Alexander Aksenov2022-08-15parents: #60de661 #0908fa4.patch.diff
in: master

36 files changed

modified.docker/Dockerfile-parachaindiffbeforeafterboth
--- a/.docker/Dockerfile-parachain
+++ b/.docker/Dockerfile-parachain
@@ -41,7 +41,6 @@
 RUN git clone $REPO_URL -b $BRANCH && \
     cargo build --features=$FEATURE --$PROFILE
 
-
 # ===== BUILD POLKADOT =====
 FROM rust-builder as builder-polkadot
 
deleted.docker/docker-compose-master.yamldiffbeforeafterboth
--- a/.docker/docker-compose-master.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-version: "3.5"
-
-services:
-  blockchain_nodes:
-    build:
-      context: ../
-      dockerfile: .docker/Dockerfile-parachain
-    image: blockchain_nodes
-    container_name: blockchain_nodes
-    expose:
-      - 9944
-      - 9933
-    ports:
-      - 127.0.0.1:9944:9944
-      - 127.0.0.1:9933:9933
-    logging:
-      options:
-        max-size: "1m"
-        max-file: "3"
added.docker/docker-compose-master.ymldiffbeforeafterboth
--- /dev/null
+++ b/.docker/docker-compose-master.yml
@@ -0,0 +1,19 @@
+version: "3.5"
+
+services:
+  blockchain_nodes:
+    build:
+      context: ../
+      dockerfile: .docker/Dockerfile-parachain
+    image: blockchain_nodes
+    container_name: blockchain_nodes
+    expose:
+      - 9944
+      - 9933
+    ports:
+      - 127.0.0.1:9944:9944
+      - 127.0.0.1:9933:9933
+    logging:
+      options:
+        max-size: "1m"
+        max-file: "3"
modified.docker/forking/docker-compose-fork.yamldiffbeforeafterboth
--- a/.docker/forking/docker-compose-fork.yaml
+++ b/.docker/forking/docker-compose-fork.yaml
@@ -3,8 +3,8 @@
 services:
   parachain-fork:
     build:
-      context: ../
-      dockerfile: .docker/forking/Dockerfile-parachain-live-fork
+      context: ./
+      dockerfile: ./Dockerfile-parachain-live-fork
     image: parachain-fork
     container_name: parachain-fork
     volumes:
modified.docker/forking/docker-compose.tmp-fork.j2diffbeforeafterboth
--- a/.docker/forking/docker-compose.tmp-fork.j2
+++ b/.docker/forking/docker-compose.tmp-fork.j2
@@ -10,6 +10,4 @@
         - "FEATURE={{ FEATURE }}"
         - "RUNTIME={{ RUNTIME }}"
         - "POLKADOT_BUILD_BRANCH={{ POLKADOT_BUILD_BRANCH }}"
-        - "MAINNET_TAG={{ MAINNET_TAG }}"
-        - "MAINNET_BRANCH={{ MAINNET_BRANCH }}"
         - "FORK_FROM={{ FORK_FROM }}"
modified.github/workflows/build-test-master.ymldiffbeforeafterboth
--- a/.github/workflows/build-test-master.yml
+++ b/.github/workflows/build-test-master.yml
@@ -22,7 +22,7 @@
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
-  build:
+  master-build-and-test:
     # The type of runner that the job will run on
     runs-on: self-hosted-ci
 
@@ -35,11 +35,11 @@
       matrix:
         include:
           - network: "Opal"
-            features: " "
+            features: "opal-runtime"
           - network: "Quartz"
-            features: "--features=quartz-runtime"
+            features: "quartz-runtime"
           - network: "Unique"
-            features: "--features=unique-runtime"
+            features: "unique-runtime"
 
     steps:
       - name: Skip if pull request is in Draft
modified.github/workflows/fork-update-withdata.ymldiffbeforeafterboth
--- a/.github/workflows/fork-update-withdata.yml
+++ b/.github/workflows/fork-update-withdata.yml
@@ -22,39 +22,7 @@
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
-  prepare-execution-marix-fork:
-    
-    name: Prepare execution matrix for fork
-    
-    runs-on: self-hosted-ci
-    outputs:
-      matrix: ${{ steps.create_matrix.outputs.matrix }}
-    steps:
-      
-      - name: Clean Workspace
-        uses: AutoModality/action-clean@v1.1.0
-
-      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-      - uses: actions/checkout@v3
-        with:
-          ref: ${{ github.head_ref }}  #Checking out head commit
-
-      - name: Read .env file
-        uses: xom9ikk/dotenv@v1.0.2
-
-      - name: Create Execution matrix
-        uses: fabiocaccamo/create-matrix-action@v2
-        id: create_matrix
-        with:
-          matrix: |
-            network {Opal}, runtime {opal}, features {opal-runtime}, mainnet_branch {${{ env.OPAL_MAINNET_TAG }}}, fork_from_address {'wss://eu-ws-opal.unique.network:443'}
-            network {Quartz}, runtime {quartz}, features {quartz-runtime}, mainnet_branch {${{ env.QUARTZ_MAINNET_TAG }}}, fork_from_address {'wss://eu-ws-quartz.unique.network:443'}
-            network {Unique}, runtime {unique}, features {unique-runtime}, mainnet_branch {${{ env.UNIQUE_MAINNET_TAG }}}, fork_from_address {'wss://eu-ws.unique.network:443'}
-
-
-
   fork-update-withdata:
-    needs: prepare-execution-marix-fork
     # The type of runner that the job will run on
     runs-on: self-hosted-ci
 
@@ -64,7 +32,19 @@
 
     strategy:
       matrix:
-        include: ${{fromJson(needs.prepare-execution-marix-fork.outputs.matrix)}}
+        include:
+          - network: Opal
+            features: opal-runtime
+            runtime: opal
+            fork_from_address: wss://eu-ws-opal.unique.network:443
+          - network: Quartz
+            features: quartz-runtime
+            runtime: quartz
+            fork_from_address: wss://eu-ws-quartz.unique.network:443
+          - network: Unique
+            features: unique-runtime
+            runtime: unique
+            fork_from_address: wss://eu-ws.unique.network:443
 
     steps:
       - name: Skip if pull request is in Draft
@@ -106,8 +86,6 @@
             RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}
             POLKADOT_BUILD_BRANCH=${{ env.POLKADOT_BUILD_BRANCH }}
             POLKADOT_MAINNET_BRANCH=${{ env.POLKADOT_MAINNET_BRANCH }}
-            MAINNET_TAG=${{ matrix.mainnet_tag }}
-            MAINNET_BRANCH=${{ matrix.mainnet_branch }}
             FEATURE=${{ matrix.features }}
             RUNTIME=${{ matrix.runtime }}
             BRANCH=${{ github.head_ref }}
modified.github/workflows/try-runtime.ymldiffbeforeafterboth
--- a/.github/workflows/try-runtime.yml
+++ b/.github/workflows/try-runtime.yml
@@ -91,7 +91,7 @@
 
 
       - name: Build the stack
-        run: docker-compose -f ".docker/docker-compose-try-runtime.yaml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300
+        run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" up -d --build  --force-recreate --timeout 300
 
 
       - name: Collect Docker Logs
@@ -114,4 +114,4 @@
 
       - name: Stop running containers
         if: always()                   # run this step always
-        run: docker-compose -f ".docker/forking/docker-compose-try-runtime.yaml" -f ".docker/forking/docker-compose.try-runtime.${{ matrix.network }}.yml" down
+        run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" down
modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5309,6 +5309,7 @@
  "pallet-balances",
  "pallet-base-fee",
  "pallet-common",
+ "pallet-configuration",
  "pallet-ethereum",
  "pallet-evm",
  "pallet-evm-coder-substrate",
@@ -5744,6 +5745,22 @@
 ]
 
 [[package]]
+name = "pallet-configuration"
+version = "0.1.0"
+dependencies = [
+ "fp-evm",
+ "frame-support",
+ "frame-system",
+ "parity-scale-codec 3.1.5",
+ "scale-info",
+ "smallvec",
+ "sp-arithmetic",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
+]
+
+[[package]]
 name = "pallet-democracy"
 version = "4.0.0-dev"
 source = "git+https://github.com/uniquenetwork/substrate?branch=polkadot-v0.9.24-hack-substitute#1fa76b0665d32b1e28c36da67e54da1816db3fa2"
@@ -8625,6 +8642,7 @@
  "pallet-balances",
  "pallet-base-fee",
  "pallet-common",
+ "pallet-configuration",
  "pallet-ethereum",
  "pallet-evm",
  "pallet-evm-coder-substrate",
@@ -12630,6 +12648,7 @@
  "pallet-balances",
  "pallet-base-fee",
  "pallet-common",
+ "pallet-configuration",
  "pallet-ethereum",
  "pallet-evm",
  "pallet-evm-coder-substrate",
addedpallets/configuration/Cargo.tomldiffbeforeafterboth
--- /dev/null
+++ b/pallets/configuration/Cargo.toml
@@ -0,0 +1,33 @@
+[package]
+name = "pallet-configuration"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+parity-scale-codec = { version = "3.1.5", features = [
+	"derive",
+], default-features = false }
+scale-info = { version = "2.0.1", default-features = false, features = [
+	"derive",
+] }
+frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }
+frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }
+sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }
+fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }
+smallvec = "1.6.1"
+
+[features]
+default = ["std"]
+std = [
+	"parity-scale-codec/std",
+	"frame-support/std",
+	"frame-system/std",
+	"sp-runtime/std",
+	"sp-std/std",
+	"sp-core/std",
+	"sp-arithmetic/std",
+	"fp-evm/std",
+]
addedpallets/configuration/src/lib.rsdiffbeforeafterboth
--- /dev/null
+++ b/pallets/configuration/src/lib.rs
@@ -0,0 +1,124 @@
+// 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/>.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+use core::marker::PhantomData;
+
+use frame_support::{
+	pallet,
+	weights::{WeightToFeePolynomial, WeightToFeeCoefficients, WeightToFeeCoefficient},
+	traits::Get,
+};
+use sp_arithmetic::traits::{BaseArithmetic, Unsigned};
+use smallvec::smallvec;
+
+pub use pallet::*;
+use sp_core::U256;
+use sp_runtime::Perbill;
+
+#[pallet]
+mod pallet {
+	use super::*;
+	use frame_support::{
+		traits::Get,
+		pallet_prelude::{StorageValue, ValueQuery, DispatchResult},
+	};
+	use frame_system::{pallet_prelude::OriginFor, ensure_root};
+
+	#[pallet::config]
+	pub trait Config: frame_system::Config {
+		#[pallet::constant]
+		type DefaultWeightToFeeCoefficient: Get<u32>;
+		#[pallet::constant]
+		type DefaultMinGasPrice: Get<u64>;
+	}
+
+	#[pallet::storage]
+	pub type WeightToFeeCoefficientOverride<T: Config> = StorageValue<
+		Value = u32,
+		QueryKind = ValueQuery,
+		OnEmpty = T::DefaultWeightToFeeCoefficient,
+	>;
+
+	#[pallet::storage]
+	pub type MinGasPriceOverride<T: Config> =
+		StorageValue<Value = u64, QueryKind = ValueQuery, OnEmpty = T::DefaultMinGasPrice>;
+
+	#[pallet::call]
+	impl<T: Config> Pallet<T> {
+		#[pallet::weight(T::DbWeight::get().writes(1))]
+		pub fn set_weight_to_fee_coefficient_override(
+			origin: OriginFor<T>,
+			coeff: Option<u32>,
+		) -> DispatchResult {
+			let _sender = ensure_root(origin)?;
+			if let Some(coeff) = coeff {
+				<WeightToFeeCoefficientOverride<T>>::set(coeff);
+			} else {
+				<WeightToFeeCoefficientOverride<T>>::kill();
+			}
+			Ok(())
+		}
+
+		#[pallet::weight(T::DbWeight::get().writes(1))]
+		pub fn set_min_gas_price_override(
+			origin: OriginFor<T>,
+			coeff: Option<u64>,
+		) -> DispatchResult {
+			let _sender = ensure_root(origin)?;
+			if let Some(coeff) = coeff {
+				<MinGasPriceOverride<T>>::set(coeff);
+			} else {
+				<MinGasPriceOverride<T>>::kill();
+			}
+			Ok(())
+		}
+	}
+
+	#[pallet::pallet]
+	#[pallet::generate_store(pub(super) trait Store)]
+	pub struct Pallet<T>(_);
+}
+
+pub struct WeightToFee<T, B>(PhantomData<(T, B)>);
+
+impl<T, B> WeightToFeePolynomial for WeightToFee<T, B>
+where
+	T: Config,
+	B: BaseArithmetic + From<u32> + Copy + Unsigned,
+{
+	type Balance = B;
+
+	fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {
+		smallvec!(WeightToFeeCoefficient {
+			coeff_integer: <WeightToFeeCoefficientOverride<T>>::get().into(),
+			coeff_frac: Perbill::zero(),
+			negative: false,
+			degree: 1,
+		})
+	}
+}
+
+pub struct FeeCalculator<T>(PhantomData<T>);
+impl<T: Config> fp_evm::FeeCalculator for FeeCalculator<T> {
+	fn min_gas_price() -> (U256, u64) {
+		(
+			<MinGasPriceOverride<T>>::get().into(),
+			T::DbWeight::get().reads(1),
+		)
+	}
+}
modifiedpallets/refungible/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/refungible/src/benchmarking.rs
+++ b/pallets/refungible/src/benchmarking.rs
@@ -35,8 +35,8 @@
 
 fn create_max_item_data<CrossAccountId: Ord>(
 	users: impl IntoIterator<Item = (CrossAccountId, u128)>,
-) -> CreateRefungibleExData<CrossAccountId> {
-	CreateRefungibleExData {
+) -> CreateItemData<CrossAccountId> {
+	CreateItemData {
 		users: users
 			.into_iter()
 			.collect::<BTreeMap<_, _>>()
@@ -51,7 +51,7 @@
 	sender: &T::CrossAccountId,
 	users: impl IntoIterator<Item = (T::CrossAccountId, u128)>,
 ) -> Result<TokenId, DispatchError> {
-	let data: CreateRefungibleExData<T::CrossAccountId> = create_max_item_data(users);
+	let data: CreateItemData<T::CrossAccountId> = create_max_item_data(users);
 	<Pallet<T>>::create_item(&collection, sender, data, &Unlimited)?;
 	Ok(TokenId(<TokensMinted<T>>::get(&collection.id)))
 }
modifiedprimitives/common/src/constants.rsdiffbeforeafterboth
--- a/primitives/common/src/constants.rs
+++ b/primitives/common/src/constants.rs
@@ -36,10 +36,10 @@
 pub const UNIQUE: Balance = 100 * CENTIUNIQUE;
 
 // Targeting 0.1 UNQ per transfer
-pub const WEIGHT_TO_FEE_COEFF: u32 = 207_890_902;
+pub const WEIGHT_TO_FEE_COEFF: u32 = /*<weight2fee>*/207_267_232/*</weight2fee>*/;
 
 // Targeting 0.15 UNQ per transfer via ETH
-pub const MIN_GAS_PRICE: u64 = 1_019_493_469_850;
+pub const MIN_GAS_PRICE: u64 = /*<mingasprice>*/1_019_488_372_383/*</mingasprice>*/;
 
 /// We assume that ~10% of the block weight is consumed by `on_initalize` handlers.
 /// This is used to limit the maximal weight of a single extrinsic.
modifiedruntime/common/config/ethereum.rsdiffbeforeafterboth
--- a/runtime/common/config/ethereum.rs
+++ b/runtime/common/config/ethereum.rs
@@ -50,13 +50,6 @@
 	}
 }
 
-pub struct FixedFee;
-impl pallet_evm::FeeCalculator for FixedFee {
-	fn min_gas_price() -> (U256, u64) {
-		(MIN_GAS_PRICE.into(), 0)
-	}
-}
-
 pub struct EthereumFindAuthor<F>(core::marker::PhantomData<F>);
 impl<F: FindAuthor<u32>> FindAuthor<H160> for EthereumFindAuthor<F> {
 	fn find_author<'a, I>(digests: I) -> Option<H160>
@@ -73,7 +66,7 @@
 
 impl pallet_evm::Config for Runtime {
 	type BlockGasLimit = BlockGasLimit;
-	type FeeCalculator = FixedFee;
+	type FeeCalculator = pallet_configuration::FeeCalculator<Self>;
 	type GasWeightMapping = FixedGasWeightMapping;
 	type BlockHashMapping = pallet_ethereum::EthereumBlockHashMapping<Self>;
 	type CallOrigin = EnsureAddressTruncated<Self>;
modifiedruntime/common/config/pallets/mod.rsdiffbeforeafterboth
--- a/runtime/common/config/pallets/mod.rs
+++ b/runtime/common/config/pallets/mod.rs
@@ -25,6 +25,7 @@
 	},
 	Runtime, Event, Call, Balances,
 };
+use frame_support::traits::{ConstU32, ConstU64};
 use up_common::{
 	types::{AccountId, Balance, BlockNumber},
 	constants::*,
@@ -91,3 +92,8 @@
 	type CommonWeightInfo = CommonWeights<Self>;
 	type RefungibleExtensionsWeightInfo = CommonWeights<Self>;
 }
+
+impl pallet_configuration::Config for Runtime {
+	type DefaultWeightToFeeCoefficient = ConstU32<{ up_common::constants::WEIGHT_TO_FEE_COEFF }>;
+	type DefaultMinGasPrice = ConstU64<{ up_common::constants::MIN_GAS_PRICE }>;
+}
modifiedruntime/common/config/substrate.rsdiffbeforeafterboth
--- a/runtime/common/config/substrate.rs
+++ b/runtime/common/config/substrate.rs
@@ -18,8 +18,7 @@
 	traits::{Everything, ConstU32},
 	weights::{
 		constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight},
-		DispatchClass, WeightToFeePolynomial, WeightToFeeCoefficients, ConstantMultiplier,
-		WeightToFeeCoefficient,
+		DispatchClass, ConstantMultiplier,
 	},
 	parameter_types, PalletId,
 };
@@ -32,8 +31,6 @@
 	limits::{BlockLength, BlockWeights},
 	EnsureRoot,
 };
-use sp_arithmetic::traits::{BaseArithmetic, Unsigned};
-use smallvec::smallvec;
 use crate::{
 	runtime_common::DealWithFees, Runtime, Event, Call, Origin, PalletInfo, System, Balances,
 	Treasury, SS58Prefix, Version,
@@ -154,32 +151,13 @@
 	/// This value increases the priority of `Operational` transactions by adding
 	/// a "virtual tip" that's equal to the `OperationalFeeMultiplier * final_fee`.
 	pub const OperationalFeeMultiplier: u8 = 5;
-}
-
-/// Linear implementor of `WeightToFeePolynomial`
-pub struct LinearFee<T>(sp_std::marker::PhantomData<T>);
-
-impl<T> WeightToFeePolynomial for LinearFee<T>
-where
-	T: BaseArithmetic + From<u32> + Copy + Unsigned,
-{
-	type Balance = T;
-
-	fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {
-		smallvec!(WeightToFeeCoefficient {
-			coeff_integer: WEIGHT_TO_FEE_COEFF.into(),
-			coeff_frac: Perbill::zero(),
-			negative: false,
-			degree: 1,
-		})
-	}
 }
 
 impl pallet_transaction_payment::Config for Runtime {
 	type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter<Balances, DealWithFees>;
 	type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
 	type OperationalFeeMultiplier = OperationalFeeMultiplier;
-	type WeightToFee = LinearFee<Balance>;
+	type WeightToFee = pallet_configuration::WeightToFee<Self, Balance>;
 	type FeeMultiplierUpdate = ();
 }
 
modifiedruntime/common/config/xcm.rsdiffbeforeafterboth
--- a/runtime/common/config/xcm.rs
+++ b/runtime/common/config/xcm.rs
@@ -44,8 +44,7 @@
 use xcm_executor::{Config, XcmExecutor, Assets};
 use sp_std::marker::PhantomData;
 use crate::{
-	runtime_common::config::substrate::LinearFee, Runtime, Call, Event, Origin, Balances,
-	ParachainInfo, ParachainSystem, PolkadotXcm, XcmpQueue,
+	Runtime, Call, Event, Origin, Balances, ParachainInfo, ParachainSystem, PolkadotXcm, XcmpQueue,
 };
 use up_common::{
 	types::{AccountId, Balance},
@@ -234,8 +233,11 @@
 	}
 }
 
-pub struct XcmConfig;
-impl Config for XcmConfig {
+pub struct XcmConfig<T>(PhantomData<T>);
+impl<T> Config for XcmConfig<T>
+where
+	T: pallet_configuration::Config,
+{
 	type Call = Call;
 	type XcmSender = XcmRouter;
 	// How to withdraw and deposit an asset.
@@ -246,8 +248,13 @@
 	type LocationInverter = LocationInverter<Ancestry>;
 	type Barrier = Barrier;
 	type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;
-	type Trader =
-		UsingOnlySelfCurrencyComponents<LinearFee<Balance>, RelayLocation, AccountId, Balances, ()>;
+	type Trader = UsingOnlySelfCurrencyComponents<
+		pallet_configuration::WeightToFee<T, Balance>,
+		RelayLocation,
+		AccountId,
+		Balances,
+		(),
+	>;
 	type ResponseHandler = (); // Don't handle responses for now.
 	type SubscriptionService = PolkadotXcm;
 
@@ -261,7 +268,7 @@
 	type XcmRouter = XcmRouter;
 	type ExecuteXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;
 	type XcmExecuteFilter = Everything;
-	type XcmExecutor = XcmExecutor<XcmConfig>;
+	type XcmExecutor = XcmExecutor<XcmConfig<Self>>;
 	type XcmTeleportFilter = Everything;
 	type XcmReserveTransferFilter = Everything;
 	type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;
@@ -274,13 +281,13 @@
 
 impl cumulus_pallet_xcm::Config for Runtime {
 	type Event = Event;
-	type XcmExecutor = XcmExecutor<XcmConfig>;
+	type XcmExecutor = XcmExecutor<XcmConfig<Self>>;
 }
 
 impl cumulus_pallet_xcmp_queue::Config for Runtime {
 	type WeightInfo = ();
 	type Event = Event;
-	type XcmExecutor = XcmExecutor<XcmConfig>;
+	type XcmExecutor = XcmExecutor<XcmConfig<Self>>;
 	type ChannelInfo = ParachainSystem;
 	type VersionWrapper = ();
 	type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;
@@ -290,6 +297,6 @@
 
 impl cumulus_pallet_dmp_queue::Config for Runtime {
 	type Event = Event;
-	type XcmExecutor = XcmExecutor<XcmConfig>;
+	type XcmExecutor = XcmExecutor<XcmConfig<Self>>;
 	type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;
 }
modifiedruntime/common/construct_runtime/mod.rsdiffbeforeafterboth
--- a/runtime/common/construct_runtime/mod.rs
+++ b/runtime/common/construct_runtime/mod.rs
@@ -57,7 +57,7 @@
                 #[runtimes(opal)]
                 Scheduler: pallet_unique_scheduler::{Pallet, Call, Storage, Event<T>} = 62,
 
-                // free = 63
+                Configuration: pallet_configuration::{Pallet, Call, Storage} = 63,
 
                 Charging: pallet_charge_transaction::{Pallet, Call, Storage } = 64,
                 // ContractHelpers: pallet_contract_helpers::{Pallet, Call, Storage} = 65,
modifiedruntime/common/runtime_apis.rsdiffbeforeafterboth
--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -639,14 +639,18 @@
                     list_benchmark!(list, extra, pallet_structure, Structure);
                     list_benchmark!(list, extra, pallet_inflation, Inflation);
                     list_benchmark!(list, extra, pallet_fungible, Fungible);
+                    list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);
+
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     list_benchmark!(list, extra, pallet_refungible, Refungible);
-                    list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);
+
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     list_benchmark!(list, extra, pallet_unique_scheduler, Scheduler);
 
-                    #[cfg(not(feature = "unique-runtime"))]
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     list_benchmark!(list, extra, pallet_proxy_rmrk_core, RmrkCore);
 
-                    #[cfg(not(feature = "unique-runtime"))]
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     list_benchmark!(list, extra, pallet_proxy_rmrk_equip, RmrkEquip);
 
                     // list_benchmark!(list, extra, pallet_evm_coder_substrate, EvmCoderSubstrate);
@@ -690,14 +694,18 @@
                     add_benchmark!(params, batches, pallet_structure, Structure);
                     add_benchmark!(params, batches, pallet_inflation, Inflation);
                     add_benchmark!(params, batches, pallet_fungible, Fungible);
+                    add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);
+
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     add_benchmark!(params, batches, pallet_refungible, Refungible);
-                    add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);
+
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     add_benchmark!(params, batches, pallet_unique_scheduler, Scheduler);
 
-                    #[cfg(not(feature = "unique-runtime"))]
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     add_benchmark!(params, batches, pallet_proxy_rmrk_core, RmrkCore);
 
-                    #[cfg(not(feature = "unique-runtime"))]
+                    #[cfg(not(any(feature = "unique-runtime", feature = "quartz-runtime")))]
                     add_benchmark!(params, batches, pallet_proxy_rmrk_equip, RmrkEquip);
 
                     // add_benchmark!(params, batches, pallet_evm_coder_substrate, EvmCoderSubstrate);
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -87,6 +87,7 @@
     'parachain-info/std',
     'serde',
     'pallet-inflation/std',
+    'pallet-configuration/std',
     'pallet-common/std',
     'pallet-structure/std',
     'pallet-fungible/std',
@@ -414,6 +415,7 @@
 fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }
 pallet-inflation = { path = '../../pallets/inflation', default-features = false }
 up-data-structs = { path = '../../primitives/data-structs', default-features = false }
+pallet-configuration = { default-features = false, path = "../../pallets/configuration" }
 pallet-common = { default-features = false, path = "../../pallets/common" }
 pallet-structure = { default-features = false, path = "../../pallets/structure" }
 pallet-fungible = { default-features = false, path = "../../pallets/fungible" }
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -87,6 +87,7 @@
     'parachain-info/std',
     'serde',
     'pallet-inflation/std',
+    'pallet-configuration/std',
     'pallet-common/std',
     'pallet-structure/std',
     'pallet-fungible/std',
@@ -418,6 +419,7 @@
 fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.24" }
 pallet-inflation = { path = '../../pallets/inflation', default-features = false }
 up-data-structs = { path = '../../primitives/data-structs', default-features = false }
+pallet-configuration = { default-features = false, path = "../../pallets/configuration" }
 pallet-common = { default-features = false, path = "../../pallets/common" }
 pallet-structure = { default-features = false, path = "../../pallets/structure" }
 pallet-fungible = { default-features = false, path = "../../pallets/fungible" }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -88,6 +88,7 @@
     'parachain-info/std',
     'serde',
     'pallet-inflation/std',
+    'pallet-configuration/std',
     'pallet-common/std',
     'pallet-structure/std',
     'pallet-fungible/std',
@@ -411,6 +412,7 @@
 rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }
 pallet-inflation = { path = '../../pallets/inflation', default-features = false }
 up-data-structs = { path = '../../primitives/data-structs', default-features = false }
+pallet-configuration = { default-features = false, path = "../../pallets/configuration" }
 pallet-common = { default-features = false, path = "../../pallets/common" }
 pallet-structure = { default-features = false, path = "../../pallets/structure" }
 pallet-fungible = { default-features = false, path = "../../pallets/fungible" }
modifiedtests/.eslintrc.jsondiffbeforeafterboth
--- a/tests/.eslintrc.json
+++ b/tests/.eslintrc.json
@@ -55,7 +55,13 @@
         "@typescript-eslint/no-empty-function": "off",
         "@typescript-eslint/no-non-null-assertion": "off",
         "@typescript-eslint/no-explicit-any": "off",
-        "@typescript-eslint/no-unused-vars": "warn",
+        "@typescript-eslint/no-unused-vars": [
+            "warn",
+            {
+                "varsIgnorePattern": "_.+",
+                "argsIgnorePattern": "_.+"
+            }
+        ],
         "no-async-promise-executor": "warn",
         "@typescript-eslint/no-empty-interface": "off",
         "prefer-const": [
addedtests/src/calibrate.tsdiffbeforeafterboth
--- /dev/null
+++ b/tests/src/calibrate.ts
@@ -0,0 +1,182 @@
+import {ApiPromise} from '@polkadot/api';
+import {IKeyringPair} from '@polkadot/types/types';
+import Web3 from 'web3';
+import {collectionIdToAddress, createEthAccount, createEthAccountWithBalance, GAS_ARGS, recordEthFee, usingWeb3} from './eth/util/helpers';
+import usingApi, {executeTransaction} from './substrate/substrate-api';
+import {createCollectionExpectSuccess, createItemExpectSuccess, transferExpectSuccess, UNIQUE, waitNewBlocks} from './util/helpers';
+import nonFungibleAbi from './eth/nonFungibleAbi.json';
+
+function linearRegression(points: { x: bigint, y: bigint }[]) {
+  let sumxy = 0n;
+  let sumx = 0n;
+  let sumy = 0n;
+  let sumx2 = 0n;
+  const n = points.length;
+  for (let i = 0; i < n; i++) {
+    const p = points[i];
+    sumxy += p.x * p.y;
+    sumx += p.x;
+    sumy += p.y;
+    sumx2 += p.x * p.x;
+  }
+
+  const nb = BigInt(n);
+
+  const a = (nb * sumxy - sumx * sumy) / (nb * sumx2 - sumx * sumx);
+  const b = (sumy - a * sumx) / nb;
+
+  return {a, b};
+}
+
+// JS has no builtin function to calculate sqrt of bigint
+// https://stackoverflow.com/a/53684036/6190169
+function sqrt(value: bigint) {
+  if (value < 0n) {
+    throw 'square root of negative numbers is not supported';
+  }
+
+  if (value < 2n) {
+    return value;
+  }
+
+  function newtonIteration(n: bigint, x0: bigint): bigint {
+    const x1 = ((n / x0) + x0) >> 1n;
+    if (x0 === x1 || x0 === (x1 - 1n)) {
+      return x0;
+    }
+    return newtonIteration(n, x1);
+  }
+
+  return newtonIteration(value, 1n);
+}
+
+function _error(points: { x: bigint, y: bigint }[], hypothesis: (a: bigint) => bigint) {
+  return sqrt(points.map(p => {
+    const v = hypothesis(p.x);
+    const vv = p.y;
+
+    return (v - vv) ** 2n;
+  }).reduce((a, b) => a + b, 0n) / BigInt(points.length));
+}
+
+async function calibrateWeightToFee(api: ApiPromise, privateKey: (account: string) => IKeyringPair) {
+  const alice = privateKey('//Alice');
+  const bob = privateKey('//Bob');
+  const dataPoints = [];
+
+  {
+    const collectionId = await createCollectionExpectSuccess();
+    const tokenId = await createItemExpectSuccess(alice, collectionId, 'NFT');
+    const aliceBalanceBefore = (await api.query.system.account(alice.address)).data.free.toBigInt();
+    await transferExpectSuccess(collectionId, tokenId, alice, bob, 1, 'NFT');
+    const aliceBalanceAfter = (await api.query.system.account(alice.address)).data.free.toBigInt();
+
+    console.log(`Original price: ${Number(aliceBalanceBefore - aliceBalanceAfter) / Number(UNIQUE)} UNQ`);
+  }
+
+  const defaultCoeff = (api.consts.configuration.defaultWeightToFeeCoefficient as any).toBigInt();
+  for (let i = -5; i < 5; i++) {
+    await executeTransaction(api, alice, api.tx.sudo.sudo(api.tx.configuration.setWeightToFeeCoefficientOverride(defaultCoeff + defaultCoeff / 1000n * BigInt(i))));
+
+    const coefficient = (await api.query.configuration.weightToFeeCoefficientOverride() as any).toBigInt();
+    const collectionId = await createCollectionExpectSuccess();
+    const tokenId = await createItemExpectSuccess(alice, collectionId, 'NFT');
+
+    const aliceBalanceBefore = (await api.query.system.account(alice.address)).data.free.toBigInt();
+    await transferExpectSuccess(collectionId, tokenId, alice, bob, 1, 'NFT');
+    const aliceBalanceAfter = (await api.query.system.account(alice.address)).data.free.toBigInt();
+
+    const transferPrice = aliceBalanceBefore - aliceBalanceAfter;
+
+    dataPoints.push({x: transferPrice, y: coefficient});
+  }
+  const {a, b} = linearRegression(dataPoints);
+
+  // console.log(`Error: ${error(dataPoints, x => a*x+b)}`);
+
+  const perfectValue = a * UNIQUE / 10n + b;
+  await executeTransaction(api, alice, api.tx.sudo.sudo(api.tx.configuration.setWeightToFeeCoefficientOverride(perfectValue.toString())));
+
+  {
+    const collectionId = await createCollectionExpectSuccess();
+    const tokenId = await createItemExpectSuccess(alice, collectionId, 'NFT');
+    const aliceBalanceBefore = (await api.query.system.account(alice.address)).data.free.toBigInt();
+    await transferExpectSuccess(collectionId, tokenId, alice, bob, 1, 'NFT');
+    const aliceBalanceAfter = (await api.query.system.account(alice.address)).data.free.toBigInt();
+
+    console.log(`Calibrated price: ${Number(aliceBalanceBefore - aliceBalanceAfter) / Number(UNIQUE)} UNQ`);
+  }
+}
+
+async function calibrateMinGasPrice(api: ApiPromise, web3: Web3, privateKey: (account: string) => IKeyringPair) {
+  const alice = privateKey('//Alice');
+  const caller = await createEthAccountWithBalance(api, web3, privateKey);
+  const receiver = createEthAccount(web3);
+  const dataPoints = [];
+
+  {
+    const collectionId = await createCollectionExpectSuccess();
+    const tokenId = await createItemExpectSuccess(alice, collectionId, 'NFT', {Ethereum: caller});
+
+    const address = collectionIdToAddress(collectionId);
+    const contract = new web3.eth.Contract(nonFungibleAbi as any, address, {from: caller, ...GAS_ARGS});
+
+    const cost = await recordEthFee(api, caller, () => contract.methods.transfer(receiver, tokenId).send(caller));
+
+    console.log(`Original price: ${Number(cost) / Number(UNIQUE)} UNQ`);
+  }
+
+  const defaultCoeff = (api.consts.configuration.defaultMinGasPrice as any).toBigInt();
+  for (let i = -8; i < 8; i++) {
+    const gasPrice = defaultCoeff + defaultCoeff / 100000n * BigInt(i);
+    const gasPriceStr = '0x' + gasPrice.toString(16);
+    await executeTransaction(api, alice, api.tx.sudo.sudo(api.tx.configuration.setMinGasPriceOverride(gasPrice)));
+
+    const coefficient = (await api.query.configuration.minGasPriceOverride() as any).toBigInt();
+    const collectionId = await createCollectionExpectSuccess();
+    const tokenId = await createItemExpectSuccess(alice, collectionId, 'NFT', {Ethereum: caller});
+
+    const address = collectionIdToAddress(collectionId);
+    const contract = new web3.eth.Contract(nonFungibleAbi as any, address, {from: caller, gasPrice: gasPriceStr, ...GAS_ARGS});
+
+    const transferPrice = await recordEthFee(api, caller, () => contract.methods.transfer(receiver, tokenId).send(caller));
+
+    dataPoints.push({x: transferPrice, y: coefficient});
+  }
+
+  const {a, b} = linearRegression(dataPoints);
+
+  // console.log(`Error: ${error(dataPoints, x => a*x+b)}`);
+
+  // * 0.15 = * 10000 / 66666
+  const perfectValue = a * UNIQUE * 1000000n / 6666666n + b;
+  await executeTransaction(api, alice, api.tx.sudo.sudo(api.tx.configuration.setMinGasPriceOverride(perfectValue.toString())));
+
+  {
+    const collectionId = await createCollectionExpectSuccess();
+    const tokenId = await createItemExpectSuccess(alice, collectionId, 'NFT', {Ethereum: caller});
+
+    const address = collectionIdToAddress(collectionId);
+    const contract = new web3.eth.Contract(nonFungibleAbi as any, address, {from: caller, ...GAS_ARGS});
+
+    const cost = await recordEthFee(api, caller, () => contract.methods.transfer(receiver, tokenId).send(caller));
+
+    console.log(`Calibrated price: ${Number(cost) / Number(UNIQUE)} UNQ`);
+  }
+}
+
+(async () => {
+  await usingApi(async (api, privateKey) => {
+    // Second run slightly reduces error sometimes, as price line is not actually straight, this is a curve
+
+    await calibrateWeightToFee(api, privateKey);
+    await calibrateWeightToFee(api, privateKey);
+
+    await usingWeb3(async web3 => {
+      await calibrateMinGasPrice(api, web3, privateKey);
+      await calibrateMinGasPrice(api, web3, privateKey);
+    });
+
+    await api.disconnect();
+  });
+})();
addedtests/src/calibrateApply.tsdiffbeforeafterboth
--- /dev/null
+++ b/tests/src/calibrateApply.ts
@@ -0,0 +1,38 @@
+import {readFile, writeFile} from 'fs/promises';
+import path from 'path';
+import usingApi from './substrate/substrate-api';
+
+const formatNumber = (num: string): string => num.split('').reverse().join('').replace(/([0-9]{3})/g, '$1_').split('').reverse().join('').replace(/^_/, '');
+
+(async () => {
+  let weightToFeeCoefficientOverride: string;
+  let minGasPriceOverride: string;
+  await usingApi(async (api, _privateKey) => {
+    weightToFeeCoefficientOverride = (await api.query.configuration.weightToFeeCoefficientOverride() as any).toBigInt().toString();
+    minGasPriceOverride = (await api.query.configuration.minGasPriceOverride() as any).toBigInt().toString();
+  });
+  const constantsFile = path.resolve(__dirname, '../../primitives/common/src/constants.rs');
+  let constants = (await readFile(constantsFile)).toString();
+
+  let weight2feeFound = false;
+  constants = constants.replace(/(\/\*<weight2fee>\*\/)[0-9_]+(\/\*<\/weight2fee>\*\/)/, (_f, p, s) => {
+    weight2feeFound = true;
+    return p+formatNumber(weightToFeeCoefficientOverride)+s;
+  });
+  if (!weight2feeFound) {
+    throw new Error('failed to find weight2fee marker in source code');
+  }
+
+  let minGasPriceFound = false;
+  constants = constants.replace(/(\/\*<mingasprice>\*\/)[0-9_]+(\/\*<\/mingasprice>\*\/)/, (_f, p, s) => {
+    minGasPriceFound = true;
+    return p+formatNumber(minGasPriceOverride)+s;
+  });
+  if (!minGasPriceFound) {
+    throw new Error('failed to find mingasprice marker in source code');
+  }
+
+  await writeFile(constantsFile, constants);
+})().catch(e => {
+  console.log(e.stack);
+});
modifiedtests/src/eth/base.test.tsdiffbeforeafterboth
--- a/tests/src/eth/base.test.ts
+++ b/tests/src/eth/base.test.ts
@@ -15,14 +15,14 @@
 // along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
 
 import {
-  collectionIdToAddress, 
-  createEthAccount, 
-  createEthAccountWithBalance, 
-  deployFlipper, 
-  ethBalanceViaSub, 
-  GAS_ARGS, 
-  itWeb3, 
-  recordEthFee, 
+  collectionIdToAddress,
+  createEthAccount,
+  createEthAccountWithBalance,
+  deployFlipper,
+  ethBalanceViaSub,
+  GAS_ARGS,
+  itWeb3,
+  recordEthFee,
   usingWeb3,
 } from './util/helpers';
 import {expect} from 'chai';
@@ -66,7 +66,7 @@
 
     const fee = Number(cost) / Number(UNIQUE);
     const expectedFee = 0.15;
-    const tolerance = 0.00002;
+    const tolerance = 0.001;
 
     expect(Math.abs(fee - expectedFee)).to.be.lessThan(tolerance);
   });
modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -42,6 +42,14 @@
        **/
       [key: string]: Codec;
     };
+    configuration: {
+      defaultMinGasPrice: u64 & AugmentedConst<ApiType>;
+      defaultWeightToFeeCoefficient: u32 & 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
@@ -173,7 +173,7 @@
        **/
       TransferNotAllowed: AugmentedError<ApiType>;
       /**
-       * Target collection doesn't support this operation
+       * The operation is not supported
        **/
       UnsupportedOperation: AugmentedError<ApiType>;
       /**
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -110,6 +110,14 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
+    configuration: {
+      minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
+      weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     dmpQueue: {
       /**
        * The configuration.
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -104,6 +104,14 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    configuration: {
+      setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | object | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
+      setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | object | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     cumulusXcm: {
       /**
        * Generic tx
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, 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, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, 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, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
 import type { Data, StorageKey } from '@polkadot/types';
 import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, 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';
@@ -763,6 +763,7 @@
     PalletCallMetadataV14: PalletCallMetadataV14;
     PalletCommonError: PalletCommonError;
     PalletCommonEvent: PalletCommonEvent;
+    PalletConfigurationCall: PalletConfigurationCall;
     PalletConstantMetadataLatest: PalletConstantMetadataLatest;
     PalletConstantMetadataV14: PalletConstantMetadataV14;
     PalletErrorMetadataLatest: PalletErrorMetadataLatest;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
before · tests/src/interfaces/default/types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11  readonly isServiceOverweight: boolean;12  readonly asServiceOverweight: {13    readonly index: u64;14    readonly weightLimit: u64;15  } & Struct;16  readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21  readonly maxIndividual: u64;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26  readonly isUnknown: boolean;27  readonly isOverLimit: boolean;28  readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33  readonly isInvalidFormat: boolean;34  readonly asInvalidFormat: {35    readonly messageId: U8aFixed;36  } & Struct;37  readonly isUnsupportedVersion: boolean;38  readonly asUnsupportedVersion: {39    readonly messageId: U8aFixed;40  } & Struct;41  readonly isExecutedDownward: boolean;42  readonly asExecutedDownward: {43    readonly messageId: U8aFixed;44    readonly outcome: XcmV2TraitsOutcome;45  } & Struct;46  readonly isWeightExhausted: boolean;47  readonly asWeightExhausted: {48    readonly messageId: U8aFixed;49    readonly remainingWeight: u64;50    readonly requiredWeight: u64;51  } & Struct;52  readonly isOverweightEnqueued: boolean;53  readonly asOverweightEnqueued: {54    readonly messageId: U8aFixed;55    readonly overweightIndex: u64;56    readonly requiredWeight: u64;57  } & Struct;58  readonly isOverweightServiced: boolean;59  readonly asOverweightServiced: {60    readonly overweightIndex: u64;61    readonly weightUsed: u64;62  } & Struct;63  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68  readonly beginUsed: u32;69  readonly endUsed: u32;70  readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75  readonly isSetValidationData: boolean;76  readonly asSetValidationData: {77    readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78  } & Struct;79  readonly isSudoSendUpwardMessage: boolean;80  readonly asSudoSendUpwardMessage: {81    readonly message: Bytes;82  } & Struct;83  readonly isAuthorizeUpgrade: boolean;84  readonly asAuthorizeUpgrade: {85    readonly codeHash: H256;86  } & Struct;87  readonly isEnactAuthorizedUpgrade: boolean;88  readonly asEnactAuthorizedUpgrade: {89    readonly code: Bytes;90  } & Struct;91  readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96  readonly isOverlappingUpgrades: boolean;97  readonly isProhibitedByPolkadot: boolean;98  readonly isTooBig: boolean;99  readonly isValidationDataNotAvailable: boolean;100  readonly isHostConfigurationNotAvailable: boolean;101  readonly isNotScheduled: boolean;102  readonly isNothingAuthorized: boolean;103  readonly isUnauthorized: boolean;104  readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109  readonly isValidationFunctionStored: boolean;110  readonly isValidationFunctionApplied: boolean;111  readonly asValidationFunctionApplied: {112    readonly relayChainBlockNum: u32;113  } & Struct;114  readonly isValidationFunctionDiscarded: boolean;115  readonly isUpgradeAuthorized: boolean;116  readonly asUpgradeAuthorized: {117    readonly codeHash: H256;118  } & Struct;119  readonly isDownwardMessagesReceived: boolean;120  readonly asDownwardMessagesReceived: {121    readonly count: u32;122  } & Struct;123  readonly isDownwardMessagesProcessed: boolean;124  readonly asDownwardMessagesProcessed: {125    readonly weightUsed: u64;126    readonly dmqHead: H256;127  } & Struct;128  readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133  readonly dmqMqcHead: H256;134  readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135  readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147  readonly isInvalidFormat: boolean;148  readonly asInvalidFormat: U8aFixed;149  readonly isUnsupportedVersion: boolean;150  readonly asUnsupportedVersion: U8aFixed;151  readonly isExecutedDownward: boolean;152  readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmOrigin */157export interface CumulusPalletXcmOrigin extends Enum {158  readonly isRelay: boolean;159  readonly isSiblingParachain: boolean;160  readonly asSiblingParachain: u32;161  readonly type: 'Relay' | 'SiblingParachain';162}163164/** @name CumulusPalletXcmpQueueCall */165export interface CumulusPalletXcmpQueueCall extends Enum {166  readonly isServiceOverweight: boolean;167  readonly asServiceOverweight: {168    readonly index: u64;169    readonly weightLimit: u64;170  } & Struct;171  readonly isSuspendXcmExecution: boolean;172  readonly isResumeXcmExecution: boolean;173  readonly isUpdateSuspendThreshold: boolean;174  readonly asUpdateSuspendThreshold: {175    readonly new_: u32;176  } & Struct;177  readonly isUpdateDropThreshold: boolean;178  readonly asUpdateDropThreshold: {179    readonly new_: u32;180  } & Struct;181  readonly isUpdateResumeThreshold: boolean;182  readonly asUpdateResumeThreshold: {183    readonly new_: u32;184  } & Struct;185  readonly isUpdateThresholdWeight: boolean;186  readonly asUpdateThresholdWeight: {187    readonly new_: u64;188  } & Struct;189  readonly isUpdateWeightRestrictDecay: boolean;190  readonly asUpdateWeightRestrictDecay: {191    readonly new_: u64;192  } & Struct;193  readonly isUpdateXcmpMaxIndividualWeight: boolean;194  readonly asUpdateXcmpMaxIndividualWeight: {195    readonly new_: u64;196  } & Struct;197  readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198}199200/** @name CumulusPalletXcmpQueueError */201export interface CumulusPalletXcmpQueueError extends Enum {202  readonly isFailedToSend: boolean;203  readonly isBadXcmOrigin: boolean;204  readonly isBadXcm: boolean;205  readonly isBadOverweightIndex: boolean;206  readonly isWeightOverLimit: boolean;207  readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';208}209210/** @name CumulusPalletXcmpQueueEvent */211export interface CumulusPalletXcmpQueueEvent extends Enum {212  readonly isSuccess: boolean;213  readonly asSuccess: Option<H256>;214  readonly isFail: boolean;215  readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;216  readonly isBadVersion: boolean;217  readonly asBadVersion: Option<H256>;218  readonly isBadFormat: boolean;219  readonly asBadFormat: Option<H256>;220  readonly isUpwardMessageSent: boolean;221  readonly asUpwardMessageSent: Option<H256>;222  readonly isXcmpMessageSent: boolean;223  readonly asXcmpMessageSent: Option<H256>;224  readonly isOverweightEnqueued: boolean;225  readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;226  readonly isOverweightServiced: boolean;227  readonly asOverweightServiced: ITuple<[u64, u64]>;228  readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';229}230231/** @name CumulusPalletXcmpQueueInboundChannelDetails */232export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {233  readonly sender: u32;234  readonly state: CumulusPalletXcmpQueueInboundState;235  readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;236}237238/** @name CumulusPalletXcmpQueueInboundState */239export interface CumulusPalletXcmpQueueInboundState extends Enum {240  readonly isOk: boolean;241  readonly isSuspended: boolean;242  readonly type: 'Ok' | 'Suspended';243}244245/** @name CumulusPalletXcmpQueueOutboundChannelDetails */246export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {247  readonly recipient: u32;248  readonly state: CumulusPalletXcmpQueueOutboundState;249  readonly signalsExist: bool;250  readonly firstIndex: u16;251  readonly lastIndex: u16;252}253254/** @name CumulusPalletXcmpQueueOutboundState */255export interface CumulusPalletXcmpQueueOutboundState extends Enum {256  readonly isOk: boolean;257  readonly isSuspended: boolean;258  readonly type: 'Ok' | 'Suspended';259}260261/** @name CumulusPalletXcmpQueueQueueConfigData */262export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {263  readonly suspendThreshold: u32;264  readonly dropThreshold: u32;265  readonly resumeThreshold: u32;266  readonly thresholdWeight: u64;267  readonly weightRestrictDecay: u64;268  readonly xcmpMaxIndividualWeight: u64;269}270271/** @name CumulusPrimitivesParachainInherentParachainInherentData */272export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {273  readonly validationData: PolkadotPrimitivesV2PersistedValidationData;274  readonly relayChainState: SpTrieStorageProof;275  readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;276  readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;277}278279/** @name EthbloomBloom */280export interface EthbloomBloom extends U8aFixed {}281282/** @name EthereumBlock */283export interface EthereumBlock extends Struct {284  readonly header: EthereumHeader;285  readonly transactions: Vec<EthereumTransactionTransactionV2>;286  readonly ommers: Vec<EthereumHeader>;287}288289/** @name EthereumHeader */290export interface EthereumHeader extends Struct {291  readonly parentHash: H256;292  readonly ommersHash: H256;293  readonly beneficiary: H160;294  readonly stateRoot: H256;295  readonly transactionsRoot: H256;296  readonly receiptsRoot: H256;297  readonly logsBloom: EthbloomBloom;298  readonly difficulty: U256;299  readonly number: U256;300  readonly gasLimit: U256;301  readonly gasUsed: U256;302  readonly timestamp: u64;303  readonly extraData: Bytes;304  readonly mixHash: H256;305  readonly nonce: EthereumTypesHashH64;306}307308/** @name EthereumLog */309export interface EthereumLog extends Struct {310  readonly address: H160;311  readonly topics: Vec<H256>;312  readonly data: Bytes;313}314315/** @name EthereumReceiptEip658ReceiptData */316export interface EthereumReceiptEip658ReceiptData extends Struct {317  readonly statusCode: u8;318  readonly usedGas: U256;319  readonly logsBloom: EthbloomBloom;320  readonly logs: Vec<EthereumLog>;321}322323/** @name EthereumReceiptReceiptV3 */324export interface EthereumReceiptReceiptV3 extends Enum {325  readonly isLegacy: boolean;326  readonly asLegacy: EthereumReceiptEip658ReceiptData;327  readonly isEip2930: boolean;328  readonly asEip2930: EthereumReceiptEip658ReceiptData;329  readonly isEip1559: boolean;330  readonly asEip1559: EthereumReceiptEip658ReceiptData;331  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';332}333334/** @name EthereumTransactionAccessListItem */335export interface EthereumTransactionAccessListItem extends Struct {336  readonly address: H160;337  readonly storageKeys: Vec<H256>;338}339340/** @name EthereumTransactionEip1559Transaction */341export interface EthereumTransactionEip1559Transaction extends Struct {342  readonly chainId: u64;343  readonly nonce: U256;344  readonly maxPriorityFeePerGas: U256;345  readonly maxFeePerGas: U256;346  readonly gasLimit: U256;347  readonly action: EthereumTransactionTransactionAction;348  readonly value: U256;349  readonly input: Bytes;350  readonly accessList: Vec<EthereumTransactionAccessListItem>;351  readonly oddYParity: bool;352  readonly r: H256;353  readonly s: H256;354}355356/** @name EthereumTransactionEip2930Transaction */357export interface EthereumTransactionEip2930Transaction extends Struct {358  readonly chainId: u64;359  readonly nonce: U256;360  readonly gasPrice: U256;361  readonly gasLimit: U256;362  readonly action: EthereumTransactionTransactionAction;363  readonly value: U256;364  readonly input: Bytes;365  readonly accessList: Vec<EthereumTransactionAccessListItem>;366  readonly oddYParity: bool;367  readonly r: H256;368  readonly s: H256;369}370371/** @name EthereumTransactionLegacyTransaction */372export interface EthereumTransactionLegacyTransaction extends Struct {373  readonly nonce: U256;374  readonly gasPrice: U256;375  readonly gasLimit: U256;376  readonly action: EthereumTransactionTransactionAction;377  readonly value: U256;378  readonly input: Bytes;379  readonly signature: EthereumTransactionTransactionSignature;380}381382/** @name EthereumTransactionTransactionAction */383export interface EthereumTransactionTransactionAction extends Enum {384  readonly isCall: boolean;385  readonly asCall: H160;386  readonly isCreate: boolean;387  readonly type: 'Call' | 'Create';388}389390/** @name EthereumTransactionTransactionSignature */391export interface EthereumTransactionTransactionSignature extends Struct {392  readonly v: u64;393  readonly r: H256;394  readonly s: H256;395}396397/** @name EthereumTransactionTransactionV2 */398export interface EthereumTransactionTransactionV2 extends Enum {399  readonly isLegacy: boolean;400  readonly asLegacy: EthereumTransactionLegacyTransaction;401  readonly isEip2930: boolean;402  readonly asEip2930: EthereumTransactionEip2930Transaction;403  readonly isEip1559: boolean;404  readonly asEip1559: EthereumTransactionEip1559Transaction;405  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';406}407408/** @name EthereumTypesHashH64 */409export interface EthereumTypesHashH64 extends U8aFixed {}410411/** @name EvmCoreErrorExitError */412export interface EvmCoreErrorExitError extends Enum {413  readonly isStackUnderflow: boolean;414  readonly isStackOverflow: boolean;415  readonly isInvalidJump: boolean;416  readonly isInvalidRange: boolean;417  readonly isDesignatedInvalid: boolean;418  readonly isCallTooDeep: boolean;419  readonly isCreateCollision: boolean;420  readonly isCreateContractLimit: boolean;421  readonly isOutOfOffset: boolean;422  readonly isOutOfGas: boolean;423  readonly isOutOfFund: boolean;424  readonly isPcUnderflow: boolean;425  readonly isCreateEmpty: boolean;426  readonly isOther: boolean;427  readonly asOther: Text;428  readonly isInvalidCode: boolean;429  readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';430}431432/** @name EvmCoreErrorExitFatal */433export interface EvmCoreErrorExitFatal extends Enum {434  readonly isNotSupported: boolean;435  readonly isUnhandledInterrupt: boolean;436  readonly isCallErrorAsFatal: boolean;437  readonly asCallErrorAsFatal: EvmCoreErrorExitError;438  readonly isOther: boolean;439  readonly asOther: Text;440  readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';441}442443/** @name EvmCoreErrorExitReason */444export interface EvmCoreErrorExitReason extends Enum {445  readonly isSucceed: boolean;446  readonly asSucceed: EvmCoreErrorExitSucceed;447  readonly isError: boolean;448  readonly asError: EvmCoreErrorExitError;449  readonly isRevert: boolean;450  readonly asRevert: EvmCoreErrorExitRevert;451  readonly isFatal: boolean;452  readonly asFatal: EvmCoreErrorExitFatal;453  readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';454}455456/** @name EvmCoreErrorExitRevert */457export interface EvmCoreErrorExitRevert extends Enum {458  readonly isReverted: boolean;459  readonly type: 'Reverted';460}461462/** @name EvmCoreErrorExitSucceed */463export interface EvmCoreErrorExitSucceed extends Enum {464  readonly isStopped: boolean;465  readonly isReturned: boolean;466  readonly isSuicided: boolean;467  readonly type: 'Stopped' | 'Returned' | 'Suicided';468}469470/** @name FpRpcTransactionStatus */471export interface FpRpcTransactionStatus extends Struct {472  readonly transactionHash: H256;473  readonly transactionIndex: u32;474  readonly from: H160;475  readonly to: Option<H160>;476  readonly contractAddress: Option<H160>;477  readonly logs: Vec<EthereumLog>;478  readonly logsBloom: EthbloomBloom;479}480481/** @name FrameSupportDispatchRawOrigin */482export interface FrameSupportDispatchRawOrigin extends Enum {483  readonly isRoot: boolean;484  readonly isSigned: boolean;485  readonly asSigned: AccountId32;486  readonly isNone: boolean;487  readonly type: 'Root' | 'Signed' | 'None';488}489490/** @name FrameSupportPalletId */491export interface FrameSupportPalletId extends U8aFixed {}492493/** @name FrameSupportScheduleLookupError */494export interface FrameSupportScheduleLookupError extends Enum {495  readonly isUnknown: boolean;496  readonly isBadFormat: boolean;497  readonly type: 'Unknown' | 'BadFormat';498}499500/** @name FrameSupportScheduleMaybeHashed */501export interface FrameSupportScheduleMaybeHashed extends Enum {502  readonly isValue: boolean;503  readonly asValue: Call;504  readonly isHash: boolean;505  readonly asHash: H256;506  readonly type: 'Value' | 'Hash';507}508509/** @name FrameSupportTokensMiscBalanceStatus */510export interface FrameSupportTokensMiscBalanceStatus extends Enum {511  readonly isFree: boolean;512  readonly isReserved: boolean;513  readonly type: 'Free' | 'Reserved';514}515516/** @name FrameSupportWeightsDispatchClass */517export interface FrameSupportWeightsDispatchClass extends Enum {518  readonly isNormal: boolean;519  readonly isOperational: boolean;520  readonly isMandatory: boolean;521  readonly type: 'Normal' | 'Operational' | 'Mandatory';522}523524/** @name FrameSupportWeightsDispatchInfo */525export interface FrameSupportWeightsDispatchInfo extends Struct {526  readonly weight: u64;527  readonly class: FrameSupportWeightsDispatchClass;528  readonly paysFee: FrameSupportWeightsPays;529}530531/** @name FrameSupportWeightsPays */532export interface FrameSupportWeightsPays extends Enum {533  readonly isYes: boolean;534  readonly isNo: boolean;535  readonly type: 'Yes' | 'No';536}537538/** @name FrameSupportWeightsPerDispatchClassU32 */539export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {540  readonly normal: u32;541  readonly operational: u32;542  readonly mandatory: u32;543}544545/** @name FrameSupportWeightsPerDispatchClassU64 */546export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {547  readonly normal: u64;548  readonly operational: u64;549  readonly mandatory: u64;550}551552/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */553export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {554  readonly normal: FrameSystemLimitsWeightsPerClass;555  readonly operational: FrameSystemLimitsWeightsPerClass;556  readonly mandatory: FrameSystemLimitsWeightsPerClass;557}558559/** @name FrameSupportWeightsRuntimeDbWeight */560export interface FrameSupportWeightsRuntimeDbWeight extends Struct {561  readonly read: u64;562  readonly write: u64;563}564565/** @name FrameSystemAccountInfo */566export interface FrameSystemAccountInfo extends Struct {567  readonly nonce: u32;568  readonly consumers: u32;569  readonly providers: u32;570  readonly sufficients: u32;571  readonly data: PalletBalancesAccountData;572}573574/** @name FrameSystemCall */575export interface FrameSystemCall extends Enum {576  readonly isFillBlock: boolean;577  readonly asFillBlock: {578    readonly ratio: Perbill;579  } & Struct;580  readonly isRemark: boolean;581  readonly asRemark: {582    readonly remark: Bytes;583  } & Struct;584  readonly isSetHeapPages: boolean;585  readonly asSetHeapPages: {586    readonly pages: u64;587  } & Struct;588  readonly isSetCode: boolean;589  readonly asSetCode: {590    readonly code: Bytes;591  } & Struct;592  readonly isSetCodeWithoutChecks: boolean;593  readonly asSetCodeWithoutChecks: {594    readonly code: Bytes;595  } & Struct;596  readonly isSetStorage: boolean;597  readonly asSetStorage: {598    readonly items: Vec<ITuple<[Bytes, Bytes]>>;599  } & Struct;600  readonly isKillStorage: boolean;601  readonly asKillStorage: {602    readonly keys_: Vec<Bytes>;603  } & Struct;604  readonly isKillPrefix: boolean;605  readonly asKillPrefix: {606    readonly prefix: Bytes;607    readonly subkeys: u32;608  } & Struct;609  readonly isRemarkWithEvent: boolean;610  readonly asRemarkWithEvent: {611    readonly remark: Bytes;612  } & Struct;613  readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';614}615616/** @name FrameSystemError */617export interface FrameSystemError extends Enum {618  readonly isInvalidSpecName: boolean;619  readonly isSpecVersionNeedsToIncrease: boolean;620  readonly isFailedToExtractRuntimeVersion: boolean;621  readonly isNonDefaultComposite: boolean;622  readonly isNonZeroRefCount: boolean;623  readonly isCallFiltered: boolean;624  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';625}626627/** @name FrameSystemEvent */628export interface FrameSystemEvent extends Enum {629  readonly isExtrinsicSuccess: boolean;630  readonly asExtrinsicSuccess: {631    readonly dispatchInfo: FrameSupportWeightsDispatchInfo;632  } & Struct;633  readonly isExtrinsicFailed: boolean;634  readonly asExtrinsicFailed: {635    readonly dispatchError: SpRuntimeDispatchError;636    readonly dispatchInfo: FrameSupportWeightsDispatchInfo;637  } & Struct;638  readonly isCodeUpdated: boolean;639  readonly isNewAccount: boolean;640  readonly asNewAccount: {641    readonly account: AccountId32;642  } & Struct;643  readonly isKilledAccount: boolean;644  readonly asKilledAccount: {645    readonly account: AccountId32;646  } & Struct;647  readonly isRemarked: boolean;648  readonly asRemarked: {649    readonly sender: AccountId32;650    readonly hash_: H256;651  } & Struct;652  readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';653}654655/** @name FrameSystemEventRecord */656export interface FrameSystemEventRecord extends Struct {657  readonly phase: FrameSystemPhase;658  readonly event: Event;659  readonly topics: Vec<H256>;660}661662/** @name FrameSystemExtensionsCheckGenesis */663export interface FrameSystemExtensionsCheckGenesis extends Null {}664665/** @name FrameSystemExtensionsCheckNonce */666export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}667668/** @name FrameSystemExtensionsCheckSpecVersion */669export interface FrameSystemExtensionsCheckSpecVersion extends Null {}670671/** @name FrameSystemExtensionsCheckWeight */672export interface FrameSystemExtensionsCheckWeight extends Null {}673674/** @name FrameSystemLastRuntimeUpgradeInfo */675export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {676  readonly specVersion: Compact<u32>;677  readonly specName: Text;678}679680/** @name FrameSystemLimitsBlockLength */681export interface FrameSystemLimitsBlockLength extends Struct {682  readonly max: FrameSupportWeightsPerDispatchClassU32;683}684685/** @name FrameSystemLimitsBlockWeights */686export interface FrameSystemLimitsBlockWeights extends Struct {687  readonly baseBlock: u64;688  readonly maxBlock: u64;689  readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;690}691692/** @name FrameSystemLimitsWeightsPerClass */693export interface FrameSystemLimitsWeightsPerClass extends Struct {694  readonly baseExtrinsic: u64;695  readonly maxExtrinsic: Option<u64>;696  readonly maxTotal: Option<u64>;697  readonly reserved: Option<u64>;698}699700/** @name FrameSystemPhase */701export interface FrameSystemPhase extends Enum {702  readonly isApplyExtrinsic: boolean;703  readonly asApplyExtrinsic: u32;704  readonly isFinalization: boolean;705  readonly isInitialization: boolean;706  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';707}708709/** @name OpalRuntimeOriginCaller */710export interface OpalRuntimeOriginCaller extends Enum {711  readonly isVoid: boolean;712  readonly asVoid: SpCoreVoid;713  readonly isSystem: boolean;714  readonly asSystem: FrameSupportDispatchRawOrigin;715  readonly isPolkadotXcm: boolean;716  readonly asPolkadotXcm: PalletXcmOrigin;717  readonly isCumulusXcm: boolean;718  readonly asCumulusXcm: CumulusPalletXcmOrigin;719  readonly isEthereum: boolean;720  readonly asEthereum: PalletEthereumRawOrigin;721  readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';722}723724/** @name OpalRuntimeRuntime */725export interface OpalRuntimeRuntime extends Null {}726727/** @name OrmlVestingModuleCall */728export interface OrmlVestingModuleCall extends Enum {729  readonly isClaim: boolean;730  readonly isVestedTransfer: boolean;731  readonly asVestedTransfer: {732    readonly dest: MultiAddress;733    readonly schedule: OrmlVestingVestingSchedule;734  } & Struct;735  readonly isUpdateVestingSchedules: boolean;736  readonly asUpdateVestingSchedules: {737    readonly who: MultiAddress;738    readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;739  } & Struct;740  readonly isClaimFor: boolean;741  readonly asClaimFor: {742    readonly dest: MultiAddress;743  } & Struct;744  readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';745}746747/** @name OrmlVestingModuleError */748export interface OrmlVestingModuleError extends Enum {749  readonly isZeroVestingPeriod: boolean;750  readonly isZeroVestingPeriodCount: boolean;751  readonly isInsufficientBalanceToLock: boolean;752  readonly isTooManyVestingSchedules: boolean;753  readonly isAmountLow: boolean;754  readonly isMaxVestingSchedulesExceeded: boolean;755  readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';756}757758/** @name OrmlVestingModuleEvent */759export interface OrmlVestingModuleEvent extends Enum {760  readonly isVestingScheduleAdded: boolean;761  readonly asVestingScheduleAdded: {762    readonly from: AccountId32;763    readonly to: AccountId32;764    readonly vestingSchedule: OrmlVestingVestingSchedule;765  } & Struct;766  readonly isClaimed: boolean;767  readonly asClaimed: {768    readonly who: AccountId32;769    readonly amount: u128;770  } & Struct;771  readonly isVestingSchedulesUpdated: boolean;772  readonly asVestingSchedulesUpdated: {773    readonly who: AccountId32;774  } & Struct;775  readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';776}777778/** @name OrmlVestingVestingSchedule */779export interface OrmlVestingVestingSchedule extends Struct {780  readonly start: u32;781  readonly period: u32;782  readonly periodCount: u32;783  readonly perPeriod: Compact<u128>;784}785786/** @name PalletBalancesAccountData */787export interface PalletBalancesAccountData extends Struct {788  readonly free: u128;789  readonly reserved: u128;790  readonly miscFrozen: u128;791  readonly feeFrozen: u128;792}793794/** @name PalletBalancesBalanceLock */795export interface PalletBalancesBalanceLock extends Struct {796  readonly id: U8aFixed;797  readonly amount: u128;798  readonly reasons: PalletBalancesReasons;799}800801/** @name PalletBalancesCall */802export interface PalletBalancesCall extends Enum {803  readonly isTransfer: boolean;804  readonly asTransfer: {805    readonly dest: MultiAddress;806    readonly value: Compact<u128>;807  } & Struct;808  readonly isSetBalance: boolean;809  readonly asSetBalance: {810    readonly who: MultiAddress;811    readonly newFree: Compact<u128>;812    readonly newReserved: Compact<u128>;813  } & Struct;814  readonly isForceTransfer: boolean;815  readonly asForceTransfer: {816    readonly source: MultiAddress;817    readonly dest: MultiAddress;818    readonly value: Compact<u128>;819  } & Struct;820  readonly isTransferKeepAlive: boolean;821  readonly asTransferKeepAlive: {822    readonly dest: MultiAddress;823    readonly value: Compact<u128>;824  } & Struct;825  readonly isTransferAll: boolean;826  readonly asTransferAll: {827    readonly dest: MultiAddress;828    readonly keepAlive: bool;829  } & Struct;830  readonly isForceUnreserve: boolean;831  readonly asForceUnreserve: {832    readonly who: MultiAddress;833    readonly amount: u128;834  } & Struct;835  readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';836}837838/** @name PalletBalancesError */839export interface PalletBalancesError extends Enum {840  readonly isVestingBalance: boolean;841  readonly isLiquidityRestrictions: boolean;842  readonly isInsufficientBalance: boolean;843  readonly isExistentialDeposit: boolean;844  readonly isKeepAlive: boolean;845  readonly isExistingVestingSchedule: boolean;846  readonly isDeadAccount: boolean;847  readonly isTooManyReserves: boolean;848  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';849}850851/** @name PalletBalancesEvent */852export interface PalletBalancesEvent extends Enum {853  readonly isEndowed: boolean;854  readonly asEndowed: {855    readonly account: AccountId32;856    readonly freeBalance: u128;857  } & Struct;858  readonly isDustLost: boolean;859  readonly asDustLost: {860    readonly account: AccountId32;861    readonly amount: u128;862  } & Struct;863  readonly isTransfer: boolean;864  readonly asTransfer: {865    readonly from: AccountId32;866    readonly to: AccountId32;867    readonly amount: u128;868  } & Struct;869  readonly isBalanceSet: boolean;870  readonly asBalanceSet: {871    readonly who: AccountId32;872    readonly free: u128;873    readonly reserved: u128;874  } & Struct;875  readonly isReserved: boolean;876  readonly asReserved: {877    readonly who: AccountId32;878    readonly amount: u128;879  } & Struct;880  readonly isUnreserved: boolean;881  readonly asUnreserved: {882    readonly who: AccountId32;883    readonly amount: u128;884  } & Struct;885  readonly isReserveRepatriated: boolean;886  readonly asReserveRepatriated: {887    readonly from: AccountId32;888    readonly to: AccountId32;889    readonly amount: u128;890    readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;891  } & Struct;892  readonly isDeposit: boolean;893  readonly asDeposit: {894    readonly who: AccountId32;895    readonly amount: u128;896  } & Struct;897  readonly isWithdraw: boolean;898  readonly asWithdraw: {899    readonly who: AccountId32;900    readonly amount: u128;901  } & Struct;902  readonly isSlashed: boolean;903  readonly asSlashed: {904    readonly who: AccountId32;905    readonly amount: u128;906  } & Struct;907  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';908}909910/** @name PalletBalancesReasons */911export interface PalletBalancesReasons extends Enum {912  readonly isFee: boolean;913  readonly isMisc: boolean;914  readonly isAll: boolean;915  readonly type: 'Fee' | 'Misc' | 'All';916}917918/** @name PalletBalancesReleases */919export interface PalletBalancesReleases extends Enum {920  readonly isV100: boolean;921  readonly isV200: boolean;922  readonly type: 'V100' | 'V200';923}924925/** @name PalletBalancesReserveData */926export interface PalletBalancesReserveData extends Struct {927  readonly id: U8aFixed;928  readonly amount: u128;929}930931/** @name PalletCommonError */932export interface PalletCommonError extends Enum {933  readonly isCollectionNotFound: boolean;934  readonly isMustBeTokenOwner: boolean;935  readonly isNoPermission: boolean;936  readonly isCantDestroyNotEmptyCollection: boolean;937  readonly isPublicMintingNotAllowed: boolean;938  readonly isAddressNotInAllowlist: boolean;939  readonly isCollectionNameLimitExceeded: boolean;940  readonly isCollectionDescriptionLimitExceeded: boolean;941  readonly isCollectionTokenPrefixLimitExceeded: boolean;942  readonly isTotalCollectionsLimitExceeded: boolean;943  readonly isCollectionAdminCountExceeded: boolean;944  readonly isCollectionLimitBoundsExceeded: boolean;945  readonly isOwnerPermissionsCantBeReverted: boolean;946  readonly isTransferNotAllowed: boolean;947  readonly isAccountTokenLimitExceeded: boolean;948  readonly isCollectionTokenLimitExceeded: boolean;949  readonly isMetadataFlagFrozen: boolean;950  readonly isTokenNotFound: boolean;951  readonly isTokenValueTooLow: boolean;952  readonly isApprovedValueTooLow: boolean;953  readonly isCantApproveMoreThanOwned: boolean;954  readonly isAddressIsZero: boolean;955  readonly isUnsupportedOperation: boolean;956  readonly isNotSufficientFounds: boolean;957  readonly isUserIsNotAllowedToNest: boolean;958  readonly isSourceCollectionIsNotAllowedToNest: boolean;959  readonly isCollectionFieldSizeExceeded: boolean;960  readonly isNoSpaceForProperty: boolean;961  readonly isPropertyLimitReached: boolean;962  readonly isPropertyKeyIsTooLong: boolean;963  readonly isInvalidCharacterInPropertyKey: boolean;964  readonly isEmptyPropertyKey: boolean;965  readonly isCollectionIsExternal: boolean;966  readonly isCollectionIsInternal: boolean;967  readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';968}969970/** @name PalletCommonEvent */971export interface PalletCommonEvent extends Enum {972  readonly isCollectionCreated: boolean;973  readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;974  readonly isCollectionDestroyed: boolean;975  readonly asCollectionDestroyed: u32;976  readonly isItemCreated: boolean;977  readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;978  readonly isItemDestroyed: boolean;979  readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;980  readonly isTransfer: boolean;981  readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;982  readonly isApproved: boolean;983  readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;984  readonly isCollectionPropertySet: boolean;985  readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;986  readonly isCollectionPropertyDeleted: boolean;987  readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;988  readonly isTokenPropertySet: boolean;989  readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;990  readonly isTokenPropertyDeleted: boolean;991  readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;992  readonly isPropertyPermissionSet: boolean;993  readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;994  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';995}996997/** @name PalletEthereumCall */998export interface PalletEthereumCall extends Enum {999  readonly isTransact: boolean;1000  readonly asTransact: {1001    readonly transaction: EthereumTransactionTransactionV2;1002  } & Struct;1003  readonly type: 'Transact';1004}10051006/** @name PalletEthereumError */1007export interface PalletEthereumError extends Enum {1008  readonly isInvalidSignature: boolean;1009  readonly isPreLogExists: boolean;1010  readonly type: 'InvalidSignature' | 'PreLogExists';1011}10121013/** @name PalletEthereumEvent */1014export interface PalletEthereumEvent extends Enum {1015  readonly isExecuted: boolean;1016  readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1017  readonly type: 'Executed';1018}10191020/** @name PalletEthereumFakeTransactionFinalizer */1021export interface PalletEthereumFakeTransactionFinalizer extends Null {}10221023/** @name PalletEthereumRawOrigin */1024export interface PalletEthereumRawOrigin extends Enum {1025  readonly isEthereumTransaction: boolean;1026  readonly asEthereumTransaction: H160;1027  readonly type: 'EthereumTransaction';1028}10291030/** @name PalletEvmAccountBasicCrossAccountIdRepr */1031export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1032  readonly isSubstrate: boolean;1033  readonly asSubstrate: AccountId32;1034  readonly isEthereum: boolean;1035  readonly asEthereum: H160;1036  readonly type: 'Substrate' | 'Ethereum';1037}10381039/** @name PalletEvmCall */1040export interface PalletEvmCall extends Enum {1041  readonly isWithdraw: boolean;1042  readonly asWithdraw: {1043    readonly address: H160;1044    readonly value: u128;1045  } & Struct;1046  readonly isCall: boolean;1047  readonly asCall: {1048    readonly source: H160;1049    readonly target: H160;1050    readonly input: Bytes;1051    readonly value: U256;1052    readonly gasLimit: u64;1053    readonly maxFeePerGas: U256;1054    readonly maxPriorityFeePerGas: Option<U256>;1055    readonly nonce: Option<U256>;1056    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1057  } & Struct;1058  readonly isCreate: boolean;1059  readonly asCreate: {1060    readonly source: H160;1061    readonly init: Bytes;1062    readonly value: U256;1063    readonly gasLimit: u64;1064    readonly maxFeePerGas: U256;1065    readonly maxPriorityFeePerGas: Option<U256>;1066    readonly nonce: Option<U256>;1067    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1068  } & Struct;1069  readonly isCreate2: boolean;1070  readonly asCreate2: {1071    readonly source: H160;1072    readonly init: Bytes;1073    readonly salt: H256;1074    readonly value: U256;1075    readonly gasLimit: u64;1076    readonly maxFeePerGas: U256;1077    readonly maxPriorityFeePerGas: Option<U256>;1078    readonly nonce: Option<U256>;1079    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1080  } & Struct;1081  readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1082}10831084/** @name PalletEvmCoderSubstrateError */1085export interface PalletEvmCoderSubstrateError extends Enum {1086  readonly isOutOfGas: boolean;1087  readonly isOutOfFund: boolean;1088  readonly type: 'OutOfGas' | 'OutOfFund';1089}10901091/** @name PalletEvmContractHelpersError */1092export interface PalletEvmContractHelpersError extends Enum {1093  readonly isNoPermission: boolean;1094  readonly type: 'NoPermission';1095}10961097/** @name PalletEvmContractHelpersSponsoringModeT */1098export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1099  readonly isDisabled: boolean;1100  readonly isAllowlisted: boolean;1101  readonly isGenerous: boolean;1102  readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1103}11041105/** @name PalletEvmError */1106export interface PalletEvmError extends Enum {1107  readonly isBalanceLow: boolean;1108  readonly isFeeOverflow: boolean;1109  readonly isPaymentOverflow: boolean;1110  readonly isWithdrawFailed: boolean;1111  readonly isGasPriceTooLow: boolean;1112  readonly isInvalidNonce: boolean;1113  readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';1114}11151116/** @name PalletEvmEvent */1117export interface PalletEvmEvent extends Enum {1118  readonly isLog: boolean;1119  readonly asLog: EthereumLog;1120  readonly isCreated: boolean;1121  readonly asCreated: H160;1122  readonly isCreatedFailed: boolean;1123  readonly asCreatedFailed: H160;1124  readonly isExecuted: boolean;1125  readonly asExecuted: H160;1126  readonly isExecutedFailed: boolean;1127  readonly asExecutedFailed: H160;1128  readonly isBalanceDeposit: boolean;1129  readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1130  readonly isBalanceWithdraw: boolean;1131  readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1132  readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1133}11341135/** @name PalletEvmMigrationCall */1136export interface PalletEvmMigrationCall extends Enum {1137  readonly isBegin: boolean;1138  readonly asBegin: {1139    readonly address: H160;1140  } & Struct;1141  readonly isSetData: boolean;1142  readonly asSetData: {1143    readonly address: H160;1144    readonly data: Vec<ITuple<[H256, H256]>>;1145  } & Struct;1146  readonly isFinish: boolean;1147  readonly asFinish: {1148    readonly address: H160;1149    readonly code: Bytes;1150  } & Struct;1151  readonly type: 'Begin' | 'SetData' | 'Finish';1152}11531154/** @name PalletEvmMigrationError */1155export interface PalletEvmMigrationError extends Enum {1156  readonly isAccountNotEmpty: boolean;1157  readonly isAccountIsNotMigrating: boolean;1158  readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1159}11601161/** @name PalletFungibleError */1162export interface PalletFungibleError extends Enum {1163  readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1164  readonly isFungibleItemsHaveNoId: boolean;1165  readonly isFungibleItemsDontHaveData: boolean;1166  readonly isFungibleDisallowsNesting: boolean;1167  readonly isSettingPropertiesNotAllowed: boolean;1168  readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1169}11701171/** @name PalletInflationCall */1172export interface PalletInflationCall extends Enum {1173  readonly isStartInflation: boolean;1174  readonly asStartInflation: {1175    readonly inflationStartRelayBlock: u32;1176  } & Struct;1177  readonly type: 'StartInflation';1178}11791180/** @name PalletNonfungibleError */1181export interface PalletNonfungibleError extends Enum {1182  readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1183  readonly isNonfungibleItemsHaveNoAmount: boolean;1184  readonly isCantBurnNftWithChildren: boolean;1185  readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1186}11871188/** @name PalletNonfungibleItemData */1189export interface PalletNonfungibleItemData extends Struct {1190  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1191}11921193/** @name PalletRefungibleError */1194export interface PalletRefungibleError extends Enum {1195  readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1196  readonly isWrongRefungiblePieces: boolean;1197  readonly isRepartitionWhileNotOwningAllPieces: boolean;1198  readonly isRefungibleDisallowsNesting: boolean;1199  readonly isSettingPropertiesNotAllowed: boolean;1200  readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1201}12021203/** @name PalletRefungibleItemData */1204export interface PalletRefungibleItemData extends Struct {1205  readonly constData: Bytes;1206}12071208/** @name PalletRmrkCoreCall */1209export interface PalletRmrkCoreCall extends Enum {1210  readonly isCreateCollection: boolean;1211  readonly asCreateCollection: {1212    readonly metadata: Bytes;1213    readonly max: Option<u32>;1214    readonly symbol: Bytes;1215  } & Struct;1216  readonly isDestroyCollection: boolean;1217  readonly asDestroyCollection: {1218    readonly collectionId: u32;1219  } & Struct;1220  readonly isChangeCollectionIssuer: boolean;1221  readonly asChangeCollectionIssuer: {1222    readonly collectionId: u32;1223    readonly newIssuer: MultiAddress;1224  } & Struct;1225  readonly isLockCollection: boolean;1226  readonly asLockCollection: {1227    readonly collectionId: u32;1228  } & Struct;1229  readonly isMintNft: boolean;1230  readonly asMintNft: {1231    readonly owner: Option<AccountId32>;1232    readonly collectionId: u32;1233    readonly recipient: Option<AccountId32>;1234    readonly royaltyAmount: Option<Permill>;1235    readonly metadata: Bytes;1236    readonly transferable: bool;1237    readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1238  } & Struct;1239  readonly isBurnNft: boolean;1240  readonly asBurnNft: {1241    readonly collectionId: u32;1242    readonly nftId: u32;1243    readonly maxBurns: u32;1244  } & Struct;1245  readonly isSend: boolean;1246  readonly asSend: {1247    readonly rmrkCollectionId: u32;1248    readonly rmrkNftId: u32;1249    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1250  } & Struct;1251  readonly isAcceptNft: boolean;1252  readonly asAcceptNft: {1253    readonly rmrkCollectionId: u32;1254    readonly rmrkNftId: u32;1255    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1256  } & Struct;1257  readonly isRejectNft: boolean;1258  readonly asRejectNft: {1259    readonly rmrkCollectionId: u32;1260    readonly rmrkNftId: u32;1261  } & Struct;1262  readonly isAcceptResource: boolean;1263  readonly asAcceptResource: {1264    readonly rmrkCollectionId: u32;1265    readonly rmrkNftId: u32;1266    readonly resourceId: u32;1267  } & Struct;1268  readonly isAcceptResourceRemoval: boolean;1269  readonly asAcceptResourceRemoval: {1270    readonly rmrkCollectionId: u32;1271    readonly rmrkNftId: u32;1272    readonly resourceId: u32;1273  } & Struct;1274  readonly isSetProperty: boolean;1275  readonly asSetProperty: {1276    readonly rmrkCollectionId: Compact<u32>;1277    readonly maybeNftId: Option<u32>;1278    readonly key: Bytes;1279    readonly value: Bytes;1280  } & Struct;1281  readonly isSetPriority: boolean;1282  readonly asSetPriority: {1283    readonly rmrkCollectionId: u32;1284    readonly rmrkNftId: u32;1285    readonly priorities: Vec<u32>;1286  } & Struct;1287  readonly isAddBasicResource: boolean;1288  readonly asAddBasicResource: {1289    readonly rmrkCollectionId: u32;1290    readonly nftId: u32;1291    readonly resource: RmrkTraitsResourceBasicResource;1292  } & Struct;1293  readonly isAddComposableResource: boolean;1294  readonly asAddComposableResource: {1295    readonly rmrkCollectionId: u32;1296    readonly nftId: u32;1297    readonly resource: RmrkTraitsResourceComposableResource;1298  } & Struct;1299  readonly isAddSlotResource: boolean;1300  readonly asAddSlotResource: {1301    readonly rmrkCollectionId: u32;1302    readonly nftId: u32;1303    readonly resource: RmrkTraitsResourceSlotResource;1304  } & Struct;1305  readonly isRemoveResource: boolean;1306  readonly asRemoveResource: {1307    readonly rmrkCollectionId: u32;1308    readonly nftId: u32;1309    readonly resourceId: u32;1310  } & Struct;1311  readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1312}13131314/** @name PalletRmrkCoreError */1315export interface PalletRmrkCoreError extends Enum {1316  readonly isCorruptedCollectionType: boolean;1317  readonly isRmrkPropertyKeyIsTooLong: boolean;1318  readonly isRmrkPropertyValueIsTooLong: boolean;1319  readonly isRmrkPropertyIsNotFound: boolean;1320  readonly isUnableToDecodeRmrkData: boolean;1321  readonly isCollectionNotEmpty: boolean;1322  readonly isNoAvailableCollectionId: boolean;1323  readonly isNoAvailableNftId: boolean;1324  readonly isCollectionUnknown: boolean;1325  readonly isNoPermission: boolean;1326  readonly isNonTransferable: boolean;1327  readonly isCollectionFullOrLocked: boolean;1328  readonly isResourceDoesntExist: boolean;1329  readonly isCannotSendToDescendentOrSelf: boolean;1330  readonly isCannotAcceptNonOwnedNft: boolean;1331  readonly isCannotRejectNonOwnedNft: boolean;1332  readonly isCannotRejectNonPendingNft: boolean;1333  readonly isResourceNotPending: boolean;1334  readonly isNoAvailableResourceId: boolean;1335  readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1336}13371338/** @name PalletRmrkCoreEvent */1339export interface PalletRmrkCoreEvent extends Enum {1340  readonly isCollectionCreated: boolean;1341  readonly asCollectionCreated: {1342    readonly issuer: AccountId32;1343    readonly collectionId: u32;1344  } & Struct;1345  readonly isCollectionDestroyed: boolean;1346  readonly asCollectionDestroyed: {1347    readonly issuer: AccountId32;1348    readonly collectionId: u32;1349  } & Struct;1350  readonly isIssuerChanged: boolean;1351  readonly asIssuerChanged: {1352    readonly oldIssuer: AccountId32;1353    readonly newIssuer: AccountId32;1354    readonly collectionId: u32;1355  } & Struct;1356  readonly isCollectionLocked: boolean;1357  readonly asCollectionLocked: {1358    readonly issuer: AccountId32;1359    readonly collectionId: u32;1360  } & Struct;1361  readonly isNftMinted: boolean;1362  readonly asNftMinted: {1363    readonly owner: AccountId32;1364    readonly collectionId: u32;1365    readonly nftId: u32;1366  } & Struct;1367  readonly isNftBurned: boolean;1368  readonly asNftBurned: {1369    readonly owner: AccountId32;1370    readonly nftId: u32;1371  } & Struct;1372  readonly isNftSent: boolean;1373  readonly asNftSent: {1374    readonly sender: AccountId32;1375    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1376    readonly collectionId: u32;1377    readonly nftId: u32;1378    readonly approvalRequired: bool;1379  } & Struct;1380  readonly isNftAccepted: boolean;1381  readonly asNftAccepted: {1382    readonly sender: AccountId32;1383    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1384    readonly collectionId: u32;1385    readonly nftId: u32;1386  } & Struct;1387  readonly isNftRejected: boolean;1388  readonly asNftRejected: {1389    readonly sender: AccountId32;1390    readonly collectionId: u32;1391    readonly nftId: u32;1392  } & Struct;1393  readonly isPropertySet: boolean;1394  readonly asPropertySet: {1395    readonly collectionId: u32;1396    readonly maybeNftId: Option<u32>;1397    readonly key: Bytes;1398    readonly value: Bytes;1399  } & Struct;1400  readonly isResourceAdded: boolean;1401  readonly asResourceAdded: {1402    readonly nftId: u32;1403    readonly resourceId: u32;1404  } & Struct;1405  readonly isResourceRemoval: boolean;1406  readonly asResourceRemoval: {1407    readonly nftId: u32;1408    readonly resourceId: u32;1409  } & Struct;1410  readonly isResourceAccepted: boolean;1411  readonly asResourceAccepted: {1412    readonly nftId: u32;1413    readonly resourceId: u32;1414  } & Struct;1415  readonly isResourceRemovalAccepted: boolean;1416  readonly asResourceRemovalAccepted: {1417    readonly nftId: u32;1418    readonly resourceId: u32;1419  } & Struct;1420  readonly isPrioritySet: boolean;1421  readonly asPrioritySet: {1422    readonly collectionId: u32;1423    readonly nftId: u32;1424  } & Struct;1425  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1426}14271428/** @name PalletRmrkEquipCall */1429export interface PalletRmrkEquipCall extends Enum {1430  readonly isCreateBase: boolean;1431  readonly asCreateBase: {1432    readonly baseType: Bytes;1433    readonly symbol: Bytes;1434    readonly parts: Vec<RmrkTraitsPartPartType>;1435  } & Struct;1436  readonly isThemeAdd: boolean;1437  readonly asThemeAdd: {1438    readonly baseId: u32;1439    readonly theme: RmrkTraitsTheme;1440  } & Struct;1441  readonly isEquippable: boolean;1442  readonly asEquippable: {1443    readonly baseId: u32;1444    readonly slotId: u32;1445    readonly equippables: RmrkTraitsPartEquippableList;1446  } & Struct;1447  readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1448}14491450/** @name PalletRmrkEquipError */1451export interface PalletRmrkEquipError extends Enum {1452  readonly isPermissionError: boolean;1453  readonly isNoAvailableBaseId: boolean;1454  readonly isNoAvailablePartId: boolean;1455  readonly isBaseDoesntExist: boolean;1456  readonly isNeedsDefaultThemeFirst: boolean;1457  readonly isPartDoesntExist: boolean;1458  readonly isNoEquippableOnFixedPart: boolean;1459  readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1460}14611462/** @name PalletRmrkEquipEvent */1463export interface PalletRmrkEquipEvent extends Enum {1464  readonly isBaseCreated: boolean;1465  readonly asBaseCreated: {1466    readonly issuer: AccountId32;1467    readonly baseId: u32;1468  } & Struct;1469  readonly isEquippablesUpdated: boolean;1470  readonly asEquippablesUpdated: {1471    readonly baseId: u32;1472    readonly slotId: u32;1473  } & Struct;1474  readonly type: 'BaseCreated' | 'EquippablesUpdated';1475}14761477/** @name PalletStructureCall */1478export interface PalletStructureCall extends Null {}14791480/** @name PalletStructureError */1481export interface PalletStructureError extends Enum {1482  readonly isOuroborosDetected: boolean;1483  readonly isDepthLimit: boolean;1484  readonly isBreadthLimit: boolean;1485  readonly isTokenNotFound: boolean;1486  readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1487}14881489/** @name PalletStructureEvent */1490export interface PalletStructureEvent extends Enum {1491  readonly isExecuted: boolean;1492  readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1493  readonly type: 'Executed';1494}14951496/** @name PalletSudoCall */1497export interface PalletSudoCall extends Enum {1498  readonly isSudo: boolean;1499  readonly asSudo: {1500    readonly call: Call;1501  } & Struct;1502  readonly isSudoUncheckedWeight: boolean;1503  readonly asSudoUncheckedWeight: {1504    readonly call: Call;1505    readonly weight: u64;1506  } & Struct;1507  readonly isSetKey: boolean;1508  readonly asSetKey: {1509    readonly new_: MultiAddress;1510  } & Struct;1511  readonly isSudoAs: boolean;1512  readonly asSudoAs: {1513    readonly who: MultiAddress;1514    readonly call: Call;1515  } & Struct;1516  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1517}15181519/** @name PalletSudoError */1520export interface PalletSudoError extends Enum {1521  readonly isRequireSudo: boolean;1522  readonly type: 'RequireSudo';1523}15241525/** @name PalletSudoEvent */1526export interface PalletSudoEvent extends Enum {1527  readonly isSudid: boolean;1528  readonly asSudid: {1529    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1530  } & Struct;1531  readonly isKeyChanged: boolean;1532  readonly asKeyChanged: {1533    readonly oldSudoer: Option<AccountId32>;1534  } & Struct;1535  readonly isSudoAsDone: boolean;1536  readonly asSudoAsDone: {1537    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1538  } & Struct;1539  readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1540}15411542/** @name PalletTemplateTransactionPaymentCall */1543export interface PalletTemplateTransactionPaymentCall extends Null {}15441545/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1546export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}15471548/** @name PalletTimestampCall */1549export interface PalletTimestampCall extends Enum {1550  readonly isSet: boolean;1551  readonly asSet: {1552    readonly now: Compact<u64>;1553  } & Struct;1554  readonly type: 'Set';1555}15561557/** @name PalletTransactionPaymentReleases */1558export interface PalletTransactionPaymentReleases extends Enum {1559  readonly isV1Ancient: boolean;1560  readonly isV2: boolean;1561  readonly type: 'V1Ancient' | 'V2';1562}15631564/** @name PalletTreasuryCall */1565export interface PalletTreasuryCall extends Enum {1566  readonly isProposeSpend: boolean;1567  readonly asProposeSpend: {1568    readonly value: Compact<u128>;1569    readonly beneficiary: MultiAddress;1570  } & Struct;1571  readonly isRejectProposal: boolean;1572  readonly asRejectProposal: {1573    readonly proposalId: Compact<u32>;1574  } & Struct;1575  readonly isApproveProposal: boolean;1576  readonly asApproveProposal: {1577    readonly proposalId: Compact<u32>;1578  } & Struct;1579  readonly isRemoveApproval: boolean;1580  readonly asRemoveApproval: {1581    readonly proposalId: Compact<u32>;1582  } & Struct;1583  readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';1584}15851586/** @name PalletTreasuryError */1587export interface PalletTreasuryError extends Enum {1588  readonly isInsufficientProposersBalance: boolean;1589  readonly isInvalidIndex: boolean;1590  readonly isTooManyApprovals: boolean;1591  readonly isProposalNotApproved: boolean;1592  readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';1593}15941595/** @name PalletTreasuryEvent */1596export interface PalletTreasuryEvent extends Enum {1597  readonly isProposed: boolean;1598  readonly asProposed: {1599    readonly proposalIndex: u32;1600  } & Struct;1601  readonly isSpending: boolean;1602  readonly asSpending: {1603    readonly budgetRemaining: u128;1604  } & Struct;1605  readonly isAwarded: boolean;1606  readonly asAwarded: {1607    readonly proposalIndex: u32;1608    readonly award: u128;1609    readonly account: AccountId32;1610  } & Struct;1611  readonly isRejected: boolean;1612  readonly asRejected: {1613    readonly proposalIndex: u32;1614    readonly slashed: u128;1615  } & Struct;1616  readonly isBurnt: boolean;1617  readonly asBurnt: {1618    readonly burntFunds: u128;1619  } & Struct;1620  readonly isRollover: boolean;1621  readonly asRollover: {1622    readonly rolloverBalance: u128;1623  } & Struct;1624  readonly isDeposit: boolean;1625  readonly asDeposit: {1626    readonly value: u128;1627  } & Struct;1628  readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';1629}16301631/** @name PalletTreasuryProposal */1632export interface PalletTreasuryProposal extends Struct {1633  readonly proposer: AccountId32;1634  readonly value: u128;1635  readonly beneficiary: AccountId32;1636  readonly bond: u128;1637}16381639/** @name PalletUniqueCall */1640export interface PalletUniqueCall extends Enum {1641  readonly isCreateCollection: boolean;1642  readonly asCreateCollection: {1643    readonly collectionName: Vec<u16>;1644    readonly collectionDescription: Vec<u16>;1645    readonly tokenPrefix: Bytes;1646    readonly mode: UpDataStructsCollectionMode;1647  } & Struct;1648  readonly isCreateCollectionEx: boolean;1649  readonly asCreateCollectionEx: {1650    readonly data: UpDataStructsCreateCollectionData;1651  } & Struct;1652  readonly isDestroyCollection: boolean;1653  readonly asDestroyCollection: {1654    readonly collectionId: u32;1655  } & Struct;1656  readonly isAddToAllowList: boolean;1657  readonly asAddToAllowList: {1658    readonly collectionId: u32;1659    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1660  } & Struct;1661  readonly isRemoveFromAllowList: boolean;1662  readonly asRemoveFromAllowList: {1663    readonly collectionId: u32;1664    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1665  } & Struct;1666  readonly isChangeCollectionOwner: boolean;1667  readonly asChangeCollectionOwner: {1668    readonly collectionId: u32;1669    readonly newOwner: AccountId32;1670  } & Struct;1671  readonly isAddCollectionAdmin: boolean;1672  readonly asAddCollectionAdmin: {1673    readonly collectionId: u32;1674    readonly newAdmin: PalletEvmAccountBasicCrossAccountIdRepr;1675  } & Struct;1676  readonly isRemoveCollectionAdmin: boolean;1677  readonly asRemoveCollectionAdmin: {1678    readonly collectionId: u32;1679    readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1680  } & Struct;1681  readonly isSetCollectionSponsor: boolean;1682  readonly asSetCollectionSponsor: {1683    readonly collectionId: u32;1684    readonly newSponsor: AccountId32;1685  } & Struct;1686  readonly isConfirmSponsorship: boolean;1687  readonly asConfirmSponsorship: {1688    readonly collectionId: u32;1689  } & Struct;1690  readonly isRemoveCollectionSponsor: boolean;1691  readonly asRemoveCollectionSponsor: {1692    readonly collectionId: u32;1693  } & Struct;1694  readonly isCreateItem: boolean;1695  readonly asCreateItem: {1696    readonly collectionId: u32;1697    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1698    readonly data: UpDataStructsCreateItemData;1699  } & Struct;1700  readonly isCreateMultipleItems: boolean;1701  readonly asCreateMultipleItems: {1702    readonly collectionId: u32;1703    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1704    readonly itemsData: Vec<UpDataStructsCreateItemData>;1705  } & Struct;1706  readonly isSetCollectionProperties: boolean;1707  readonly asSetCollectionProperties: {1708    readonly collectionId: u32;1709    readonly properties: Vec<UpDataStructsProperty>;1710  } & Struct;1711  readonly isDeleteCollectionProperties: boolean;1712  readonly asDeleteCollectionProperties: {1713    readonly collectionId: u32;1714    readonly propertyKeys: Vec<Bytes>;1715  } & Struct;1716  readonly isSetTokenProperties: boolean;1717  readonly asSetTokenProperties: {1718    readonly collectionId: u32;1719    readonly tokenId: u32;1720    readonly properties: Vec<UpDataStructsProperty>;1721  } & Struct;1722  readonly isDeleteTokenProperties: boolean;1723  readonly asDeleteTokenProperties: {1724    readonly collectionId: u32;1725    readonly tokenId: u32;1726    readonly propertyKeys: Vec<Bytes>;1727  } & Struct;1728  readonly isSetTokenPropertyPermissions: boolean;1729  readonly asSetTokenPropertyPermissions: {1730    readonly collectionId: u32;1731    readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1732  } & Struct;1733  readonly isCreateMultipleItemsEx: boolean;1734  readonly asCreateMultipleItemsEx: {1735    readonly collectionId: u32;1736    readonly data: UpDataStructsCreateItemExData;1737  } & Struct;1738  readonly isSetTransfersEnabledFlag: boolean;1739  readonly asSetTransfersEnabledFlag: {1740    readonly collectionId: u32;1741    readonly value: bool;1742  } & Struct;1743  readonly isBurnItem: boolean;1744  readonly asBurnItem: {1745    readonly collectionId: u32;1746    readonly itemId: u32;1747    readonly value: u128;1748  } & Struct;1749  readonly isBurnFrom: boolean;1750  readonly asBurnFrom: {1751    readonly collectionId: u32;1752    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1753    readonly itemId: u32;1754    readonly value: u128;1755  } & Struct;1756  readonly isTransfer: boolean;1757  readonly asTransfer: {1758    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1759    readonly collectionId: u32;1760    readonly itemId: u32;1761    readonly value: u128;1762  } & Struct;1763  readonly isApprove: boolean;1764  readonly asApprove: {1765    readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1766    readonly collectionId: u32;1767    readonly itemId: u32;1768    readonly amount: u128;1769  } & Struct;1770  readonly isTransferFrom: boolean;1771  readonly asTransferFrom: {1772    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1773    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1774    readonly collectionId: u32;1775    readonly itemId: u32;1776    readonly value: u128;1777  } & Struct;1778  readonly isSetCollectionLimits: boolean;1779  readonly asSetCollectionLimits: {1780    readonly collectionId: u32;1781    readonly newLimit: UpDataStructsCollectionLimits;1782  } & Struct;1783  readonly isSetCollectionPermissions: boolean;1784  readonly asSetCollectionPermissions: {1785    readonly collectionId: u32;1786    readonly newPermission: UpDataStructsCollectionPermissions;1787  } & Struct;1788  readonly isRepartition: boolean;1789  readonly asRepartition: {1790    readonly collectionId: u32;1791    readonly tokenId: u32;1792    readonly amount: u128;1793  } & Struct;1794  readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';1795}17961797/** @name PalletUniqueError */1798export interface PalletUniqueError extends Enum {1799  readonly isCollectionDecimalPointLimitExceeded: boolean;1800  readonly isConfirmUnsetSponsorFail: boolean;1801  readonly isEmptyArgument: boolean;1802  readonly isRepartitionCalledOnNonRefungibleCollection: boolean;1803  readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';1804}18051806/** @name PalletUniqueRawEvent */1807export interface PalletUniqueRawEvent extends Enum {1808  readonly isCollectionSponsorRemoved: boolean;1809  readonly asCollectionSponsorRemoved: u32;1810  readonly isCollectionAdminAdded: boolean;1811  readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1812  readonly isCollectionOwnedChanged: boolean;1813  readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1814  readonly isCollectionSponsorSet: boolean;1815  readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1816  readonly isSponsorshipConfirmed: boolean;1817  readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1818  readonly isCollectionAdminRemoved: boolean;1819  readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1820  readonly isAllowListAddressRemoved: boolean;1821  readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1822  readonly isAllowListAddressAdded: boolean;1823  readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1824  readonly isCollectionLimitSet: boolean;1825  readonly asCollectionLimitSet: u32;1826  readonly isCollectionPermissionSet: boolean;1827  readonly asCollectionPermissionSet: u32;1828  readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1829}18301831/** @name PalletUniqueSchedulerCall */1832export interface PalletUniqueSchedulerCall extends Enum {1833  readonly isScheduleNamed: boolean;1834  readonly asScheduleNamed: {1835    readonly id: U8aFixed;1836    readonly when: u32;1837    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1838    readonly priority: u8;1839    readonly call: FrameSupportScheduleMaybeHashed;1840  } & Struct;1841  readonly isCancelNamed: boolean;1842  readonly asCancelNamed: {1843    readonly id: U8aFixed;1844  } & Struct;1845  readonly isScheduleNamedAfter: boolean;1846  readonly asScheduleNamedAfter: {1847    readonly id: U8aFixed;1848    readonly after: u32;1849    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1850    readonly priority: u8;1851    readonly call: FrameSupportScheduleMaybeHashed;1852  } & Struct;1853  readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';1854}18551856/** @name PalletUniqueSchedulerError */1857export interface PalletUniqueSchedulerError extends Enum {1858  readonly isFailedToSchedule: boolean;1859  readonly isNotFound: boolean;1860  readonly isTargetBlockNumberInPast: boolean;1861  readonly isRescheduleNoChange: boolean;1862  readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';1863}18641865/** @name PalletUniqueSchedulerEvent */1866export interface PalletUniqueSchedulerEvent extends Enum {1867  readonly isScheduled: boolean;1868  readonly asScheduled: {1869    readonly when: u32;1870    readonly index: u32;1871  } & Struct;1872  readonly isCanceled: boolean;1873  readonly asCanceled: {1874    readonly when: u32;1875    readonly index: u32;1876  } & Struct;1877  readonly isDispatched: boolean;1878  readonly asDispatched: {1879    readonly task: ITuple<[u32, u32]>;1880    readonly id: Option<U8aFixed>;1881    readonly result: Result<Null, SpRuntimeDispatchError>;1882  } & Struct;1883  readonly isCallLookupFailed: boolean;1884  readonly asCallLookupFailed: {1885    readonly task: ITuple<[u32, u32]>;1886    readonly id: Option<U8aFixed>;1887    readonly error: FrameSupportScheduleLookupError;1888  } & Struct;1889  readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1890}18911892/** @name PalletUniqueSchedulerScheduledV3 */1893export interface PalletUniqueSchedulerScheduledV3 extends Struct {1894  readonly maybeId: Option<U8aFixed>;1895  readonly priority: u8;1896  readonly call: FrameSupportScheduleMaybeHashed;1897  readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1898  readonly origin: OpalRuntimeOriginCaller;1899}19001901/** @name PalletXcmCall */1902export interface PalletXcmCall extends Enum {1903  readonly isSend: boolean;1904  readonly asSend: {1905    readonly dest: XcmVersionedMultiLocation;1906    readonly message: XcmVersionedXcm;1907  } & Struct;1908  readonly isTeleportAssets: boolean;1909  readonly asTeleportAssets: {1910    readonly dest: XcmVersionedMultiLocation;1911    readonly beneficiary: XcmVersionedMultiLocation;1912    readonly assets: XcmVersionedMultiAssets;1913    readonly feeAssetItem: u32;1914  } & Struct;1915  readonly isReserveTransferAssets: boolean;1916  readonly asReserveTransferAssets: {1917    readonly dest: XcmVersionedMultiLocation;1918    readonly beneficiary: XcmVersionedMultiLocation;1919    readonly assets: XcmVersionedMultiAssets;1920    readonly feeAssetItem: u32;1921  } & Struct;1922  readonly isExecute: boolean;1923  readonly asExecute: {1924    readonly message: XcmVersionedXcm;1925    readonly maxWeight: u64;1926  } & Struct;1927  readonly isForceXcmVersion: boolean;1928  readonly asForceXcmVersion: {1929    readonly location: XcmV1MultiLocation;1930    readonly xcmVersion: u32;1931  } & Struct;1932  readonly isForceDefaultXcmVersion: boolean;1933  readonly asForceDefaultXcmVersion: {1934    readonly maybeXcmVersion: Option<u32>;1935  } & Struct;1936  readonly isForceSubscribeVersionNotify: boolean;1937  readonly asForceSubscribeVersionNotify: {1938    readonly location: XcmVersionedMultiLocation;1939  } & Struct;1940  readonly isForceUnsubscribeVersionNotify: boolean;1941  readonly asForceUnsubscribeVersionNotify: {1942    readonly location: XcmVersionedMultiLocation;1943  } & Struct;1944  readonly isLimitedReserveTransferAssets: boolean;1945  readonly asLimitedReserveTransferAssets: {1946    readonly dest: XcmVersionedMultiLocation;1947    readonly beneficiary: XcmVersionedMultiLocation;1948    readonly assets: XcmVersionedMultiAssets;1949    readonly feeAssetItem: u32;1950    readonly weightLimit: XcmV2WeightLimit;1951  } & Struct;1952  readonly isLimitedTeleportAssets: boolean;1953  readonly asLimitedTeleportAssets: {1954    readonly dest: XcmVersionedMultiLocation;1955    readonly beneficiary: XcmVersionedMultiLocation;1956    readonly assets: XcmVersionedMultiAssets;1957    readonly feeAssetItem: u32;1958    readonly weightLimit: XcmV2WeightLimit;1959  } & Struct;1960  readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1961}19621963/** @name PalletXcmError */1964export interface PalletXcmError extends Enum {1965  readonly isUnreachable: boolean;1966  readonly isSendFailure: boolean;1967  readonly isFiltered: boolean;1968  readonly isUnweighableMessage: boolean;1969  readonly isDestinationNotInvertible: boolean;1970  readonly isEmpty: boolean;1971  readonly isCannotReanchor: boolean;1972  readonly isTooManyAssets: boolean;1973  readonly isInvalidOrigin: boolean;1974  readonly isBadVersion: boolean;1975  readonly isBadLocation: boolean;1976  readonly isNoSubscription: boolean;1977  readonly isAlreadySubscribed: boolean;1978  readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';1979}19801981/** @name PalletXcmEvent */1982export interface PalletXcmEvent extends Enum {1983  readonly isAttempted: boolean;1984  readonly asAttempted: XcmV2TraitsOutcome;1985  readonly isSent: boolean;1986  readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1987  readonly isUnexpectedResponse: boolean;1988  readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1989  readonly isResponseReady: boolean;1990  readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1991  readonly isNotified: boolean;1992  readonly asNotified: ITuple<[u64, u8, u8]>;1993  readonly isNotifyOverweight: boolean;1994  readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1995  readonly isNotifyDispatchError: boolean;1996  readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1997  readonly isNotifyDecodeFailed: boolean;1998  readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1999  readonly isInvalidResponder: boolean;2000  readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2001  readonly isInvalidResponderVersion: boolean;2002  readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2003  readonly isResponseTaken: boolean;2004  readonly asResponseTaken: u64;2005  readonly isAssetsTrapped: boolean;2006  readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2007  readonly isVersionChangeNotified: boolean;2008  readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2009  readonly isSupportedVersionChanged: boolean;2010  readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2011  readonly isNotifyTargetSendFail: boolean;2012  readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2013  readonly isNotifyTargetMigrationFail: boolean;2014  readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2015  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2016}20172018/** @name PalletXcmOrigin */2019export interface PalletXcmOrigin extends Enum {2020  readonly isXcm: boolean;2021  readonly asXcm: XcmV1MultiLocation;2022  readonly isResponse: boolean;2023  readonly asResponse: XcmV1MultiLocation;2024  readonly type: 'Xcm' | 'Response';2025}20262027/** @name PhantomTypeUpDataStructs */2028export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}20292030/** @name PolkadotCorePrimitivesInboundDownwardMessage */2031export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2032  readonly sentAt: u32;2033  readonly msg: Bytes;2034}20352036/** @name PolkadotCorePrimitivesInboundHrmpMessage */2037export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2038  readonly sentAt: u32;2039  readonly data: Bytes;2040}20412042/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2043export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2044  readonly recipient: u32;2045  readonly data: Bytes;2046}20472048/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2049export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2050  readonly isConcatenatedVersionedXcm: boolean;2051  readonly isConcatenatedEncodedBlob: boolean;2052  readonly isSignals: boolean;2053  readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2054}20552056/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2057export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2058  readonly maxCodeSize: u32;2059  readonly maxHeadDataSize: u32;2060  readonly maxUpwardQueueCount: u32;2061  readonly maxUpwardQueueSize: u32;2062  readonly maxUpwardMessageSize: u32;2063  readonly maxUpwardMessageNumPerCandidate: u32;2064  readonly hrmpMaxMessageNumPerCandidate: u32;2065  readonly validationUpgradeCooldown: u32;2066  readonly validationUpgradeDelay: u32;2067}20682069/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2070export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2071  readonly maxCapacity: u32;2072  readonly maxTotalSize: u32;2073  readonly maxMessageSize: u32;2074  readonly msgCount: u32;2075  readonly totalSize: u32;2076  readonly mqcHead: Option<H256>;2077}20782079/** @name PolkadotPrimitivesV2PersistedValidationData */2080export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2081  readonly parentHead: Bytes;2082  readonly relayParentNumber: u32;2083  readonly relayParentStorageRoot: H256;2084  readonly maxPovSize: u32;2085}20862087/** @name PolkadotPrimitivesV2UpgradeRestriction */2088export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2089  readonly isPresent: boolean;2090  readonly type: 'Present';2091}20922093/** @name RmrkTraitsBaseBaseInfo */2094export interface RmrkTraitsBaseBaseInfo extends Struct {2095  readonly issuer: AccountId32;2096  readonly baseType: Bytes;2097  readonly symbol: Bytes;2098}20992100/** @name RmrkTraitsCollectionCollectionInfo */2101export interface RmrkTraitsCollectionCollectionInfo extends Struct {2102  readonly issuer: AccountId32;2103  readonly metadata: Bytes;2104  readonly max: Option<u32>;2105  readonly symbol: Bytes;2106  readonly nftsCount: u32;2107}21082109/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2110export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2111  readonly isAccountId: boolean;2112  readonly asAccountId: AccountId32;2113  readonly isCollectionAndNftTuple: boolean;2114  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2115  readonly type: 'AccountId' | 'CollectionAndNftTuple';2116}21172118/** @name RmrkTraitsNftNftChild */2119export interface RmrkTraitsNftNftChild extends Struct {2120  readonly collectionId: u32;2121  readonly nftId: u32;2122}21232124/** @name RmrkTraitsNftNftInfo */2125export interface RmrkTraitsNftNftInfo extends Struct {2126  readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2127  readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2128  readonly metadata: Bytes;2129  readonly equipped: bool;2130  readonly pending: bool;2131}21322133/** @name RmrkTraitsNftRoyaltyInfo */2134export interface RmrkTraitsNftRoyaltyInfo extends Struct {2135  readonly recipient: AccountId32;2136  readonly amount: Permill;2137}21382139/** @name RmrkTraitsPartEquippableList */2140export interface RmrkTraitsPartEquippableList extends Enum {2141  readonly isAll: boolean;2142  readonly isEmpty: boolean;2143  readonly isCustom: boolean;2144  readonly asCustom: Vec<u32>;2145  readonly type: 'All' | 'Empty' | 'Custom';2146}21472148/** @name RmrkTraitsPartFixedPart */2149export interface RmrkTraitsPartFixedPart extends Struct {2150  readonly id: u32;2151  readonly z: u32;2152  readonly src: Bytes;2153}21542155/** @name RmrkTraitsPartPartType */2156export interface RmrkTraitsPartPartType extends Enum {2157  readonly isFixedPart: boolean;2158  readonly asFixedPart: RmrkTraitsPartFixedPart;2159  readonly isSlotPart: boolean;2160  readonly asSlotPart: RmrkTraitsPartSlotPart;2161  readonly type: 'FixedPart' | 'SlotPart';2162}21632164/** @name RmrkTraitsPartSlotPart */2165export interface RmrkTraitsPartSlotPart extends Struct {2166  readonly id: u32;2167  readonly equippable: RmrkTraitsPartEquippableList;2168  readonly src: Bytes;2169  readonly z: u32;2170}21712172/** @name RmrkTraitsPropertyPropertyInfo */2173export interface RmrkTraitsPropertyPropertyInfo extends Struct {2174  readonly key: Bytes;2175  readonly value: Bytes;2176}21772178/** @name RmrkTraitsResourceBasicResource */2179export interface RmrkTraitsResourceBasicResource extends Struct {2180  readonly src: Option<Bytes>;2181  readonly metadata: Option<Bytes>;2182  readonly license: Option<Bytes>;2183  readonly thumb: Option<Bytes>;2184}21852186/** @name RmrkTraitsResourceComposableResource */2187export interface RmrkTraitsResourceComposableResource extends Struct {2188  readonly parts: Vec<u32>;2189  readonly base: u32;2190  readonly src: Option<Bytes>;2191  readonly metadata: Option<Bytes>;2192  readonly license: Option<Bytes>;2193  readonly thumb: Option<Bytes>;2194}21952196/** @name RmrkTraitsResourceResourceInfo */2197export interface RmrkTraitsResourceResourceInfo extends Struct {2198  readonly id: u32;2199  readonly resource: RmrkTraitsResourceResourceTypes;2200  readonly pending: bool;2201  readonly pendingRemoval: bool;2202}22032204/** @name RmrkTraitsResourceResourceTypes */2205export interface RmrkTraitsResourceResourceTypes extends Enum {2206  readonly isBasic: boolean;2207  readonly asBasic: RmrkTraitsResourceBasicResource;2208  readonly isComposable: boolean;2209  readonly asComposable: RmrkTraitsResourceComposableResource;2210  readonly isSlot: boolean;2211  readonly asSlot: RmrkTraitsResourceSlotResource;2212  readonly type: 'Basic' | 'Composable' | 'Slot';2213}22142215/** @name RmrkTraitsResourceSlotResource */2216export interface RmrkTraitsResourceSlotResource extends Struct {2217  readonly base: u32;2218  readonly src: Option<Bytes>;2219  readonly metadata: Option<Bytes>;2220  readonly slot: u32;2221  readonly license: Option<Bytes>;2222  readonly thumb: Option<Bytes>;2223}22242225/** @name RmrkTraitsTheme */2226export interface RmrkTraitsTheme extends Struct {2227  readonly name: Bytes;2228  readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2229  readonly inherit: bool;2230}22312232/** @name RmrkTraitsThemeThemeProperty */2233export interface RmrkTraitsThemeThemeProperty extends Struct {2234  readonly key: Bytes;2235  readonly value: Bytes;2236}22372238/** @name SpCoreEcdsaSignature */2239export interface SpCoreEcdsaSignature extends U8aFixed {}22402241/** @name SpCoreEd25519Signature */2242export interface SpCoreEd25519Signature extends U8aFixed {}22432244/** @name SpCoreSr25519Signature */2245export interface SpCoreSr25519Signature extends U8aFixed {}22462247/** @name SpCoreVoid */2248export interface SpCoreVoid extends Null {}22492250/** @name SpRuntimeArithmeticError */2251export interface SpRuntimeArithmeticError extends Enum {2252  readonly isUnderflow: boolean;2253  readonly isOverflow: boolean;2254  readonly isDivisionByZero: boolean;2255  readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2256}22572258/** @name SpRuntimeDigest */2259export interface SpRuntimeDigest extends Struct {2260  readonly logs: Vec<SpRuntimeDigestDigestItem>;2261}22622263/** @name SpRuntimeDigestDigestItem */2264export interface SpRuntimeDigestDigestItem extends Enum {2265  readonly isOther: boolean;2266  readonly asOther: Bytes;2267  readonly isConsensus: boolean;2268  readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2269  readonly isSeal: boolean;2270  readonly asSeal: ITuple<[U8aFixed, Bytes]>;2271  readonly isPreRuntime: boolean;2272  readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2273  readonly isRuntimeEnvironmentUpdated: boolean;2274  readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2275}22762277/** @name SpRuntimeDispatchError */2278export interface SpRuntimeDispatchError extends Enum {2279  readonly isOther: boolean;2280  readonly isCannotLookup: boolean;2281  readonly isBadOrigin: boolean;2282  readonly isModule: boolean;2283  readonly asModule: SpRuntimeModuleError;2284  readonly isConsumerRemaining: boolean;2285  readonly isNoProviders: boolean;2286  readonly isTooManyConsumers: boolean;2287  readonly isToken: boolean;2288  readonly asToken: SpRuntimeTokenError;2289  readonly isArithmetic: boolean;2290  readonly asArithmetic: SpRuntimeArithmeticError;2291  readonly isTransactional: boolean;2292  readonly asTransactional: SpRuntimeTransactionalError;2293  readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2294}22952296/** @name SpRuntimeModuleError */2297export interface SpRuntimeModuleError extends Struct {2298  readonly index: u8;2299  readonly error: U8aFixed;2300}23012302/** @name SpRuntimeMultiSignature */2303export interface SpRuntimeMultiSignature extends Enum {2304  readonly isEd25519: boolean;2305  readonly asEd25519: SpCoreEd25519Signature;2306  readonly isSr25519: boolean;2307  readonly asSr25519: SpCoreSr25519Signature;2308  readonly isEcdsa: boolean;2309  readonly asEcdsa: SpCoreEcdsaSignature;2310  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2311}23122313/** @name SpRuntimeTokenError */2314export interface SpRuntimeTokenError extends Enum {2315  readonly isNoFunds: boolean;2316  readonly isWouldDie: boolean;2317  readonly isBelowMinimum: boolean;2318  readonly isCannotCreate: boolean;2319  readonly isUnknownAsset: boolean;2320  readonly isFrozen: boolean;2321  readonly isUnsupported: boolean;2322  readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2323}23242325/** @name SpRuntimeTransactionalError */2326export interface SpRuntimeTransactionalError extends Enum {2327  readonly isLimitReached: boolean;2328  readonly isNoLayer: boolean;2329  readonly type: 'LimitReached' | 'NoLayer';2330}23312332/** @name SpTrieStorageProof */2333export interface SpTrieStorageProof extends Struct {2334  readonly trieNodes: BTreeSet<Bytes>;2335}23362337/** @name SpVersionRuntimeVersion */2338export interface SpVersionRuntimeVersion extends Struct {2339  readonly specName: Text;2340  readonly implName: Text;2341  readonly authoringVersion: u32;2342  readonly specVersion: u32;2343  readonly implVersion: u32;2344  readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2345  readonly transactionVersion: u32;2346  readonly stateVersion: u8;2347}23482349/** @name UpDataStructsAccessMode */2350export interface UpDataStructsAccessMode extends Enum {2351  readonly isNormal: boolean;2352  readonly isAllowList: boolean;2353  readonly type: 'Normal' | 'AllowList';2354}23552356/** @name UpDataStructsCollection */2357export interface UpDataStructsCollection extends Struct {2358  readonly owner: AccountId32;2359  readonly mode: UpDataStructsCollectionMode;2360  readonly name: Vec<u16>;2361  readonly description: Vec<u16>;2362  readonly tokenPrefix: Bytes;2363  readonly sponsorship: UpDataStructsSponsorshipState;2364  readonly limits: UpDataStructsCollectionLimits;2365  readonly permissions: UpDataStructsCollectionPermissions;2366  readonly externalCollection: bool;2367}23682369/** @name UpDataStructsCollectionLimits */2370export interface UpDataStructsCollectionLimits extends Struct {2371  readonly accountTokenOwnershipLimit: Option<u32>;2372  readonly sponsoredDataSize: Option<u32>;2373  readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2374  readonly tokenLimit: Option<u32>;2375  readonly sponsorTransferTimeout: Option<u32>;2376  readonly sponsorApproveTimeout: Option<u32>;2377  readonly ownerCanTransfer: Option<bool>;2378  readonly ownerCanDestroy: Option<bool>;2379  readonly transfersEnabled: Option<bool>;2380}23812382/** @name UpDataStructsCollectionMode */2383export interface UpDataStructsCollectionMode extends Enum {2384  readonly isNft: boolean;2385  readonly isFungible: boolean;2386  readonly asFungible: u8;2387  readonly isReFungible: boolean;2388  readonly type: 'Nft' | 'Fungible' | 'ReFungible';2389}23902391/** @name UpDataStructsCollectionPermissions */2392export interface UpDataStructsCollectionPermissions extends Struct {2393  readonly access: Option<UpDataStructsAccessMode>;2394  readonly mintMode: Option<bool>;2395  readonly nesting: Option<UpDataStructsNestingPermissions>;2396}23972398/** @name UpDataStructsCollectionStats */2399export interface UpDataStructsCollectionStats extends Struct {2400  readonly created: u32;2401  readonly destroyed: u32;2402  readonly alive: u32;2403}24042405/** @name UpDataStructsCreateCollectionData */2406export interface UpDataStructsCreateCollectionData extends Struct {2407  readonly mode: UpDataStructsCollectionMode;2408  readonly access: Option<UpDataStructsAccessMode>;2409  readonly name: Vec<u16>;2410  readonly description: Vec<u16>;2411  readonly tokenPrefix: Bytes;2412  readonly pendingSponsor: Option<AccountId32>;2413  readonly limits: Option<UpDataStructsCollectionLimits>;2414  readonly permissions: Option<UpDataStructsCollectionPermissions>;2415  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2416  readonly properties: Vec<UpDataStructsProperty>;2417}24182419/** @name UpDataStructsCreateFungibleData */2420export interface UpDataStructsCreateFungibleData extends Struct {2421  readonly value: u128;2422}24232424/** @name UpDataStructsCreateItemData */2425export interface UpDataStructsCreateItemData extends Enum {2426  readonly isNft: boolean;2427  readonly asNft: UpDataStructsCreateNftData;2428  readonly isFungible: boolean;2429  readonly asFungible: UpDataStructsCreateFungibleData;2430  readonly isReFungible: boolean;2431  readonly asReFungible: UpDataStructsCreateReFungibleData;2432  readonly type: 'Nft' | 'Fungible' | 'ReFungible';2433}24342435/** @name UpDataStructsCreateItemExData */2436export interface UpDataStructsCreateItemExData extends Enum {2437  readonly isNft: boolean;2438  readonly asNft: Vec<UpDataStructsCreateNftExData>;2439  readonly isFungible: boolean;2440  readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;2441  readonly isRefungibleMultipleItems: boolean;2442  readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2443  readonly isRefungibleMultipleOwners: boolean;2444  readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2445  readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2446}24472448/** @name UpDataStructsCreateNftData */2449export interface UpDataStructsCreateNftData extends Struct {2450  readonly properties: Vec<UpDataStructsProperty>;2451}24522453/** @name UpDataStructsCreateNftExData */2454export interface UpDataStructsCreateNftExData extends Struct {2455  readonly properties: Vec<UpDataStructsProperty>;2456  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2457}24582459/** @name UpDataStructsCreateReFungibleData */2460export interface UpDataStructsCreateReFungibleData extends Struct {2461  readonly pieces: u128;2462  readonly properties: Vec<UpDataStructsProperty>;2463}24642465/** @name UpDataStructsCreateRefungibleExMultipleOwners */2466export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2467  readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2468  readonly properties: Vec<UpDataStructsProperty>;2469}24702471/** @name UpDataStructsCreateRefungibleExSingleOwner */2472export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2473  readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2474  readonly pieces: u128;2475  readonly properties: Vec<UpDataStructsProperty>;2476}24772478/** @name UpDataStructsNestingPermissions */2479export interface UpDataStructsNestingPermissions extends Struct {2480  readonly tokenOwner: bool;2481  readonly collectionAdmin: bool;2482  readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2483}24842485/** @name UpDataStructsOwnerRestrictedSet */2486export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}24872488/** @name UpDataStructsProperties */2489export interface UpDataStructsProperties extends Struct {2490  readonly map: UpDataStructsPropertiesMapBoundedVec;2491  readonly consumedSpace: u32;2492  readonly spaceLimit: u32;2493}24942495/** @name UpDataStructsPropertiesMapBoundedVec */2496export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}24972498/** @name UpDataStructsPropertiesMapPropertyPermission */2499export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}25002501/** @name UpDataStructsProperty */2502export interface UpDataStructsProperty extends Struct {2503  readonly key: Bytes;2504  readonly value: Bytes;2505}25062507/** @name UpDataStructsPropertyKeyPermission */2508export interface UpDataStructsPropertyKeyPermission extends Struct {2509  readonly key: Bytes;2510  readonly permission: UpDataStructsPropertyPermission;2511}25122513/** @name UpDataStructsPropertyPermission */2514export interface UpDataStructsPropertyPermission extends Struct {2515  readonly mutable: bool;2516  readonly collectionAdmin: bool;2517  readonly tokenOwner: bool;2518}25192520/** @name UpDataStructsPropertyScope */2521export interface UpDataStructsPropertyScope extends Enum {2522  readonly isNone: boolean;2523  readonly isRmrk: boolean;2524  readonly isEth: boolean;2525  readonly type: 'None' | 'Rmrk' | 'Eth';2526}25272528/** @name UpDataStructsRpcCollection */2529export interface UpDataStructsRpcCollection extends Struct {2530  readonly owner: AccountId32;2531  readonly mode: UpDataStructsCollectionMode;2532  readonly name: Vec<u16>;2533  readonly description: Vec<u16>;2534  readonly tokenPrefix: Bytes;2535  readonly sponsorship: UpDataStructsSponsorshipState;2536  readonly limits: UpDataStructsCollectionLimits;2537  readonly permissions: UpDataStructsCollectionPermissions;2538  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2539  readonly properties: Vec<UpDataStructsProperty>;2540  readonly readOnly: bool;2541}25422543/** @name UpDataStructsSponsoringRateLimit */2544export interface UpDataStructsSponsoringRateLimit extends Enum {2545  readonly isSponsoringDisabled: boolean;2546  readonly isBlocks: boolean;2547  readonly asBlocks: u32;2548  readonly type: 'SponsoringDisabled' | 'Blocks';2549}25502551/** @name UpDataStructsSponsorshipState */2552export interface UpDataStructsSponsorshipState extends Enum {2553  readonly isDisabled: boolean;2554  readonly isUnconfirmed: boolean;2555  readonly asUnconfirmed: AccountId32;2556  readonly isConfirmed: boolean;2557  readonly asConfirmed: AccountId32;2558  readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2559}25602561/** @name UpDataStructsTokenChild */2562export interface UpDataStructsTokenChild extends Struct {2563  readonly token: u32;2564  readonly collection: u32;2565}25662567/** @name UpDataStructsTokenData */2568export interface UpDataStructsTokenData extends Struct {2569  readonly properties: Vec<UpDataStructsProperty>;2570  readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2571  readonly pieces: u128;2572}25732574/** @name XcmDoubleEncoded */2575export interface XcmDoubleEncoded extends Struct {2576  readonly encoded: Bytes;2577}25782579/** @name XcmV0Junction */2580export interface XcmV0Junction extends Enum {2581  readonly isParent: boolean;2582  readonly isParachain: boolean;2583  readonly asParachain: Compact<u32>;2584  readonly isAccountId32: boolean;2585  readonly asAccountId32: {2586    readonly network: XcmV0JunctionNetworkId;2587    readonly id: U8aFixed;2588  } & Struct;2589  readonly isAccountIndex64: boolean;2590  readonly asAccountIndex64: {2591    readonly network: XcmV0JunctionNetworkId;2592    readonly index: Compact<u64>;2593  } & Struct;2594  readonly isAccountKey20: boolean;2595  readonly asAccountKey20: {2596    readonly network: XcmV0JunctionNetworkId;2597    readonly key: U8aFixed;2598  } & Struct;2599  readonly isPalletInstance: boolean;2600  readonly asPalletInstance: u8;2601  readonly isGeneralIndex: boolean;2602  readonly asGeneralIndex: Compact<u128>;2603  readonly isGeneralKey: boolean;2604  readonly asGeneralKey: Bytes;2605  readonly isOnlyChild: boolean;2606  readonly isPlurality: boolean;2607  readonly asPlurality: {2608    readonly id: XcmV0JunctionBodyId;2609    readonly part: XcmV0JunctionBodyPart;2610  } & Struct;2611  readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2612}26132614/** @name XcmV0JunctionBodyId */2615export interface XcmV0JunctionBodyId extends Enum {2616  readonly isUnit: boolean;2617  readonly isNamed: boolean;2618  readonly asNamed: Bytes;2619  readonly isIndex: boolean;2620  readonly asIndex: Compact<u32>;2621  readonly isExecutive: boolean;2622  readonly isTechnical: boolean;2623  readonly isLegislative: boolean;2624  readonly isJudicial: boolean;2625  readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';2626}26272628/** @name XcmV0JunctionBodyPart */2629export interface XcmV0JunctionBodyPart extends Enum {2630  readonly isVoice: boolean;2631  readonly isMembers: boolean;2632  readonly asMembers: {2633    readonly count: Compact<u32>;2634  } & Struct;2635  readonly isFraction: boolean;2636  readonly asFraction: {2637    readonly nom: Compact<u32>;2638    readonly denom: Compact<u32>;2639  } & Struct;2640  readonly isAtLeastProportion: boolean;2641  readonly asAtLeastProportion: {2642    readonly nom: Compact<u32>;2643    readonly denom: Compact<u32>;2644  } & Struct;2645  readonly isMoreThanProportion: boolean;2646  readonly asMoreThanProportion: {2647    readonly nom: Compact<u32>;2648    readonly denom: Compact<u32>;2649  } & Struct;2650  readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';2651}26522653/** @name XcmV0JunctionNetworkId */2654export interface XcmV0JunctionNetworkId extends Enum {2655  readonly isAny: boolean;2656  readonly isNamed: boolean;2657  readonly asNamed: Bytes;2658  readonly isPolkadot: boolean;2659  readonly isKusama: boolean;2660  readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';2661}26622663/** @name XcmV0MultiAsset */2664export interface XcmV0MultiAsset extends Enum {2665  readonly isNone: boolean;2666  readonly isAll: boolean;2667  readonly isAllFungible: boolean;2668  readonly isAllNonFungible: boolean;2669  readonly isAllAbstractFungible: boolean;2670  readonly asAllAbstractFungible: {2671    readonly id: Bytes;2672  } & Struct;2673  readonly isAllAbstractNonFungible: boolean;2674  readonly asAllAbstractNonFungible: {2675    readonly class: Bytes;2676  } & Struct;2677  readonly isAllConcreteFungible: boolean;2678  readonly asAllConcreteFungible: {2679    readonly id: XcmV0MultiLocation;2680  } & Struct;2681  readonly isAllConcreteNonFungible: boolean;2682  readonly asAllConcreteNonFungible: {2683    readonly class: XcmV0MultiLocation;2684  } & Struct;2685  readonly isAbstractFungible: boolean;2686  readonly asAbstractFungible: {2687    readonly id: Bytes;2688    readonly amount: Compact<u128>;2689  } & Struct;2690  readonly isAbstractNonFungible: boolean;2691  readonly asAbstractNonFungible: {2692    readonly class: Bytes;2693    readonly instance: XcmV1MultiassetAssetInstance;2694  } & Struct;2695  readonly isConcreteFungible: boolean;2696  readonly asConcreteFungible: {2697    readonly id: XcmV0MultiLocation;2698    readonly amount: Compact<u128>;2699  } & Struct;2700  readonly isConcreteNonFungible: boolean;2701  readonly asConcreteNonFungible: {2702    readonly class: XcmV0MultiLocation;2703    readonly instance: XcmV1MultiassetAssetInstance;2704  } & Struct;2705  readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';2706}27072708/** @name XcmV0MultiLocation */2709export interface XcmV0MultiLocation extends Enum {2710  readonly isNull: boolean;2711  readonly isX1: boolean;2712  readonly asX1: XcmV0Junction;2713  readonly isX2: boolean;2714  readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;2715  readonly isX3: boolean;2716  readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2717  readonly isX4: boolean;2718  readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2719  readonly isX5: boolean;2720  readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2721  readonly isX6: boolean;2722  readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2723  readonly isX7: boolean;2724  readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2725  readonly isX8: boolean;2726  readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2727  readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2728}27292730/** @name XcmV0Order */2731export interface XcmV0Order extends Enum {2732  readonly isNull: boolean;2733  readonly isDepositAsset: boolean;2734  readonly asDepositAsset: {2735    readonly assets: Vec<XcmV0MultiAsset>;2736    readonly dest: XcmV0MultiLocation;2737  } & Struct;2738  readonly isDepositReserveAsset: boolean;2739  readonly asDepositReserveAsset: {2740    readonly assets: Vec<XcmV0MultiAsset>;2741    readonly dest: XcmV0MultiLocation;2742    readonly effects: Vec<XcmV0Order>;2743  } & Struct;2744  readonly isExchangeAsset: boolean;2745  readonly asExchangeAsset: {2746    readonly give: Vec<XcmV0MultiAsset>;2747    readonly receive: Vec<XcmV0MultiAsset>;2748  } & Struct;2749  readonly isInitiateReserveWithdraw: boolean;2750  readonly asInitiateReserveWithdraw: {2751    readonly assets: Vec<XcmV0MultiAsset>;2752    readonly reserve: XcmV0MultiLocation;2753    readonly effects: Vec<XcmV0Order>;2754  } & Struct;2755  readonly isInitiateTeleport: boolean;2756  readonly asInitiateTeleport: {2757    readonly assets: Vec<XcmV0MultiAsset>;2758    readonly dest: XcmV0MultiLocation;2759    readonly effects: Vec<XcmV0Order>;2760  } & Struct;2761  readonly isQueryHolding: boolean;2762  readonly asQueryHolding: {2763    readonly queryId: Compact<u64>;2764    readonly dest: XcmV0MultiLocation;2765    readonly assets: Vec<XcmV0MultiAsset>;2766  } & Struct;2767  readonly isBuyExecution: boolean;2768  readonly asBuyExecution: {2769    readonly fees: XcmV0MultiAsset;2770    readonly weight: u64;2771    readonly debt: u64;2772    readonly haltOnError: bool;2773    readonly xcm: Vec<XcmV0Xcm>;2774  } & Struct;2775  readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2776}27772778/** @name XcmV0OriginKind */2779export interface XcmV0OriginKind extends Enum {2780  readonly isNative: boolean;2781  readonly isSovereignAccount: boolean;2782  readonly isSuperuser: boolean;2783  readonly isXcm: boolean;2784  readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';2785}27862787/** @name XcmV0Response */2788export interface XcmV0Response extends Enum {2789  readonly isAssets: boolean;2790  readonly asAssets: Vec<XcmV0MultiAsset>;2791  readonly type: 'Assets';2792}27932794/** @name XcmV0Xcm */2795export interface XcmV0Xcm extends Enum {2796  readonly isWithdrawAsset: boolean;2797  readonly asWithdrawAsset: {2798    readonly assets: Vec<XcmV0MultiAsset>;2799    readonly effects: Vec<XcmV0Order>;2800  } & Struct;2801  readonly isReserveAssetDeposit: boolean;2802  readonly asReserveAssetDeposit: {2803    readonly assets: Vec<XcmV0MultiAsset>;2804    readonly effects: Vec<XcmV0Order>;2805  } & Struct;2806  readonly isTeleportAsset: boolean;2807  readonly asTeleportAsset: {2808    readonly assets: Vec<XcmV0MultiAsset>;2809    readonly effects: Vec<XcmV0Order>;2810  } & Struct;2811  readonly isQueryResponse: boolean;2812  readonly asQueryResponse: {2813    readonly queryId: Compact<u64>;2814    readonly response: XcmV0Response;2815  } & Struct;2816  readonly isTransferAsset: boolean;2817  readonly asTransferAsset: {2818    readonly assets: Vec<XcmV0MultiAsset>;2819    readonly dest: XcmV0MultiLocation;2820  } & Struct;2821  readonly isTransferReserveAsset: boolean;2822  readonly asTransferReserveAsset: {2823    readonly assets: Vec<XcmV0MultiAsset>;2824    readonly dest: XcmV0MultiLocation;2825    readonly effects: Vec<XcmV0Order>;2826  } & Struct;2827  readonly isTransact: boolean;2828  readonly asTransact: {2829    readonly originType: XcmV0OriginKind;2830    readonly requireWeightAtMost: u64;2831    readonly call: XcmDoubleEncoded;2832  } & Struct;2833  readonly isHrmpNewChannelOpenRequest: boolean;2834  readonly asHrmpNewChannelOpenRequest: {2835    readonly sender: Compact<u32>;2836    readonly maxMessageSize: Compact<u32>;2837    readonly maxCapacity: Compact<u32>;2838  } & Struct;2839  readonly isHrmpChannelAccepted: boolean;2840  readonly asHrmpChannelAccepted: {2841    readonly recipient: Compact<u32>;2842  } & Struct;2843  readonly isHrmpChannelClosing: boolean;2844  readonly asHrmpChannelClosing: {2845    readonly initiator: Compact<u32>;2846    readonly sender: Compact<u32>;2847    readonly recipient: Compact<u32>;2848  } & Struct;2849  readonly isRelayedFrom: boolean;2850  readonly asRelayedFrom: {2851    readonly who: XcmV0MultiLocation;2852    readonly message: XcmV0Xcm;2853  } & Struct;2854  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2855}28562857/** @name XcmV1Junction */2858export interface XcmV1Junction extends Enum {2859  readonly isParachain: boolean;2860  readonly asParachain: Compact<u32>;2861  readonly isAccountId32: boolean;2862  readonly asAccountId32: {2863    readonly network: XcmV0JunctionNetworkId;2864    readonly id: U8aFixed;2865  } & Struct;2866  readonly isAccountIndex64: boolean;2867  readonly asAccountIndex64: {2868    readonly network: XcmV0JunctionNetworkId;2869    readonly index: Compact<u64>;2870  } & Struct;2871  readonly isAccountKey20: boolean;2872  readonly asAccountKey20: {2873    readonly network: XcmV0JunctionNetworkId;2874    readonly key: U8aFixed;2875  } & Struct;2876  readonly isPalletInstance: boolean;2877  readonly asPalletInstance: u8;2878  readonly isGeneralIndex: boolean;2879  readonly asGeneralIndex: Compact<u128>;2880  readonly isGeneralKey: boolean;2881  readonly asGeneralKey: Bytes;2882  readonly isOnlyChild: boolean;2883  readonly isPlurality: boolean;2884  readonly asPlurality: {2885    readonly id: XcmV0JunctionBodyId;2886    readonly part: XcmV0JunctionBodyPart;2887  } & Struct;2888  readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2889}28902891/** @name XcmV1MultiAsset */2892export interface XcmV1MultiAsset extends Struct {2893  readonly id: XcmV1MultiassetAssetId;2894  readonly fun: XcmV1MultiassetFungibility;2895}28962897/** @name XcmV1MultiassetAssetId */2898export interface XcmV1MultiassetAssetId extends Enum {2899  readonly isConcrete: boolean;2900  readonly asConcrete: XcmV1MultiLocation;2901  readonly isAbstract: boolean;2902  readonly asAbstract: Bytes;2903  readonly type: 'Concrete' | 'Abstract';2904}29052906/** @name XcmV1MultiassetAssetInstance */2907export interface XcmV1MultiassetAssetInstance extends Enum {2908  readonly isUndefined: boolean;2909  readonly isIndex: boolean;2910  readonly asIndex: Compact<u128>;2911  readonly isArray4: boolean;2912  readonly asArray4: U8aFixed;2913  readonly isArray8: boolean;2914  readonly asArray8: U8aFixed;2915  readonly isArray16: boolean;2916  readonly asArray16: U8aFixed;2917  readonly isArray32: boolean;2918  readonly asArray32: U8aFixed;2919  readonly isBlob: boolean;2920  readonly asBlob: Bytes;2921  readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';2922}29232924/** @name XcmV1MultiassetFungibility */2925export interface XcmV1MultiassetFungibility extends Enum {2926  readonly isFungible: boolean;2927  readonly asFungible: Compact<u128>;2928  readonly isNonFungible: boolean;2929  readonly asNonFungible: XcmV1MultiassetAssetInstance;2930  readonly type: 'Fungible' | 'NonFungible';2931}29322933/** @name XcmV1MultiassetMultiAssetFilter */2934export interface XcmV1MultiassetMultiAssetFilter extends Enum {2935  readonly isDefinite: boolean;2936  readonly asDefinite: XcmV1MultiassetMultiAssets;2937  readonly isWild: boolean;2938  readonly asWild: XcmV1MultiassetWildMultiAsset;2939  readonly type: 'Definite' | 'Wild';2940}29412942/** @name XcmV1MultiassetMultiAssets */2943export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}29442945/** @name XcmV1MultiassetWildFungibility */2946export interface XcmV1MultiassetWildFungibility extends Enum {2947  readonly isFungible: boolean;2948  readonly isNonFungible: boolean;2949  readonly type: 'Fungible' | 'NonFungible';2950}29512952/** @name XcmV1MultiassetWildMultiAsset */2953export interface XcmV1MultiassetWildMultiAsset extends Enum {2954  readonly isAll: boolean;2955  readonly isAllOf: boolean;2956  readonly asAllOf: {2957    readonly id: XcmV1MultiassetAssetId;2958    readonly fun: XcmV1MultiassetWildFungibility;2959  } & Struct;2960  readonly type: 'All' | 'AllOf';2961}29622963/** @name XcmV1MultiLocation */2964export interface XcmV1MultiLocation extends Struct {2965  readonly parents: u8;2966  readonly interior: XcmV1MultilocationJunctions;2967}29682969/** @name XcmV1MultilocationJunctions */2970export interface XcmV1MultilocationJunctions extends Enum {2971  readonly isHere: boolean;2972  readonly isX1: boolean;2973  readonly asX1: XcmV1Junction;2974  readonly isX2: boolean;2975  readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;2976  readonly isX3: boolean;2977  readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2978  readonly isX4: boolean;2979  readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2980  readonly isX5: boolean;2981  readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2982  readonly isX6: boolean;2983  readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2984  readonly isX7: boolean;2985  readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2986  readonly isX8: boolean;2987  readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2988  readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2989}29902991/** @name XcmV1Order */2992export interface XcmV1Order extends Enum {2993  readonly isNoop: boolean;2994  readonly isDepositAsset: boolean;2995  readonly asDepositAsset: {2996    readonly assets: XcmV1MultiassetMultiAssetFilter;2997    readonly maxAssets: u32;2998    readonly beneficiary: XcmV1MultiLocation;2999  } & Struct;3000  readonly isDepositReserveAsset: boolean;3001  readonly asDepositReserveAsset: {3002    readonly assets: XcmV1MultiassetMultiAssetFilter;3003    readonly maxAssets: u32;3004    readonly dest: XcmV1MultiLocation;3005    readonly effects: Vec<XcmV1Order>;3006  } & Struct;3007  readonly isExchangeAsset: boolean;3008  readonly asExchangeAsset: {3009    readonly give: XcmV1MultiassetMultiAssetFilter;3010    readonly receive: XcmV1MultiassetMultiAssets;3011  } & Struct;3012  readonly isInitiateReserveWithdraw: boolean;3013  readonly asInitiateReserveWithdraw: {3014    readonly assets: XcmV1MultiassetMultiAssetFilter;3015    readonly reserve: XcmV1MultiLocation;3016    readonly effects: Vec<XcmV1Order>;3017  } & Struct;3018  readonly isInitiateTeleport: boolean;3019  readonly asInitiateTeleport: {3020    readonly assets: XcmV1MultiassetMultiAssetFilter;3021    readonly dest: XcmV1MultiLocation;3022    readonly effects: Vec<XcmV1Order>;3023  } & Struct;3024  readonly isQueryHolding: boolean;3025  readonly asQueryHolding: {3026    readonly queryId: Compact<u64>;3027    readonly dest: XcmV1MultiLocation;3028    readonly assets: XcmV1MultiassetMultiAssetFilter;3029  } & Struct;3030  readonly isBuyExecution: boolean;3031  readonly asBuyExecution: {3032    readonly fees: XcmV1MultiAsset;3033    readonly weight: u64;3034    readonly debt: u64;3035    readonly haltOnError: bool;3036    readonly instructions: Vec<XcmV1Xcm>;3037  } & Struct;3038  readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3039}30403041/** @name XcmV1Response */3042export interface XcmV1Response extends Enum {3043  readonly isAssets: boolean;3044  readonly asAssets: XcmV1MultiassetMultiAssets;3045  readonly isVersion: boolean;3046  readonly asVersion: u32;3047  readonly type: 'Assets' | 'Version';3048}30493050/** @name XcmV1Xcm */3051export interface XcmV1Xcm extends Enum {3052  readonly isWithdrawAsset: boolean;3053  readonly asWithdrawAsset: {3054    readonly assets: XcmV1MultiassetMultiAssets;3055    readonly effects: Vec<XcmV1Order>;3056  } & Struct;3057  readonly isReserveAssetDeposited: boolean;3058  readonly asReserveAssetDeposited: {3059    readonly assets: XcmV1MultiassetMultiAssets;3060    readonly effects: Vec<XcmV1Order>;3061  } & Struct;3062  readonly isReceiveTeleportedAsset: boolean;3063  readonly asReceiveTeleportedAsset: {3064    readonly assets: XcmV1MultiassetMultiAssets;3065    readonly effects: Vec<XcmV1Order>;3066  } & Struct;3067  readonly isQueryResponse: boolean;3068  readonly asQueryResponse: {3069    readonly queryId: Compact<u64>;3070    readonly response: XcmV1Response;3071  } & Struct;3072  readonly isTransferAsset: boolean;3073  readonly asTransferAsset: {3074    readonly assets: XcmV1MultiassetMultiAssets;3075    readonly beneficiary: XcmV1MultiLocation;3076  } & Struct;3077  readonly isTransferReserveAsset: boolean;3078  readonly asTransferReserveAsset: {3079    readonly assets: XcmV1MultiassetMultiAssets;3080    readonly dest: XcmV1MultiLocation;3081    readonly effects: Vec<XcmV1Order>;3082  } & Struct;3083  readonly isTransact: boolean;3084  readonly asTransact: {3085    readonly originType: XcmV0OriginKind;3086    readonly requireWeightAtMost: u64;3087    readonly call: XcmDoubleEncoded;3088  } & Struct;3089  readonly isHrmpNewChannelOpenRequest: boolean;3090  readonly asHrmpNewChannelOpenRequest: {3091    readonly sender: Compact<u32>;3092    readonly maxMessageSize: Compact<u32>;3093    readonly maxCapacity: Compact<u32>;3094  } & Struct;3095  readonly isHrmpChannelAccepted: boolean;3096  readonly asHrmpChannelAccepted: {3097    readonly recipient: Compact<u32>;3098  } & Struct;3099  readonly isHrmpChannelClosing: boolean;3100  readonly asHrmpChannelClosing: {3101    readonly initiator: Compact<u32>;3102    readonly sender: Compact<u32>;3103    readonly recipient: Compact<u32>;3104  } & Struct;3105  readonly isRelayedFrom: boolean;3106  readonly asRelayedFrom: {3107    readonly who: XcmV1MultilocationJunctions;3108    readonly message: XcmV1Xcm;3109  } & Struct;3110  readonly isSubscribeVersion: boolean;3111  readonly asSubscribeVersion: {3112    readonly queryId: Compact<u64>;3113    readonly maxResponseWeight: Compact<u64>;3114  } & Struct;3115  readonly isUnsubscribeVersion: boolean;3116  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3117}31183119/** @name XcmV2Instruction */3120export interface XcmV2Instruction extends Enum {3121  readonly isWithdrawAsset: boolean;3122  readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3123  readonly isReserveAssetDeposited: boolean;3124  readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3125  readonly isReceiveTeleportedAsset: boolean;3126  readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3127  readonly isQueryResponse: boolean;3128  readonly asQueryResponse: {3129    readonly queryId: Compact<u64>;3130    readonly response: XcmV2Response;3131    readonly maxWeight: Compact<u64>;3132  } & Struct;3133  readonly isTransferAsset: boolean;3134  readonly asTransferAsset: {3135    readonly assets: XcmV1MultiassetMultiAssets;3136    readonly beneficiary: XcmV1MultiLocation;3137  } & Struct;3138  readonly isTransferReserveAsset: boolean;3139  readonly asTransferReserveAsset: {3140    readonly assets: XcmV1MultiassetMultiAssets;3141    readonly dest: XcmV1MultiLocation;3142    readonly xcm: XcmV2Xcm;3143  } & Struct;3144  readonly isTransact: boolean;3145  readonly asTransact: {3146    readonly originType: XcmV0OriginKind;3147    readonly requireWeightAtMost: Compact<u64>;3148    readonly call: XcmDoubleEncoded;3149  } & Struct;3150  readonly isHrmpNewChannelOpenRequest: boolean;3151  readonly asHrmpNewChannelOpenRequest: {3152    readonly sender: Compact<u32>;3153    readonly maxMessageSize: Compact<u32>;3154    readonly maxCapacity: Compact<u32>;3155  } & Struct;3156  readonly isHrmpChannelAccepted: boolean;3157  readonly asHrmpChannelAccepted: {3158    readonly recipient: Compact<u32>;3159  } & Struct;3160  readonly isHrmpChannelClosing: boolean;3161  readonly asHrmpChannelClosing: {3162    readonly initiator: Compact<u32>;3163    readonly sender: Compact<u32>;3164    readonly recipient: Compact<u32>;3165  } & Struct;3166  readonly isClearOrigin: boolean;3167  readonly isDescendOrigin: boolean;3168  readonly asDescendOrigin: XcmV1MultilocationJunctions;3169  readonly isReportError: boolean;3170  readonly asReportError: {3171    readonly queryId: Compact<u64>;3172    readonly dest: XcmV1MultiLocation;3173    readonly maxResponseWeight: Compact<u64>;3174  } & Struct;3175  readonly isDepositAsset: boolean;3176  readonly asDepositAsset: {3177    readonly assets: XcmV1MultiassetMultiAssetFilter;3178    readonly maxAssets: Compact<u32>;3179    readonly beneficiary: XcmV1MultiLocation;3180  } & Struct;3181  readonly isDepositReserveAsset: boolean;3182  readonly asDepositReserveAsset: {3183    readonly assets: XcmV1MultiassetMultiAssetFilter;3184    readonly maxAssets: Compact<u32>;3185    readonly dest: XcmV1MultiLocation;3186    readonly xcm: XcmV2Xcm;3187  } & Struct;3188  readonly isExchangeAsset: boolean;3189  readonly asExchangeAsset: {3190    readonly give: XcmV1MultiassetMultiAssetFilter;3191    readonly receive: XcmV1MultiassetMultiAssets;3192  } & Struct;3193  readonly isInitiateReserveWithdraw: boolean;3194  readonly asInitiateReserveWithdraw: {3195    readonly assets: XcmV1MultiassetMultiAssetFilter;3196    readonly reserve: XcmV1MultiLocation;3197    readonly xcm: XcmV2Xcm;3198  } & Struct;3199  readonly isInitiateTeleport: boolean;3200  readonly asInitiateTeleport: {3201    readonly assets: XcmV1MultiassetMultiAssetFilter;3202    readonly dest: XcmV1MultiLocation;3203    readonly xcm: XcmV2Xcm;3204  } & Struct;3205  readonly isQueryHolding: boolean;3206  readonly asQueryHolding: {3207    readonly queryId: Compact<u64>;3208    readonly dest: XcmV1MultiLocation;3209    readonly assets: XcmV1MultiassetMultiAssetFilter;3210    readonly maxResponseWeight: Compact<u64>;3211  } & Struct;3212  readonly isBuyExecution: boolean;3213  readonly asBuyExecution: {3214    readonly fees: XcmV1MultiAsset;3215    readonly weightLimit: XcmV2WeightLimit;3216  } & Struct;3217  readonly isRefundSurplus: boolean;3218  readonly isSetErrorHandler: boolean;3219  readonly asSetErrorHandler: XcmV2Xcm;3220  readonly isSetAppendix: boolean;3221  readonly asSetAppendix: XcmV2Xcm;3222  readonly isClearError: boolean;3223  readonly isClaimAsset: boolean;3224  readonly asClaimAsset: {3225    readonly assets: XcmV1MultiassetMultiAssets;3226    readonly ticket: XcmV1MultiLocation;3227  } & Struct;3228  readonly isTrap: boolean;3229  readonly asTrap: Compact<u64>;3230  readonly isSubscribeVersion: boolean;3231  readonly asSubscribeVersion: {3232    readonly queryId: Compact<u64>;3233    readonly maxResponseWeight: Compact<u64>;3234  } & Struct;3235  readonly isUnsubscribeVersion: boolean;3236  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';3237}32383239/** @name XcmV2Response */3240export interface XcmV2Response extends Enum {3241  readonly isNull: boolean;3242  readonly isAssets: boolean;3243  readonly asAssets: XcmV1MultiassetMultiAssets;3244  readonly isExecutionResult: boolean;3245  readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3246  readonly isVersion: boolean;3247  readonly asVersion: u32;3248  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3249}32503251/** @name XcmV2TraitsError */3252export interface XcmV2TraitsError extends Enum {3253  readonly isOverflow: boolean;3254  readonly isUnimplemented: boolean;3255  readonly isUntrustedReserveLocation: boolean;3256  readonly isUntrustedTeleportLocation: boolean;3257  readonly isMultiLocationFull: boolean;3258  readonly isMultiLocationNotInvertible: boolean;3259  readonly isBadOrigin: boolean;3260  readonly isInvalidLocation: boolean;3261  readonly isAssetNotFound: boolean;3262  readonly isFailedToTransactAsset: boolean;3263  readonly isNotWithdrawable: boolean;3264  readonly isLocationCannotHold: boolean;3265  readonly isExceedsMaxMessageSize: boolean;3266  readonly isDestinationUnsupported: boolean;3267  readonly isTransport: boolean;3268  readonly isUnroutable: boolean;3269  readonly isUnknownClaim: boolean;3270  readonly isFailedToDecode: boolean;3271  readonly isMaxWeightInvalid: boolean;3272  readonly isNotHoldingFees: boolean;3273  readonly isTooExpensive: boolean;3274  readonly isTrap: boolean;3275  readonly asTrap: u64;3276  readonly isUnhandledXcmVersion: boolean;3277  readonly isWeightLimitReached: boolean;3278  readonly asWeightLimitReached: u64;3279  readonly isBarrier: boolean;3280  readonly isWeightNotComputable: boolean;3281  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';3282}32833284/** @name XcmV2TraitsOutcome */3285export interface XcmV2TraitsOutcome extends Enum {3286  readonly isComplete: boolean;3287  readonly asComplete: u64;3288  readonly isIncomplete: boolean;3289  readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3290  readonly isError: boolean;3291  readonly asError: XcmV2TraitsError;3292  readonly type: 'Complete' | 'Incomplete' | 'Error';3293}32943295/** @name XcmV2WeightLimit */3296export interface XcmV2WeightLimit extends Enum {3297  readonly isUnlimited: boolean;3298  readonly isLimited: boolean;3299  readonly asLimited: Compact<u64>;3300  readonly type: 'Unlimited' | 'Limited';3301}33023303/** @name XcmV2Xcm */3304export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}33053306/** @name XcmVersionedMultiAssets */3307export interface XcmVersionedMultiAssets extends Enum {3308  readonly isV0: boolean;3309  readonly asV0: Vec<XcmV0MultiAsset>;3310  readonly isV1: boolean;3311  readonly asV1: XcmV1MultiassetMultiAssets;3312  readonly type: 'V0' | 'V1';3313}33143315/** @name XcmVersionedMultiLocation */3316export interface XcmVersionedMultiLocation extends Enum {3317  readonly isV0: boolean;3318  readonly asV0: XcmV0MultiLocation;3319  readonly isV1: boolean;3320  readonly asV1: XcmV1MultiLocation;3321  readonly type: 'V0' | 'V1';3322}33233324/** @name XcmVersionedXcm */3325export interface XcmVersionedXcm extends Enum {3326  readonly isV0: boolean;3327  readonly asV0: XcmV0Xcm;3328  readonly isV1: boolean;3329  readonly asV1: XcmV1Xcm;3330  readonly isV2: boolean;3331  readonly asV2: XcmV2Xcm;3332  readonly type: 'V0' | 'V1' | 'V2';3333}33343335export type PHANTOM_DEFAULT = 'default';
after · tests/src/interfaces/default/types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11  readonly isServiceOverweight: boolean;12  readonly asServiceOverweight: {13    readonly index: u64;14    readonly weightLimit: u64;15  } & Struct;16  readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21  readonly maxIndividual: u64;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26  readonly isUnknown: boolean;27  readonly isOverLimit: boolean;28  readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33  readonly isInvalidFormat: boolean;34  readonly asInvalidFormat: {35    readonly messageId: U8aFixed;36  } & Struct;37  readonly isUnsupportedVersion: boolean;38  readonly asUnsupportedVersion: {39    readonly messageId: U8aFixed;40  } & Struct;41  readonly isExecutedDownward: boolean;42  readonly asExecutedDownward: {43    readonly messageId: U8aFixed;44    readonly outcome: XcmV2TraitsOutcome;45  } & Struct;46  readonly isWeightExhausted: boolean;47  readonly asWeightExhausted: {48    readonly messageId: U8aFixed;49    readonly remainingWeight: u64;50    readonly requiredWeight: u64;51  } & Struct;52  readonly isOverweightEnqueued: boolean;53  readonly asOverweightEnqueued: {54    readonly messageId: U8aFixed;55    readonly overweightIndex: u64;56    readonly requiredWeight: u64;57  } & Struct;58  readonly isOverweightServiced: boolean;59  readonly asOverweightServiced: {60    readonly overweightIndex: u64;61    readonly weightUsed: u64;62  } & Struct;63  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68  readonly beginUsed: u32;69  readonly endUsed: u32;70  readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75  readonly isSetValidationData: boolean;76  readonly asSetValidationData: {77    readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78  } & Struct;79  readonly isSudoSendUpwardMessage: boolean;80  readonly asSudoSendUpwardMessage: {81    readonly message: Bytes;82  } & Struct;83  readonly isAuthorizeUpgrade: boolean;84  readonly asAuthorizeUpgrade: {85    readonly codeHash: H256;86  } & Struct;87  readonly isEnactAuthorizedUpgrade: boolean;88  readonly asEnactAuthorizedUpgrade: {89    readonly code: Bytes;90  } & Struct;91  readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96  readonly isOverlappingUpgrades: boolean;97  readonly isProhibitedByPolkadot: boolean;98  readonly isTooBig: boolean;99  readonly isValidationDataNotAvailable: boolean;100  readonly isHostConfigurationNotAvailable: boolean;101  readonly isNotScheduled: boolean;102  readonly isNothingAuthorized: boolean;103  readonly isUnauthorized: boolean;104  readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109  readonly isValidationFunctionStored: boolean;110  readonly isValidationFunctionApplied: boolean;111  readonly asValidationFunctionApplied: {112    readonly relayChainBlockNum: u32;113  } & Struct;114  readonly isValidationFunctionDiscarded: boolean;115  readonly isUpgradeAuthorized: boolean;116  readonly asUpgradeAuthorized: {117    readonly codeHash: H256;118  } & Struct;119  readonly isDownwardMessagesReceived: boolean;120  readonly asDownwardMessagesReceived: {121    readonly count: u32;122  } & Struct;123  readonly isDownwardMessagesProcessed: boolean;124  readonly asDownwardMessagesProcessed: {125    readonly weightUsed: u64;126    readonly dmqHead: H256;127  } & Struct;128  readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133  readonly dmqMqcHead: H256;134  readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135  readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147  readonly isInvalidFormat: boolean;148  readonly asInvalidFormat: U8aFixed;149  readonly isUnsupportedVersion: boolean;150  readonly asUnsupportedVersion: U8aFixed;151  readonly isExecutedDownward: boolean;152  readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmOrigin */157export interface CumulusPalletXcmOrigin extends Enum {158  readonly isRelay: boolean;159  readonly isSiblingParachain: boolean;160  readonly asSiblingParachain: u32;161  readonly type: 'Relay' | 'SiblingParachain';162}163164/** @name CumulusPalletXcmpQueueCall */165export interface CumulusPalletXcmpQueueCall extends Enum {166  readonly isServiceOverweight: boolean;167  readonly asServiceOverweight: {168    readonly index: u64;169    readonly weightLimit: u64;170  } & Struct;171  readonly isSuspendXcmExecution: boolean;172  readonly isResumeXcmExecution: boolean;173  readonly isUpdateSuspendThreshold: boolean;174  readonly asUpdateSuspendThreshold: {175    readonly new_: u32;176  } & Struct;177  readonly isUpdateDropThreshold: boolean;178  readonly asUpdateDropThreshold: {179    readonly new_: u32;180  } & Struct;181  readonly isUpdateResumeThreshold: boolean;182  readonly asUpdateResumeThreshold: {183    readonly new_: u32;184  } & Struct;185  readonly isUpdateThresholdWeight: boolean;186  readonly asUpdateThresholdWeight: {187    readonly new_: u64;188  } & Struct;189  readonly isUpdateWeightRestrictDecay: boolean;190  readonly asUpdateWeightRestrictDecay: {191    readonly new_: u64;192  } & Struct;193  readonly isUpdateXcmpMaxIndividualWeight: boolean;194  readonly asUpdateXcmpMaxIndividualWeight: {195    readonly new_: u64;196  } & Struct;197  readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198}199200/** @name CumulusPalletXcmpQueueError */201export interface CumulusPalletXcmpQueueError extends Enum {202  readonly isFailedToSend: boolean;203  readonly isBadXcmOrigin: boolean;204  readonly isBadXcm: boolean;205  readonly isBadOverweightIndex: boolean;206  readonly isWeightOverLimit: boolean;207  readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';208}209210/** @name CumulusPalletXcmpQueueEvent */211export interface CumulusPalletXcmpQueueEvent extends Enum {212  readonly isSuccess: boolean;213  readonly asSuccess: Option<H256>;214  readonly isFail: boolean;215  readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;216  readonly isBadVersion: boolean;217  readonly asBadVersion: Option<H256>;218  readonly isBadFormat: boolean;219  readonly asBadFormat: Option<H256>;220  readonly isUpwardMessageSent: boolean;221  readonly asUpwardMessageSent: Option<H256>;222  readonly isXcmpMessageSent: boolean;223  readonly asXcmpMessageSent: Option<H256>;224  readonly isOverweightEnqueued: boolean;225  readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;226  readonly isOverweightServiced: boolean;227  readonly asOverweightServiced: ITuple<[u64, u64]>;228  readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';229}230231/** @name CumulusPalletXcmpQueueInboundChannelDetails */232export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {233  readonly sender: u32;234  readonly state: CumulusPalletXcmpQueueInboundState;235  readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;236}237238/** @name CumulusPalletXcmpQueueInboundState */239export interface CumulusPalletXcmpQueueInboundState extends Enum {240  readonly isOk: boolean;241  readonly isSuspended: boolean;242  readonly type: 'Ok' | 'Suspended';243}244245/** @name CumulusPalletXcmpQueueOutboundChannelDetails */246export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {247  readonly recipient: u32;248  readonly state: CumulusPalletXcmpQueueOutboundState;249  readonly signalsExist: bool;250  readonly firstIndex: u16;251  readonly lastIndex: u16;252}253254/** @name CumulusPalletXcmpQueueOutboundState */255export interface CumulusPalletXcmpQueueOutboundState extends Enum {256  readonly isOk: boolean;257  readonly isSuspended: boolean;258  readonly type: 'Ok' | 'Suspended';259}260261/** @name CumulusPalletXcmpQueueQueueConfigData */262export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {263  readonly suspendThreshold: u32;264  readonly dropThreshold: u32;265  readonly resumeThreshold: u32;266  readonly thresholdWeight: u64;267  readonly weightRestrictDecay: u64;268  readonly xcmpMaxIndividualWeight: u64;269}270271/** @name CumulusPrimitivesParachainInherentParachainInherentData */272export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {273  readonly validationData: PolkadotPrimitivesV2PersistedValidationData;274  readonly relayChainState: SpTrieStorageProof;275  readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;276  readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;277}278279/** @name EthbloomBloom */280export interface EthbloomBloom extends U8aFixed {}281282/** @name EthereumBlock */283export interface EthereumBlock extends Struct {284  readonly header: EthereumHeader;285  readonly transactions: Vec<EthereumTransactionTransactionV2>;286  readonly ommers: Vec<EthereumHeader>;287}288289/** @name EthereumHeader */290export interface EthereumHeader extends Struct {291  readonly parentHash: H256;292  readonly ommersHash: H256;293  readonly beneficiary: H160;294  readonly stateRoot: H256;295  readonly transactionsRoot: H256;296  readonly receiptsRoot: H256;297  readonly logsBloom: EthbloomBloom;298  readonly difficulty: U256;299  readonly number: U256;300  readonly gasLimit: U256;301  readonly gasUsed: U256;302  readonly timestamp: u64;303  readonly extraData: Bytes;304  readonly mixHash: H256;305  readonly nonce: EthereumTypesHashH64;306}307308/** @name EthereumLog */309export interface EthereumLog extends Struct {310  readonly address: H160;311  readonly topics: Vec<H256>;312  readonly data: Bytes;313}314315/** @name EthereumReceiptEip658ReceiptData */316export interface EthereumReceiptEip658ReceiptData extends Struct {317  readonly statusCode: u8;318  readonly usedGas: U256;319  readonly logsBloom: EthbloomBloom;320  readonly logs: Vec<EthereumLog>;321}322323/** @name EthereumReceiptReceiptV3 */324export interface EthereumReceiptReceiptV3 extends Enum {325  readonly isLegacy: boolean;326  readonly asLegacy: EthereumReceiptEip658ReceiptData;327  readonly isEip2930: boolean;328  readonly asEip2930: EthereumReceiptEip658ReceiptData;329  readonly isEip1559: boolean;330  readonly asEip1559: EthereumReceiptEip658ReceiptData;331  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';332}333334/** @name EthereumTransactionAccessListItem */335export interface EthereumTransactionAccessListItem extends Struct {336  readonly address: H160;337  readonly storageKeys: Vec<H256>;338}339340/** @name EthereumTransactionEip1559Transaction */341export interface EthereumTransactionEip1559Transaction extends Struct {342  readonly chainId: u64;343  readonly nonce: U256;344  readonly maxPriorityFeePerGas: U256;345  readonly maxFeePerGas: U256;346  readonly gasLimit: U256;347  readonly action: EthereumTransactionTransactionAction;348  readonly value: U256;349  readonly input: Bytes;350  readonly accessList: Vec<EthereumTransactionAccessListItem>;351  readonly oddYParity: bool;352  readonly r: H256;353  readonly s: H256;354}355356/** @name EthereumTransactionEip2930Transaction */357export interface EthereumTransactionEip2930Transaction extends Struct {358  readonly chainId: u64;359  readonly nonce: U256;360  readonly gasPrice: U256;361  readonly gasLimit: U256;362  readonly action: EthereumTransactionTransactionAction;363  readonly value: U256;364  readonly input: Bytes;365  readonly accessList: Vec<EthereumTransactionAccessListItem>;366  readonly oddYParity: bool;367  readonly r: H256;368  readonly s: H256;369}370371/** @name EthereumTransactionLegacyTransaction */372export interface EthereumTransactionLegacyTransaction extends Struct {373  readonly nonce: U256;374  readonly gasPrice: U256;375  readonly gasLimit: U256;376  readonly action: EthereumTransactionTransactionAction;377  readonly value: U256;378  readonly input: Bytes;379  readonly signature: EthereumTransactionTransactionSignature;380}381382/** @name EthereumTransactionTransactionAction */383export interface EthereumTransactionTransactionAction extends Enum {384  readonly isCall: boolean;385  readonly asCall: H160;386  readonly isCreate: boolean;387  readonly type: 'Call' | 'Create';388}389390/** @name EthereumTransactionTransactionSignature */391export interface EthereumTransactionTransactionSignature extends Struct {392  readonly v: u64;393  readonly r: H256;394  readonly s: H256;395}396397/** @name EthereumTransactionTransactionV2 */398export interface EthereumTransactionTransactionV2 extends Enum {399  readonly isLegacy: boolean;400  readonly asLegacy: EthereumTransactionLegacyTransaction;401  readonly isEip2930: boolean;402  readonly asEip2930: EthereumTransactionEip2930Transaction;403  readonly isEip1559: boolean;404  readonly asEip1559: EthereumTransactionEip1559Transaction;405  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';406}407408/** @name EthereumTypesHashH64 */409export interface EthereumTypesHashH64 extends U8aFixed {}410411/** @name EvmCoreErrorExitError */412export interface EvmCoreErrorExitError extends Enum {413  readonly isStackUnderflow: boolean;414  readonly isStackOverflow: boolean;415  readonly isInvalidJump: boolean;416  readonly isInvalidRange: boolean;417  readonly isDesignatedInvalid: boolean;418  readonly isCallTooDeep: boolean;419  readonly isCreateCollision: boolean;420  readonly isCreateContractLimit: boolean;421  readonly isOutOfOffset: boolean;422  readonly isOutOfGas: boolean;423  readonly isOutOfFund: boolean;424  readonly isPcUnderflow: boolean;425  readonly isCreateEmpty: boolean;426  readonly isOther: boolean;427  readonly asOther: Text;428  readonly isInvalidCode: boolean;429  readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';430}431432/** @name EvmCoreErrorExitFatal */433export interface EvmCoreErrorExitFatal extends Enum {434  readonly isNotSupported: boolean;435  readonly isUnhandledInterrupt: boolean;436  readonly isCallErrorAsFatal: boolean;437  readonly asCallErrorAsFatal: EvmCoreErrorExitError;438  readonly isOther: boolean;439  readonly asOther: Text;440  readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';441}442443/** @name EvmCoreErrorExitReason */444export interface EvmCoreErrorExitReason extends Enum {445  readonly isSucceed: boolean;446  readonly asSucceed: EvmCoreErrorExitSucceed;447  readonly isError: boolean;448  readonly asError: EvmCoreErrorExitError;449  readonly isRevert: boolean;450  readonly asRevert: EvmCoreErrorExitRevert;451  readonly isFatal: boolean;452  readonly asFatal: EvmCoreErrorExitFatal;453  readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';454}455456/** @name EvmCoreErrorExitRevert */457export interface EvmCoreErrorExitRevert extends Enum {458  readonly isReverted: boolean;459  readonly type: 'Reverted';460}461462/** @name EvmCoreErrorExitSucceed */463export interface EvmCoreErrorExitSucceed extends Enum {464  readonly isStopped: boolean;465  readonly isReturned: boolean;466  readonly isSuicided: boolean;467  readonly type: 'Stopped' | 'Returned' | 'Suicided';468}469470/** @name FpRpcTransactionStatus */471export interface FpRpcTransactionStatus extends Struct {472  readonly transactionHash: H256;473  readonly transactionIndex: u32;474  readonly from: H160;475  readonly to: Option<H160>;476  readonly contractAddress: Option<H160>;477  readonly logs: Vec<EthereumLog>;478  readonly logsBloom: EthbloomBloom;479}480481/** @name FrameSupportDispatchRawOrigin */482export interface FrameSupportDispatchRawOrigin extends Enum {483  readonly isRoot: boolean;484  readonly isSigned: boolean;485  readonly asSigned: AccountId32;486  readonly isNone: boolean;487  readonly type: 'Root' | 'Signed' | 'None';488}489490/** @name FrameSupportPalletId */491export interface FrameSupportPalletId extends U8aFixed {}492493/** @name FrameSupportScheduleLookupError */494export interface FrameSupportScheduleLookupError extends Enum {495  readonly isUnknown: boolean;496  readonly isBadFormat: boolean;497  readonly type: 'Unknown' | 'BadFormat';498}499500/** @name FrameSupportScheduleMaybeHashed */501export interface FrameSupportScheduleMaybeHashed extends Enum {502  readonly isValue: boolean;503  readonly asValue: Call;504  readonly isHash: boolean;505  readonly asHash: H256;506  readonly type: 'Value' | 'Hash';507}508509/** @name FrameSupportTokensMiscBalanceStatus */510export interface FrameSupportTokensMiscBalanceStatus extends Enum {511  readonly isFree: boolean;512  readonly isReserved: boolean;513  readonly type: 'Free' | 'Reserved';514}515516/** @name FrameSupportWeightsDispatchClass */517export interface FrameSupportWeightsDispatchClass extends Enum {518  readonly isNormal: boolean;519  readonly isOperational: boolean;520  readonly isMandatory: boolean;521  readonly type: 'Normal' | 'Operational' | 'Mandatory';522}523524/** @name FrameSupportWeightsDispatchInfo */525export interface FrameSupportWeightsDispatchInfo extends Struct {526  readonly weight: u64;527  readonly class: FrameSupportWeightsDispatchClass;528  readonly paysFee: FrameSupportWeightsPays;529}530531/** @name FrameSupportWeightsPays */532export interface FrameSupportWeightsPays extends Enum {533  readonly isYes: boolean;534  readonly isNo: boolean;535  readonly type: 'Yes' | 'No';536}537538/** @name FrameSupportWeightsPerDispatchClassU32 */539export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {540  readonly normal: u32;541  readonly operational: u32;542  readonly mandatory: u32;543}544545/** @name FrameSupportWeightsPerDispatchClassU64 */546export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {547  readonly normal: u64;548  readonly operational: u64;549  readonly mandatory: u64;550}551552/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */553export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {554  readonly normal: FrameSystemLimitsWeightsPerClass;555  readonly operational: FrameSystemLimitsWeightsPerClass;556  readonly mandatory: FrameSystemLimitsWeightsPerClass;557}558559/** @name FrameSupportWeightsRuntimeDbWeight */560export interface FrameSupportWeightsRuntimeDbWeight extends Struct {561  readonly read: u64;562  readonly write: u64;563}564565/** @name FrameSystemAccountInfo */566export interface FrameSystemAccountInfo extends Struct {567  readonly nonce: u32;568  readonly consumers: u32;569  readonly providers: u32;570  readonly sufficients: u32;571  readonly data: PalletBalancesAccountData;572}573574/** @name FrameSystemCall */575export interface FrameSystemCall extends Enum {576  readonly isFillBlock: boolean;577  readonly asFillBlock: {578    readonly ratio: Perbill;579  } & Struct;580  readonly isRemark: boolean;581  readonly asRemark: {582    readonly remark: Bytes;583  } & Struct;584  readonly isSetHeapPages: boolean;585  readonly asSetHeapPages: {586    readonly pages: u64;587  } & Struct;588  readonly isSetCode: boolean;589  readonly asSetCode: {590    readonly code: Bytes;591  } & Struct;592  readonly isSetCodeWithoutChecks: boolean;593  readonly asSetCodeWithoutChecks: {594    readonly code: Bytes;595  } & Struct;596  readonly isSetStorage: boolean;597  readonly asSetStorage: {598    readonly items: Vec<ITuple<[Bytes, Bytes]>>;599  } & Struct;600  readonly isKillStorage: boolean;601  readonly asKillStorage: {602    readonly keys_: Vec<Bytes>;603  } & Struct;604  readonly isKillPrefix: boolean;605  readonly asKillPrefix: {606    readonly prefix: Bytes;607    readonly subkeys: u32;608  } & Struct;609  readonly isRemarkWithEvent: boolean;610  readonly asRemarkWithEvent: {611    readonly remark: Bytes;612  } & Struct;613  readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';614}615616/** @name FrameSystemError */617export interface FrameSystemError extends Enum {618  readonly isInvalidSpecName: boolean;619  readonly isSpecVersionNeedsToIncrease: boolean;620  readonly isFailedToExtractRuntimeVersion: boolean;621  readonly isNonDefaultComposite: boolean;622  readonly isNonZeroRefCount: boolean;623  readonly isCallFiltered: boolean;624  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';625}626627/** @name FrameSystemEvent */628export interface FrameSystemEvent extends Enum {629  readonly isExtrinsicSuccess: boolean;630  readonly asExtrinsicSuccess: {631    readonly dispatchInfo: FrameSupportWeightsDispatchInfo;632  } & Struct;633  readonly isExtrinsicFailed: boolean;634  readonly asExtrinsicFailed: {635    readonly dispatchError: SpRuntimeDispatchError;636    readonly dispatchInfo: FrameSupportWeightsDispatchInfo;637  } & Struct;638  readonly isCodeUpdated: boolean;639  readonly isNewAccount: boolean;640  readonly asNewAccount: {641    readonly account: AccountId32;642  } & Struct;643  readonly isKilledAccount: boolean;644  readonly asKilledAccount: {645    readonly account: AccountId32;646  } & Struct;647  readonly isRemarked: boolean;648  readonly asRemarked: {649    readonly sender: AccountId32;650    readonly hash_: H256;651  } & Struct;652  readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';653}654655/** @name FrameSystemEventRecord */656export interface FrameSystemEventRecord extends Struct {657  readonly phase: FrameSystemPhase;658  readonly event: Event;659  readonly topics: Vec<H256>;660}661662/** @name FrameSystemExtensionsCheckGenesis */663export interface FrameSystemExtensionsCheckGenesis extends Null {}664665/** @name FrameSystemExtensionsCheckNonce */666export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}667668/** @name FrameSystemExtensionsCheckSpecVersion */669export interface FrameSystemExtensionsCheckSpecVersion extends Null {}670671/** @name FrameSystemExtensionsCheckWeight */672export interface FrameSystemExtensionsCheckWeight extends Null {}673674/** @name FrameSystemLastRuntimeUpgradeInfo */675export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {676  readonly specVersion: Compact<u32>;677  readonly specName: Text;678}679680/** @name FrameSystemLimitsBlockLength */681export interface FrameSystemLimitsBlockLength extends Struct {682  readonly max: FrameSupportWeightsPerDispatchClassU32;683}684685/** @name FrameSystemLimitsBlockWeights */686export interface FrameSystemLimitsBlockWeights extends Struct {687  readonly baseBlock: u64;688  readonly maxBlock: u64;689  readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;690}691692/** @name FrameSystemLimitsWeightsPerClass */693export interface FrameSystemLimitsWeightsPerClass extends Struct {694  readonly baseExtrinsic: u64;695  readonly maxExtrinsic: Option<u64>;696  readonly maxTotal: Option<u64>;697  readonly reserved: Option<u64>;698}699700/** @name FrameSystemPhase */701export interface FrameSystemPhase extends Enum {702  readonly isApplyExtrinsic: boolean;703  readonly asApplyExtrinsic: u32;704  readonly isFinalization: boolean;705  readonly isInitialization: boolean;706  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';707}708709/** @name OpalRuntimeOriginCaller */710export interface OpalRuntimeOriginCaller extends Enum {711  readonly isVoid: boolean;712  readonly asVoid: SpCoreVoid;713  readonly isSystem: boolean;714  readonly asSystem: FrameSupportDispatchRawOrigin;715  readonly isPolkadotXcm: boolean;716  readonly asPolkadotXcm: PalletXcmOrigin;717  readonly isCumulusXcm: boolean;718  readonly asCumulusXcm: CumulusPalletXcmOrigin;719  readonly isEthereum: boolean;720  readonly asEthereum: PalletEthereumRawOrigin;721  readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';722}723724/** @name OpalRuntimeRuntime */725export interface OpalRuntimeRuntime extends Null {}726727/** @name OrmlVestingModuleCall */728export interface OrmlVestingModuleCall extends Enum {729  readonly isClaim: boolean;730  readonly isVestedTransfer: boolean;731  readonly asVestedTransfer: {732    readonly dest: MultiAddress;733    readonly schedule: OrmlVestingVestingSchedule;734  } & Struct;735  readonly isUpdateVestingSchedules: boolean;736  readonly asUpdateVestingSchedules: {737    readonly who: MultiAddress;738    readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;739  } & Struct;740  readonly isClaimFor: boolean;741  readonly asClaimFor: {742    readonly dest: MultiAddress;743  } & Struct;744  readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';745}746747/** @name OrmlVestingModuleError */748export interface OrmlVestingModuleError extends Enum {749  readonly isZeroVestingPeriod: boolean;750  readonly isZeroVestingPeriodCount: boolean;751  readonly isInsufficientBalanceToLock: boolean;752  readonly isTooManyVestingSchedules: boolean;753  readonly isAmountLow: boolean;754  readonly isMaxVestingSchedulesExceeded: boolean;755  readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';756}757758/** @name OrmlVestingModuleEvent */759export interface OrmlVestingModuleEvent extends Enum {760  readonly isVestingScheduleAdded: boolean;761  readonly asVestingScheduleAdded: {762    readonly from: AccountId32;763    readonly to: AccountId32;764    readonly vestingSchedule: OrmlVestingVestingSchedule;765  } & Struct;766  readonly isClaimed: boolean;767  readonly asClaimed: {768    readonly who: AccountId32;769    readonly amount: u128;770  } & Struct;771  readonly isVestingSchedulesUpdated: boolean;772  readonly asVestingSchedulesUpdated: {773    readonly who: AccountId32;774  } & Struct;775  readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';776}777778/** @name OrmlVestingVestingSchedule */779export interface OrmlVestingVestingSchedule extends Struct {780  readonly start: u32;781  readonly period: u32;782  readonly periodCount: u32;783  readonly perPeriod: Compact<u128>;784}785786/** @name PalletBalancesAccountData */787export interface PalletBalancesAccountData extends Struct {788  readonly free: u128;789  readonly reserved: u128;790  readonly miscFrozen: u128;791  readonly feeFrozen: u128;792}793794/** @name PalletBalancesBalanceLock */795export interface PalletBalancesBalanceLock extends Struct {796  readonly id: U8aFixed;797  readonly amount: u128;798  readonly reasons: PalletBalancesReasons;799}800801/** @name PalletBalancesCall */802export interface PalletBalancesCall extends Enum {803  readonly isTransfer: boolean;804  readonly asTransfer: {805    readonly dest: MultiAddress;806    readonly value: Compact<u128>;807  } & Struct;808  readonly isSetBalance: boolean;809  readonly asSetBalance: {810    readonly who: MultiAddress;811    readonly newFree: Compact<u128>;812    readonly newReserved: Compact<u128>;813  } & Struct;814  readonly isForceTransfer: boolean;815  readonly asForceTransfer: {816    readonly source: MultiAddress;817    readonly dest: MultiAddress;818    readonly value: Compact<u128>;819  } & Struct;820  readonly isTransferKeepAlive: boolean;821  readonly asTransferKeepAlive: {822    readonly dest: MultiAddress;823    readonly value: Compact<u128>;824  } & Struct;825  readonly isTransferAll: boolean;826  readonly asTransferAll: {827    readonly dest: MultiAddress;828    readonly keepAlive: bool;829  } & Struct;830  readonly isForceUnreserve: boolean;831  readonly asForceUnreserve: {832    readonly who: MultiAddress;833    readonly amount: u128;834  } & Struct;835  readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';836}837838/** @name PalletBalancesError */839export interface PalletBalancesError extends Enum {840  readonly isVestingBalance: boolean;841  readonly isLiquidityRestrictions: boolean;842  readonly isInsufficientBalance: boolean;843  readonly isExistentialDeposit: boolean;844  readonly isKeepAlive: boolean;845  readonly isExistingVestingSchedule: boolean;846  readonly isDeadAccount: boolean;847  readonly isTooManyReserves: boolean;848  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';849}850851/** @name PalletBalancesEvent */852export interface PalletBalancesEvent extends Enum {853  readonly isEndowed: boolean;854  readonly asEndowed: {855    readonly account: AccountId32;856    readonly freeBalance: u128;857  } & Struct;858  readonly isDustLost: boolean;859  readonly asDustLost: {860    readonly account: AccountId32;861    readonly amount: u128;862  } & Struct;863  readonly isTransfer: boolean;864  readonly asTransfer: {865    readonly from: AccountId32;866    readonly to: AccountId32;867    readonly amount: u128;868  } & Struct;869  readonly isBalanceSet: boolean;870  readonly asBalanceSet: {871    readonly who: AccountId32;872    readonly free: u128;873    readonly reserved: u128;874  } & Struct;875  readonly isReserved: boolean;876  readonly asReserved: {877    readonly who: AccountId32;878    readonly amount: u128;879  } & Struct;880  readonly isUnreserved: boolean;881  readonly asUnreserved: {882    readonly who: AccountId32;883    readonly amount: u128;884  } & Struct;885  readonly isReserveRepatriated: boolean;886  readonly asReserveRepatriated: {887    readonly from: AccountId32;888    readonly to: AccountId32;889    readonly amount: u128;890    readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;891  } & Struct;892  readonly isDeposit: boolean;893  readonly asDeposit: {894    readonly who: AccountId32;895    readonly amount: u128;896  } & Struct;897  readonly isWithdraw: boolean;898  readonly asWithdraw: {899    readonly who: AccountId32;900    readonly amount: u128;901  } & Struct;902  readonly isSlashed: boolean;903  readonly asSlashed: {904    readonly who: AccountId32;905    readonly amount: u128;906  } & Struct;907  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';908}909910/** @name PalletBalancesReasons */911export interface PalletBalancesReasons extends Enum {912  readonly isFee: boolean;913  readonly isMisc: boolean;914  readonly isAll: boolean;915  readonly type: 'Fee' | 'Misc' | 'All';916}917918/** @name PalletBalancesReleases */919export interface PalletBalancesReleases extends Enum {920  readonly isV100: boolean;921  readonly isV200: boolean;922  readonly type: 'V100' | 'V200';923}924925/** @name PalletBalancesReserveData */926export interface PalletBalancesReserveData extends Struct {927  readonly id: U8aFixed;928  readonly amount: u128;929}930931/** @name PalletCommonError */932export interface PalletCommonError extends Enum {933  readonly isCollectionNotFound: boolean;934  readonly isMustBeTokenOwner: boolean;935  readonly isNoPermission: boolean;936  readonly isCantDestroyNotEmptyCollection: boolean;937  readonly isPublicMintingNotAllowed: boolean;938  readonly isAddressNotInAllowlist: boolean;939  readonly isCollectionNameLimitExceeded: boolean;940  readonly isCollectionDescriptionLimitExceeded: boolean;941  readonly isCollectionTokenPrefixLimitExceeded: boolean;942  readonly isTotalCollectionsLimitExceeded: boolean;943  readonly isCollectionAdminCountExceeded: boolean;944  readonly isCollectionLimitBoundsExceeded: boolean;945  readonly isOwnerPermissionsCantBeReverted: boolean;946  readonly isTransferNotAllowed: boolean;947  readonly isAccountTokenLimitExceeded: boolean;948  readonly isCollectionTokenLimitExceeded: boolean;949  readonly isMetadataFlagFrozen: boolean;950  readonly isTokenNotFound: boolean;951  readonly isTokenValueTooLow: boolean;952  readonly isApprovedValueTooLow: boolean;953  readonly isCantApproveMoreThanOwned: boolean;954  readonly isAddressIsZero: boolean;955  readonly isUnsupportedOperation: boolean;956  readonly isNotSufficientFounds: boolean;957  readonly isUserIsNotAllowedToNest: boolean;958  readonly isSourceCollectionIsNotAllowedToNest: boolean;959  readonly isCollectionFieldSizeExceeded: boolean;960  readonly isNoSpaceForProperty: boolean;961  readonly isPropertyLimitReached: boolean;962  readonly isPropertyKeyIsTooLong: boolean;963  readonly isInvalidCharacterInPropertyKey: boolean;964  readonly isEmptyPropertyKey: boolean;965  readonly isCollectionIsExternal: boolean;966  readonly isCollectionIsInternal: boolean;967  readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';968}969970/** @name PalletCommonEvent */971export interface PalletCommonEvent extends Enum {972  readonly isCollectionCreated: boolean;973  readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;974  readonly isCollectionDestroyed: boolean;975  readonly asCollectionDestroyed: u32;976  readonly isItemCreated: boolean;977  readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;978  readonly isItemDestroyed: boolean;979  readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;980  readonly isTransfer: boolean;981  readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;982  readonly isApproved: boolean;983  readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;984  readonly isCollectionPropertySet: boolean;985  readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;986  readonly isCollectionPropertyDeleted: boolean;987  readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;988  readonly isTokenPropertySet: boolean;989  readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;990  readonly isTokenPropertyDeleted: boolean;991  readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;992  readonly isPropertyPermissionSet: boolean;993  readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;994  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';995}996997/** @name PalletConfigurationCall */998export interface PalletConfigurationCall extends Enum {999  readonly isSetWeightToFeeCoefficientOverride: boolean;1000  readonly asSetWeightToFeeCoefficientOverride: {1001    readonly coeff: Option<u32>;1002  } & Struct;1003  readonly isSetMinGasPriceOverride: boolean;1004  readonly asSetMinGasPriceOverride: {1005    readonly coeff: Option<u64>;1006  } & Struct;1007  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';1008}10091010/** @name PalletEthereumCall */1011export interface PalletEthereumCall extends Enum {1012  readonly isTransact: boolean;1013  readonly asTransact: {1014    readonly transaction: EthereumTransactionTransactionV2;1015  } & Struct;1016  readonly type: 'Transact';1017}10181019/** @name PalletEthereumError */1020export interface PalletEthereumError extends Enum {1021  readonly isInvalidSignature: boolean;1022  readonly isPreLogExists: boolean;1023  readonly type: 'InvalidSignature' | 'PreLogExists';1024}10251026/** @name PalletEthereumEvent */1027export interface PalletEthereumEvent extends Enum {1028  readonly isExecuted: boolean;1029  readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1030  readonly type: 'Executed';1031}10321033/** @name PalletEthereumFakeTransactionFinalizer */1034export interface PalletEthereumFakeTransactionFinalizer extends Null {}10351036/** @name PalletEthereumRawOrigin */1037export interface PalletEthereumRawOrigin extends Enum {1038  readonly isEthereumTransaction: boolean;1039  readonly asEthereumTransaction: H160;1040  readonly type: 'EthereumTransaction';1041}10421043/** @name PalletEvmAccountBasicCrossAccountIdRepr */1044export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1045  readonly isSubstrate: boolean;1046  readonly asSubstrate: AccountId32;1047  readonly isEthereum: boolean;1048  readonly asEthereum: H160;1049  readonly type: 'Substrate' | 'Ethereum';1050}10511052/** @name PalletEvmCall */1053export interface PalletEvmCall extends Enum {1054  readonly isWithdraw: boolean;1055  readonly asWithdraw: {1056    readonly address: H160;1057    readonly value: u128;1058  } & Struct;1059  readonly isCall: boolean;1060  readonly asCall: {1061    readonly source: H160;1062    readonly target: H160;1063    readonly input: Bytes;1064    readonly value: U256;1065    readonly gasLimit: u64;1066    readonly maxFeePerGas: U256;1067    readonly maxPriorityFeePerGas: Option<U256>;1068    readonly nonce: Option<U256>;1069    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1070  } & Struct;1071  readonly isCreate: boolean;1072  readonly asCreate: {1073    readonly source: H160;1074    readonly init: Bytes;1075    readonly value: U256;1076    readonly gasLimit: u64;1077    readonly maxFeePerGas: U256;1078    readonly maxPriorityFeePerGas: Option<U256>;1079    readonly nonce: Option<U256>;1080    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1081  } & Struct;1082  readonly isCreate2: boolean;1083  readonly asCreate2: {1084    readonly source: H160;1085    readonly init: Bytes;1086    readonly salt: H256;1087    readonly value: U256;1088    readonly gasLimit: u64;1089    readonly maxFeePerGas: U256;1090    readonly maxPriorityFeePerGas: Option<U256>;1091    readonly nonce: Option<U256>;1092    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1093  } & Struct;1094  readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1095}10961097/** @name PalletEvmCoderSubstrateError */1098export interface PalletEvmCoderSubstrateError extends Enum {1099  readonly isOutOfGas: boolean;1100  readonly isOutOfFund: boolean;1101  readonly type: 'OutOfGas' | 'OutOfFund';1102}11031104/** @name PalletEvmContractHelpersError */1105export interface PalletEvmContractHelpersError extends Enum {1106  readonly isNoPermission: boolean;1107  readonly type: 'NoPermission';1108}11091110/** @name PalletEvmContractHelpersSponsoringModeT */1111export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1112  readonly isDisabled: boolean;1113  readonly isAllowlisted: boolean;1114  readonly isGenerous: boolean;1115  readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1116}11171118/** @name PalletEvmError */1119export interface PalletEvmError extends Enum {1120  readonly isBalanceLow: boolean;1121  readonly isFeeOverflow: boolean;1122  readonly isPaymentOverflow: boolean;1123  readonly isWithdrawFailed: boolean;1124  readonly isGasPriceTooLow: boolean;1125  readonly isInvalidNonce: boolean;1126  readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';1127}11281129/** @name PalletEvmEvent */1130export interface PalletEvmEvent extends Enum {1131  readonly isLog: boolean;1132  readonly asLog: EthereumLog;1133  readonly isCreated: boolean;1134  readonly asCreated: H160;1135  readonly isCreatedFailed: boolean;1136  readonly asCreatedFailed: H160;1137  readonly isExecuted: boolean;1138  readonly asExecuted: H160;1139  readonly isExecutedFailed: boolean;1140  readonly asExecutedFailed: H160;1141  readonly isBalanceDeposit: boolean;1142  readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1143  readonly isBalanceWithdraw: boolean;1144  readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1145  readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1146}11471148/** @name PalletEvmMigrationCall */1149export interface PalletEvmMigrationCall extends Enum {1150  readonly isBegin: boolean;1151  readonly asBegin: {1152    readonly address: H160;1153  } & Struct;1154  readonly isSetData: boolean;1155  readonly asSetData: {1156    readonly address: H160;1157    readonly data: Vec<ITuple<[H256, H256]>>;1158  } & Struct;1159  readonly isFinish: boolean;1160  readonly asFinish: {1161    readonly address: H160;1162    readonly code: Bytes;1163  } & Struct;1164  readonly type: 'Begin' | 'SetData' | 'Finish';1165}11661167/** @name PalletEvmMigrationError */1168export interface PalletEvmMigrationError extends Enum {1169  readonly isAccountNotEmpty: boolean;1170  readonly isAccountIsNotMigrating: boolean;1171  readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1172}11731174/** @name PalletFungibleError */1175export interface PalletFungibleError extends Enum {1176  readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1177  readonly isFungibleItemsHaveNoId: boolean;1178  readonly isFungibleItemsDontHaveData: boolean;1179  readonly isFungibleDisallowsNesting: boolean;1180  readonly isSettingPropertiesNotAllowed: boolean;1181  readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1182}11831184/** @name PalletInflationCall */1185export interface PalletInflationCall extends Enum {1186  readonly isStartInflation: boolean;1187  readonly asStartInflation: {1188    readonly inflationStartRelayBlock: u32;1189  } & Struct;1190  readonly type: 'StartInflation';1191}11921193/** @name PalletNonfungibleError */1194export interface PalletNonfungibleError extends Enum {1195  readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1196  readonly isNonfungibleItemsHaveNoAmount: boolean;1197  readonly isCantBurnNftWithChildren: boolean;1198  readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1199}12001201/** @name PalletNonfungibleItemData */1202export interface PalletNonfungibleItemData extends Struct {1203  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1204}12051206/** @name PalletRefungibleError */1207export interface PalletRefungibleError extends Enum {1208  readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1209  readonly isWrongRefungiblePieces: boolean;1210  readonly isRepartitionWhileNotOwningAllPieces: boolean;1211  readonly isRefungibleDisallowsNesting: boolean;1212  readonly isSettingPropertiesNotAllowed: boolean;1213  readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1214}12151216/** @name PalletRefungibleItemData */1217export interface PalletRefungibleItemData extends Struct {1218  readonly constData: Bytes;1219}12201221/** @name PalletRmrkCoreCall */1222export interface PalletRmrkCoreCall extends Enum {1223  readonly isCreateCollection: boolean;1224  readonly asCreateCollection: {1225    readonly metadata: Bytes;1226    readonly max: Option<u32>;1227    readonly symbol: Bytes;1228  } & Struct;1229  readonly isDestroyCollection: boolean;1230  readonly asDestroyCollection: {1231    readonly collectionId: u32;1232  } & Struct;1233  readonly isChangeCollectionIssuer: boolean;1234  readonly asChangeCollectionIssuer: {1235    readonly collectionId: u32;1236    readonly newIssuer: MultiAddress;1237  } & Struct;1238  readonly isLockCollection: boolean;1239  readonly asLockCollection: {1240    readonly collectionId: u32;1241  } & Struct;1242  readonly isMintNft: boolean;1243  readonly asMintNft: {1244    readonly owner: Option<AccountId32>;1245    readonly collectionId: u32;1246    readonly recipient: Option<AccountId32>;1247    readonly royaltyAmount: Option<Permill>;1248    readonly metadata: Bytes;1249    readonly transferable: bool;1250    readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1251  } & Struct;1252  readonly isBurnNft: boolean;1253  readonly asBurnNft: {1254    readonly collectionId: u32;1255    readonly nftId: u32;1256    readonly maxBurns: u32;1257  } & Struct;1258  readonly isSend: boolean;1259  readonly asSend: {1260    readonly rmrkCollectionId: u32;1261    readonly rmrkNftId: u32;1262    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1263  } & Struct;1264  readonly isAcceptNft: boolean;1265  readonly asAcceptNft: {1266    readonly rmrkCollectionId: u32;1267    readonly rmrkNftId: u32;1268    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1269  } & Struct;1270  readonly isRejectNft: boolean;1271  readonly asRejectNft: {1272    readonly rmrkCollectionId: u32;1273    readonly rmrkNftId: u32;1274  } & Struct;1275  readonly isAcceptResource: boolean;1276  readonly asAcceptResource: {1277    readonly rmrkCollectionId: u32;1278    readonly rmrkNftId: u32;1279    readonly resourceId: u32;1280  } & Struct;1281  readonly isAcceptResourceRemoval: boolean;1282  readonly asAcceptResourceRemoval: {1283    readonly rmrkCollectionId: u32;1284    readonly rmrkNftId: u32;1285    readonly resourceId: u32;1286  } & Struct;1287  readonly isSetProperty: boolean;1288  readonly asSetProperty: {1289    readonly rmrkCollectionId: Compact<u32>;1290    readonly maybeNftId: Option<u32>;1291    readonly key: Bytes;1292    readonly value: Bytes;1293  } & Struct;1294  readonly isSetPriority: boolean;1295  readonly asSetPriority: {1296    readonly rmrkCollectionId: u32;1297    readonly rmrkNftId: u32;1298    readonly priorities: Vec<u32>;1299  } & Struct;1300  readonly isAddBasicResource: boolean;1301  readonly asAddBasicResource: {1302    readonly rmrkCollectionId: u32;1303    readonly nftId: u32;1304    readonly resource: RmrkTraitsResourceBasicResource;1305  } & Struct;1306  readonly isAddComposableResource: boolean;1307  readonly asAddComposableResource: {1308    readonly rmrkCollectionId: u32;1309    readonly nftId: u32;1310    readonly resource: RmrkTraitsResourceComposableResource;1311  } & Struct;1312  readonly isAddSlotResource: boolean;1313  readonly asAddSlotResource: {1314    readonly rmrkCollectionId: u32;1315    readonly nftId: u32;1316    readonly resource: RmrkTraitsResourceSlotResource;1317  } & Struct;1318  readonly isRemoveResource: boolean;1319  readonly asRemoveResource: {1320    readonly rmrkCollectionId: u32;1321    readonly nftId: u32;1322    readonly resourceId: u32;1323  } & Struct;1324  readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1325}13261327/** @name PalletRmrkCoreError */1328export interface PalletRmrkCoreError extends Enum {1329  readonly isCorruptedCollectionType: boolean;1330  readonly isRmrkPropertyKeyIsTooLong: boolean;1331  readonly isRmrkPropertyValueIsTooLong: boolean;1332  readonly isRmrkPropertyIsNotFound: boolean;1333  readonly isUnableToDecodeRmrkData: boolean;1334  readonly isCollectionNotEmpty: boolean;1335  readonly isNoAvailableCollectionId: boolean;1336  readonly isNoAvailableNftId: boolean;1337  readonly isCollectionUnknown: boolean;1338  readonly isNoPermission: boolean;1339  readonly isNonTransferable: boolean;1340  readonly isCollectionFullOrLocked: boolean;1341  readonly isResourceDoesntExist: boolean;1342  readonly isCannotSendToDescendentOrSelf: boolean;1343  readonly isCannotAcceptNonOwnedNft: boolean;1344  readonly isCannotRejectNonOwnedNft: boolean;1345  readonly isCannotRejectNonPendingNft: boolean;1346  readonly isResourceNotPending: boolean;1347  readonly isNoAvailableResourceId: boolean;1348  readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1349}13501351/** @name PalletRmrkCoreEvent */1352export interface PalletRmrkCoreEvent extends Enum {1353  readonly isCollectionCreated: boolean;1354  readonly asCollectionCreated: {1355    readonly issuer: AccountId32;1356    readonly collectionId: u32;1357  } & Struct;1358  readonly isCollectionDestroyed: boolean;1359  readonly asCollectionDestroyed: {1360    readonly issuer: AccountId32;1361    readonly collectionId: u32;1362  } & Struct;1363  readonly isIssuerChanged: boolean;1364  readonly asIssuerChanged: {1365    readonly oldIssuer: AccountId32;1366    readonly newIssuer: AccountId32;1367    readonly collectionId: u32;1368  } & Struct;1369  readonly isCollectionLocked: boolean;1370  readonly asCollectionLocked: {1371    readonly issuer: AccountId32;1372    readonly collectionId: u32;1373  } & Struct;1374  readonly isNftMinted: boolean;1375  readonly asNftMinted: {1376    readonly owner: AccountId32;1377    readonly collectionId: u32;1378    readonly nftId: u32;1379  } & Struct;1380  readonly isNftBurned: boolean;1381  readonly asNftBurned: {1382    readonly owner: AccountId32;1383    readonly nftId: u32;1384  } & Struct;1385  readonly isNftSent: boolean;1386  readonly asNftSent: {1387    readonly sender: AccountId32;1388    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1389    readonly collectionId: u32;1390    readonly nftId: u32;1391    readonly approvalRequired: bool;1392  } & Struct;1393  readonly isNftAccepted: boolean;1394  readonly asNftAccepted: {1395    readonly sender: AccountId32;1396    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1397    readonly collectionId: u32;1398    readonly nftId: u32;1399  } & Struct;1400  readonly isNftRejected: boolean;1401  readonly asNftRejected: {1402    readonly sender: AccountId32;1403    readonly collectionId: u32;1404    readonly nftId: u32;1405  } & Struct;1406  readonly isPropertySet: boolean;1407  readonly asPropertySet: {1408    readonly collectionId: u32;1409    readonly maybeNftId: Option<u32>;1410    readonly key: Bytes;1411    readonly value: Bytes;1412  } & Struct;1413  readonly isResourceAdded: boolean;1414  readonly asResourceAdded: {1415    readonly nftId: u32;1416    readonly resourceId: u32;1417  } & Struct;1418  readonly isResourceRemoval: boolean;1419  readonly asResourceRemoval: {1420    readonly nftId: u32;1421    readonly resourceId: u32;1422  } & Struct;1423  readonly isResourceAccepted: boolean;1424  readonly asResourceAccepted: {1425    readonly nftId: u32;1426    readonly resourceId: u32;1427  } & Struct;1428  readonly isResourceRemovalAccepted: boolean;1429  readonly asResourceRemovalAccepted: {1430    readonly nftId: u32;1431    readonly resourceId: u32;1432  } & Struct;1433  readonly isPrioritySet: boolean;1434  readonly asPrioritySet: {1435    readonly collectionId: u32;1436    readonly nftId: u32;1437  } & Struct;1438  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1439}14401441/** @name PalletRmrkEquipCall */1442export interface PalletRmrkEquipCall extends Enum {1443  readonly isCreateBase: boolean;1444  readonly asCreateBase: {1445    readonly baseType: Bytes;1446    readonly symbol: Bytes;1447    readonly parts: Vec<RmrkTraitsPartPartType>;1448  } & Struct;1449  readonly isThemeAdd: boolean;1450  readonly asThemeAdd: {1451    readonly baseId: u32;1452    readonly theme: RmrkTraitsTheme;1453  } & Struct;1454  readonly isEquippable: boolean;1455  readonly asEquippable: {1456    readonly baseId: u32;1457    readonly slotId: u32;1458    readonly equippables: RmrkTraitsPartEquippableList;1459  } & Struct;1460  readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1461}14621463/** @name PalletRmrkEquipError */1464export interface PalletRmrkEquipError extends Enum {1465  readonly isPermissionError: boolean;1466  readonly isNoAvailableBaseId: boolean;1467  readonly isNoAvailablePartId: boolean;1468  readonly isBaseDoesntExist: boolean;1469  readonly isNeedsDefaultThemeFirst: boolean;1470  readonly isPartDoesntExist: boolean;1471  readonly isNoEquippableOnFixedPart: boolean;1472  readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1473}14741475/** @name PalletRmrkEquipEvent */1476export interface PalletRmrkEquipEvent extends Enum {1477  readonly isBaseCreated: boolean;1478  readonly asBaseCreated: {1479    readonly issuer: AccountId32;1480    readonly baseId: u32;1481  } & Struct;1482  readonly isEquippablesUpdated: boolean;1483  readonly asEquippablesUpdated: {1484    readonly baseId: u32;1485    readonly slotId: u32;1486  } & Struct;1487  readonly type: 'BaseCreated' | 'EquippablesUpdated';1488}14891490/** @name PalletStructureCall */1491export interface PalletStructureCall extends Null {}14921493/** @name PalletStructureError */1494export interface PalletStructureError extends Enum {1495  readonly isOuroborosDetected: boolean;1496  readonly isDepthLimit: boolean;1497  readonly isBreadthLimit: boolean;1498  readonly isTokenNotFound: boolean;1499  readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1500}15011502/** @name PalletStructureEvent */1503export interface PalletStructureEvent extends Enum {1504  readonly isExecuted: boolean;1505  readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1506  readonly type: 'Executed';1507}15081509/** @name PalletSudoCall */1510export interface PalletSudoCall extends Enum {1511  readonly isSudo: boolean;1512  readonly asSudo: {1513    readonly call: Call;1514  } & Struct;1515  readonly isSudoUncheckedWeight: boolean;1516  readonly asSudoUncheckedWeight: {1517    readonly call: Call;1518    readonly weight: u64;1519  } & Struct;1520  readonly isSetKey: boolean;1521  readonly asSetKey: {1522    readonly new_: MultiAddress;1523  } & Struct;1524  readonly isSudoAs: boolean;1525  readonly asSudoAs: {1526    readonly who: MultiAddress;1527    readonly call: Call;1528  } & Struct;1529  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1530}15311532/** @name PalletSudoError */1533export interface PalletSudoError extends Enum {1534  readonly isRequireSudo: boolean;1535  readonly type: 'RequireSudo';1536}15371538/** @name PalletSudoEvent */1539export interface PalletSudoEvent extends Enum {1540  readonly isSudid: boolean;1541  readonly asSudid: {1542    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1543  } & Struct;1544  readonly isKeyChanged: boolean;1545  readonly asKeyChanged: {1546    readonly oldSudoer: Option<AccountId32>;1547  } & Struct;1548  readonly isSudoAsDone: boolean;1549  readonly asSudoAsDone: {1550    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1551  } & Struct;1552  readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1553}15541555/** @name PalletTemplateTransactionPaymentCall */1556export interface PalletTemplateTransactionPaymentCall extends Null {}15571558/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1559export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}15601561/** @name PalletTimestampCall */1562export interface PalletTimestampCall extends Enum {1563  readonly isSet: boolean;1564  readonly asSet: {1565    readonly now: Compact<u64>;1566  } & Struct;1567  readonly type: 'Set';1568}15691570/** @name PalletTransactionPaymentReleases */1571export interface PalletTransactionPaymentReleases extends Enum {1572  readonly isV1Ancient: boolean;1573  readonly isV2: boolean;1574  readonly type: 'V1Ancient' | 'V2';1575}15761577/** @name PalletTreasuryCall */1578export interface PalletTreasuryCall extends Enum {1579  readonly isProposeSpend: boolean;1580  readonly asProposeSpend: {1581    readonly value: Compact<u128>;1582    readonly beneficiary: MultiAddress;1583  } & Struct;1584  readonly isRejectProposal: boolean;1585  readonly asRejectProposal: {1586    readonly proposalId: Compact<u32>;1587  } & Struct;1588  readonly isApproveProposal: boolean;1589  readonly asApproveProposal: {1590    readonly proposalId: Compact<u32>;1591  } & Struct;1592  readonly isRemoveApproval: boolean;1593  readonly asRemoveApproval: {1594    readonly proposalId: Compact<u32>;1595  } & Struct;1596  readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';1597}15981599/** @name PalletTreasuryError */1600export interface PalletTreasuryError extends Enum {1601  readonly isInsufficientProposersBalance: boolean;1602  readonly isInvalidIndex: boolean;1603  readonly isTooManyApprovals: boolean;1604  readonly isProposalNotApproved: boolean;1605  readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';1606}16071608/** @name PalletTreasuryEvent */1609export interface PalletTreasuryEvent extends Enum {1610  readonly isProposed: boolean;1611  readonly asProposed: {1612    readonly proposalIndex: u32;1613  } & Struct;1614  readonly isSpending: boolean;1615  readonly asSpending: {1616    readonly budgetRemaining: u128;1617  } & Struct;1618  readonly isAwarded: boolean;1619  readonly asAwarded: {1620    readonly proposalIndex: u32;1621    readonly award: u128;1622    readonly account: AccountId32;1623  } & Struct;1624  readonly isRejected: boolean;1625  readonly asRejected: {1626    readonly proposalIndex: u32;1627    readonly slashed: u128;1628  } & Struct;1629  readonly isBurnt: boolean;1630  readonly asBurnt: {1631    readonly burntFunds: u128;1632  } & Struct;1633  readonly isRollover: boolean;1634  readonly asRollover: {1635    readonly rolloverBalance: u128;1636  } & Struct;1637  readonly isDeposit: boolean;1638  readonly asDeposit: {1639    readonly value: u128;1640  } & Struct;1641  readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';1642}16431644/** @name PalletTreasuryProposal */1645export interface PalletTreasuryProposal extends Struct {1646  readonly proposer: AccountId32;1647  readonly value: u128;1648  readonly beneficiary: AccountId32;1649  readonly bond: u128;1650}16511652/** @name PalletUniqueCall */1653export interface PalletUniqueCall extends Enum {1654  readonly isCreateCollection: boolean;1655  readonly asCreateCollection: {1656    readonly collectionName: Vec<u16>;1657    readonly collectionDescription: Vec<u16>;1658    readonly tokenPrefix: Bytes;1659    readonly mode: UpDataStructsCollectionMode;1660  } & Struct;1661  readonly isCreateCollectionEx: boolean;1662  readonly asCreateCollectionEx: {1663    readonly data: UpDataStructsCreateCollectionData;1664  } & Struct;1665  readonly isDestroyCollection: boolean;1666  readonly asDestroyCollection: {1667    readonly collectionId: u32;1668  } & Struct;1669  readonly isAddToAllowList: boolean;1670  readonly asAddToAllowList: {1671    readonly collectionId: u32;1672    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1673  } & Struct;1674  readonly isRemoveFromAllowList: boolean;1675  readonly asRemoveFromAllowList: {1676    readonly collectionId: u32;1677    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1678  } & Struct;1679  readonly isChangeCollectionOwner: boolean;1680  readonly asChangeCollectionOwner: {1681    readonly collectionId: u32;1682    readonly newOwner: AccountId32;1683  } & Struct;1684  readonly isAddCollectionAdmin: boolean;1685  readonly asAddCollectionAdmin: {1686    readonly collectionId: u32;1687    readonly newAdmin: PalletEvmAccountBasicCrossAccountIdRepr;1688  } & Struct;1689  readonly isRemoveCollectionAdmin: boolean;1690  readonly asRemoveCollectionAdmin: {1691    readonly collectionId: u32;1692    readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1693  } & Struct;1694  readonly isSetCollectionSponsor: boolean;1695  readonly asSetCollectionSponsor: {1696    readonly collectionId: u32;1697    readonly newSponsor: AccountId32;1698  } & Struct;1699  readonly isConfirmSponsorship: boolean;1700  readonly asConfirmSponsorship: {1701    readonly collectionId: u32;1702  } & Struct;1703  readonly isRemoveCollectionSponsor: boolean;1704  readonly asRemoveCollectionSponsor: {1705    readonly collectionId: u32;1706  } & Struct;1707  readonly isCreateItem: boolean;1708  readonly asCreateItem: {1709    readonly collectionId: u32;1710    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1711    readonly data: UpDataStructsCreateItemData;1712  } & Struct;1713  readonly isCreateMultipleItems: boolean;1714  readonly asCreateMultipleItems: {1715    readonly collectionId: u32;1716    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1717    readonly itemsData: Vec<UpDataStructsCreateItemData>;1718  } & Struct;1719  readonly isSetCollectionProperties: boolean;1720  readonly asSetCollectionProperties: {1721    readonly collectionId: u32;1722    readonly properties: Vec<UpDataStructsProperty>;1723  } & Struct;1724  readonly isDeleteCollectionProperties: boolean;1725  readonly asDeleteCollectionProperties: {1726    readonly collectionId: u32;1727    readonly propertyKeys: Vec<Bytes>;1728  } & Struct;1729  readonly isSetTokenProperties: boolean;1730  readonly asSetTokenProperties: {1731    readonly collectionId: u32;1732    readonly tokenId: u32;1733    readonly properties: Vec<UpDataStructsProperty>;1734  } & Struct;1735  readonly isDeleteTokenProperties: boolean;1736  readonly asDeleteTokenProperties: {1737    readonly collectionId: u32;1738    readonly tokenId: u32;1739    readonly propertyKeys: Vec<Bytes>;1740  } & Struct;1741  readonly isSetTokenPropertyPermissions: boolean;1742  readonly asSetTokenPropertyPermissions: {1743    readonly collectionId: u32;1744    readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1745  } & Struct;1746  readonly isCreateMultipleItemsEx: boolean;1747  readonly asCreateMultipleItemsEx: {1748    readonly collectionId: u32;1749    readonly data: UpDataStructsCreateItemExData;1750  } & Struct;1751  readonly isSetTransfersEnabledFlag: boolean;1752  readonly asSetTransfersEnabledFlag: {1753    readonly collectionId: u32;1754    readonly value: bool;1755  } & Struct;1756  readonly isBurnItem: boolean;1757  readonly asBurnItem: {1758    readonly collectionId: u32;1759    readonly itemId: u32;1760    readonly value: u128;1761  } & Struct;1762  readonly isBurnFrom: boolean;1763  readonly asBurnFrom: {1764    readonly collectionId: u32;1765    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1766    readonly itemId: u32;1767    readonly value: u128;1768  } & Struct;1769  readonly isTransfer: boolean;1770  readonly asTransfer: {1771    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1772    readonly collectionId: u32;1773    readonly itemId: u32;1774    readonly value: u128;1775  } & Struct;1776  readonly isApprove: boolean;1777  readonly asApprove: {1778    readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1779    readonly collectionId: u32;1780    readonly itemId: u32;1781    readonly amount: u128;1782  } & Struct;1783  readonly isTransferFrom: boolean;1784  readonly asTransferFrom: {1785    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1786    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1787    readonly collectionId: u32;1788    readonly itemId: u32;1789    readonly value: u128;1790  } & Struct;1791  readonly isSetCollectionLimits: boolean;1792  readonly asSetCollectionLimits: {1793    readonly collectionId: u32;1794    readonly newLimit: UpDataStructsCollectionLimits;1795  } & Struct;1796  readonly isSetCollectionPermissions: boolean;1797  readonly asSetCollectionPermissions: {1798    readonly collectionId: u32;1799    readonly newPermission: UpDataStructsCollectionPermissions;1800  } & Struct;1801  readonly isRepartition: boolean;1802  readonly asRepartition: {1803    readonly collectionId: u32;1804    readonly tokenId: u32;1805    readonly amount: u128;1806  } & Struct;1807  readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';1808}18091810/** @name PalletUniqueError */1811export interface PalletUniqueError extends Enum {1812  readonly isCollectionDecimalPointLimitExceeded: boolean;1813  readonly isConfirmUnsetSponsorFail: boolean;1814  readonly isEmptyArgument: boolean;1815  readonly isRepartitionCalledOnNonRefungibleCollection: boolean;1816  readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';1817}18181819/** @name PalletUniqueRawEvent */1820export interface PalletUniqueRawEvent extends Enum {1821  readonly isCollectionSponsorRemoved: boolean;1822  readonly asCollectionSponsorRemoved: u32;1823  readonly isCollectionAdminAdded: boolean;1824  readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1825  readonly isCollectionOwnedChanged: boolean;1826  readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1827  readonly isCollectionSponsorSet: boolean;1828  readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1829  readonly isSponsorshipConfirmed: boolean;1830  readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1831  readonly isCollectionAdminRemoved: boolean;1832  readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1833  readonly isAllowListAddressRemoved: boolean;1834  readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1835  readonly isAllowListAddressAdded: boolean;1836  readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1837  readonly isCollectionLimitSet: boolean;1838  readonly asCollectionLimitSet: u32;1839  readonly isCollectionPermissionSet: boolean;1840  readonly asCollectionPermissionSet: u32;1841  readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1842}18431844/** @name PalletUniqueSchedulerCall */1845export interface PalletUniqueSchedulerCall extends Enum {1846  readonly isScheduleNamed: boolean;1847  readonly asScheduleNamed: {1848    readonly id: U8aFixed;1849    readonly when: u32;1850    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1851    readonly priority: u8;1852    readonly call: FrameSupportScheduleMaybeHashed;1853  } & Struct;1854  readonly isCancelNamed: boolean;1855  readonly asCancelNamed: {1856    readonly id: U8aFixed;1857  } & Struct;1858  readonly isScheduleNamedAfter: boolean;1859  readonly asScheduleNamedAfter: {1860    readonly id: U8aFixed;1861    readonly after: u32;1862    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1863    readonly priority: u8;1864    readonly call: FrameSupportScheduleMaybeHashed;1865  } & Struct;1866  readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';1867}18681869/** @name PalletUniqueSchedulerError */1870export interface PalletUniqueSchedulerError extends Enum {1871  readonly isFailedToSchedule: boolean;1872  readonly isNotFound: boolean;1873  readonly isTargetBlockNumberInPast: boolean;1874  readonly isRescheduleNoChange: boolean;1875  readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';1876}18771878/** @name PalletUniqueSchedulerEvent */1879export interface PalletUniqueSchedulerEvent extends Enum {1880  readonly isScheduled: boolean;1881  readonly asScheduled: {1882    readonly when: u32;1883    readonly index: u32;1884  } & Struct;1885  readonly isCanceled: boolean;1886  readonly asCanceled: {1887    readonly when: u32;1888    readonly index: u32;1889  } & Struct;1890  readonly isDispatched: boolean;1891  readonly asDispatched: {1892    readonly task: ITuple<[u32, u32]>;1893    readonly id: Option<U8aFixed>;1894    readonly result: Result<Null, SpRuntimeDispatchError>;1895  } & Struct;1896  readonly isCallLookupFailed: boolean;1897  readonly asCallLookupFailed: {1898    readonly task: ITuple<[u32, u32]>;1899    readonly id: Option<U8aFixed>;1900    readonly error: FrameSupportScheduleLookupError;1901  } & Struct;1902  readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1903}19041905/** @name PalletUniqueSchedulerScheduledV3 */1906export interface PalletUniqueSchedulerScheduledV3 extends Struct {1907  readonly maybeId: Option<U8aFixed>;1908  readonly priority: u8;1909  readonly call: FrameSupportScheduleMaybeHashed;1910  readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1911  readonly origin: OpalRuntimeOriginCaller;1912}19131914/** @name PalletXcmCall */1915export interface PalletXcmCall extends Enum {1916  readonly isSend: boolean;1917  readonly asSend: {1918    readonly dest: XcmVersionedMultiLocation;1919    readonly message: XcmVersionedXcm;1920  } & Struct;1921  readonly isTeleportAssets: boolean;1922  readonly asTeleportAssets: {1923    readonly dest: XcmVersionedMultiLocation;1924    readonly beneficiary: XcmVersionedMultiLocation;1925    readonly assets: XcmVersionedMultiAssets;1926    readonly feeAssetItem: u32;1927  } & Struct;1928  readonly isReserveTransferAssets: boolean;1929  readonly asReserveTransferAssets: {1930    readonly dest: XcmVersionedMultiLocation;1931    readonly beneficiary: XcmVersionedMultiLocation;1932    readonly assets: XcmVersionedMultiAssets;1933    readonly feeAssetItem: u32;1934  } & Struct;1935  readonly isExecute: boolean;1936  readonly asExecute: {1937    readonly message: XcmVersionedXcm;1938    readonly maxWeight: u64;1939  } & Struct;1940  readonly isForceXcmVersion: boolean;1941  readonly asForceXcmVersion: {1942    readonly location: XcmV1MultiLocation;1943    readonly xcmVersion: u32;1944  } & Struct;1945  readonly isForceDefaultXcmVersion: boolean;1946  readonly asForceDefaultXcmVersion: {1947    readonly maybeXcmVersion: Option<u32>;1948  } & Struct;1949  readonly isForceSubscribeVersionNotify: boolean;1950  readonly asForceSubscribeVersionNotify: {1951    readonly location: XcmVersionedMultiLocation;1952  } & Struct;1953  readonly isForceUnsubscribeVersionNotify: boolean;1954  readonly asForceUnsubscribeVersionNotify: {1955    readonly location: XcmVersionedMultiLocation;1956  } & Struct;1957  readonly isLimitedReserveTransferAssets: boolean;1958  readonly asLimitedReserveTransferAssets: {1959    readonly dest: XcmVersionedMultiLocation;1960    readonly beneficiary: XcmVersionedMultiLocation;1961    readonly assets: XcmVersionedMultiAssets;1962    readonly feeAssetItem: u32;1963    readonly weightLimit: XcmV2WeightLimit;1964  } & Struct;1965  readonly isLimitedTeleportAssets: boolean;1966  readonly asLimitedTeleportAssets: {1967    readonly dest: XcmVersionedMultiLocation;1968    readonly beneficiary: XcmVersionedMultiLocation;1969    readonly assets: XcmVersionedMultiAssets;1970    readonly feeAssetItem: u32;1971    readonly weightLimit: XcmV2WeightLimit;1972  } & Struct;1973  readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1974}19751976/** @name PalletXcmError */1977export interface PalletXcmError extends Enum {1978  readonly isUnreachable: boolean;1979  readonly isSendFailure: boolean;1980  readonly isFiltered: boolean;1981  readonly isUnweighableMessage: boolean;1982  readonly isDestinationNotInvertible: boolean;1983  readonly isEmpty: boolean;1984  readonly isCannotReanchor: boolean;1985  readonly isTooManyAssets: boolean;1986  readonly isInvalidOrigin: boolean;1987  readonly isBadVersion: boolean;1988  readonly isBadLocation: boolean;1989  readonly isNoSubscription: boolean;1990  readonly isAlreadySubscribed: boolean;1991  readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';1992}19931994/** @name PalletXcmEvent */1995export interface PalletXcmEvent extends Enum {1996  readonly isAttempted: boolean;1997  readonly asAttempted: XcmV2TraitsOutcome;1998  readonly isSent: boolean;1999  readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2000  readonly isUnexpectedResponse: boolean;2001  readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2002  readonly isResponseReady: boolean;2003  readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2004  readonly isNotified: boolean;2005  readonly asNotified: ITuple<[u64, u8, u8]>;2006  readonly isNotifyOverweight: boolean;2007  readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;2008  readonly isNotifyDispatchError: boolean;2009  readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2010  readonly isNotifyDecodeFailed: boolean;2011  readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2012  readonly isInvalidResponder: boolean;2013  readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2014  readonly isInvalidResponderVersion: boolean;2015  readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2016  readonly isResponseTaken: boolean;2017  readonly asResponseTaken: u64;2018  readonly isAssetsTrapped: boolean;2019  readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2020  readonly isVersionChangeNotified: boolean;2021  readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2022  readonly isSupportedVersionChanged: boolean;2023  readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2024  readonly isNotifyTargetSendFail: boolean;2025  readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2026  readonly isNotifyTargetMigrationFail: boolean;2027  readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2028  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2029}20302031/** @name PalletXcmOrigin */2032export interface PalletXcmOrigin extends Enum {2033  readonly isXcm: boolean;2034  readonly asXcm: XcmV1MultiLocation;2035  readonly isResponse: boolean;2036  readonly asResponse: XcmV1MultiLocation;2037  readonly type: 'Xcm' | 'Response';2038}20392040/** @name PhantomTypeUpDataStructs */2041export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}20422043/** @name PolkadotCorePrimitivesInboundDownwardMessage */2044export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2045  readonly sentAt: u32;2046  readonly msg: Bytes;2047}20482049/** @name PolkadotCorePrimitivesInboundHrmpMessage */2050export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2051  readonly sentAt: u32;2052  readonly data: Bytes;2053}20542055/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2056export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2057  readonly recipient: u32;2058  readonly data: Bytes;2059}20602061/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2062export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2063  readonly isConcatenatedVersionedXcm: boolean;2064  readonly isConcatenatedEncodedBlob: boolean;2065  readonly isSignals: boolean;2066  readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2067}20682069/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2070export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2071  readonly maxCodeSize: u32;2072  readonly maxHeadDataSize: u32;2073  readonly maxUpwardQueueCount: u32;2074  readonly maxUpwardQueueSize: u32;2075  readonly maxUpwardMessageSize: u32;2076  readonly maxUpwardMessageNumPerCandidate: u32;2077  readonly hrmpMaxMessageNumPerCandidate: u32;2078  readonly validationUpgradeCooldown: u32;2079  readonly validationUpgradeDelay: u32;2080}20812082/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2083export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2084  readonly maxCapacity: u32;2085  readonly maxTotalSize: u32;2086  readonly maxMessageSize: u32;2087  readonly msgCount: u32;2088  readonly totalSize: u32;2089  readonly mqcHead: Option<H256>;2090}20912092/** @name PolkadotPrimitivesV2PersistedValidationData */2093export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2094  readonly parentHead: Bytes;2095  readonly relayParentNumber: u32;2096  readonly relayParentStorageRoot: H256;2097  readonly maxPovSize: u32;2098}20992100/** @name PolkadotPrimitivesV2UpgradeRestriction */2101export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2102  readonly isPresent: boolean;2103  readonly type: 'Present';2104}21052106/** @name RmrkTraitsBaseBaseInfo */2107export interface RmrkTraitsBaseBaseInfo extends Struct {2108  readonly issuer: AccountId32;2109  readonly baseType: Bytes;2110  readonly symbol: Bytes;2111}21122113/** @name RmrkTraitsCollectionCollectionInfo */2114export interface RmrkTraitsCollectionCollectionInfo extends Struct {2115  readonly issuer: AccountId32;2116  readonly metadata: Bytes;2117  readonly max: Option<u32>;2118  readonly symbol: Bytes;2119  readonly nftsCount: u32;2120}21212122/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2123export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2124  readonly isAccountId: boolean;2125  readonly asAccountId: AccountId32;2126  readonly isCollectionAndNftTuple: boolean;2127  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2128  readonly type: 'AccountId' | 'CollectionAndNftTuple';2129}21302131/** @name RmrkTraitsNftNftChild */2132export interface RmrkTraitsNftNftChild extends Struct {2133  readonly collectionId: u32;2134  readonly nftId: u32;2135}21362137/** @name RmrkTraitsNftNftInfo */2138export interface RmrkTraitsNftNftInfo extends Struct {2139  readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2140  readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2141  readonly metadata: Bytes;2142  readonly equipped: bool;2143  readonly pending: bool;2144}21452146/** @name RmrkTraitsNftRoyaltyInfo */2147export interface RmrkTraitsNftRoyaltyInfo extends Struct {2148  readonly recipient: AccountId32;2149  readonly amount: Permill;2150}21512152/** @name RmrkTraitsPartEquippableList */2153export interface RmrkTraitsPartEquippableList extends Enum {2154  readonly isAll: boolean;2155  readonly isEmpty: boolean;2156  readonly isCustom: boolean;2157  readonly asCustom: Vec<u32>;2158  readonly type: 'All' | 'Empty' | 'Custom';2159}21602161/** @name RmrkTraitsPartFixedPart */2162export interface RmrkTraitsPartFixedPart extends Struct {2163  readonly id: u32;2164  readonly z: u32;2165  readonly src: Bytes;2166}21672168/** @name RmrkTraitsPartPartType */2169export interface RmrkTraitsPartPartType extends Enum {2170  readonly isFixedPart: boolean;2171  readonly asFixedPart: RmrkTraitsPartFixedPart;2172  readonly isSlotPart: boolean;2173  readonly asSlotPart: RmrkTraitsPartSlotPart;2174  readonly type: 'FixedPart' | 'SlotPart';2175}21762177/** @name RmrkTraitsPartSlotPart */2178export interface RmrkTraitsPartSlotPart extends Struct {2179  readonly id: u32;2180  readonly equippable: RmrkTraitsPartEquippableList;2181  readonly src: Bytes;2182  readonly z: u32;2183}21842185/** @name RmrkTraitsPropertyPropertyInfo */2186export interface RmrkTraitsPropertyPropertyInfo extends Struct {2187  readonly key: Bytes;2188  readonly value: Bytes;2189}21902191/** @name RmrkTraitsResourceBasicResource */2192export interface RmrkTraitsResourceBasicResource extends Struct {2193  readonly src: Option<Bytes>;2194  readonly metadata: Option<Bytes>;2195  readonly license: Option<Bytes>;2196  readonly thumb: Option<Bytes>;2197}21982199/** @name RmrkTraitsResourceComposableResource */2200export interface RmrkTraitsResourceComposableResource extends Struct {2201  readonly parts: Vec<u32>;2202  readonly base: u32;2203  readonly src: Option<Bytes>;2204  readonly metadata: Option<Bytes>;2205  readonly license: Option<Bytes>;2206  readonly thumb: Option<Bytes>;2207}22082209/** @name RmrkTraitsResourceResourceInfo */2210export interface RmrkTraitsResourceResourceInfo extends Struct {2211  readonly id: u32;2212  readonly resource: RmrkTraitsResourceResourceTypes;2213  readonly pending: bool;2214  readonly pendingRemoval: bool;2215}22162217/** @name RmrkTraitsResourceResourceTypes */2218export interface RmrkTraitsResourceResourceTypes extends Enum {2219  readonly isBasic: boolean;2220  readonly asBasic: RmrkTraitsResourceBasicResource;2221  readonly isComposable: boolean;2222  readonly asComposable: RmrkTraitsResourceComposableResource;2223  readonly isSlot: boolean;2224  readonly asSlot: RmrkTraitsResourceSlotResource;2225  readonly type: 'Basic' | 'Composable' | 'Slot';2226}22272228/** @name RmrkTraitsResourceSlotResource */2229export interface RmrkTraitsResourceSlotResource extends Struct {2230  readonly base: u32;2231  readonly src: Option<Bytes>;2232  readonly metadata: Option<Bytes>;2233  readonly slot: u32;2234  readonly license: Option<Bytes>;2235  readonly thumb: Option<Bytes>;2236}22372238/** @name RmrkTraitsTheme */2239export interface RmrkTraitsTheme extends Struct {2240  readonly name: Bytes;2241  readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2242  readonly inherit: bool;2243}22442245/** @name RmrkTraitsThemeThemeProperty */2246export interface RmrkTraitsThemeThemeProperty extends Struct {2247  readonly key: Bytes;2248  readonly value: Bytes;2249}22502251/** @name SpCoreEcdsaSignature */2252export interface SpCoreEcdsaSignature extends U8aFixed {}22532254/** @name SpCoreEd25519Signature */2255export interface SpCoreEd25519Signature extends U8aFixed {}22562257/** @name SpCoreSr25519Signature */2258export interface SpCoreSr25519Signature extends U8aFixed {}22592260/** @name SpCoreVoid */2261export interface SpCoreVoid extends Null {}22622263/** @name SpRuntimeArithmeticError */2264export interface SpRuntimeArithmeticError extends Enum {2265  readonly isUnderflow: boolean;2266  readonly isOverflow: boolean;2267  readonly isDivisionByZero: boolean;2268  readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2269}22702271/** @name SpRuntimeDigest */2272export interface SpRuntimeDigest extends Struct {2273  readonly logs: Vec<SpRuntimeDigestDigestItem>;2274}22752276/** @name SpRuntimeDigestDigestItem */2277export interface SpRuntimeDigestDigestItem extends Enum {2278  readonly isOther: boolean;2279  readonly asOther: Bytes;2280  readonly isConsensus: boolean;2281  readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2282  readonly isSeal: boolean;2283  readonly asSeal: ITuple<[U8aFixed, Bytes]>;2284  readonly isPreRuntime: boolean;2285  readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2286  readonly isRuntimeEnvironmentUpdated: boolean;2287  readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2288}22892290/** @name SpRuntimeDispatchError */2291export interface SpRuntimeDispatchError extends Enum {2292  readonly isOther: boolean;2293  readonly isCannotLookup: boolean;2294  readonly isBadOrigin: boolean;2295  readonly isModule: boolean;2296  readonly asModule: SpRuntimeModuleError;2297  readonly isConsumerRemaining: boolean;2298  readonly isNoProviders: boolean;2299  readonly isTooManyConsumers: boolean;2300  readonly isToken: boolean;2301  readonly asToken: SpRuntimeTokenError;2302  readonly isArithmetic: boolean;2303  readonly asArithmetic: SpRuntimeArithmeticError;2304  readonly isTransactional: boolean;2305  readonly asTransactional: SpRuntimeTransactionalError;2306  readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2307}23082309/** @name SpRuntimeModuleError */2310export interface SpRuntimeModuleError extends Struct {2311  readonly index: u8;2312  readonly error: U8aFixed;2313}23142315/** @name SpRuntimeMultiSignature */2316export interface SpRuntimeMultiSignature extends Enum {2317  readonly isEd25519: boolean;2318  readonly asEd25519: SpCoreEd25519Signature;2319  readonly isSr25519: boolean;2320  readonly asSr25519: SpCoreSr25519Signature;2321  readonly isEcdsa: boolean;2322  readonly asEcdsa: SpCoreEcdsaSignature;2323  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2324}23252326/** @name SpRuntimeTokenError */2327export interface SpRuntimeTokenError extends Enum {2328  readonly isNoFunds: boolean;2329  readonly isWouldDie: boolean;2330  readonly isBelowMinimum: boolean;2331  readonly isCannotCreate: boolean;2332  readonly isUnknownAsset: boolean;2333  readonly isFrozen: boolean;2334  readonly isUnsupported: boolean;2335  readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2336}23372338/** @name SpRuntimeTransactionalError */2339export interface SpRuntimeTransactionalError extends Enum {2340  readonly isLimitReached: boolean;2341  readonly isNoLayer: boolean;2342  readonly type: 'LimitReached' | 'NoLayer';2343}23442345/** @name SpTrieStorageProof */2346export interface SpTrieStorageProof extends Struct {2347  readonly trieNodes: BTreeSet<Bytes>;2348}23492350/** @name SpVersionRuntimeVersion */2351export interface SpVersionRuntimeVersion extends Struct {2352  readonly specName: Text;2353  readonly implName: Text;2354  readonly authoringVersion: u32;2355  readonly specVersion: u32;2356  readonly implVersion: u32;2357  readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2358  readonly transactionVersion: u32;2359  readonly stateVersion: u8;2360}23612362/** @name UpDataStructsAccessMode */2363export interface UpDataStructsAccessMode extends Enum {2364  readonly isNormal: boolean;2365  readonly isAllowList: boolean;2366  readonly type: 'Normal' | 'AllowList';2367}23682369/** @name UpDataStructsCollection */2370export interface UpDataStructsCollection extends Struct {2371  readonly owner: AccountId32;2372  readonly mode: UpDataStructsCollectionMode;2373  readonly name: Vec<u16>;2374  readonly description: Vec<u16>;2375  readonly tokenPrefix: Bytes;2376  readonly sponsorship: UpDataStructsSponsorshipState;2377  readonly limits: UpDataStructsCollectionLimits;2378  readonly permissions: UpDataStructsCollectionPermissions;2379  readonly externalCollection: bool;2380}23812382/** @name UpDataStructsCollectionLimits */2383export interface UpDataStructsCollectionLimits extends Struct {2384  readonly accountTokenOwnershipLimit: Option<u32>;2385  readonly sponsoredDataSize: Option<u32>;2386  readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2387  readonly tokenLimit: Option<u32>;2388  readonly sponsorTransferTimeout: Option<u32>;2389  readonly sponsorApproveTimeout: Option<u32>;2390  readonly ownerCanTransfer: Option<bool>;2391  readonly ownerCanDestroy: Option<bool>;2392  readonly transfersEnabled: Option<bool>;2393}23942395/** @name UpDataStructsCollectionMode */2396export interface UpDataStructsCollectionMode extends Enum {2397  readonly isNft: boolean;2398  readonly isFungible: boolean;2399  readonly asFungible: u8;2400  readonly isReFungible: boolean;2401  readonly type: 'Nft' | 'Fungible' | 'ReFungible';2402}24032404/** @name UpDataStructsCollectionPermissions */2405export interface UpDataStructsCollectionPermissions extends Struct {2406  readonly access: Option<UpDataStructsAccessMode>;2407  readonly mintMode: Option<bool>;2408  readonly nesting: Option<UpDataStructsNestingPermissions>;2409}24102411/** @name UpDataStructsCollectionStats */2412export interface UpDataStructsCollectionStats extends Struct {2413  readonly created: u32;2414  readonly destroyed: u32;2415  readonly alive: u32;2416}24172418/** @name UpDataStructsCreateCollectionData */2419export interface UpDataStructsCreateCollectionData extends Struct {2420  readonly mode: UpDataStructsCollectionMode;2421  readonly access: Option<UpDataStructsAccessMode>;2422  readonly name: Vec<u16>;2423  readonly description: Vec<u16>;2424  readonly tokenPrefix: Bytes;2425  readonly pendingSponsor: Option<AccountId32>;2426  readonly limits: Option<UpDataStructsCollectionLimits>;2427  readonly permissions: Option<UpDataStructsCollectionPermissions>;2428  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2429  readonly properties: Vec<UpDataStructsProperty>;2430}24312432/** @name UpDataStructsCreateFungibleData */2433export interface UpDataStructsCreateFungibleData extends Struct {2434  readonly value: u128;2435}24362437/** @name UpDataStructsCreateItemData */2438export interface UpDataStructsCreateItemData extends Enum {2439  readonly isNft: boolean;2440  readonly asNft: UpDataStructsCreateNftData;2441  readonly isFungible: boolean;2442  readonly asFungible: UpDataStructsCreateFungibleData;2443  readonly isReFungible: boolean;2444  readonly asReFungible: UpDataStructsCreateReFungibleData;2445  readonly type: 'Nft' | 'Fungible' | 'ReFungible';2446}24472448/** @name UpDataStructsCreateItemExData */2449export interface UpDataStructsCreateItemExData extends Enum {2450  readonly isNft: boolean;2451  readonly asNft: Vec<UpDataStructsCreateNftExData>;2452  readonly isFungible: boolean;2453  readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;2454  readonly isRefungibleMultipleItems: boolean;2455  readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2456  readonly isRefungibleMultipleOwners: boolean;2457  readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2458  readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2459}24602461/** @name UpDataStructsCreateNftData */2462export interface UpDataStructsCreateNftData extends Struct {2463  readonly properties: Vec<UpDataStructsProperty>;2464}24652466/** @name UpDataStructsCreateNftExData */2467export interface UpDataStructsCreateNftExData extends Struct {2468  readonly properties: Vec<UpDataStructsProperty>;2469  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2470}24712472/** @name UpDataStructsCreateReFungibleData */2473export interface UpDataStructsCreateReFungibleData extends Struct {2474  readonly pieces: u128;2475  readonly properties: Vec<UpDataStructsProperty>;2476}24772478/** @name UpDataStructsCreateRefungibleExMultipleOwners */2479export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2480  readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2481  readonly properties: Vec<UpDataStructsProperty>;2482}24832484/** @name UpDataStructsCreateRefungibleExSingleOwner */2485export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2486  readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2487  readonly pieces: u128;2488  readonly properties: Vec<UpDataStructsProperty>;2489}24902491/** @name UpDataStructsNestingPermissions */2492export interface UpDataStructsNestingPermissions extends Struct {2493  readonly tokenOwner: bool;2494  readonly collectionAdmin: bool;2495  readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2496}24972498/** @name UpDataStructsOwnerRestrictedSet */2499export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}25002501/** @name UpDataStructsProperties */2502export interface UpDataStructsProperties extends Struct {2503  readonly map: UpDataStructsPropertiesMapBoundedVec;2504  readonly consumedSpace: u32;2505  readonly spaceLimit: u32;2506}25072508/** @name UpDataStructsPropertiesMapBoundedVec */2509export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}25102511/** @name UpDataStructsPropertiesMapPropertyPermission */2512export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}25132514/** @name UpDataStructsProperty */2515export interface UpDataStructsProperty extends Struct {2516  readonly key: Bytes;2517  readonly value: Bytes;2518}25192520/** @name UpDataStructsPropertyKeyPermission */2521export interface UpDataStructsPropertyKeyPermission extends Struct {2522  readonly key: Bytes;2523  readonly permission: UpDataStructsPropertyPermission;2524}25252526/** @name UpDataStructsPropertyPermission */2527export interface UpDataStructsPropertyPermission extends Struct {2528  readonly mutable: bool;2529  readonly collectionAdmin: bool;2530  readonly tokenOwner: bool;2531}25322533/** @name UpDataStructsPropertyScope */2534export interface UpDataStructsPropertyScope extends Enum {2535  readonly isNone: boolean;2536  readonly isRmrk: boolean;2537  readonly isEth: boolean;2538  readonly type: 'None' | 'Rmrk' | 'Eth';2539}25402541/** @name UpDataStructsRpcCollection */2542export interface UpDataStructsRpcCollection extends Struct {2543  readonly owner: AccountId32;2544  readonly mode: UpDataStructsCollectionMode;2545  readonly name: Vec<u16>;2546  readonly description: Vec<u16>;2547  readonly tokenPrefix: Bytes;2548  readonly sponsorship: UpDataStructsSponsorshipState;2549  readonly limits: UpDataStructsCollectionLimits;2550  readonly permissions: UpDataStructsCollectionPermissions;2551  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2552  readonly properties: Vec<UpDataStructsProperty>;2553  readonly readOnly: bool;2554}25552556/** @name UpDataStructsSponsoringRateLimit */2557export interface UpDataStructsSponsoringRateLimit extends Enum {2558  readonly isSponsoringDisabled: boolean;2559  readonly isBlocks: boolean;2560  readonly asBlocks: u32;2561  readonly type: 'SponsoringDisabled' | 'Blocks';2562}25632564/** @name UpDataStructsSponsorshipState */2565export interface UpDataStructsSponsorshipState extends Enum {2566  readonly isDisabled: boolean;2567  readonly isUnconfirmed: boolean;2568  readonly asUnconfirmed: AccountId32;2569  readonly isConfirmed: boolean;2570  readonly asConfirmed: AccountId32;2571  readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2572}25732574/** @name UpDataStructsTokenChild */2575export interface UpDataStructsTokenChild extends Struct {2576  readonly token: u32;2577  readonly collection: u32;2578}25792580/** @name UpDataStructsTokenData */2581export interface UpDataStructsTokenData extends Struct {2582  readonly properties: Vec<UpDataStructsProperty>;2583  readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2584  readonly pieces: u128;2585}25862587/** @name XcmDoubleEncoded */2588export interface XcmDoubleEncoded extends Struct {2589  readonly encoded: Bytes;2590}25912592/** @name XcmV0Junction */2593export interface XcmV0Junction extends Enum {2594  readonly isParent: boolean;2595  readonly isParachain: boolean;2596  readonly asParachain: Compact<u32>;2597  readonly isAccountId32: boolean;2598  readonly asAccountId32: {2599    readonly network: XcmV0JunctionNetworkId;2600    readonly id: U8aFixed;2601  } & Struct;2602  readonly isAccountIndex64: boolean;2603  readonly asAccountIndex64: {2604    readonly network: XcmV0JunctionNetworkId;2605    readonly index: Compact<u64>;2606  } & Struct;2607  readonly isAccountKey20: boolean;2608  readonly asAccountKey20: {2609    readonly network: XcmV0JunctionNetworkId;2610    readonly key: U8aFixed;2611  } & Struct;2612  readonly isPalletInstance: boolean;2613  readonly asPalletInstance: u8;2614  readonly isGeneralIndex: boolean;2615  readonly asGeneralIndex: Compact<u128>;2616  readonly isGeneralKey: boolean;2617  readonly asGeneralKey: Bytes;2618  readonly isOnlyChild: boolean;2619  readonly isPlurality: boolean;2620  readonly asPlurality: {2621    readonly id: XcmV0JunctionBodyId;2622    readonly part: XcmV0JunctionBodyPart;2623  } & Struct;2624  readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2625}26262627/** @name XcmV0JunctionBodyId */2628export interface XcmV0JunctionBodyId extends Enum {2629  readonly isUnit: boolean;2630  readonly isNamed: boolean;2631  readonly asNamed: Bytes;2632  readonly isIndex: boolean;2633  readonly asIndex: Compact<u32>;2634  readonly isExecutive: boolean;2635  readonly isTechnical: boolean;2636  readonly isLegislative: boolean;2637  readonly isJudicial: boolean;2638  readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';2639}26402641/** @name XcmV0JunctionBodyPart */2642export interface XcmV0JunctionBodyPart extends Enum {2643  readonly isVoice: boolean;2644  readonly isMembers: boolean;2645  readonly asMembers: {2646    readonly count: Compact<u32>;2647  } & Struct;2648  readonly isFraction: boolean;2649  readonly asFraction: {2650    readonly nom: Compact<u32>;2651    readonly denom: Compact<u32>;2652  } & Struct;2653  readonly isAtLeastProportion: boolean;2654  readonly asAtLeastProportion: {2655    readonly nom: Compact<u32>;2656    readonly denom: Compact<u32>;2657  } & Struct;2658  readonly isMoreThanProportion: boolean;2659  readonly asMoreThanProportion: {2660    readonly nom: Compact<u32>;2661    readonly denom: Compact<u32>;2662  } & Struct;2663  readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';2664}26652666/** @name XcmV0JunctionNetworkId */2667export interface XcmV0JunctionNetworkId extends Enum {2668  readonly isAny: boolean;2669  readonly isNamed: boolean;2670  readonly asNamed: Bytes;2671  readonly isPolkadot: boolean;2672  readonly isKusama: boolean;2673  readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';2674}26752676/** @name XcmV0MultiAsset */2677export interface XcmV0MultiAsset extends Enum {2678  readonly isNone: boolean;2679  readonly isAll: boolean;2680  readonly isAllFungible: boolean;2681  readonly isAllNonFungible: boolean;2682  readonly isAllAbstractFungible: boolean;2683  readonly asAllAbstractFungible: {2684    readonly id: Bytes;2685  } & Struct;2686  readonly isAllAbstractNonFungible: boolean;2687  readonly asAllAbstractNonFungible: {2688    readonly class: Bytes;2689  } & Struct;2690  readonly isAllConcreteFungible: boolean;2691  readonly asAllConcreteFungible: {2692    readonly id: XcmV0MultiLocation;2693  } & Struct;2694  readonly isAllConcreteNonFungible: boolean;2695  readonly asAllConcreteNonFungible: {2696    readonly class: XcmV0MultiLocation;2697  } & Struct;2698  readonly isAbstractFungible: boolean;2699  readonly asAbstractFungible: {2700    readonly id: Bytes;2701    readonly amount: Compact<u128>;2702  } & Struct;2703  readonly isAbstractNonFungible: boolean;2704  readonly asAbstractNonFungible: {2705    readonly class: Bytes;2706    readonly instance: XcmV1MultiassetAssetInstance;2707  } & Struct;2708  readonly isConcreteFungible: boolean;2709  readonly asConcreteFungible: {2710    readonly id: XcmV0MultiLocation;2711    readonly amount: Compact<u128>;2712  } & Struct;2713  readonly isConcreteNonFungible: boolean;2714  readonly asConcreteNonFungible: {2715    readonly class: XcmV0MultiLocation;2716    readonly instance: XcmV1MultiassetAssetInstance;2717  } & Struct;2718  readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';2719}27202721/** @name XcmV0MultiLocation */2722export interface XcmV0MultiLocation extends Enum {2723  readonly isNull: boolean;2724  readonly isX1: boolean;2725  readonly asX1: XcmV0Junction;2726  readonly isX2: boolean;2727  readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;2728  readonly isX3: boolean;2729  readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2730  readonly isX4: boolean;2731  readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2732  readonly isX5: boolean;2733  readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2734  readonly isX6: boolean;2735  readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2736  readonly isX7: boolean;2737  readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2738  readonly isX8: boolean;2739  readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2740  readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2741}27422743/** @name XcmV0Order */2744export interface XcmV0Order extends Enum {2745  readonly isNull: boolean;2746  readonly isDepositAsset: boolean;2747  readonly asDepositAsset: {2748    readonly assets: Vec<XcmV0MultiAsset>;2749    readonly dest: XcmV0MultiLocation;2750  } & Struct;2751  readonly isDepositReserveAsset: boolean;2752  readonly asDepositReserveAsset: {2753    readonly assets: Vec<XcmV0MultiAsset>;2754    readonly dest: XcmV0MultiLocation;2755    readonly effects: Vec<XcmV0Order>;2756  } & Struct;2757  readonly isExchangeAsset: boolean;2758  readonly asExchangeAsset: {2759    readonly give: Vec<XcmV0MultiAsset>;2760    readonly receive: Vec<XcmV0MultiAsset>;2761  } & Struct;2762  readonly isInitiateReserveWithdraw: boolean;2763  readonly asInitiateReserveWithdraw: {2764    readonly assets: Vec<XcmV0MultiAsset>;2765    readonly reserve: XcmV0MultiLocation;2766    readonly effects: Vec<XcmV0Order>;2767  } & Struct;2768  readonly isInitiateTeleport: boolean;2769  readonly asInitiateTeleport: {2770    readonly assets: Vec<XcmV0MultiAsset>;2771    readonly dest: XcmV0MultiLocation;2772    readonly effects: Vec<XcmV0Order>;2773  } & Struct;2774  readonly isQueryHolding: boolean;2775  readonly asQueryHolding: {2776    readonly queryId: Compact<u64>;2777    readonly dest: XcmV0MultiLocation;2778    readonly assets: Vec<XcmV0MultiAsset>;2779  } & Struct;2780  readonly isBuyExecution: boolean;2781  readonly asBuyExecution: {2782    readonly fees: XcmV0MultiAsset;2783    readonly weight: u64;2784    readonly debt: u64;2785    readonly haltOnError: bool;2786    readonly xcm: Vec<XcmV0Xcm>;2787  } & Struct;2788  readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2789}27902791/** @name XcmV0OriginKind */2792export interface XcmV0OriginKind extends Enum {2793  readonly isNative: boolean;2794  readonly isSovereignAccount: boolean;2795  readonly isSuperuser: boolean;2796  readonly isXcm: boolean;2797  readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';2798}27992800/** @name XcmV0Response */2801export interface XcmV0Response extends Enum {2802  readonly isAssets: boolean;2803  readonly asAssets: Vec<XcmV0MultiAsset>;2804  readonly type: 'Assets';2805}28062807/** @name XcmV0Xcm */2808export interface XcmV0Xcm extends Enum {2809  readonly isWithdrawAsset: boolean;2810  readonly asWithdrawAsset: {2811    readonly assets: Vec<XcmV0MultiAsset>;2812    readonly effects: Vec<XcmV0Order>;2813  } & Struct;2814  readonly isReserveAssetDeposit: boolean;2815  readonly asReserveAssetDeposit: {2816    readonly assets: Vec<XcmV0MultiAsset>;2817    readonly effects: Vec<XcmV0Order>;2818  } & Struct;2819  readonly isTeleportAsset: boolean;2820  readonly asTeleportAsset: {2821    readonly assets: Vec<XcmV0MultiAsset>;2822    readonly effects: Vec<XcmV0Order>;2823  } & Struct;2824  readonly isQueryResponse: boolean;2825  readonly asQueryResponse: {2826    readonly queryId: Compact<u64>;2827    readonly response: XcmV0Response;2828  } & Struct;2829  readonly isTransferAsset: boolean;2830  readonly asTransferAsset: {2831    readonly assets: Vec<XcmV0MultiAsset>;2832    readonly dest: XcmV0MultiLocation;2833  } & Struct;2834  readonly isTransferReserveAsset: boolean;2835  readonly asTransferReserveAsset: {2836    readonly assets: Vec<XcmV0MultiAsset>;2837    readonly dest: XcmV0MultiLocation;2838    readonly effects: Vec<XcmV0Order>;2839  } & Struct;2840  readonly isTransact: boolean;2841  readonly asTransact: {2842    readonly originType: XcmV0OriginKind;2843    readonly requireWeightAtMost: u64;2844    readonly call: XcmDoubleEncoded;2845  } & Struct;2846  readonly isHrmpNewChannelOpenRequest: boolean;2847  readonly asHrmpNewChannelOpenRequest: {2848    readonly sender: Compact<u32>;2849    readonly maxMessageSize: Compact<u32>;2850    readonly maxCapacity: Compact<u32>;2851  } & Struct;2852  readonly isHrmpChannelAccepted: boolean;2853  readonly asHrmpChannelAccepted: {2854    readonly recipient: Compact<u32>;2855  } & Struct;2856  readonly isHrmpChannelClosing: boolean;2857  readonly asHrmpChannelClosing: {2858    readonly initiator: Compact<u32>;2859    readonly sender: Compact<u32>;2860    readonly recipient: Compact<u32>;2861  } & Struct;2862  readonly isRelayedFrom: boolean;2863  readonly asRelayedFrom: {2864    readonly who: XcmV0MultiLocation;2865    readonly message: XcmV0Xcm;2866  } & Struct;2867  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2868}28692870/** @name XcmV1Junction */2871export interface XcmV1Junction extends Enum {2872  readonly isParachain: boolean;2873  readonly asParachain: Compact<u32>;2874  readonly isAccountId32: boolean;2875  readonly asAccountId32: {2876    readonly network: XcmV0JunctionNetworkId;2877    readonly id: U8aFixed;2878  } & Struct;2879  readonly isAccountIndex64: boolean;2880  readonly asAccountIndex64: {2881    readonly network: XcmV0JunctionNetworkId;2882    readonly index: Compact<u64>;2883  } & Struct;2884  readonly isAccountKey20: boolean;2885  readonly asAccountKey20: {2886    readonly network: XcmV0JunctionNetworkId;2887    readonly key: U8aFixed;2888  } & Struct;2889  readonly isPalletInstance: boolean;2890  readonly asPalletInstance: u8;2891  readonly isGeneralIndex: boolean;2892  readonly asGeneralIndex: Compact<u128>;2893  readonly isGeneralKey: boolean;2894  readonly asGeneralKey: Bytes;2895  readonly isOnlyChild: boolean;2896  readonly isPlurality: boolean;2897  readonly asPlurality: {2898    readonly id: XcmV0JunctionBodyId;2899    readonly part: XcmV0JunctionBodyPart;2900  } & Struct;2901  readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2902}29032904/** @name XcmV1MultiAsset */2905export interface XcmV1MultiAsset extends Struct {2906  readonly id: XcmV1MultiassetAssetId;2907  readonly fun: XcmV1MultiassetFungibility;2908}29092910/** @name XcmV1MultiassetAssetId */2911export interface XcmV1MultiassetAssetId extends Enum {2912  readonly isConcrete: boolean;2913  readonly asConcrete: XcmV1MultiLocation;2914  readonly isAbstract: boolean;2915  readonly asAbstract: Bytes;2916  readonly type: 'Concrete' | 'Abstract';2917}29182919/** @name XcmV1MultiassetAssetInstance */2920export interface XcmV1MultiassetAssetInstance extends Enum {2921  readonly isUndefined: boolean;2922  readonly isIndex: boolean;2923  readonly asIndex: Compact<u128>;2924  readonly isArray4: boolean;2925  readonly asArray4: U8aFixed;2926  readonly isArray8: boolean;2927  readonly asArray8: U8aFixed;2928  readonly isArray16: boolean;2929  readonly asArray16: U8aFixed;2930  readonly isArray32: boolean;2931  readonly asArray32: U8aFixed;2932  readonly isBlob: boolean;2933  readonly asBlob: Bytes;2934  readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';2935}29362937/** @name XcmV1MultiassetFungibility */2938export interface XcmV1MultiassetFungibility extends Enum {2939  readonly isFungible: boolean;2940  readonly asFungible: Compact<u128>;2941  readonly isNonFungible: boolean;2942  readonly asNonFungible: XcmV1MultiassetAssetInstance;2943  readonly type: 'Fungible' | 'NonFungible';2944}29452946/** @name XcmV1MultiassetMultiAssetFilter */2947export interface XcmV1MultiassetMultiAssetFilter extends Enum {2948  readonly isDefinite: boolean;2949  readonly asDefinite: XcmV1MultiassetMultiAssets;2950  readonly isWild: boolean;2951  readonly asWild: XcmV1MultiassetWildMultiAsset;2952  readonly type: 'Definite' | 'Wild';2953}29542955/** @name XcmV1MultiassetMultiAssets */2956export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}29572958/** @name XcmV1MultiassetWildFungibility */2959export interface XcmV1MultiassetWildFungibility extends Enum {2960  readonly isFungible: boolean;2961  readonly isNonFungible: boolean;2962  readonly type: 'Fungible' | 'NonFungible';2963}29642965/** @name XcmV1MultiassetWildMultiAsset */2966export interface XcmV1MultiassetWildMultiAsset extends Enum {2967  readonly isAll: boolean;2968  readonly isAllOf: boolean;2969  readonly asAllOf: {2970    readonly id: XcmV1MultiassetAssetId;2971    readonly fun: XcmV1MultiassetWildFungibility;2972  } & Struct;2973  readonly type: 'All' | 'AllOf';2974}29752976/** @name XcmV1MultiLocation */2977export interface XcmV1MultiLocation extends Struct {2978  readonly parents: u8;2979  readonly interior: XcmV1MultilocationJunctions;2980}29812982/** @name XcmV1MultilocationJunctions */2983export interface XcmV1MultilocationJunctions extends Enum {2984  readonly isHere: boolean;2985  readonly isX1: boolean;2986  readonly asX1: XcmV1Junction;2987  readonly isX2: boolean;2988  readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;2989  readonly isX3: boolean;2990  readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2991  readonly isX4: boolean;2992  readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2993  readonly isX5: boolean;2994  readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2995  readonly isX6: boolean;2996  readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2997  readonly isX7: boolean;2998  readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2999  readonly isX8: boolean;3000  readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3001  readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3002}30033004/** @name XcmV1Order */3005export interface XcmV1Order extends Enum {3006  readonly isNoop: boolean;3007  readonly isDepositAsset: boolean;3008  readonly asDepositAsset: {3009    readonly assets: XcmV1MultiassetMultiAssetFilter;3010    readonly maxAssets: u32;3011    readonly beneficiary: XcmV1MultiLocation;3012  } & Struct;3013  readonly isDepositReserveAsset: boolean;3014  readonly asDepositReserveAsset: {3015    readonly assets: XcmV1MultiassetMultiAssetFilter;3016    readonly maxAssets: u32;3017    readonly dest: XcmV1MultiLocation;3018    readonly effects: Vec<XcmV1Order>;3019  } & Struct;3020  readonly isExchangeAsset: boolean;3021  readonly asExchangeAsset: {3022    readonly give: XcmV1MultiassetMultiAssetFilter;3023    readonly receive: XcmV1MultiassetMultiAssets;3024  } & Struct;3025  readonly isInitiateReserveWithdraw: boolean;3026  readonly asInitiateReserveWithdraw: {3027    readonly assets: XcmV1MultiassetMultiAssetFilter;3028    readonly reserve: XcmV1MultiLocation;3029    readonly effects: Vec<XcmV1Order>;3030  } & Struct;3031  readonly isInitiateTeleport: boolean;3032  readonly asInitiateTeleport: {3033    readonly assets: XcmV1MultiassetMultiAssetFilter;3034    readonly dest: XcmV1MultiLocation;3035    readonly effects: Vec<XcmV1Order>;3036  } & Struct;3037  readonly isQueryHolding: boolean;3038  readonly asQueryHolding: {3039    readonly queryId: Compact<u64>;3040    readonly dest: XcmV1MultiLocation;3041    readonly assets: XcmV1MultiassetMultiAssetFilter;3042  } & Struct;3043  readonly isBuyExecution: boolean;3044  readonly asBuyExecution: {3045    readonly fees: XcmV1MultiAsset;3046    readonly weight: u64;3047    readonly debt: u64;3048    readonly haltOnError: bool;3049    readonly instructions: Vec<XcmV1Xcm>;3050  } & Struct;3051  readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3052}30533054/** @name XcmV1Response */3055export interface XcmV1Response extends Enum {3056  readonly isAssets: boolean;3057  readonly asAssets: XcmV1MultiassetMultiAssets;3058  readonly isVersion: boolean;3059  readonly asVersion: u32;3060  readonly type: 'Assets' | 'Version';3061}30623063/** @name XcmV1Xcm */3064export interface XcmV1Xcm extends Enum {3065  readonly isWithdrawAsset: boolean;3066  readonly asWithdrawAsset: {3067    readonly assets: XcmV1MultiassetMultiAssets;3068    readonly effects: Vec<XcmV1Order>;3069  } & Struct;3070  readonly isReserveAssetDeposited: boolean;3071  readonly asReserveAssetDeposited: {3072    readonly assets: XcmV1MultiassetMultiAssets;3073    readonly effects: Vec<XcmV1Order>;3074  } & Struct;3075  readonly isReceiveTeleportedAsset: boolean;3076  readonly asReceiveTeleportedAsset: {3077    readonly assets: XcmV1MultiassetMultiAssets;3078    readonly effects: Vec<XcmV1Order>;3079  } & Struct;3080  readonly isQueryResponse: boolean;3081  readonly asQueryResponse: {3082    readonly queryId: Compact<u64>;3083    readonly response: XcmV1Response;3084  } & Struct;3085  readonly isTransferAsset: boolean;3086  readonly asTransferAsset: {3087    readonly assets: XcmV1MultiassetMultiAssets;3088    readonly beneficiary: XcmV1MultiLocation;3089  } & Struct;3090  readonly isTransferReserveAsset: boolean;3091  readonly asTransferReserveAsset: {3092    readonly assets: XcmV1MultiassetMultiAssets;3093    readonly dest: XcmV1MultiLocation;3094    readonly effects: Vec<XcmV1Order>;3095  } & Struct;3096  readonly isTransact: boolean;3097  readonly asTransact: {3098    readonly originType: XcmV0OriginKind;3099    readonly requireWeightAtMost: u64;3100    readonly call: XcmDoubleEncoded;3101  } & Struct;3102  readonly isHrmpNewChannelOpenRequest: boolean;3103  readonly asHrmpNewChannelOpenRequest: {3104    readonly sender: Compact<u32>;3105    readonly maxMessageSize: Compact<u32>;3106    readonly maxCapacity: Compact<u32>;3107  } & Struct;3108  readonly isHrmpChannelAccepted: boolean;3109  readonly asHrmpChannelAccepted: {3110    readonly recipient: Compact<u32>;3111  } & Struct;3112  readonly isHrmpChannelClosing: boolean;3113  readonly asHrmpChannelClosing: {3114    readonly initiator: Compact<u32>;3115    readonly sender: Compact<u32>;3116    readonly recipient: Compact<u32>;3117  } & Struct;3118  readonly isRelayedFrom: boolean;3119  readonly asRelayedFrom: {3120    readonly who: XcmV1MultilocationJunctions;3121    readonly message: XcmV1Xcm;3122  } & Struct;3123  readonly isSubscribeVersion: boolean;3124  readonly asSubscribeVersion: {3125    readonly queryId: Compact<u64>;3126    readonly maxResponseWeight: Compact<u64>;3127  } & Struct;3128  readonly isUnsubscribeVersion: boolean;3129  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3130}31313132/** @name XcmV2Instruction */3133export interface XcmV2Instruction extends Enum {3134  readonly isWithdrawAsset: boolean;3135  readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3136  readonly isReserveAssetDeposited: boolean;3137  readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3138  readonly isReceiveTeleportedAsset: boolean;3139  readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3140  readonly isQueryResponse: boolean;3141  readonly asQueryResponse: {3142    readonly queryId: Compact<u64>;3143    readonly response: XcmV2Response;3144    readonly maxWeight: Compact<u64>;3145  } & Struct;3146  readonly isTransferAsset: boolean;3147  readonly asTransferAsset: {3148    readonly assets: XcmV1MultiassetMultiAssets;3149    readonly beneficiary: XcmV1MultiLocation;3150  } & Struct;3151  readonly isTransferReserveAsset: boolean;3152  readonly asTransferReserveAsset: {3153    readonly assets: XcmV1MultiassetMultiAssets;3154    readonly dest: XcmV1MultiLocation;3155    readonly xcm: XcmV2Xcm;3156  } & Struct;3157  readonly isTransact: boolean;3158  readonly asTransact: {3159    readonly originType: XcmV0OriginKind;3160    readonly requireWeightAtMost: Compact<u64>;3161    readonly call: XcmDoubleEncoded;3162  } & Struct;3163  readonly isHrmpNewChannelOpenRequest: boolean;3164  readonly asHrmpNewChannelOpenRequest: {3165    readonly sender: Compact<u32>;3166    readonly maxMessageSize: Compact<u32>;3167    readonly maxCapacity: Compact<u32>;3168  } & Struct;3169  readonly isHrmpChannelAccepted: boolean;3170  readonly asHrmpChannelAccepted: {3171    readonly recipient: Compact<u32>;3172  } & Struct;3173  readonly isHrmpChannelClosing: boolean;3174  readonly asHrmpChannelClosing: {3175    readonly initiator: Compact<u32>;3176    readonly sender: Compact<u32>;3177    readonly recipient: Compact<u32>;3178  } & Struct;3179  readonly isClearOrigin: boolean;3180  readonly isDescendOrigin: boolean;3181  readonly asDescendOrigin: XcmV1MultilocationJunctions;3182  readonly isReportError: boolean;3183  readonly asReportError: {3184    readonly queryId: Compact<u64>;3185    readonly dest: XcmV1MultiLocation;3186    readonly maxResponseWeight: Compact<u64>;3187  } & Struct;3188  readonly isDepositAsset: boolean;3189  readonly asDepositAsset: {3190    readonly assets: XcmV1MultiassetMultiAssetFilter;3191    readonly maxAssets: Compact<u32>;3192    readonly beneficiary: XcmV1MultiLocation;3193  } & Struct;3194  readonly isDepositReserveAsset: boolean;3195  readonly asDepositReserveAsset: {3196    readonly assets: XcmV1MultiassetMultiAssetFilter;3197    readonly maxAssets: Compact<u32>;3198    readonly dest: XcmV1MultiLocation;3199    readonly xcm: XcmV2Xcm;3200  } & Struct;3201  readonly isExchangeAsset: boolean;3202  readonly asExchangeAsset: {3203    readonly give: XcmV1MultiassetMultiAssetFilter;3204    readonly receive: XcmV1MultiassetMultiAssets;3205  } & Struct;3206  readonly isInitiateReserveWithdraw: boolean;3207  readonly asInitiateReserveWithdraw: {3208    readonly assets: XcmV1MultiassetMultiAssetFilter;3209    readonly reserve: XcmV1MultiLocation;3210    readonly xcm: XcmV2Xcm;3211  } & Struct;3212  readonly isInitiateTeleport: boolean;3213  readonly asInitiateTeleport: {3214    readonly assets: XcmV1MultiassetMultiAssetFilter;3215    readonly dest: XcmV1MultiLocation;3216    readonly xcm: XcmV2Xcm;3217  } & Struct;3218  readonly isQueryHolding: boolean;3219  readonly asQueryHolding: {3220    readonly queryId: Compact<u64>;3221    readonly dest: XcmV1MultiLocation;3222    readonly assets: XcmV1MultiassetMultiAssetFilter;3223    readonly maxResponseWeight: Compact<u64>;3224  } & Struct;3225  readonly isBuyExecution: boolean;3226  readonly asBuyExecution: {3227    readonly fees: XcmV1MultiAsset;3228    readonly weightLimit: XcmV2WeightLimit;3229  } & Struct;3230  readonly isRefundSurplus: boolean;3231  readonly isSetErrorHandler: boolean;3232  readonly asSetErrorHandler: XcmV2Xcm;3233  readonly isSetAppendix: boolean;3234  readonly asSetAppendix: XcmV2Xcm;3235  readonly isClearError: boolean;3236  readonly isClaimAsset: boolean;3237  readonly asClaimAsset: {3238    readonly assets: XcmV1MultiassetMultiAssets;3239    readonly ticket: XcmV1MultiLocation;3240  } & Struct;3241  readonly isTrap: boolean;3242  readonly asTrap: Compact<u64>;3243  readonly isSubscribeVersion: boolean;3244  readonly asSubscribeVersion: {3245    readonly queryId: Compact<u64>;3246    readonly maxResponseWeight: Compact<u64>;3247  } & Struct;3248  readonly isUnsubscribeVersion: boolean;3249  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';3250}32513252/** @name XcmV2Response */3253export interface XcmV2Response extends Enum {3254  readonly isNull: boolean;3255  readonly isAssets: boolean;3256  readonly asAssets: XcmV1MultiassetMultiAssets;3257  readonly isExecutionResult: boolean;3258  readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3259  readonly isVersion: boolean;3260  readonly asVersion: u32;3261  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3262}32633264/** @name XcmV2TraitsError */3265export interface XcmV2TraitsError extends Enum {3266  readonly isOverflow: boolean;3267  readonly isUnimplemented: boolean;3268  readonly isUntrustedReserveLocation: boolean;3269  readonly isUntrustedTeleportLocation: boolean;3270  readonly isMultiLocationFull: boolean;3271  readonly isMultiLocationNotInvertible: boolean;3272  readonly isBadOrigin: boolean;3273  readonly isInvalidLocation: boolean;3274  readonly isAssetNotFound: boolean;3275  readonly isFailedToTransactAsset: boolean;3276  readonly isNotWithdrawable: boolean;3277  readonly isLocationCannotHold: boolean;3278  readonly isExceedsMaxMessageSize: boolean;3279  readonly isDestinationUnsupported: boolean;3280  readonly isTransport: boolean;3281  readonly isUnroutable: boolean;3282  readonly isUnknownClaim: boolean;3283  readonly isFailedToDecode: boolean;3284  readonly isMaxWeightInvalid: boolean;3285  readonly isNotHoldingFees: boolean;3286  readonly isTooExpensive: boolean;3287  readonly isTrap: boolean;3288  readonly asTrap: u64;3289  readonly isUnhandledXcmVersion: boolean;3290  readonly isWeightLimitReached: boolean;3291  readonly asWeightLimitReached: u64;3292  readonly isBarrier: boolean;3293  readonly isWeightNotComputable: boolean;3294  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';3295}32963297/** @name XcmV2TraitsOutcome */3298export interface XcmV2TraitsOutcome extends Enum {3299  readonly isComplete: boolean;3300  readonly asComplete: u64;3301  readonly isIncomplete: boolean;3302  readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3303  readonly isError: boolean;3304  readonly asError: XcmV2TraitsError;3305  readonly type: 'Complete' | 'Incomplete' | 'Error';3306}33073308/** @name XcmV2WeightLimit */3309export interface XcmV2WeightLimit extends Enum {3310  readonly isUnlimited: boolean;3311  readonly isLimited: boolean;3312  readonly asLimited: Compact<u64>;3313  readonly type: 'Unlimited' | 'Limited';3314}33153316/** @name XcmV2Xcm */3317export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}33183319/** @name XcmVersionedMultiAssets */3320export interface XcmVersionedMultiAssets extends Enum {3321  readonly isV0: boolean;3322  readonly asV0: Vec<XcmV0MultiAsset>;3323  readonly isV1: boolean;3324  readonly asV1: XcmV1MultiassetMultiAssets;3325  readonly type: 'V0' | 'V1';3326}33273328/** @name XcmVersionedMultiLocation */3329export interface XcmVersionedMultiLocation extends Enum {3330  readonly isV0: boolean;3331  readonly asV0: XcmV0MultiLocation;3332  readonly isV1: boolean;3333  readonly asV1: XcmV1MultiLocation;3334  readonly type: 'V0' | 'V1';3335}33363337/** @name XcmVersionedXcm */3338export interface XcmVersionedXcm extends Enum {3339  readonly isV0: boolean;3340  readonly asV0: XcmV0Xcm;3341  readonly isV1: boolean;3342  readonly asV1: XcmV1Xcm;3343  readonly isV2: boolean;3344  readonly asV2: XcmV2Xcm;3345  readonly type: 'V0' | 'V1' | 'V2';3346}33473348export type PHANTOM_DEFAULT = 'default';
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1571,15 +1571,28 @@
     }
   },
   /**
-   * Lookup207: pallet_template_transaction_payment::Call<T>
+   * Lookup207: pallet_configuration::pallet::Call<T>
    **/
+  PalletConfigurationCall: {
+    _enum: {
+      set_weight_to_fee_coefficient_override: {
+        coeff: 'Option<u32>',
+      },
+      set_min_gas_price_override: {
+        coeff: 'Option<u64>'
+      }
+    }
+  },
+  /**
+   * Lookup209: pallet_template_transaction_payment::Call<T>
+   **/
   PalletTemplateTransactionPaymentCall: 'Null',
   /**
-   * Lookup208: pallet_structure::pallet::Call<T>
+   * Lookup210: pallet_structure::pallet::Call<T>
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup209: pallet_rmrk_core::pallet::Call<T>
+   * Lookup211: pallet_rmrk_core::pallet::Call<T>
    **/
   PalletRmrkCoreCall: {
     _enum: {
@@ -1670,7 +1683,7 @@
     }
   },
   /**
-   * Lookup215: rmrk_traits::resource::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup217: rmrk_traits::resource::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceResourceTypes: {
     _enum: {
@@ -1680,7 +1693,7 @@
     }
   },
   /**
-   * Lookup217: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup219: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceBasicResource: {
     src: 'Option<Bytes>',
@@ -1689,7 +1702,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup219: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup221: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceComposableResource: {
     parts: 'Vec<u32>',
@@ -1700,7 +1713,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup220: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup222: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceSlotResource: {
     base: 'u32',
@@ -1711,7 +1724,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup222: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+   * Lookup224: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
    **/
   RmrkTraitsNftAccountIdOrCollectionNftTuple: {
     _enum: {
@@ -1720,7 +1733,7 @@
     }
   },
   /**
-   * Lookup226: pallet_rmrk_equip::pallet::Call<T>
+   * Lookup228: pallet_rmrk_equip::pallet::Call<T>
    **/
   PalletRmrkEquipCall: {
     _enum: {
@@ -1741,7 +1754,7 @@
     }
   },
   /**
-   * Lookup229: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup231: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartPartType: {
     _enum: {
@@ -1750,7 +1763,7 @@
     }
   },
   /**
-   * Lookup231: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup233: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartFixedPart: {
     id: 'u32',
@@ -1758,7 +1771,7 @@
     src: 'Bytes'
   },
   /**
-   * Lookup232: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup234: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartSlotPart: {
     id: 'u32',
@@ -1767,7 +1780,7 @@
     z: 'u32'
   },
   /**
-   * Lookup233: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup235: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartEquippableList: {
     _enum: {
@@ -1777,7 +1790,7 @@
     }
   },
   /**
-   * Lookup235: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>, S>>
+   * Lookup237: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>, S>>
    **/
   RmrkTraitsTheme: {
     name: 'Bytes',
@@ -1785,14 +1798,14 @@
     inherit: 'bool'
   },
   /**
-   * Lookup237: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup239: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsThemeThemeProperty: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup239: pallet_evm::pallet::Call<T>
+   * Lookup241: pallet_evm::pallet::Call<T>
    **/
   PalletEvmCall: {
     _enum: {
@@ -1835,7 +1848,7 @@
     }
   },
   /**
-   * Lookup245: pallet_ethereum::pallet::Call<T>
+   * Lookup247: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -1845,7 +1858,7 @@
     }
   },
   /**
-   * Lookup246: ethereum::transaction::TransactionV2
+   * Lookup248: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -1855,7 +1868,7 @@
     }
   },
   /**
-   * Lookup247: ethereum::transaction::LegacyTransaction
+   * Lookup249: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -1867,7 +1880,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup248: ethereum::transaction::TransactionAction
+   * Lookup250: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -1876,7 +1889,7 @@
     }
   },
   /**
-   * Lookup249: ethereum::transaction::TransactionSignature
+   * Lookup251: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -1884,7 +1897,7 @@
     s: 'H256'
   },
   /**
-   * Lookup251: ethereum::transaction::EIP2930Transaction
+   * Lookup253: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -1900,14 +1913,14 @@
     s: 'H256'
   },
   /**
-   * Lookup253: ethereum::transaction::AccessListItem
+   * Lookup255: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup254: ethereum::transaction::EIP1559Transaction
+   * Lookup256: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -1924,7 +1937,7 @@
     s: 'H256'
   },
   /**
-   * Lookup255: pallet_evm_migration::pallet::Call<T>
+   * Lookup257: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -1942,7 +1955,7 @@
     }
   },
   /**
-   * Lookup258: pallet_sudo::pallet::Event<T>
+   * Lookup260: pallet_sudo::pallet::Event<T>
    **/
   PalletSudoEvent: {
     _enum: {
@@ -1958,7 +1971,7 @@
     }
   },
   /**
-   * Lookup260: sp_runtime::DispatchError
+   * Lookup262: sp_runtime::DispatchError
    **/
   SpRuntimeDispatchError: {
     _enum: {
@@ -1975,38 +1988,38 @@
     }
   },
   /**
-   * Lookup261: sp_runtime::ModuleError
+   * Lookup263: sp_runtime::ModuleError
    **/
   SpRuntimeModuleError: {
     index: 'u8',
     error: '[u8;4]'
   },
   /**
-   * Lookup262: sp_runtime::TokenError
+   * Lookup264: sp_runtime::TokenError
    **/
   SpRuntimeTokenError: {
     _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
   },
   /**
-   * Lookup263: sp_runtime::ArithmeticError
+   * Lookup265: sp_runtime::ArithmeticError
    **/
   SpRuntimeArithmeticError: {
     _enum: ['Underflow', 'Overflow', 'DivisionByZero']
   },
   /**
-   * Lookup264: sp_runtime::TransactionalError
+   * Lookup266: sp_runtime::TransactionalError
    **/
   SpRuntimeTransactionalError: {
     _enum: ['LimitReached', 'NoLayer']
   },
   /**
-   * Lookup265: pallet_sudo::pallet::Error<T>
+   * Lookup267: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup266: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+   * Lookup268: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
    **/
   FrameSystemAccountInfo: {
     nonce: 'u32',
@@ -2016,7 +2029,7 @@
     data: 'PalletBalancesAccountData'
   },
   /**
-   * Lookup267: frame_support::weights::PerDispatchClass<T>
+   * Lookup269: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU64: {
     normal: 'u64',
@@ -2024,13 +2037,13 @@
     mandatory: 'u64'
   },
   /**
-   * Lookup268: sp_runtime::generic::digest::Digest
+   * Lookup270: sp_runtime::generic::digest::Digest
    **/
   SpRuntimeDigest: {
     logs: 'Vec<SpRuntimeDigestDigestItem>'
   },
   /**
-   * Lookup270: sp_runtime::generic::digest::DigestItem
+   * Lookup272: sp_runtime::generic::digest::DigestItem
    **/
   SpRuntimeDigestDigestItem: {
     _enum: {
@@ -2046,7 +2059,7 @@
     }
   },
   /**
-   * Lookup272: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+   * Lookup274: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
    **/
   FrameSystemEventRecord: {
     phase: 'FrameSystemPhase',
@@ -2054,7 +2067,7 @@
     topics: 'Vec<H256>'
   },
   /**
-   * Lookup274: frame_system::pallet::Event<T>
+   * Lookup276: frame_system::pallet::Event<T>
    **/
   FrameSystemEvent: {
     _enum: {
@@ -2082,7 +2095,7 @@
     }
   },
   /**
-   * Lookup275: frame_support::weights::DispatchInfo
+   * Lookup277: frame_support::weights::DispatchInfo
    **/
   FrameSupportWeightsDispatchInfo: {
     weight: 'u64',
@@ -2090,19 +2103,19 @@
     paysFee: 'FrameSupportWeightsPays'
   },
   /**
-   * Lookup276: frame_support::weights::DispatchClass
+   * Lookup278: frame_support::weights::DispatchClass
    **/
   FrameSupportWeightsDispatchClass: {
     _enum: ['Normal', 'Operational', 'Mandatory']
   },
   /**
-   * Lookup277: frame_support::weights::Pays
+   * Lookup279: frame_support::weights::Pays
    **/
   FrameSupportWeightsPays: {
     _enum: ['Yes', 'No']
   },
   /**
-   * Lookup278: orml_vesting::module::Event<T>
+   * Lookup280: orml_vesting::module::Event<T>
    **/
   OrmlVestingModuleEvent: {
     _enum: {
@@ -2121,7 +2134,7 @@
     }
   },
   /**
-   * Lookup279: cumulus_pallet_xcmp_queue::pallet::Event<T>
+   * Lookup281: cumulus_pallet_xcmp_queue::pallet::Event<T>
    **/
   CumulusPalletXcmpQueueEvent: {
     _enum: {
@@ -2136,7 +2149,7 @@
     }
   },
   /**
-   * Lookup280: pallet_xcm::pallet::Event<T>
+   * Lookup282: pallet_xcm::pallet::Event<T>
    **/
   PalletXcmEvent: {
     _enum: {
@@ -2159,7 +2172,7 @@
     }
   },
   /**
-   * Lookup281: xcm::v2::traits::Outcome
+   * Lookup283: xcm::v2::traits::Outcome
    **/
   XcmV2TraitsOutcome: {
     _enum: {
@@ -2169,7 +2182,7 @@
     }
   },
   /**
-   * Lookup283: cumulus_pallet_xcm::pallet::Event<T>
+   * Lookup285: cumulus_pallet_xcm::pallet::Event<T>
    **/
   CumulusPalletXcmEvent: {
     _enum: {
@@ -2179,7 +2192,7 @@
     }
   },
   /**
-   * Lookup284: cumulus_pallet_dmp_queue::pallet::Event<T>
+   * Lookup286: cumulus_pallet_dmp_queue::pallet::Event<T>
    **/
   CumulusPalletDmpQueueEvent: {
     _enum: {
@@ -2210,7 +2223,7 @@
     }
   },
   /**
-   * Lookup285: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup287: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletUniqueRawEvent: {
     _enum: {
@@ -2227,7 +2240,7 @@
     }
   },
   /**
-   * Lookup286: pallet_unique_scheduler::pallet::Event<T>
+   * Lookup288: pallet_unique_scheduler::pallet::Event<T>
    **/
   PalletUniqueSchedulerEvent: {
     _enum: {
@@ -2252,13 +2265,13 @@
     }
   },
   /**
-   * Lookup288: frame_support::traits::schedule::LookupError
+   * Lookup290: frame_support::traits::schedule::LookupError
    **/
   FrameSupportScheduleLookupError: {
     _enum: ['Unknown', 'BadFormat']
   },
   /**
-   * Lookup289: pallet_common::pallet::Event<T>
+   * Lookup291: pallet_common::pallet::Event<T>
    **/
   PalletCommonEvent: {
     _enum: {
@@ -2276,7 +2289,7 @@
     }
   },
   /**
-   * Lookup290: pallet_structure::pallet::Event<T>
+   * Lookup292: pallet_structure::pallet::Event<T>
    **/
   PalletStructureEvent: {
     _enum: {
@@ -2284,7 +2297,7 @@
     }
   },
   /**
-   * Lookup291: pallet_rmrk_core::pallet::Event<T>
+   * Lookup293: pallet_rmrk_core::pallet::Event<T>
    **/
   PalletRmrkCoreEvent: {
     _enum: {
@@ -2361,7 +2374,7 @@
     }
   },
   /**
-   * Lookup292: pallet_rmrk_equip::pallet::Event<T>
+   * Lookup294: pallet_rmrk_equip::pallet::Event<T>
    **/
   PalletRmrkEquipEvent: {
     _enum: {
@@ -2376,7 +2389,7 @@
     }
   },
   /**
-   * Lookup293: pallet_evm::pallet::Event<T>
+   * Lookup295: pallet_evm::pallet::Event<T>
    **/
   PalletEvmEvent: {
     _enum: {
@@ -2390,7 +2403,7 @@
     }
   },
   /**
-   * Lookup294: ethereum::log::Log
+   * Lookup296: ethereum::log::Log
    **/
   EthereumLog: {
     address: 'H160',
@@ -2398,7 +2411,7 @@
     data: 'Bytes'
   },
   /**
-   * Lookup295: pallet_ethereum::pallet::Event
+   * Lookup297: pallet_ethereum::pallet::Event
    **/
   PalletEthereumEvent: {
     _enum: {
@@ -2406,7 +2419,7 @@
     }
   },
   /**
-   * Lookup296: evm_core::error::ExitReason
+   * Lookup298: evm_core::error::ExitReason
    **/
   EvmCoreErrorExitReason: {
     _enum: {
@@ -2417,13 +2430,13 @@
     }
   },
   /**
-   * Lookup297: evm_core::error::ExitSucceed
+   * Lookup299: evm_core::error::ExitSucceed
    **/
   EvmCoreErrorExitSucceed: {
     _enum: ['Stopped', 'Returned', 'Suicided']
   },
   /**
-   * Lookup298: evm_core::error::ExitError
+   * Lookup300: evm_core::error::ExitError
    **/
   EvmCoreErrorExitError: {
     _enum: {
@@ -2445,13 +2458,13 @@
     }
   },
   /**
-   * Lookup301: evm_core::error::ExitRevert
+   * Lookup303: evm_core::error::ExitRevert
    **/
   EvmCoreErrorExitRevert: {
     _enum: ['Reverted']
   },
   /**
-   * Lookup302: evm_core::error::ExitFatal
+   * Lookup304: evm_core::error::ExitFatal
    **/
   EvmCoreErrorExitFatal: {
     _enum: {
@@ -2462,7 +2475,7 @@
     }
   },
   /**
-   * Lookup303: frame_system::Phase
+   * Lookup305: frame_system::Phase
    **/
   FrameSystemPhase: {
     _enum: {
@@ -2472,14 +2485,14 @@
     }
   },
   /**
-   * Lookup305: frame_system::LastRuntimeUpgradeInfo
+   * Lookup307: frame_system::LastRuntimeUpgradeInfo
    **/
   FrameSystemLastRuntimeUpgradeInfo: {
     specVersion: 'Compact<u32>',
     specName: 'Text'
   },
   /**
-   * Lookup306: frame_system::limits::BlockWeights
+   * Lookup308: frame_system::limits::BlockWeights
    **/
   FrameSystemLimitsBlockWeights: {
     baseBlock: 'u64',
@@ -2487,7 +2500,7 @@
     perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
   },
   /**
-   * Lookup307: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+   * Lookup309: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
    **/
   FrameSupportWeightsPerDispatchClassWeightsPerClass: {
     normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2495,7 +2508,7 @@
     mandatory: 'FrameSystemLimitsWeightsPerClass'
   },
   /**
-   * Lookup308: frame_system::limits::WeightsPerClass
+   * Lookup310: frame_system::limits::WeightsPerClass
    **/
   FrameSystemLimitsWeightsPerClass: {
     baseExtrinsic: 'u64',
@@ -2504,13 +2517,13 @@
     reserved: 'Option<u64>'
   },
   /**
-   * Lookup310: frame_system::limits::BlockLength
+   * Lookup311: frame_system::limits::BlockLength
    **/
   FrameSystemLimitsBlockLength: {
     max: 'FrameSupportWeightsPerDispatchClassU32'
   },
   /**
-   * Lookup311: frame_support::weights::PerDispatchClass<T>
+   * Lookup312: frame_support::weights::PerDispatchClass<T>
    **/
   FrameSupportWeightsPerDispatchClassU32: {
     normal: 'u32',
@@ -2518,14 +2531,14 @@
     mandatory: 'u32'
   },
   /**
-   * Lookup312: frame_support::weights::RuntimeDbWeight
+   * Lookup313: frame_support::weights::RuntimeDbWeight
    **/
   FrameSupportWeightsRuntimeDbWeight: {
     read: 'u64',
     write: 'u64'
   },
   /**
-   * Lookup313: sp_version::RuntimeVersion
+   * Lookup314: sp_version::RuntimeVersion
    **/
   SpVersionRuntimeVersion: {
     specName: 'Text',
@@ -2538,19 +2551,19 @@
     stateVersion: 'u8'
   },
   /**
-   * Lookup317: frame_system::pallet::Error<T>
+   * Lookup318: frame_system::pallet::Error<T>
    **/
   FrameSystemError: {
     _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
   },
   /**
-   * Lookup319: orml_vesting::module::Error<T>
+   * Lookup320: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup321: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup322: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -2558,19 +2571,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup322: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup323: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup325: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup326: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup328: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup329: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -2580,13 +2593,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup329: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup330: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup331: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup332: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -2597,29 +2610,29 @@
     xcmpMaxIndividualWeight: 'u64'
   },
   /**
-   * Lookup333: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup334: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup334: pallet_xcm::pallet::Error<T>
+   * Lookup335: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
   },
   /**
-   * Lookup335: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup336: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup336: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup337: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'u64'
   },
   /**
-   * Lookup337: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup338: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -2627,19 +2640,19 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup340: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup341: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup344: pallet_unique::Error<T>
+   * Lookup345: pallet_unique::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
   },
   /**
-   * Lookup347: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+   * Lookup348: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
    **/
   PalletUniqueSchedulerScheduledV3: {
     maybeId: 'Option<[u8;16]>',
@@ -2649,7 +2662,7 @@
     origin: 'OpalRuntimeOriginCaller'
   },
   /**
-   * Lookup348: opal_runtime::OriginCaller
+   * Lookup349: opal_runtime::OriginCaller
    **/
   OpalRuntimeOriginCaller: {
     _enum: {
@@ -2758,7 +2771,7 @@
     }
   },
   /**
-   * Lookup349: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+   * Lookup350: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
    **/
   FrameSupportDispatchRawOrigin: {
     _enum: {
@@ -2768,7 +2781,7 @@
     }
   },
   /**
-   * Lookup350: pallet_xcm::pallet::Origin
+   * Lookup351: pallet_xcm::pallet::Origin
    **/
   PalletXcmOrigin: {
     _enum: {
@@ -2777,7 +2790,7 @@
     }
   },
   /**
-   * Lookup351: cumulus_pallet_xcm::pallet::Origin
+   * Lookup352: cumulus_pallet_xcm::pallet::Origin
    **/
   CumulusPalletXcmOrigin: {
     _enum: {
@@ -2786,7 +2799,7 @@
     }
   },
   /**
-   * Lookup352: pallet_ethereum::RawOrigin
+   * Lookup353: pallet_ethereum::RawOrigin
    **/
   PalletEthereumRawOrigin: {
     _enum: {
@@ -2794,17 +2807,17 @@
     }
   },
   /**
-   * Lookup353: sp_core::Void
+   * Lookup354: sp_core::Void
    **/
   SpCoreVoid: 'Null',
   /**
-   * Lookup354: pallet_unique_scheduler::pallet::Error<T>
+   * Lookup355: pallet_unique_scheduler::pallet::Error<T>
    **/
   PalletUniqueSchedulerError: {
     _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
   },
   /**
-   * Lookup355: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup356: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -2818,7 +2831,7 @@
     externalCollection: 'bool'
   },
   /**
-   * Lookup356: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup357: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipState: {
     _enum: {
@@ -2828,7 +2841,7 @@
     }
   },
   /**
-   * Lookup357: up_data_structs::Properties
+   * Lookup358: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2836,15 +2849,15 @@
     spaceLimit: 'u32'
   },
   /**
-   * Lookup358: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup359: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup363: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup364: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup370: up_data_structs::CollectionStats
+   * Lookup371: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -2852,18 +2865,18 @@
     alive: 'u32'
   },
   /**
-   * Lookup371: up_data_structs::TokenChild
+   * Lookup372: up_data_structs::TokenChild
    **/
   UpDataStructsTokenChild: {
     token: 'u32',
     collection: 'u32'
   },
   /**
-   * Lookup372: PhantomType::up_data_structs<T>
+   * Lookup373: PhantomType::up_data_structs<T>
    **/
   PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
   /**
-   * Lookup374: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup375: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     properties: 'Vec<UpDataStructsProperty>',
@@ -2871,7 +2884,7 @@
     pieces: 'u128'
   },
   /**
-   * Lookup376: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup377: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -2887,7 +2900,7 @@
     readOnly: 'bool'
   },
   /**
-   * Lookup377: rmrk_traits::collection::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+   * Lookup378: rmrk_traits::collection::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
    **/
   RmrkTraitsCollectionCollectionInfo: {
     issuer: 'AccountId32',
@@ -2897,7 +2910,7 @@
     nftsCount: 'u32'
   },
   /**
-   * Lookup378: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup379: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsNftNftInfo: {
     owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -2907,14 +2920,14 @@
     pending: 'bool'
   },
   /**
-   * Lookup380: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+   * Lookup381: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
    **/
   RmrkTraitsNftRoyaltyInfo: {
     recipient: 'AccountId32',
     amount: 'Permill'
   },
   /**
-   * Lookup381: rmrk_traits::resource::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup382: rmrk_traits::resource::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceResourceInfo: {
     id: 'u32',
@@ -2923,14 +2936,14 @@
     pendingRemoval: 'bool'
   },
   /**
-   * Lookup382: rmrk_traits::property::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup383: rmrk_traits::property::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPropertyPropertyInfo: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup383: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+   * Lookup384: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsBaseBaseInfo: {
     issuer: 'AccountId32',
@@ -2938,80 +2951,80 @@
     symbol: 'Bytes'
   },
   /**
-   * Lookup384: rmrk_traits::nft::NftChild
+   * Lookup385: rmrk_traits::nft::NftChild
    **/
   RmrkTraitsNftNftChild: {
     collectionId: 'u32',
     nftId: 'u32'
   },
   /**
-   * Lookup386: pallet_common::pallet::Error<T>
+   * Lookup387: 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', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
   },
   /**
-   * Lookup388: pallet_fungible::pallet::Error<T>
+   * Lookup389: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup389: pallet_refungible::ItemData
+   * Lookup390: pallet_refungible::ItemData
    **/
   PalletRefungibleItemData: {
     constData: 'Bytes'
   },
   /**
-   * Lookup394: pallet_refungible::pallet::Error<T>
+   * Lookup395: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup395: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup396: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup397: up_data_structs::PropertyScope
+   * Lookup398: up_data_structs::PropertyScope
    **/
   UpDataStructsPropertyScope: {
     _enum: ['None', 'Rmrk', 'Eth']
   },
   /**
-   * Lookup399: pallet_nonfungible::pallet::Error<T>
+   * Lookup400: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
   },
   /**
-   * Lookup400: pallet_structure::pallet::Error<T>
+   * Lookup401: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
   },
   /**
-   * Lookup401: pallet_rmrk_core::pallet::Error<T>
+   * Lookup402: 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']
   },
   /**
-   * Lookup403: pallet_rmrk_equip::pallet::Error<T>
+   * Lookup404: pallet_rmrk_equip::pallet::Error<T>
    **/
   PalletRmrkEquipError: {
     _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
   },
   /**
-   * Lookup406: pallet_evm::pallet::Error<T>
+   * Lookup407: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
   },
   /**
-   * Lookup409: fp_rpc::TransactionStatus
+   * Lookup410: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -3023,11 +3036,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup411: ethbloom::Bloom
+   * Lookup412: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup413: ethereum::receipt::ReceiptV3
+   * Lookup414: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -3037,7 +3050,7 @@
     }
   },
   /**
-   * Lookup414: ethereum::receipt::EIP658ReceiptData
+   * Lookup415: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -3046,7 +3059,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup415: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup416: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -3054,7 +3067,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup416: ethereum::header::Header
+   * Lookup417: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -3074,41 +3087,41 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup417: ethereum_types::hash::H64
+   * Lookup418: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup422: pallet_ethereum::pallet::Error<T>
+   * Lookup423: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup423: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup424: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup424: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup425: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup426: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup427: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission']
   },
   /**
-   * Lookup427: pallet_evm_migration::pallet::Error<T>
+   * Lookup428: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
   },
   /**
-   * Lookup429: sp_runtime::MultiSignature
+   * Lookup430: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -3118,43 +3131,43 @@
     }
   },
   /**
-   * Lookup430: sp_core::ed25519::Signature
+   * Lookup431: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup432: sp_core::sr25519::Signature
+   * Lookup433: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup433: sp_core::ecdsa::Signature
+   * Lookup434: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup436: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup437: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup437: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup438: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup440: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup441: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup441: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup442: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup442: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup443: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup443: opal_runtime::Runtime
+   * Lookup444: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup444: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup445: 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
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, 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, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, 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, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   export interface InterfaceTypes {
@@ -89,6 +89,7 @@
     PalletBalancesReserveData: PalletBalancesReserveData;
     PalletCommonError: PalletCommonError;
     PalletCommonEvent: PalletCommonEvent;
+    PalletConfigurationCall: PalletConfigurationCall;
     PalletEthereumCall: PalletEthereumCall;
     PalletEthereumError: PalletEthereumError;
     PalletEthereumEvent: PalletEthereumEvent;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1697,13 +1697,26 @@
     readonly type: 'Value' | 'Hash';
   }
 
-  /** @name PalletTemplateTransactionPaymentCall (207) */
+  /** @name PalletConfigurationCall (207) */
+  export interface PalletConfigurationCall extends Enum {
+    readonly isSetWeightToFeeCoefficientOverride: boolean;
+    readonly asSetWeightToFeeCoefficientOverride: {
+      readonly coeff: Option<u32>;
+    } & Struct;
+    readonly isSetMinGasPriceOverride: boolean;
+    readonly asSetMinGasPriceOverride: {
+      readonly coeff: Option<u64>;
+    } & Struct;
+    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+  }
+
+  /** @name PalletTemplateTransactionPaymentCall (209) */
   export type PalletTemplateTransactionPaymentCall = Null;
 
-  /** @name PalletStructureCall (208) */
+  /** @name PalletStructureCall (210) */
   export type PalletStructureCall = Null;
 
-  /** @name PalletRmrkCoreCall (209) */
+  /** @name PalletRmrkCoreCall (211) */
   export interface PalletRmrkCoreCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -1809,7 +1822,7 @@
     readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
   }
 
-  /** @name RmrkTraitsResourceResourceTypes (215) */
+  /** @name RmrkTraitsResourceResourceTypes (217) */
   export interface RmrkTraitsResourceResourceTypes extends Enum {
     readonly isBasic: boolean;
     readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -1820,7 +1833,7 @@
     readonly type: 'Basic' | 'Composable' | 'Slot';
   }
 
-  /** @name RmrkTraitsResourceBasicResource (217) */
+  /** @name RmrkTraitsResourceBasicResource (219) */
   export interface RmrkTraitsResourceBasicResource extends Struct {
     readonly src: Option<Bytes>;
     readonly metadata: Option<Bytes>;
@@ -1828,7 +1841,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceComposableResource (219) */
+  /** @name RmrkTraitsResourceComposableResource (221) */
   export interface RmrkTraitsResourceComposableResource extends Struct {
     readonly parts: Vec<u32>;
     readonly base: u32;
@@ -1838,7 +1851,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceSlotResource (220) */
+  /** @name RmrkTraitsResourceSlotResource (222) */
   export interface RmrkTraitsResourceSlotResource extends Struct {
     readonly base: u32;
     readonly src: Option<Bytes>;
@@ -1848,7 +1861,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (222) */
+  /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (224) */
   export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
     readonly isAccountId: boolean;
     readonly asAccountId: AccountId32;
@@ -1857,7 +1870,7 @@
     readonly type: 'AccountId' | 'CollectionAndNftTuple';
   }
 
-  /** @name PalletRmrkEquipCall (226) */
+  /** @name PalletRmrkEquipCall (228) */
   export interface PalletRmrkEquipCall extends Enum {
     readonly isCreateBase: boolean;
     readonly asCreateBase: {
@@ -1879,7 +1892,7 @@
     readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
   }
 
-  /** @name RmrkTraitsPartPartType (229) */
+  /** @name RmrkTraitsPartPartType (231) */
   export interface RmrkTraitsPartPartType extends Enum {
     readonly isFixedPart: boolean;
     readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -1888,14 +1901,14 @@
     readonly type: 'FixedPart' | 'SlotPart';
   }
 
-  /** @name RmrkTraitsPartFixedPart (231) */
+  /** @name RmrkTraitsPartFixedPart (233) */
   export interface RmrkTraitsPartFixedPart extends Struct {
     readonly id: u32;
     readonly z: u32;
     readonly src: Bytes;
   }
 
-  /** @name RmrkTraitsPartSlotPart (232) */
+  /** @name RmrkTraitsPartSlotPart (234) */
   export interface RmrkTraitsPartSlotPart extends Struct {
     readonly id: u32;
     readonly equippable: RmrkTraitsPartEquippableList;
@@ -1903,7 +1916,7 @@
     readonly z: u32;
   }
 
-  /** @name RmrkTraitsPartEquippableList (233) */
+  /** @name RmrkTraitsPartEquippableList (235) */
   export interface RmrkTraitsPartEquippableList extends Enum {
     readonly isAll: boolean;
     readonly isEmpty: boolean;
@@ -1912,20 +1925,20 @@
     readonly type: 'All' | 'Empty' | 'Custom';
   }
 
-  /** @name RmrkTraitsTheme (235) */
+  /** @name RmrkTraitsTheme (237) */
   export interface RmrkTraitsTheme extends Struct {
     readonly name: Bytes;
     readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
     readonly inherit: bool;
   }
 
-  /** @name RmrkTraitsThemeThemeProperty (237) */
+  /** @name RmrkTraitsThemeThemeProperty (239) */
   export interface RmrkTraitsThemeThemeProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name PalletEvmCall (239) */
+  /** @name PalletEvmCall (241) */
   export interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -1970,7 +1983,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (245) */
+  /** @name PalletEthereumCall (247) */
   export interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -1979,7 +1992,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (246) */
+  /** @name EthereumTransactionTransactionV2 (248) */
   export interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -1990,7 +2003,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (247) */
+  /** @name EthereumTransactionLegacyTransaction (249) */
   export interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -2001,7 +2014,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (248) */
+  /** @name EthereumTransactionTransactionAction (250) */
   export interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -2009,14 +2022,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (249) */
+  /** @name EthereumTransactionTransactionSignature (251) */
   export interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (251) */
+  /** @name EthereumTransactionEip2930Transaction (253) */
   export interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -2031,13 +2044,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (253) */
+  /** @name EthereumTransactionAccessListItem (255) */
   export interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (254) */
+  /** @name EthereumTransactionEip1559Transaction (256) */
   export interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -2053,7 +2066,7 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmMigrationCall (255) */
+  /** @name PalletEvmMigrationCall (257) */
   export interface PalletEvmMigrationCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
@@ -2072,7 +2085,7 @@
     readonly type: 'Begin' | 'SetData' | 'Finish';
   }
 
-  /** @name PalletSudoEvent (258) */
+  /** @name PalletSudoEvent (260) */
   export interface PalletSudoEvent extends Enum {
     readonly isSudid: boolean;
     readonly asSudid: {
@@ -2089,7 +2102,7 @@
     readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
   }
 
-  /** @name SpRuntimeDispatchError (260) */
+  /** @name SpRuntimeDispatchError (262) */
   export interface SpRuntimeDispatchError extends Enum {
     readonly isOther: boolean;
     readonly isCannotLookup: boolean;
@@ -2108,13 +2121,13 @@
     readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
   }
 
-  /** @name SpRuntimeModuleError (261) */
+  /** @name SpRuntimeModuleError (263) */
   export interface SpRuntimeModuleError extends Struct {
     readonly index: u8;
     readonly error: U8aFixed;
   }
 
-  /** @name SpRuntimeTokenError (262) */
+  /** @name SpRuntimeTokenError (264) */
   export interface SpRuntimeTokenError extends Enum {
     readonly isNoFunds: boolean;
     readonly isWouldDie: boolean;
@@ -2126,7 +2139,7 @@
     readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
   }
 
-  /** @name SpRuntimeArithmeticError (263) */
+  /** @name SpRuntimeArithmeticError (265) */
   export interface SpRuntimeArithmeticError extends Enum {
     readonly isUnderflow: boolean;
     readonly isOverflow: boolean;
@@ -2134,20 +2147,20 @@
     readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
   }
 
-  /** @name SpRuntimeTransactionalError (264) */
+  /** @name SpRuntimeTransactionalError (266) */
   export interface SpRuntimeTransactionalError extends Enum {
     readonly isLimitReached: boolean;
     readonly isNoLayer: boolean;
     readonly type: 'LimitReached' | 'NoLayer';
   }
 
-  /** @name PalletSudoError (265) */
+  /** @name PalletSudoError (267) */
   export interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name FrameSystemAccountInfo (266) */
+  /** @name FrameSystemAccountInfo (268) */
   export interface FrameSystemAccountInfo extends Struct {
     readonly nonce: u32;
     readonly consumers: u32;
@@ -2156,19 +2169,19 @@
     readonly data: PalletBalancesAccountData;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassU64 (267) */
+  /** @name FrameSupportWeightsPerDispatchClassU64 (269) */
   export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
     readonly normal: u64;
     readonly operational: u64;
     readonly mandatory: u64;
   }
 
-  /** @name SpRuntimeDigest (268) */
+  /** @name SpRuntimeDigest (270) */
   export interface SpRuntimeDigest extends Struct {
     readonly logs: Vec<SpRuntimeDigestDigestItem>;
   }
 
-  /** @name SpRuntimeDigestDigestItem (270) */
+  /** @name SpRuntimeDigestDigestItem (272) */
   export interface SpRuntimeDigestDigestItem extends Enum {
     readonly isOther: boolean;
     readonly asOther: Bytes;
@@ -2182,14 +2195,14 @@
     readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
   }
 
-  /** @name FrameSystemEventRecord (272) */
+  /** @name FrameSystemEventRecord (274) */
   export interface FrameSystemEventRecord extends Struct {
     readonly phase: FrameSystemPhase;
     readonly event: Event;
     readonly topics: Vec<H256>;
   }
 
-  /** @name FrameSystemEvent (274) */
+  /** @name FrameSystemEvent (276) */
   export interface FrameSystemEvent extends Enum {
     readonly isExtrinsicSuccess: boolean;
     readonly asExtrinsicSuccess: {
@@ -2217,14 +2230,14 @@
     readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
   }
 
-  /** @name FrameSupportWeightsDispatchInfo (275) */
+  /** @name FrameSupportWeightsDispatchInfo (277) */
   export interface FrameSupportWeightsDispatchInfo extends Struct {
     readonly weight: u64;
     readonly class: FrameSupportWeightsDispatchClass;
     readonly paysFee: FrameSupportWeightsPays;
   }
 
-  /** @name FrameSupportWeightsDispatchClass (276) */
+  /** @name FrameSupportWeightsDispatchClass (278) */
   export interface FrameSupportWeightsDispatchClass extends Enum {
     readonly isNormal: boolean;
     readonly isOperational: boolean;
@@ -2232,14 +2245,14 @@
     readonly type: 'Normal' | 'Operational' | 'Mandatory';
   }
 
-  /** @name FrameSupportWeightsPays (277) */
+  /** @name FrameSupportWeightsPays (279) */
   export interface FrameSupportWeightsPays extends Enum {
     readonly isYes: boolean;
     readonly isNo: boolean;
     readonly type: 'Yes' | 'No';
   }
 
-  /** @name OrmlVestingModuleEvent (278) */
+  /** @name OrmlVestingModuleEvent (280) */
   export interface OrmlVestingModuleEvent extends Enum {
     readonly isVestingScheduleAdded: boolean;
     readonly asVestingScheduleAdded: {
@@ -2259,7 +2272,7 @@
     readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
   }
 
-  /** @name CumulusPalletXcmpQueueEvent (279) */
+  /** @name CumulusPalletXcmpQueueEvent (281) */
   export interface CumulusPalletXcmpQueueEvent extends Enum {
     readonly isSuccess: boolean;
     readonly asSuccess: Option<H256>;
@@ -2280,7 +2293,7 @@
     readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletXcmEvent (280) */
+  /** @name PalletXcmEvent (282) */
   export interface PalletXcmEvent extends Enum {
     readonly isAttempted: boolean;
     readonly asAttempted: XcmV2TraitsOutcome;
@@ -2317,7 +2330,7 @@
     readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
   }
 
-  /** @name XcmV2TraitsOutcome (281) */
+  /** @name XcmV2TraitsOutcome (283) */
   export interface XcmV2TraitsOutcome extends Enum {
     readonly isComplete: boolean;
     readonly asComplete: u64;
@@ -2328,7 +2341,7 @@
     readonly type: 'Complete' | 'Incomplete' | 'Error';
   }
 
-  /** @name CumulusPalletXcmEvent (283) */
+  /** @name CumulusPalletXcmEvent (285) */
   export interface CumulusPalletXcmEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
@@ -2339,7 +2352,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
   }
 
-  /** @name CumulusPalletDmpQueueEvent (284) */
+  /** @name CumulusPalletDmpQueueEvent (286) */
   export interface CumulusPalletDmpQueueEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: {
@@ -2374,7 +2387,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletUniqueRawEvent (285) */
+  /** @name PalletUniqueRawEvent (287) */
   export interface PalletUniqueRawEvent extends Enum {
     readonly isCollectionSponsorRemoved: boolean;
     readonly asCollectionSponsorRemoved: u32;
@@ -2399,7 +2412,7 @@
     readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
   }
 
-  /** @name PalletUniqueSchedulerEvent (286) */
+  /** @name PalletUniqueSchedulerEvent (288) */
   export interface PalletUniqueSchedulerEvent extends Enum {
     readonly isScheduled: boolean;
     readonly asScheduled: {
@@ -2426,14 +2439,14 @@
     readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
   }
 
-  /** @name FrameSupportScheduleLookupError (288) */
+  /** @name FrameSupportScheduleLookupError (290) */
   export interface FrameSupportScheduleLookupError extends Enum {
     readonly isUnknown: boolean;
     readonly isBadFormat: boolean;
     readonly type: 'Unknown' | 'BadFormat';
   }
 
-  /** @name PalletCommonEvent (289) */
+  /** @name PalletCommonEvent (291) */
   export interface PalletCommonEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -2460,14 +2473,14 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
   }
 
-  /** @name PalletStructureEvent (290) */
+  /** @name PalletStructureEvent (292) */
   export interface PalletStructureEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
     readonly type: 'Executed';
   }
 
-  /** @name PalletRmrkCoreEvent (291) */
+  /** @name PalletRmrkCoreEvent (293) */
   export interface PalletRmrkCoreEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: {
@@ -2557,7 +2570,7 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
   }
 
-  /** @name PalletRmrkEquipEvent (292) */
+  /** @name PalletRmrkEquipEvent (294) */
   export interface PalletRmrkEquipEvent extends Enum {
     readonly isBaseCreated: boolean;
     readonly asBaseCreated: {
@@ -2572,7 +2585,7 @@
     readonly type: 'BaseCreated' | 'EquippablesUpdated';
   }
 
-  /** @name PalletEvmEvent (293) */
+  /** @name PalletEvmEvent (295) */
   export interface PalletEvmEvent extends Enum {
     readonly isLog: boolean;
     readonly asLog: EthereumLog;
@@ -2591,21 +2604,21 @@
     readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
   }
 
-  /** @name EthereumLog (294) */
+  /** @name EthereumLog (296) */
   export interface EthereumLog extends Struct {
     readonly address: H160;
     readonly topics: Vec<H256>;
     readonly data: Bytes;
   }
 
-  /** @name PalletEthereumEvent (295) */
+  /** @name PalletEthereumEvent (297) */
   export interface PalletEthereumEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
     readonly type: 'Executed';
   }
 
-  /** @name EvmCoreErrorExitReason (296) */
+  /** @name EvmCoreErrorExitReason (298) */
   export interface EvmCoreErrorExitReason extends Enum {
     readonly isSucceed: boolean;
     readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -2618,7 +2631,7 @@
     readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
   }
 
-  /** @name EvmCoreErrorExitSucceed (297) */
+  /** @name EvmCoreErrorExitSucceed (299) */
   export interface EvmCoreErrorExitSucceed extends Enum {
     readonly isStopped: boolean;
     readonly isReturned: boolean;
@@ -2626,7 +2639,7 @@
     readonly type: 'Stopped' | 'Returned' | 'Suicided';
   }
 
-  /** @name EvmCoreErrorExitError (298) */
+  /** @name EvmCoreErrorExitError (300) */
   export interface EvmCoreErrorExitError extends Enum {
     readonly isStackUnderflow: boolean;
     readonly isStackOverflow: boolean;
@@ -2647,13 +2660,13 @@
     readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
   }
 
-  /** @name EvmCoreErrorExitRevert (301) */
+  /** @name EvmCoreErrorExitRevert (303) */
   export interface EvmCoreErrorExitRevert extends Enum {
     readonly isReverted: boolean;
     readonly type: 'Reverted';
   }
 
-  /** @name EvmCoreErrorExitFatal (302) */
+  /** @name EvmCoreErrorExitFatal (304) */
   export interface EvmCoreErrorExitFatal extends Enum {
     readonly isNotSupported: boolean;
     readonly isUnhandledInterrupt: boolean;
@@ -2664,7 +2677,7 @@
     readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
   }
 
-  /** @name FrameSystemPhase (303) */
+  /** @name FrameSystemPhase (305) */
   export interface FrameSystemPhase extends Enum {
     readonly isApplyExtrinsic: boolean;
     readonly asApplyExtrinsic: u32;
@@ -2673,27 +2686,27 @@
     readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
   }
 
-  /** @name FrameSystemLastRuntimeUpgradeInfo (305) */
+  /** @name FrameSystemLastRuntimeUpgradeInfo (307) */
   export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
     readonly specVersion: Compact<u32>;
     readonly specName: Text;
   }
 
-  /** @name FrameSystemLimitsBlockWeights (306) */
+  /** @name FrameSystemLimitsBlockWeights (308) */
   export interface FrameSystemLimitsBlockWeights extends Struct {
     readonly baseBlock: u64;
     readonly maxBlock: u64;
     readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (307) */
+  /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (309) */
   export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
     readonly normal: FrameSystemLimitsWeightsPerClass;
     readonly operational: FrameSystemLimitsWeightsPerClass;
     readonly mandatory: FrameSystemLimitsWeightsPerClass;
   }
 
-  /** @name FrameSystemLimitsWeightsPerClass (308) */
+  /** @name FrameSystemLimitsWeightsPerClass (310) */
   export interface FrameSystemLimitsWeightsPerClass extends Struct {
     readonly baseExtrinsic: u64;
     readonly maxExtrinsic: Option<u64>;
@@ -2701,25 +2714,25 @@
     readonly reserved: Option<u64>;
   }
 
-  /** @name FrameSystemLimitsBlockLength (310) */
+  /** @name FrameSystemLimitsBlockLength (311) */
   export interface FrameSystemLimitsBlockLength extends Struct {
     readonly max: FrameSupportWeightsPerDispatchClassU32;
   }
 
-  /** @name FrameSupportWeightsPerDispatchClassU32 (311) */
+  /** @name FrameSupportWeightsPerDispatchClassU32 (312) */
   export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
     readonly normal: u32;
     readonly operational: u32;
     readonly mandatory: u32;
   }
 
-  /** @name FrameSupportWeightsRuntimeDbWeight (312) */
+  /** @name FrameSupportWeightsRuntimeDbWeight (313) */
   export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
     readonly read: u64;
     readonly write: u64;
   }
 
-  /** @name SpVersionRuntimeVersion (313) */
+  /** @name SpVersionRuntimeVersion (314) */
   export interface SpVersionRuntimeVersion extends Struct {
     readonly specName: Text;
     readonly implName: Text;
@@ -2731,7 +2744,7 @@
     readonly stateVersion: u8;
   }
 
-  /** @name FrameSystemError (317) */
+  /** @name FrameSystemError (318) */
   export interface FrameSystemError extends Enum {
     readonly isInvalidSpecName: boolean;
     readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2742,7 +2755,7 @@
     readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
   }
 
-  /** @name OrmlVestingModuleError (319) */
+  /** @name OrmlVestingModuleError (320) */
   export interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -2753,21 +2766,21 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (321) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (322) */
   export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (322) */
+  /** @name CumulusPalletXcmpQueueInboundState (323) */
   export interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (325) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (326) */
   export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -2775,7 +2788,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (328) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (329) */
   export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2784,14 +2797,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (329) */
+  /** @name CumulusPalletXcmpQueueOutboundState (330) */
   export interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (331) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (332) */
   export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -2801,7 +2814,7 @@
     readonly xcmpMaxIndividualWeight: u64;
   }
 
-  /** @name CumulusPalletXcmpQueueError (333) */
+  /** @name CumulusPalletXcmpQueueError (334) */
   export interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -2811,7 +2824,7 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmError (334) */
+  /** @name PalletXcmError (335) */
   export interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -2829,29 +2842,29 @@
     readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
   }
 
-  /** @name CumulusPalletXcmError (335) */
+  /** @name CumulusPalletXcmError (336) */
   export type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (336) */
+  /** @name CumulusPalletDmpQueueConfigData (337) */
   export interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: u64;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (337) */
+  /** @name CumulusPalletDmpQueuePageIndexData (338) */
   export interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (340) */
+  /** @name CumulusPalletDmpQueueError (341) */
   export interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (344) */
+  /** @name PalletUniqueError (345) */
   export interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isConfirmUnsetSponsorFail: boolean;
@@ -2860,7 +2873,7 @@
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
   }
 
-  /** @name PalletUniqueSchedulerScheduledV3 (347) */
+  /** @name PalletUniqueSchedulerScheduledV3 (348) */
   export interface PalletUniqueSchedulerScheduledV3 extends Struct {
     readonly maybeId: Option<U8aFixed>;
     readonly priority: u8;
@@ -2869,7 +2882,7 @@
     readonly origin: OpalRuntimeOriginCaller;
   }
 
-  /** @name OpalRuntimeOriginCaller (348) */
+  /** @name OpalRuntimeOriginCaller (349) */
   export interface OpalRuntimeOriginCaller extends Enum {
     readonly isVoid: boolean;
     readonly isSystem: boolean;
@@ -2883,7 +2896,7 @@
     readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
   }
 
-  /** @name FrameSupportDispatchRawOrigin (349) */
+  /** @name FrameSupportDispatchRawOrigin (350) */
   export interface FrameSupportDispatchRawOrigin extends Enum {
     readonly isRoot: boolean;
     readonly isSigned: boolean;
@@ -2892,7 +2905,7 @@
     readonly type: 'Root' | 'Signed' | 'None';
   }
 
-  /** @name PalletXcmOrigin (350) */
+  /** @name PalletXcmOrigin (351) */
   export interface PalletXcmOrigin extends Enum {
     readonly isXcm: boolean;
     readonly asXcm: XcmV1MultiLocation;
@@ -2901,7 +2914,7 @@
     readonly type: 'Xcm' | 'Response';
   }
 
-  /** @name CumulusPalletXcmOrigin (351) */
+  /** @name CumulusPalletXcmOrigin (352) */
   export interface CumulusPalletXcmOrigin extends Enum {
     readonly isRelay: boolean;
     readonly isSiblingParachain: boolean;
@@ -2909,17 +2922,17 @@
     readonly type: 'Relay' | 'SiblingParachain';
   }
 
-  /** @name PalletEthereumRawOrigin (352) */
+  /** @name PalletEthereumRawOrigin (353) */
   export interface PalletEthereumRawOrigin extends Enum {
     readonly isEthereumTransaction: boolean;
     readonly asEthereumTransaction: H160;
     readonly type: 'EthereumTransaction';
   }
 
-  /** @name SpCoreVoid (353) */
+  /** @name SpCoreVoid (354) */
   export type SpCoreVoid = Null;
 
-  /** @name PalletUniqueSchedulerError (354) */
+  /** @name PalletUniqueSchedulerError (355) */
   export interface PalletUniqueSchedulerError extends Enum {
     readonly isFailedToSchedule: boolean;
     readonly isNotFound: boolean;
@@ -2928,7 +2941,7 @@
     readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
   }
 
-  /** @name UpDataStructsCollection (355) */
+  /** @name UpDataStructsCollection (356) */
   export interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -2941,7 +2954,7 @@
     readonly externalCollection: bool;
   }
 
-  /** @name UpDataStructsSponsorshipState (356) */
+  /** @name UpDataStructsSponsorshipState (357) */
   export interface UpDataStructsSponsorshipState extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -2951,43 +2964,43 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (357) */
+  /** @name UpDataStructsProperties (358) */
   export interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly spaceLimit: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (358) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (359) */
   export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (363) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (364) */
   export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionStats (370) */
+  /** @name UpDataStructsCollectionStats (371) */
   export interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name UpDataStructsTokenChild (371) */
+  /** @name UpDataStructsTokenChild (372) */
   export interface UpDataStructsTokenChild extends Struct {
     readonly token: u32;
     readonly collection: u32;
   }
 
-  /** @name PhantomTypeUpDataStructs (372) */
+  /** @name PhantomTypeUpDataStructs (373) */
   export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
 
-  /** @name UpDataStructsTokenData (374) */
+  /** @name UpDataStructsTokenData (375) */
   export interface UpDataStructsTokenData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
     readonly pieces: u128;
   }
 
-  /** @name UpDataStructsRpcCollection (376) */
+  /** @name UpDataStructsRpcCollection (377) */
   export interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3002,7 +3015,7 @@
     readonly readOnly: bool;
   }
 
-  /** @name RmrkTraitsCollectionCollectionInfo (377) */
+  /** @name RmrkTraitsCollectionCollectionInfo (378) */
   export interface RmrkTraitsCollectionCollectionInfo extends Struct {
     readonly issuer: AccountId32;
     readonly metadata: Bytes;
@@ -3011,7 +3024,7 @@
     readonly nftsCount: u32;
   }
 
-  /** @name RmrkTraitsNftNftInfo (378) */
+  /** @name RmrkTraitsNftNftInfo (379) */
   export interface RmrkTraitsNftNftInfo extends Struct {
     readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
     readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3020,13 +3033,13 @@
     readonly pending: bool;
   }
 
-  /** @name RmrkTraitsNftRoyaltyInfo (380) */
+  /** @name RmrkTraitsNftRoyaltyInfo (381) */
   export interface RmrkTraitsNftRoyaltyInfo extends Struct {
     readonly recipient: AccountId32;
     readonly amount: Permill;
   }
 
-  /** @name RmrkTraitsResourceResourceInfo (381) */
+  /** @name RmrkTraitsResourceResourceInfo (382) */
   export interface RmrkTraitsResourceResourceInfo extends Struct {
     readonly id: u32;
     readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3034,26 +3047,26 @@
     readonly pendingRemoval: bool;
   }
 
-  /** @name RmrkTraitsPropertyPropertyInfo (382) */
+  /** @name RmrkTraitsPropertyPropertyInfo (383) */
   export interface RmrkTraitsPropertyPropertyInfo extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name RmrkTraitsBaseBaseInfo (383) */
+  /** @name RmrkTraitsBaseBaseInfo (384) */
   export interface RmrkTraitsBaseBaseInfo extends Struct {
     readonly issuer: AccountId32;
     readonly baseType: Bytes;
     readonly symbol: Bytes;
   }
 
-  /** @name RmrkTraitsNftNftChild (384) */
+  /** @name RmrkTraitsNftNftChild (385) */
   export interface RmrkTraitsNftNftChild extends Struct {
     readonly collectionId: u32;
     readonly nftId: u32;
   }
 
-  /** @name PalletCommonError (386) */
+  /** @name PalletCommonError (387) */
   export interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -3092,7 +3105,7 @@
     readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
   }
 
-  /** @name PalletFungibleError (388) */
+  /** @name PalletFungibleError (389) */
   export interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -3102,12 +3115,12 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletRefungibleItemData (389) */
+  /** @name PalletRefungibleItemData (390) */
   export interface PalletRefungibleItemData extends Struct {
     readonly constData: Bytes;
   }
 
-  /** @name PalletRefungibleError (394) */
+  /** @name PalletRefungibleError (395) */
   export interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -3117,12 +3130,12 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (395) */
+  /** @name PalletNonfungibleItemData (396) */
   export interface PalletNonfungibleItemData extends Struct {
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsPropertyScope (397) */
+  /** @name UpDataStructsPropertyScope (398) */
   export interface UpDataStructsPropertyScope extends Enum {
     readonly isNone: boolean;
     readonly isRmrk: boolean;
@@ -3130,7 +3143,7 @@
     readonly type: 'None' | 'Rmrk' | 'Eth';
   }
 
-  /** @name PalletNonfungibleError (399) */
+  /** @name PalletNonfungibleError (400) */
   export interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3138,7 +3151,7 @@
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
   }
 
-  /** @name PalletStructureError (400) */
+  /** @name PalletStructureError (401) */
   export interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -3147,7 +3160,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
   }
 
-  /** @name PalletRmrkCoreError (401) */
+  /** @name PalletRmrkCoreError (402) */
   export interface PalletRmrkCoreError extends Enum {
     readonly isCorruptedCollectionType: boolean;
     readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3171,7 +3184,7 @@
     readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
   }
 
-  /** @name PalletRmrkEquipError (403) */
+  /** @name PalletRmrkEquipError (404) */
   export interface PalletRmrkEquipError extends Enum {
     readonly isPermissionError: boolean;
     readonly isNoAvailableBaseId: boolean;
@@ -3183,7 +3196,7 @@
     readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
   }
 
-  /** @name PalletEvmError (406) */
+  /** @name PalletEvmError (407) */
   export interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -3194,7 +3207,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
   }
 
-  /** @name FpRpcTransactionStatus (409) */
+  /** @name FpRpcTransactionStatus (410) */
   export interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -3205,10 +3218,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (411) */
+  /** @name EthbloomBloom (412) */
   export interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (413) */
+  /** @name EthereumReceiptReceiptV3 (414) */
   export interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3219,7 +3232,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (414) */
+  /** @name EthereumReceiptEip658ReceiptData (415) */
   export interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -3227,14 +3240,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (415) */
+  /** @name EthereumBlock (416) */
   export interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (416) */
+  /** @name EthereumHeader (417) */
   export interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -3253,24 +3266,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (417) */
+  /** @name EthereumTypesHashH64 (418) */
   export interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (422) */
+  /** @name PalletEthereumError (423) */
   export interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (423) */
+  /** @name PalletEvmCoderSubstrateError (424) */
   export interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (424) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (425) */
   export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -3278,20 +3291,20 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (426) */
+  /** @name PalletEvmContractHelpersError (427) */
   export interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly type: 'NoPermission';
   }
 
-  /** @name PalletEvmMigrationError (427) */
+  /** @name PalletEvmMigrationError (428) */
   export interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
   }
 
-  /** @name SpRuntimeMultiSignature (429) */
+  /** @name SpRuntimeMultiSignature (430) */
   export interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -3302,34 +3315,34 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (430) */
+  /** @name SpCoreEd25519Signature (431) */
   export interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (432) */
+  /** @name SpCoreSr25519Signature (433) */
   export interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (433) */
+  /** @name SpCoreEcdsaSignature (434) */
   export interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (436) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (437) */
   export type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (437) */
+  /** @name FrameSystemExtensionsCheckGenesis (438) */
   export type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (440) */
+  /** @name FrameSystemExtensionsCheckNonce (441) */
   export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (441) */
+  /** @name FrameSystemExtensionsCheckWeight (442) */
   export type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (442) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (443) */
   export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (443) */
+  /** @name OpalRuntimeRuntime (444) */
   export type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (444) */
+  /** @name PalletEthereumFakeTransactionFinalizer (445) */
   export type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module
modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
--- a/tests/src/pallet-presence.test.ts
+++ b/tests/src/pallet-presence.test.ts
@@ -50,6 +50,7 @@
   'unique',
   'nonfungible',
   'charging',
+  'configuration',
 ];
 
 // Pallets that depend on consensus and governance configuration