git.delta.rocks / unique-network / refs/commits / 6e587d7255b3

difftreelog

chore regenerate stubs & types

PraetorP2022-12-14parent: #300f577.patch.diff
in: master

10 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -9,7 +9,7 @@
 import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { Codec } from '@polkadot/types-codec/types';
 import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
 
 export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
 
@@ -104,20 +104,6 @@
        * Number of blocks that pass between treasury balance updates due to inflation
        **/
       inflationBlockInterval: u32 & AugmentedConst<ApiType>;
-      /**
-       * Generic const
-       **/
-      [key: string]: Codec;
-    };
-    scheduler: {
-      /**
-       * The maximum weight that may be scheduled per block for any dispatchables.
-       **/
-      maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
-      /**
-       * The maximum number of scheduled calls in the queue for a single block.
-       **/
-      maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
       /**
        * Generic const
        **/
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -681,44 +681,6 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
-    scheduler: {
-      /**
-       * There is no place for a new task in the agenda
-       **/
-      AgendaIsExhausted: AugmentedError<ApiType>;
-      /**
-       * Failed to schedule a call
-       **/
-      FailedToSchedule: AugmentedError<ApiType>;
-      /**
-       * Attempt to use a non-named function on a named task.
-       **/
-      Named: AugmentedError<ApiType>;
-      /**
-       * Cannot find the scheduled call.
-       **/
-      NotFound: AugmentedError<ApiType>;
-      /**
-       * Scheduled call preimage is not found
-       **/
-      PreimageNotFound: AugmentedError<ApiType>;
-      /**
-       * Scheduled call is corrupted
-       **/
-      ScheduledCallCorrupted: AugmentedError<ApiType>;
-      /**
-       * Given target block number is in the past.
-       **/
-      TargetBlockNumberInPast: AugmentedError<ApiType>;
-      /**
-       * Scheduled call is too big
-       **/
-      TooBigScheduledCall: AugmentedError<ApiType>;
-      /**
-       * Generic error
-       **/
-      [key: string]: AugmentedError<ApiType>;
-    };
     structure: {
       /**
        * While nesting, reached the breadth limit of nesting, exceeding the provided budget.
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -7,7 +7,6 @@
 
 import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
 import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
-import type { ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
 import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 
@@ -522,36 +521,6 @@
     rmrkEquip: {
       BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;
       EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;
-      /**
-       * Generic event
-       **/
-      [key: string]: AugmentedEvent<ApiType>;
-    };
-    scheduler: {
-      /**
-       * The call for the provided hash was not found so the task has been aborted.
-       **/
-      CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
-      /**
-       * Canceled some task.
-       **/
-      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
-      /**
-       * Dispatched some task.
-       **/
-      Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
-      /**
-       * The given task can never be executed since it is overweight.
-       **/
-      PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
-      /**
-       * Scheduled task's priority has changed
-       **/
-      PriorityChanged: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, priority: u8], { task: ITuple<[u32, u32]>, priority: u8 }>;
-      /**
-       * Scheduled some task.
-       **/
-      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
       /**
        * Generic event
        **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -6,10 +6,10 @@
 import '@polkadot/api-base/types/storage';
 
 import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
-import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
 import type { Observable } from '@polkadot/types/types';
 
 export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -30,7 +30,7 @@
        **/
       pendingUnstake: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u128]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
       /**
-       * Stores a key for record for which the next revenue recalculation would be performed.
+       * Stores a key for record for which the revenue recalculation was performed.
        * If `None`, then recalculation has not yet been performed or calculations have been completed for all stakers.
        **/
       previousCalculatedRecord: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[AccountId32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
@@ -682,25 +682,6 @@
        * Map of a Base ID and a Part ID to an NFT in the Base collection serving as the Part.
        **/
       inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
-      /**
-       * Generic query
-       **/
-      [key: string]: QueryableStorageEntry<ApiType>;
-    };
-    scheduler: {
-      /**
-       * Items to be executed, indexed by the block number that they should be executed on.
-       **/
-      agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<PalletUniqueSchedulerV2BlockAgenda>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
-      /**
-       * It contains the block number from which we should service tasks.
-       * It's used for delaying the servicing of future blocks' agendas if we had overweight tasks.
-       **/
-      incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
-      /**
-       * Lookup from a name to the block number and index of the task.
-       **/
-      lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
       /**
        * Generic query
        **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -6,7 +6,7 @@
 import '@polkadot/api-base/types/submittable';
 
 import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
-import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
 import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
@@ -834,64 +834,7 @@
        * - `inherit`: Optional bool.
        **/
       themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
-      /**
-       * Generic tx
-       **/
-      [key: string]: SubmittableExtrinsicFunction<ApiType>;
-    };
-    scheduler: {
-      /**
-       * Cancel an anonymously scheduled task.
-       * 
-       * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
-       **/
-      cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
-      /**
-       * Cancel a named scheduled task.
-       * 
-       * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
-       **/
-      cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
-      /**
-       * Change a named task's priority.
-       * 
-       * Only the `T::PrioritySetOrigin` is allowed to change the task's priority.
-       **/
-      changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;
-      /**
-       * Anonymously schedule a task.
-       * 
-       * Only `T::ScheduleOrigin` is allowed to schedule a task.
-       * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
-       **/
-      schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
-      /**
-       * Anonymously schedule a task after a delay.
-       * 
-       * # <weight>
-       * Same as [`schedule`].
-       * # </weight>
-       **/
-      scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
-      /**
-       * Schedule a named task.
-       * 
-       * Only `T::ScheduleOrigin` is allowed to schedule a task.
-       * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
-       **/
-      scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
       /**
-       * Schedule a named task after a delay.
-       * 
-       * Only `T::ScheduleOrigin` is allowed to schedule a task.
-       * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
-       * 
-       * # <weight>
-       * Same as [`schedule_named`](Self::schedule_named).
-       * # </weight>
-       **/
-      scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
-      /**
        * Generic tx
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
@@ -1034,7 +977,6 @@
       enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
-      selfCancelingInc: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, maxTestValue: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32]>;
       setTestValue: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
       setTestValueAndRollback: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
       /**
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
before · tests/src/interfaces/augment-types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78<<<<<<< HEAD9<<<<<<< HEAD10import 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';11=======12<<<<<<< HEAD13import 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';14=======15import 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';16>>>>>>> refactor: `app-promotion` configuration pallet17>>>>>>> e2b20310... refactor: `app-promotion` configuration pallet18=======19import 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';20>>>>>>> 4824c0e1... chore: regenerate types21import type { Data, StorageKey } from '@polkadot/types';22import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';23import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';24import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';25import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';26import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';27import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';28import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';29import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';30import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';31import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';32import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';33import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';34import type { BlockHash } from '@polkadot/types/interfaces/chain';35import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';36import type { StatementKind } from '@polkadot/types/interfaces/claims';37import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';38import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';39import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';40import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';41import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';42import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';43import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';44import type { BlockStats } from '@polkadot/types/interfaces/dev';45import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';46import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';47import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';48import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';49import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';50import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';51import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';52import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';53import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';54import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';55import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';56import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';57import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';58import type { NpApiError } from '@polkadot/types/interfaces/nompools';59import type { StorageKind } from '@polkadot/types/interfaces/offchain';60import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';61import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';62import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';63import type { Approvals } from '@polkadot/types/interfaces/poll';64import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';65import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';66import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';67import type { RpcMethods } from '@polkadot/types/interfaces/rpc';68import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';69import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';70import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';71import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';72import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';73import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';74import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';75import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';76import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';77import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';78import type { Multiplier } from '@polkadot/types/interfaces/txpayment';79import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';80import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';81import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';82import type { VestingInfo } from '@polkadot/types/interfaces/vesting';83import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';8485declare module '@polkadot/types/types/registry' {86  interface InterfaceTypes {87    AbridgedCandidateReceipt: AbridgedCandidateReceipt;88    AbridgedHostConfiguration: AbridgedHostConfiguration;89    AbridgedHrmpChannel: AbridgedHrmpChannel;90    AccountData: AccountData;91    AccountId: AccountId;92    AccountId20: AccountId20;93    AccountId32: AccountId32;94    AccountId33: AccountId33;95    AccountIdOf: AccountIdOf;96    AccountIndex: AccountIndex;97    AccountInfo: AccountInfo;98    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;99    AccountInfoWithProviders: AccountInfoWithProviders;100    AccountInfoWithRefCount: AccountInfoWithRefCount;101    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;102    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;103    AccountStatus: AccountStatus;104    AccountValidity: AccountValidity;105    AccountVote: AccountVote;106    AccountVoteSplit: AccountVoteSplit;107    AccountVoteStandard: AccountVoteStandard;108    ActiveEraInfo: ActiveEraInfo;109    ActiveGilt: ActiveGilt;110    ActiveGiltsTotal: ActiveGiltsTotal;111    ActiveIndex: ActiveIndex;112    ActiveRecovery: ActiveRecovery;113    Address: Address;114    AliveContractInfo: AliveContractInfo;115    AllowedSlots: AllowedSlots;116    AnySignature: AnySignature;117    ApiId: ApiId;118    ApplyExtrinsicResult: ApplyExtrinsicResult;119    ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;120    ApprovalFlag: ApprovalFlag;121    Approvals: Approvals;122    ArithmeticError: ArithmeticError;123    AssetApproval: AssetApproval;124    AssetApprovalKey: AssetApprovalKey;125    AssetBalance: AssetBalance;126    AssetDestroyWitness: AssetDestroyWitness;127    AssetDetails: AssetDetails;128    AssetId: AssetId;129    AssetInstance: AssetInstance;130    AssetInstanceV0: AssetInstanceV0;131    AssetInstanceV1: AssetInstanceV1;132    AssetInstanceV2: AssetInstanceV2;133    AssetMetadata: AssetMetadata;134    AssetOptions: AssetOptions;135    AssignmentId: AssignmentId;136    AssignmentKind: AssignmentKind;137    AttestedCandidate: AttestedCandidate;138    AuctionIndex: AuctionIndex;139    AuthIndex: AuthIndex;140    AuthorityDiscoveryId: AuthorityDiscoveryId;141    AuthorityId: AuthorityId;142    AuthorityIndex: AuthorityIndex;143    AuthorityList: AuthorityList;144    AuthoritySet: AuthoritySet;145    AuthoritySetChange: AuthoritySetChange;146    AuthoritySetChanges: AuthoritySetChanges;147    AuthoritySignature: AuthoritySignature;148    AuthorityWeight: AuthorityWeight;149    AvailabilityBitfield: AvailabilityBitfield;150    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;151    BabeAuthorityWeight: BabeAuthorityWeight;152    BabeBlockWeight: BabeBlockWeight;153    BabeEpochConfiguration: BabeEpochConfiguration;154    BabeEquivocationProof: BabeEquivocationProof;155    BabeGenesisConfiguration: BabeGenesisConfiguration;156    BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;157    BabeWeight: BabeWeight;158    BackedCandidate: BackedCandidate;159    Balance: Balance;160    BalanceLock: BalanceLock;161    BalanceLockTo212: BalanceLockTo212;162    BalanceOf: BalanceOf;163    BalanceStatus: BalanceStatus;164    BeefyAuthoritySet: BeefyAuthoritySet;165    BeefyCommitment: BeefyCommitment;166    BeefyId: BeefyId;167    BeefyKey: BeefyKey;168    BeefyNextAuthoritySet: BeefyNextAuthoritySet;169    BeefyPayload: BeefyPayload;170    BeefyPayloadId: BeefyPayloadId;171    BeefySignedCommitment: BeefySignedCommitment;172    BenchmarkBatch: BenchmarkBatch;173    BenchmarkConfig: BenchmarkConfig;174    BenchmarkList: BenchmarkList;175    BenchmarkMetadata: BenchmarkMetadata;176    BenchmarkParameter: BenchmarkParameter;177    BenchmarkResult: BenchmarkResult;178    Bid: Bid;179    Bidder: Bidder;180    BidKind: BidKind;181    BitVec: BitVec;182    Block: Block;183    BlockAttestations: BlockAttestations;184    BlockHash: BlockHash;185    BlockLength: BlockLength;186    BlockNumber: BlockNumber;187    BlockNumberFor: BlockNumberFor;188    BlockNumberOf: BlockNumberOf;189    BlockStats: BlockStats;190    BlockTrace: BlockTrace;191    BlockTraceEvent: BlockTraceEvent;192    BlockTraceEventData: BlockTraceEventData;193    BlockTraceSpan: BlockTraceSpan;194    BlockV0: BlockV0;195    BlockV1: BlockV1;196    BlockV2: BlockV2;197    BlockWeights: BlockWeights;198    BodyId: BodyId;199    BodyPart: BodyPart;200    bool: bool;201    Bool: Bool;202    Bounty: Bounty;203    BountyIndex: BountyIndex;204    BountyStatus: BountyStatus;205    BountyStatusActive: BountyStatusActive;206    BountyStatusCuratorProposed: BountyStatusCuratorProposed;207    BountyStatusPendingPayout: BountyStatusPendingPayout;208    BridgedBlockHash: BridgedBlockHash;209    BridgedBlockNumber: BridgedBlockNumber;210    BridgedHeader: BridgedHeader;211    BridgeMessageId: BridgeMessageId;212    BufferedSessionChange: BufferedSessionChange;213    Bytes: Bytes;214    Call: Call;215    CallHash: CallHash;216    CallHashOf: CallHashOf;217    CallIndex: CallIndex;218    CallOrigin: CallOrigin;219    CandidateCommitments: CandidateCommitments;220    CandidateDescriptor: CandidateDescriptor;221    CandidateEvent: CandidateEvent;222    CandidateHash: CandidateHash;223    CandidateInfo: CandidateInfo;224    CandidatePendingAvailability: CandidatePendingAvailability;225    CandidateReceipt: CandidateReceipt;226    ChainId: ChainId;227    ChainProperties: ChainProperties;228    ChainType: ChainType;229    ChangesTrieConfiguration: ChangesTrieConfiguration;230    ChangesTrieSignal: ChangesTrieSignal;231    CheckInherentsResult: CheckInherentsResult;232    ClassDetails: ClassDetails;233    ClassId: ClassId;234    ClassMetadata: ClassMetadata;235    CodecHash: CodecHash;236    CodeHash: CodeHash;237    CodeSource: CodeSource;238    CodeUploadRequest: CodeUploadRequest;239    CodeUploadResult: CodeUploadResult;240    CodeUploadResultValue: CodeUploadResultValue;241    CollationInfo: CollationInfo;242    CollationInfoV1: CollationInfoV1;243    CollatorId: CollatorId;244    CollatorSignature: CollatorSignature;245    CollectiveOrigin: CollectiveOrigin;246    CommittedCandidateReceipt: CommittedCandidateReceipt;247    CompactAssignments: CompactAssignments;248    CompactAssignmentsTo257: CompactAssignmentsTo257;249    CompactAssignmentsTo265: CompactAssignmentsTo265;250    CompactAssignmentsWith16: CompactAssignmentsWith16;251    CompactAssignmentsWith24: CompactAssignmentsWith24;252    CompactScore: CompactScore;253    CompactScoreCompact: CompactScoreCompact;254    ConfigData: ConfigData;255    Consensus: Consensus;256    ConsensusEngineId: ConsensusEngineId;257    ConsumedWeight: ConsumedWeight;258    ContractCallFlags: ContractCallFlags;259    ContractCallRequest: ContractCallRequest;260    ContractConstructorSpecLatest: ContractConstructorSpecLatest;261    ContractConstructorSpecV0: ContractConstructorSpecV0;262    ContractConstructorSpecV1: ContractConstructorSpecV1;263    ContractConstructorSpecV2: ContractConstructorSpecV2;264    ContractConstructorSpecV3: ContractConstructorSpecV3;265    ContractContractSpecV0: ContractContractSpecV0;266    ContractContractSpecV1: ContractContractSpecV1;267    ContractContractSpecV2: ContractContractSpecV2;268    ContractContractSpecV3: ContractContractSpecV3;269    ContractContractSpecV4: ContractContractSpecV4;270    ContractCryptoHasher: ContractCryptoHasher;271    ContractDiscriminant: ContractDiscriminant;272    ContractDisplayName: ContractDisplayName;273    ContractEventParamSpecLatest: ContractEventParamSpecLatest;274    ContractEventParamSpecV0: ContractEventParamSpecV0;275    ContractEventParamSpecV2: ContractEventParamSpecV2;276    ContractEventSpecLatest: ContractEventSpecLatest;277    ContractEventSpecV0: ContractEventSpecV0;278    ContractEventSpecV1: ContractEventSpecV1;279    ContractEventSpecV2: ContractEventSpecV2;280    ContractExecResult: ContractExecResult;281    ContractExecResultOk: ContractExecResultOk;282    ContractExecResultResult: ContractExecResultResult;283    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;284    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;285    ContractExecResultTo255: ContractExecResultTo255;286    ContractExecResultTo260: ContractExecResultTo260;287    ContractExecResultTo267: ContractExecResultTo267;288    ContractInfo: ContractInfo;289    ContractInstantiateResult: ContractInstantiateResult;290    ContractInstantiateResultTo267: ContractInstantiateResultTo267;291    ContractInstantiateResultTo299: ContractInstantiateResultTo299;292    ContractLayoutArray: ContractLayoutArray;293    ContractLayoutCell: ContractLayoutCell;294    ContractLayoutEnum: ContractLayoutEnum;295    ContractLayoutHash: ContractLayoutHash;296    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;297    ContractLayoutKey: ContractLayoutKey;298    ContractLayoutStruct: ContractLayoutStruct;299    ContractLayoutStructField: ContractLayoutStructField;300    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;301    ContractMessageParamSpecV0: ContractMessageParamSpecV0;302    ContractMessageParamSpecV2: ContractMessageParamSpecV2;303    ContractMessageSpecLatest: ContractMessageSpecLatest;304    ContractMessageSpecV0: ContractMessageSpecV0;305    ContractMessageSpecV1: ContractMessageSpecV1;306    ContractMessageSpecV2: ContractMessageSpecV2;307    ContractMetadata: ContractMetadata;308    ContractMetadataLatest: ContractMetadataLatest;309    ContractMetadataV0: ContractMetadataV0;310    ContractMetadataV1: ContractMetadataV1;311    ContractMetadataV2: ContractMetadataV2;312    ContractMetadataV3: ContractMetadataV3;313    ContractMetadataV4: ContractMetadataV4;314    ContractProject: ContractProject;315    ContractProjectContract: ContractProjectContract;316    ContractProjectInfo: ContractProjectInfo;317    ContractProjectSource: ContractProjectSource;318    ContractProjectV0: ContractProjectV0;319    ContractReturnFlags: ContractReturnFlags;320    ContractSelector: ContractSelector;321    ContractStorageKey: ContractStorageKey;322    ContractStorageLayout: ContractStorageLayout;323    ContractTypeSpec: ContractTypeSpec;324    Conviction: Conviction;325    CoreAssignment: CoreAssignment;326    CoreIndex: CoreIndex;327    CoreOccupied: CoreOccupied;328    CoreState: CoreState;329    CrateVersion: CrateVersion;330    CreatedBlock: CreatedBlock;331    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;332    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;333    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;334    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;335    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;336    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;337    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;338    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;339    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;340    CumulusPalletXcmCall: CumulusPalletXcmCall;341    CumulusPalletXcmError: CumulusPalletXcmError;342    CumulusPalletXcmEvent: CumulusPalletXcmEvent;343    CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;344    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;345    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;346    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;347    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;348    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;349    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;350    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;351    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;352    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;353    Data: Data;354    DeferredOffenceOf: DeferredOffenceOf;355    DefunctVoter: DefunctVoter;356    DelayKind: DelayKind;357    DelayKindBest: DelayKindBest;358    Delegations: Delegations;359    DeletedContract: DeletedContract;360    DeliveredMessages: DeliveredMessages;361    DepositBalance: DepositBalance;362    DepositBalanceOf: DepositBalanceOf;363    DestroyWitness: DestroyWitness;364    Digest: Digest;365    DigestItem: DigestItem;366    DigestOf: DigestOf;367    DispatchClass: DispatchClass;368    DispatchError: DispatchError;369    DispatchErrorModule: DispatchErrorModule;370    DispatchErrorModulePre6: DispatchErrorModulePre6;371    DispatchErrorModuleU8: DispatchErrorModuleU8;372    DispatchErrorModuleU8a: DispatchErrorModuleU8a;373    DispatchErrorPre6: DispatchErrorPre6;374    DispatchErrorPre6First: DispatchErrorPre6First;375    DispatchErrorTo198: DispatchErrorTo198;376    DispatchFeePayment: DispatchFeePayment;377    DispatchInfo: DispatchInfo;378    DispatchInfoTo190: DispatchInfoTo190;379    DispatchInfoTo244: DispatchInfoTo244;380    DispatchOutcome: DispatchOutcome;381    DispatchOutcomePre6: DispatchOutcomePre6;382    DispatchResult: DispatchResult;383    DispatchResultOf: DispatchResultOf;384    DispatchResultTo198: DispatchResultTo198;385    DisputeLocation: DisputeLocation;386    DisputeResult: DisputeResult;387    DisputeState: DisputeState;388    DisputeStatement: DisputeStatement;389    DisputeStatementSet: DisputeStatementSet;390    DoubleEncodedCall: DoubleEncodedCall;391    DoubleVoteReport: DoubleVoteReport;392    DownwardMessage: DownwardMessage;393    EcdsaSignature: EcdsaSignature;394    Ed25519Signature: Ed25519Signature;395    EIP1559Transaction: EIP1559Transaction;396    EIP2930Transaction: EIP2930Transaction;397    ElectionCompute: ElectionCompute;398    ElectionPhase: ElectionPhase;399    ElectionResult: ElectionResult;400    ElectionScore: ElectionScore;401    ElectionSize: ElectionSize;402    ElectionStatus: ElectionStatus;403    EncodedFinalityProofs: EncodedFinalityProofs;404    EncodedJustification: EncodedJustification;405    Epoch: Epoch;406    EpochAuthorship: EpochAuthorship;407    Era: Era;408    EraIndex: EraIndex;409    EraPoints: EraPoints;410    EraRewardPoints: EraRewardPoints;411    EraRewards: EraRewards;412    ErrorMetadataLatest: ErrorMetadataLatest;413    ErrorMetadataV10: ErrorMetadataV10;414    ErrorMetadataV11: ErrorMetadataV11;415    ErrorMetadataV12: ErrorMetadataV12;416    ErrorMetadataV13: ErrorMetadataV13;417    ErrorMetadataV14: ErrorMetadataV14;418    ErrorMetadataV9: ErrorMetadataV9;419    EthAccessList: EthAccessList;420    EthAccessListItem: EthAccessListItem;421    EthAccount: EthAccount;422    EthAddress: EthAddress;423    EthBlock: EthBlock;424    EthBloom: EthBloom;425    EthbloomBloom: EthbloomBloom;426    EthCallRequest: EthCallRequest;427    EthereumAccountId: EthereumAccountId;428    EthereumAddress: EthereumAddress;429    EthereumBlock: EthereumBlock;430    EthereumHeader: EthereumHeader;431    EthereumLog: EthereumLog;432    EthereumLookupSource: EthereumLookupSource;433    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;434    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;435    EthereumSignature: EthereumSignature;436    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;437    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;438    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;439    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;440    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;441    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;442    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;443    EthereumTypesHashH64: EthereumTypesHashH64;444    EthFeeHistory: EthFeeHistory;445    EthFilter: EthFilter;446    EthFilterAddress: EthFilterAddress;447    EthFilterChanges: EthFilterChanges;448    EthFilterTopic: EthFilterTopic;449    EthFilterTopicEntry: EthFilterTopicEntry;450    EthFilterTopicInner: EthFilterTopicInner;451    EthHeader: EthHeader;452    EthLog: EthLog;453    EthReceipt: EthReceipt;454    EthReceiptV0: EthReceiptV0;455    EthReceiptV3: EthReceiptV3;456    EthRichBlock: EthRichBlock;457    EthRichHeader: EthRichHeader;458    EthStorageProof: EthStorageProof;459    EthSubKind: EthSubKind;460    EthSubParams: EthSubParams;461    EthSubResult: EthSubResult;462    EthSyncInfo: EthSyncInfo;463    EthSyncStatus: EthSyncStatus;464    EthTransaction: EthTransaction;465    EthTransactionAction: EthTransactionAction;466    EthTransactionCondition: EthTransactionCondition;467    EthTransactionRequest: EthTransactionRequest;468    EthTransactionSignature: EthTransactionSignature;469    EthTransactionStatus: EthTransactionStatus;470    EthWork: EthWork;471    Event: Event;472    EventId: EventId;473    EventIndex: EventIndex;474    EventMetadataLatest: EventMetadataLatest;475    EventMetadataV10: EventMetadataV10;476    EventMetadataV11: EventMetadataV11;477    EventMetadataV12: EventMetadataV12;478    EventMetadataV13: EventMetadataV13;479    EventMetadataV14: EventMetadataV14;480    EventMetadataV9: EventMetadataV9;481    EventRecord: EventRecord;482    EvmAccount: EvmAccount;483    EvmCallInfo: EvmCallInfo;484    EvmCoreErrorExitError: EvmCoreErrorExitError;485    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;486    EvmCoreErrorExitReason: EvmCoreErrorExitReason;487    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;488    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;489    EvmCreateInfo: EvmCreateInfo;490    EvmLog: EvmLog;491    EvmVicinity: EvmVicinity;492    ExecReturnValue: ExecReturnValue;493    ExitError: ExitError;494    ExitFatal: ExitFatal;495    ExitReason: ExitReason;496    ExitRevert: ExitRevert;497    ExitSucceed: ExitSucceed;498    ExplicitDisputeStatement: ExplicitDisputeStatement;499    Exposure: Exposure;500    ExtendedBalance: ExtendedBalance;501    Extrinsic: Extrinsic;502    ExtrinsicEra: ExtrinsicEra;503    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;504    ExtrinsicMetadataV11: ExtrinsicMetadataV11;505    ExtrinsicMetadataV12: ExtrinsicMetadataV12;506    ExtrinsicMetadataV13: ExtrinsicMetadataV13;507    ExtrinsicMetadataV14: ExtrinsicMetadataV14;508    ExtrinsicOrHash: ExtrinsicOrHash;509    ExtrinsicPayload: ExtrinsicPayload;510    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;511    ExtrinsicPayloadV4: ExtrinsicPayloadV4;512    ExtrinsicSignature: ExtrinsicSignature;513    ExtrinsicSignatureV4: ExtrinsicSignatureV4;514    ExtrinsicStatus: ExtrinsicStatus;515    ExtrinsicsWeight: ExtrinsicsWeight;516    ExtrinsicUnknown: ExtrinsicUnknown;517    ExtrinsicV4: ExtrinsicV4;518    f32: f32;519    F32: F32;520    f64: f64;521    F64: F64;522    FeeDetails: FeeDetails;523    Fixed128: Fixed128;524    Fixed64: Fixed64;525    FixedI128: FixedI128;526    FixedI64: FixedI64;527    FixedU128: FixedU128;528    FixedU64: FixedU64;529    Forcing: Forcing;530    ForkTreePendingChange: ForkTreePendingChange;531    ForkTreePendingChangeNode: ForkTreePendingChangeNode;532    FpRpcTransactionStatus: FpRpcTransactionStatus;533    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;534    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;535    FrameSupportDispatchPays: FrameSupportDispatchPays;536    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;537    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;538    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;539    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;540    FrameSupportPalletId: FrameSupportPalletId;541    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;542    FrameSystemAccountInfo: FrameSystemAccountInfo;543    FrameSystemCall: FrameSystemCall;544    FrameSystemError: FrameSystemError;545    FrameSystemEvent: FrameSystemEvent;546    FrameSystemEventRecord: FrameSystemEventRecord;547    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;548    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;549    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;550    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;551    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;552    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;553    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;554    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;555    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;556    FrameSystemPhase: FrameSystemPhase;557    FullIdentification: FullIdentification;558    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;559    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;560    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;561    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;562    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;563    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;564    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;565    FunctionMetadataLatest: FunctionMetadataLatest;566    FunctionMetadataV10: FunctionMetadataV10;567    FunctionMetadataV11: FunctionMetadataV11;568    FunctionMetadataV12: FunctionMetadataV12;569    FunctionMetadataV13: FunctionMetadataV13;570    FunctionMetadataV14: FunctionMetadataV14;571    FunctionMetadataV9: FunctionMetadataV9;572    FundIndex: FundIndex;573    FundInfo: FundInfo;574    Fungibility: Fungibility;575    FungibilityV0: FungibilityV0;576    FungibilityV1: FungibilityV1;577    FungibilityV2: FungibilityV2;578    Gas: Gas;579    GiltBid: GiltBid;580    GlobalValidationData: GlobalValidationData;581    GlobalValidationSchedule: GlobalValidationSchedule;582    GrandpaCommit: GrandpaCommit;583    GrandpaEquivocation: GrandpaEquivocation;584    GrandpaEquivocationProof: GrandpaEquivocationProof;585    GrandpaEquivocationValue: GrandpaEquivocationValue;586    GrandpaJustification: GrandpaJustification;587    GrandpaPrecommit: GrandpaPrecommit;588    GrandpaPrevote: GrandpaPrevote;589    GrandpaSignedPrecommit: GrandpaSignedPrecommit;590    GroupIndex: GroupIndex;591    GroupRotationInfo: GroupRotationInfo;592    H1024: H1024;593    H128: H128;594    H160: H160;595    H2048: H2048;596    H256: H256;597    H32: H32;598    H512: H512;599    H64: H64;600    Hash: Hash;601    HeadData: HeadData;602    Header: Header;603    HeaderPartial: HeaderPartial;604    Health: Health;605    Heartbeat: Heartbeat;606    HeartbeatTo244: HeartbeatTo244;607    HostConfiguration: HostConfiguration;608    HostFnWeights: HostFnWeights;609    HostFnWeightsTo264: HostFnWeightsTo264;610    HrmpChannel: HrmpChannel;611    HrmpChannelId: HrmpChannelId;612    HrmpOpenChannelRequest: HrmpOpenChannelRequest;613    i128: i128;614    I128: I128;615    i16: i16;616    I16: I16;617    i256: i256;618    I256: I256;619    i32: i32;620    I32: I32;621    I32F32: I32F32;622    i64: i64;623    I64: I64;624    i8: i8;625    I8: I8;626    IdentificationTuple: IdentificationTuple;627    IdentityFields: IdentityFields;628    IdentityInfo: IdentityInfo;629    IdentityInfoAdditional: IdentityInfoAdditional;630    IdentityInfoTo198: IdentityInfoTo198;631    IdentityJudgement: IdentityJudgement;632    ImmortalEra: ImmortalEra;633    ImportedAux: ImportedAux;634    InboundDownwardMessage: InboundDownwardMessage;635    InboundHrmpMessage: InboundHrmpMessage;636    InboundHrmpMessages: InboundHrmpMessages;637    InboundLaneData: InboundLaneData;638    InboundRelayer: InboundRelayer;639    InboundStatus: InboundStatus;640    IncludedBlocks: IncludedBlocks;641    InclusionFee: InclusionFee;642    IncomingParachain: IncomingParachain;643    IncomingParachainDeploy: IncomingParachainDeploy;644    IncomingParachainFixed: IncomingParachainFixed;645    Index: Index;646    IndicesLookupSource: IndicesLookupSource;647    IndividualExposure: IndividualExposure;648    InherentData: InherentData;649    InherentIdentifier: InherentIdentifier;650    InitializationData: InitializationData;651    InstanceDetails: InstanceDetails;652    InstanceId: InstanceId;653    InstanceMetadata: InstanceMetadata;654    InstantiateRequest: InstantiateRequest;655    InstantiateRequestV1: InstantiateRequestV1;656    InstantiateRequestV2: InstantiateRequestV2;657    InstantiateReturnValue: InstantiateReturnValue;658    InstantiateReturnValueOk: InstantiateReturnValueOk;659    InstantiateReturnValueTo267: InstantiateReturnValueTo267;660    InstructionV2: InstructionV2;661    InstructionWeights: InstructionWeights;662    InteriorMultiLocation: InteriorMultiLocation;663    InvalidDisputeStatementKind: InvalidDisputeStatementKind;664    InvalidTransaction: InvalidTransaction;665    Json: Json;666    Junction: Junction;667    Junctions: Junctions;668    JunctionsV1: JunctionsV1;669    JunctionsV2: JunctionsV2;670    JunctionV0: JunctionV0;671    JunctionV1: JunctionV1;672    JunctionV2: JunctionV2;673    Justification: Justification;674    JustificationNotification: JustificationNotification;675    Justifications: Justifications;676    Key: Key;677    KeyOwnerProof: KeyOwnerProof;678    Keys: Keys;679    KeyType: KeyType;680    KeyTypeId: KeyTypeId;681    KeyValue: KeyValue;682    KeyValueOption: KeyValueOption;683    Kind: Kind;684    LaneId: LaneId;685    LastContribution: LastContribution;686    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;687    LeasePeriod: LeasePeriod;688    LeasePeriodOf: LeasePeriodOf;689    LegacyTransaction: LegacyTransaction;690    Limits: Limits;691    LimitsTo264: LimitsTo264;692    LocalValidationData: LocalValidationData;693    LockIdentifier: LockIdentifier;694    LookupSource: LookupSource;695    LookupTarget: LookupTarget;696    LotteryConfig: LotteryConfig;697    MaybeRandomness: MaybeRandomness;698    MaybeVrf: MaybeVrf;699    MemberCount: MemberCount;700    MembershipProof: MembershipProof;701    MessageData: MessageData;702    MessageId: MessageId;703    MessageIngestionType: MessageIngestionType;704    MessageKey: MessageKey;705    MessageNonce: MessageNonce;706    MessageQueueChain: MessageQueueChain;707    MessagesDeliveryProofOf: MessagesDeliveryProofOf;708    MessagesProofOf: MessagesProofOf;709    MessagingStateSnapshot: MessagingStateSnapshot;710    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;711    MetadataAll: MetadataAll;712    MetadataLatest: MetadataLatest;713    MetadataV10: MetadataV10;714    MetadataV11: MetadataV11;715    MetadataV12: MetadataV12;716    MetadataV13: MetadataV13;717    MetadataV14: MetadataV14;718    MetadataV9: MetadataV9;719    MigrationStatusResult: MigrationStatusResult;720    MmrBatchProof: MmrBatchProof;721    MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;722    MmrError: MmrError;723    MmrLeafBatchProof: MmrLeafBatchProof;724    MmrLeafIndex: MmrLeafIndex;725    MmrLeafProof: MmrLeafProof;726    MmrNodeIndex: MmrNodeIndex;727    MmrProof: MmrProof;728    MmrRootHash: MmrRootHash;729    ModuleConstantMetadataV10: ModuleConstantMetadataV10;730    ModuleConstantMetadataV11: ModuleConstantMetadataV11;731    ModuleConstantMetadataV12: ModuleConstantMetadataV12;732    ModuleConstantMetadataV13: ModuleConstantMetadataV13;733    ModuleConstantMetadataV9: ModuleConstantMetadataV9;734    ModuleId: ModuleId;735    ModuleMetadataV10: ModuleMetadataV10;736    ModuleMetadataV11: ModuleMetadataV11;737    ModuleMetadataV12: ModuleMetadataV12;738    ModuleMetadataV13: ModuleMetadataV13;739    ModuleMetadataV9: ModuleMetadataV9;740    Moment: Moment;741    MomentOf: MomentOf;742    MoreAttestations: MoreAttestations;743    MortalEra: MortalEra;744    MultiAddress: MultiAddress;745    MultiAsset: MultiAsset;746    MultiAssetFilter: MultiAssetFilter;747    MultiAssetFilterV1: MultiAssetFilterV1;748    MultiAssetFilterV2: MultiAssetFilterV2;749    MultiAssets: MultiAssets;750    MultiAssetsV1: MultiAssetsV1;751    MultiAssetsV2: MultiAssetsV2;752    MultiAssetV0: MultiAssetV0;753    MultiAssetV1: MultiAssetV1;754    MultiAssetV2: MultiAssetV2;755    MultiDisputeStatementSet: MultiDisputeStatementSet;756    MultiLocation: MultiLocation;757    MultiLocationV0: MultiLocationV0;758    MultiLocationV1: MultiLocationV1;759    MultiLocationV2: MultiLocationV2;760    Multiplier: Multiplier;761    Multisig: Multisig;762    MultiSignature: MultiSignature;763    MultiSigner: MultiSigner;764    NetworkId: NetworkId;765    NetworkState: NetworkState;766    NetworkStatePeerset: NetworkStatePeerset;767    NetworkStatePeersetInfo: NetworkStatePeersetInfo;768    NewBidder: NewBidder;769    NextAuthority: NextAuthority;770    NextConfigDescriptor: NextConfigDescriptor;771    NextConfigDescriptorV1: NextConfigDescriptorV1;772    NodeRole: NodeRole;773    Nominations: Nominations;774    NominatorIndex: NominatorIndex;775    NominatorIndexCompact: NominatorIndexCompact;776    NotConnectedPeer: NotConnectedPeer;777    NpApiError: NpApiError;778    Null: Null;779    OccupiedCore: OccupiedCore;780    OccupiedCoreAssumption: OccupiedCoreAssumption;781    OffchainAccuracy: OffchainAccuracy;782    OffchainAccuracyCompact: OffchainAccuracyCompact;783    OffenceDetails: OffenceDetails;784    Offender: Offender;785    OldV1SessionInfo: OldV1SessionInfo;786    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;787    OpalRuntimeRuntime: OpalRuntimeRuntime;788    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;789    OpaqueCall: OpaqueCall;790    OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;791    OpaqueMetadata: OpaqueMetadata;792    OpaqueMultiaddr: OpaqueMultiaddr;793    OpaqueNetworkState: OpaqueNetworkState;794    OpaquePeerId: OpaquePeerId;795    OpaqueTimeSlot: OpaqueTimeSlot;796    OpenTip: OpenTip;797    OpenTipFinderTo225: OpenTipFinderTo225;798    OpenTipTip: OpenTipTip;799    OpenTipTo225: OpenTipTo225;800    OperatingMode: OperatingMode;801    OptionBool: OptionBool;802    Origin: Origin;803    OriginCaller: OriginCaller;804    OriginKindV0: OriginKindV0;805    OriginKindV1: OriginKindV1;806    OriginKindV2: OriginKindV2;807    OrmlTokensAccountData: OrmlTokensAccountData;808    OrmlTokensBalanceLock: OrmlTokensBalanceLock;809    OrmlTokensModuleCall: OrmlTokensModuleCall;810    OrmlTokensModuleError: OrmlTokensModuleError;811    OrmlTokensModuleEvent: OrmlTokensModuleEvent;812    OrmlTokensReserveData: OrmlTokensReserveData;813    OrmlVestingModuleCall: OrmlVestingModuleCall;814    OrmlVestingModuleError: OrmlVestingModuleError;815    OrmlVestingModuleEvent: OrmlVestingModuleEvent;816    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;817    OrmlXtokensModuleCall: OrmlXtokensModuleCall;818    OrmlXtokensModuleError: OrmlXtokensModuleError;819    OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;820    OutboundHrmpMessage: OutboundHrmpMessage;821    OutboundLaneData: OutboundLaneData;822    OutboundMessageFee: OutboundMessageFee;823    OutboundPayload: OutboundPayload;824    OutboundStatus: OutboundStatus;825    Outcome: Outcome;826    OverweightIndex: OverweightIndex;827    Owner: Owner;828    PageCounter: PageCounter;829    PageIndexData: PageIndexData;830    PalletAppPromotionCall: PalletAppPromotionCall;831    PalletAppPromotionError: PalletAppPromotionError;832    PalletAppPromotionEvent: PalletAppPromotionEvent;833    PalletBalancesAccountData: PalletBalancesAccountData;834    PalletBalancesBalanceLock: PalletBalancesBalanceLock;835    PalletBalancesCall: PalletBalancesCall;836    PalletBalancesError: PalletBalancesError;837    PalletBalancesEvent: PalletBalancesEvent;838    PalletBalancesReasons: PalletBalancesReasons;839    PalletBalancesReleases: PalletBalancesReleases;840    PalletBalancesReserveData: PalletBalancesReserveData;841    PalletCallMetadataLatest: PalletCallMetadataLatest;842    PalletCallMetadataV14: PalletCallMetadataV14;843    PalletCommonError: PalletCommonError;844    PalletCommonEvent: PalletCommonEvent;845    PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;846    PalletConfigurationCall: PalletConfigurationCall;847    PalletConfigurationError: PalletConfigurationError;848    PalletConstantMetadataLatest: PalletConstantMetadataLatest;849    PalletConstantMetadataV14: PalletConstantMetadataV14;850    PalletErrorMetadataLatest: PalletErrorMetadataLatest;851    PalletErrorMetadataV14: PalletErrorMetadataV14;852    PalletEthereumCall: PalletEthereumCall;853    PalletEthereumError: PalletEthereumError;854    PalletEthereumEvent: PalletEthereumEvent;855    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;856    PalletEthereumRawOrigin: PalletEthereumRawOrigin;857    PalletEventMetadataLatest: PalletEventMetadataLatest;858    PalletEventMetadataV14: PalletEventMetadataV14;859    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;860    PalletEvmCall: PalletEvmCall;861    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;862    PalletEvmContractHelpersError: PalletEvmContractHelpersError;863    PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;864    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;865    PalletEvmError: PalletEvmError;866    PalletEvmEvent: PalletEvmEvent;867    PalletEvmMigrationCall: PalletEvmMigrationCall;868    PalletEvmMigrationError: PalletEvmMigrationError;869    PalletEvmMigrationEvent: PalletEvmMigrationEvent;870    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;871    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;872    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;873    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;874    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;875    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;876    PalletFungibleError: PalletFungibleError;877    PalletId: PalletId;878    PalletInflationCall: PalletInflationCall;879    PalletMaintenanceCall: PalletMaintenanceCall;880    PalletMaintenanceError: PalletMaintenanceError;881    PalletMaintenanceEvent: PalletMaintenanceEvent;882    PalletMetadataLatest: PalletMetadataLatest;883    PalletMetadataV14: PalletMetadataV14;884    PalletNonfungibleError: PalletNonfungibleError;885    PalletNonfungibleItemData: PalletNonfungibleItemData;886    PalletRefungibleError: PalletRefungibleError;887    PalletRefungibleItemData: PalletRefungibleItemData;888    PalletRmrkCoreCall: PalletRmrkCoreCall;889    PalletRmrkCoreError: PalletRmrkCoreError;890    PalletRmrkCoreEvent: PalletRmrkCoreEvent;891    PalletRmrkEquipCall: PalletRmrkEquipCall;892    PalletRmrkEquipError: PalletRmrkEquipError;893    PalletRmrkEquipEvent: PalletRmrkEquipEvent;894    PalletsOrigin: PalletsOrigin;895    PalletStorageMetadataLatest: PalletStorageMetadataLatest;896    PalletStorageMetadataV14: PalletStorageMetadataV14;897    PalletStructureCall: PalletStructureCall;898    PalletStructureError: PalletStructureError;899    PalletStructureEvent: PalletStructureEvent;900    PalletSudoCall: PalletSudoCall;901    PalletSudoError: PalletSudoError;902    PalletSudoEvent: PalletSudoEvent;903    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;904    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;905    PalletTestUtilsCall: PalletTestUtilsCall;906    PalletTestUtilsError: PalletTestUtilsError;907    PalletTestUtilsEvent: PalletTestUtilsEvent;908    PalletTimestampCall: PalletTimestampCall;909    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;910    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;911    PalletTreasuryCall: PalletTreasuryCall;912    PalletTreasuryError: PalletTreasuryError;913    PalletTreasuryEvent: PalletTreasuryEvent;914    PalletTreasuryProposal: PalletTreasuryProposal;915    PalletUniqueCall: PalletUniqueCall;916    PalletUniqueError: PalletUniqueError;917    PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;918    PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;919    PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;920    PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;921    PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;922    PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;923    PalletVersion: PalletVersion;924    PalletXcmCall: PalletXcmCall;925    PalletXcmError: PalletXcmError;926    PalletXcmEvent: PalletXcmEvent;927    PalletXcmOrigin: PalletXcmOrigin;928    ParachainDispatchOrigin: ParachainDispatchOrigin;929    ParachainInherentData: ParachainInherentData;930    ParachainProposal: ParachainProposal;931    ParachainsInherentData: ParachainsInherentData;932    ParaGenesisArgs: ParaGenesisArgs;933    ParaId: ParaId;934    ParaInfo: ParaInfo;935    ParaLifecycle: ParaLifecycle;936    Parameter: Parameter;937    ParaPastCodeMeta: ParaPastCodeMeta;938    ParaScheduling: ParaScheduling;939    ParathreadClaim: ParathreadClaim;940    ParathreadClaimQueue: ParathreadClaimQueue;941    ParathreadEntry: ParathreadEntry;942    ParaValidatorIndex: ParaValidatorIndex;943    Pays: Pays;944    Peer: Peer;945    PeerEndpoint: PeerEndpoint;946    PeerEndpointAddr: PeerEndpointAddr;947    PeerInfo: PeerInfo;948    PeerPing: PeerPing;949    PendingChange: PendingChange;950    PendingPause: PendingPause;951    PendingResume: PendingResume;952    Perbill: Perbill;953    Percent: Percent;954    PerDispatchClassU32: PerDispatchClassU32;955    PerDispatchClassWeight: PerDispatchClassWeight;956    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;957    Period: Period;958    Permill: Permill;959    PermissionLatest: PermissionLatest;960    PermissionsV1: PermissionsV1;961    PermissionVersions: PermissionVersions;962    Perquintill: Perquintill;963    PersistedValidationData: PersistedValidationData;964    PerU16: PerU16;965    Phantom: Phantom;966    PhantomData: PhantomData;967    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;968    Phase: Phase;969    PhragmenScore: PhragmenScore;970    Points: Points;971    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;972    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;973    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;974    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;975    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;976    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;977    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;978    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;979    PortableType: PortableType;980    PortableTypeV14: PortableTypeV14;981    Precommits: Precommits;982    PrefabWasmModule: PrefabWasmModule;983    PrefixedStorageKey: PrefixedStorageKey;984    PreimageStatus: PreimageStatus;985    PreimageStatusAvailable: PreimageStatusAvailable;986    PreRuntime: PreRuntime;987    Prevotes: Prevotes;988    Priority: Priority;989    PriorLock: PriorLock;990    PropIndex: PropIndex;991    Proposal: Proposal;992    ProposalIndex: ProposalIndex;993    ProxyAnnouncement: ProxyAnnouncement;994    ProxyDefinition: ProxyDefinition;995    ProxyState: ProxyState;996    ProxyType: ProxyType;997    PvfCheckStatement: PvfCheckStatement;998    QueryId: QueryId;999    QueryStatus: QueryStatus;1000    QueueConfigData: QueueConfigData;1001    QueuedParathread: QueuedParathread;1002    Randomness: Randomness;1003    Raw: Raw;1004    RawAuraPreDigest: RawAuraPreDigest;1005    RawBabePreDigest: RawBabePreDigest;1006    RawBabePreDigestCompat: RawBabePreDigestCompat;1007    RawBabePreDigestPrimary: RawBabePreDigestPrimary;1008    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;1009    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;1010    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;1011    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;1012    RawBabePreDigestTo159: RawBabePreDigestTo159;1013    RawOrigin: RawOrigin;1014    RawSolution: RawSolution;1015    RawSolutionTo265: RawSolutionTo265;1016    RawSolutionWith16: RawSolutionWith16;1017    RawSolutionWith24: RawSolutionWith24;1018    RawVRFOutput: RawVRFOutput;1019    ReadProof: ReadProof;1020    ReadySolution: ReadySolution;1021    Reasons: Reasons;1022    RecoveryConfig: RecoveryConfig;1023    RefCount: RefCount;1024    RefCountTo259: RefCountTo259;1025    ReferendumIndex: ReferendumIndex;1026    ReferendumInfo: ReferendumInfo;1027    ReferendumInfoFinished: ReferendumInfoFinished;1028    ReferendumInfoTo239: ReferendumInfoTo239;1029    ReferendumStatus: ReferendumStatus;1030    RegisteredParachainInfo: RegisteredParachainInfo;1031    RegistrarIndex: RegistrarIndex;1032    RegistrarInfo: RegistrarInfo;1033    Registration: Registration;1034    RegistrationJudgement: RegistrationJudgement;1035    RegistrationTo198: RegistrationTo198;1036    RelayBlockNumber: RelayBlockNumber;1037    RelayChainBlockNumber: RelayChainBlockNumber;1038    RelayChainHash: RelayChainHash;1039    RelayerId: RelayerId;1040    RelayHash: RelayHash;1041    Releases: Releases;1042    Remark: Remark;1043    Renouncing: Renouncing;1044    RentProjection: RentProjection;1045    ReplacementTimes: ReplacementTimes;1046    ReportedRoundStates: ReportedRoundStates;1047    Reporter: Reporter;1048    ReportIdOf: ReportIdOf;1049    ReserveData: ReserveData;1050    ReserveIdentifier: ReserveIdentifier;1051    Response: Response;1052    ResponseV0: ResponseV0;1053    ResponseV1: ResponseV1;1054    ResponseV2: ResponseV2;1055    ResponseV2Error: ResponseV2Error;1056    ResponseV2Result: ResponseV2Result;1057    Retriable: Retriable;1058    RewardDestination: RewardDestination;1059    RewardPoint: RewardPoint;1060    RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1061    RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1062    RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1063    RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1064    RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1065    RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1066    RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1067    RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1068    RmrkTraitsPartPartType: RmrkTraitsPartPartType;1069    RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1070    RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1071    RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1072    RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1073    RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1074    RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1075    RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1076    RmrkTraitsTheme: RmrkTraitsTheme;1077    RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1078    RoundSnapshot: RoundSnapshot;1079    RoundState: RoundState;1080    RpcMethods: RpcMethods;1081    RuntimeDbWeight: RuntimeDbWeight;1082    RuntimeDispatchInfo: RuntimeDispatchInfo;1083    RuntimeVersion: RuntimeVersion;1084    RuntimeVersionApi: RuntimeVersionApi;1085    RuntimeVersionPartial: RuntimeVersionPartial;1086    RuntimeVersionPre3: RuntimeVersionPre3;1087    RuntimeVersionPre4: RuntimeVersionPre4;1088    Schedule: Schedule;1089    Scheduled: Scheduled;1090    ScheduledCore: ScheduledCore;1091    ScheduledTo254: ScheduledTo254;1092    SchedulePeriod: SchedulePeriod;1093    SchedulePriority: SchedulePriority;1094    ScheduleTo212: ScheduleTo212;1095    ScheduleTo258: ScheduleTo258;1096    ScheduleTo264: ScheduleTo264;1097    Scheduling: Scheduling;1098    ScrapedOnChainVotes: ScrapedOnChainVotes;1099    Seal: Seal;1100    SealV0: SealV0;1101    SeatHolder: SeatHolder;1102    SeedOf: SeedOf;1103    ServiceQuality: ServiceQuality;1104    SessionIndex: SessionIndex;1105    SessionInfo: SessionInfo;1106    SessionInfoValidatorGroup: SessionInfoValidatorGroup;1107    SessionKeys1: SessionKeys1;1108    SessionKeys10: SessionKeys10;1109    SessionKeys10B: SessionKeys10B;1110    SessionKeys2: SessionKeys2;1111    SessionKeys3: SessionKeys3;1112    SessionKeys4: SessionKeys4;1113    SessionKeys5: SessionKeys5;1114    SessionKeys6: SessionKeys6;1115    SessionKeys6B: SessionKeys6B;1116    SessionKeys7: SessionKeys7;1117    SessionKeys7B: SessionKeys7B;1118    SessionKeys8: SessionKeys8;1119    SessionKeys8B: SessionKeys8B;1120    SessionKeys9: SessionKeys9;1121    SessionKeys9B: SessionKeys9B;1122    SetId: SetId;1123    SetIndex: SetIndex;1124    Si0Field: Si0Field;1125    Si0LookupTypeId: Si0LookupTypeId;1126    Si0Path: Si0Path;1127    Si0Type: Si0Type;1128    Si0TypeDef: Si0TypeDef;1129    Si0TypeDefArray: Si0TypeDefArray;1130    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1131    Si0TypeDefCompact: Si0TypeDefCompact;1132    Si0TypeDefComposite: Si0TypeDefComposite;1133    Si0TypeDefPhantom: Si0TypeDefPhantom;1134    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1135    Si0TypeDefSequence: Si0TypeDefSequence;1136    Si0TypeDefTuple: Si0TypeDefTuple;1137    Si0TypeDefVariant: Si0TypeDefVariant;1138    Si0TypeParameter: Si0TypeParameter;1139    Si0Variant: Si0Variant;1140    Si1Field: Si1Field;1141    Si1LookupTypeId: Si1LookupTypeId;1142    Si1Path: Si1Path;1143    Si1Type: Si1Type;1144    Si1TypeDef: Si1TypeDef;1145    Si1TypeDefArray: Si1TypeDefArray;1146    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1147    Si1TypeDefCompact: Si1TypeDefCompact;1148    Si1TypeDefComposite: Si1TypeDefComposite;1149    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1150    Si1TypeDefSequence: Si1TypeDefSequence;1151    Si1TypeDefTuple: Si1TypeDefTuple;1152    Si1TypeDefVariant: Si1TypeDefVariant;1153    Si1TypeParameter: Si1TypeParameter;1154    Si1Variant: Si1Variant;1155    SiField: SiField;1156    Signature: Signature;1157    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1158    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1159    SignedBlock: SignedBlock;1160    SignedBlockWithJustification: SignedBlockWithJustification;1161    SignedBlockWithJustifications: SignedBlockWithJustifications;1162    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1163    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1164    SignedSubmission: SignedSubmission;1165    SignedSubmissionOf: SignedSubmissionOf;1166    SignedSubmissionTo276: SignedSubmissionTo276;1167    SignerPayload: SignerPayload;1168    SigningContext: SigningContext;1169    SiLookupTypeId: SiLookupTypeId;1170    SiPath: SiPath;1171    SiType: SiType;1172    SiTypeDef: SiTypeDef;1173    SiTypeDefArray: SiTypeDefArray;1174    SiTypeDefBitSequence: SiTypeDefBitSequence;1175    SiTypeDefCompact: SiTypeDefCompact;1176    SiTypeDefComposite: SiTypeDefComposite;1177    SiTypeDefPrimitive: SiTypeDefPrimitive;1178    SiTypeDefSequence: SiTypeDefSequence;1179    SiTypeDefTuple: SiTypeDefTuple;1180    SiTypeDefVariant: SiTypeDefVariant;1181    SiTypeParameter: SiTypeParameter;1182    SiVariant: SiVariant;1183    SlashingSpans: SlashingSpans;1184    SlashingSpansTo204: SlashingSpansTo204;1185    SlashJournalEntry: SlashJournalEntry;1186    Slot: Slot;1187    SlotDuration: SlotDuration;1188    SlotNumber: SlotNumber;1189    SlotRange: SlotRange;1190    SlotRange10: SlotRange10;1191    SocietyJudgement: SocietyJudgement;1192    SocietyVote: SocietyVote;1193    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1194    SolutionSupport: SolutionSupport;1195    SolutionSupports: SolutionSupports;1196    SpanIndex: SpanIndex;1197    SpanRecord: SpanRecord;1198    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1199    SpCoreEd25519Signature: SpCoreEd25519Signature;1200    SpCoreSr25519Signature: SpCoreSr25519Signature;1201    SpCoreVoid: SpCoreVoid;1202    SpecVersion: SpecVersion;1203    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1204    SpRuntimeDigest: SpRuntimeDigest;1205    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1206    SpRuntimeDispatchError: SpRuntimeDispatchError;1207    SpRuntimeModuleError: SpRuntimeModuleError;1208    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1209    SpRuntimeTokenError: SpRuntimeTokenError;1210    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1211    SpTrieStorageProof: SpTrieStorageProof;1212    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1213    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1214    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1215    Sr25519Signature: Sr25519Signature;1216    StakingLedger: StakingLedger;1217    StakingLedgerTo223: StakingLedgerTo223;1218    StakingLedgerTo240: StakingLedgerTo240;1219    Statement: Statement;1220    StatementKind: StatementKind;1221    StorageChangeSet: StorageChangeSet;1222    StorageData: StorageData;1223    StorageDeposit: StorageDeposit;1224    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1225    StorageEntryMetadataV10: StorageEntryMetadataV10;1226    StorageEntryMetadataV11: StorageEntryMetadataV11;1227    StorageEntryMetadataV12: StorageEntryMetadataV12;1228    StorageEntryMetadataV13: StorageEntryMetadataV13;1229    StorageEntryMetadataV14: StorageEntryMetadataV14;1230    StorageEntryMetadataV9: StorageEntryMetadataV9;1231    StorageEntryModifierLatest: StorageEntryModifierLatest;1232    StorageEntryModifierV10: StorageEntryModifierV10;1233    StorageEntryModifierV11: StorageEntryModifierV11;1234    StorageEntryModifierV12: StorageEntryModifierV12;1235    StorageEntryModifierV13: StorageEntryModifierV13;1236    StorageEntryModifierV14: StorageEntryModifierV14;1237    StorageEntryModifierV9: StorageEntryModifierV9;1238    StorageEntryTypeLatest: StorageEntryTypeLatest;1239    StorageEntryTypeV10: StorageEntryTypeV10;1240    StorageEntryTypeV11: StorageEntryTypeV11;1241    StorageEntryTypeV12: StorageEntryTypeV12;1242    StorageEntryTypeV13: StorageEntryTypeV13;1243    StorageEntryTypeV14: StorageEntryTypeV14;1244    StorageEntryTypeV9: StorageEntryTypeV9;1245    StorageHasher: StorageHasher;1246    StorageHasherV10: StorageHasherV10;1247    StorageHasherV11: StorageHasherV11;1248    StorageHasherV12: StorageHasherV12;1249    StorageHasherV13: StorageHasherV13;1250    StorageHasherV14: StorageHasherV14;1251    StorageHasherV9: StorageHasherV9;1252    StorageInfo: StorageInfo;1253    StorageKey: StorageKey;1254    StorageKind: StorageKind;1255    StorageMetadataV10: StorageMetadataV10;1256    StorageMetadataV11: StorageMetadataV11;1257    StorageMetadataV12: StorageMetadataV12;1258    StorageMetadataV13: StorageMetadataV13;1259    StorageMetadataV9: StorageMetadataV9;1260    StorageProof: StorageProof;1261    StoredPendingChange: StoredPendingChange;1262    StoredState: StoredState;1263    StrikeCount: StrikeCount;1264    SubId: SubId;1265    SubmissionIndicesOf: SubmissionIndicesOf;1266    Supports: Supports;1267    SyncState: SyncState;1268    SystemInherentData: SystemInherentData;1269    SystemOrigin: SystemOrigin;1270    Tally: Tally;1271    TaskAddress: TaskAddress;1272    TAssetBalance: TAssetBalance;1273    TAssetDepositBalance: TAssetDepositBalance;1274    Text: Text;1275    Timepoint: Timepoint;1276    TokenError: TokenError;1277    TombstoneContractInfo: TombstoneContractInfo;1278    TraceBlockResponse: TraceBlockResponse;1279    TraceError: TraceError;1280    TransactionalError: TransactionalError;1281    TransactionInfo: TransactionInfo;1282    TransactionLongevity: TransactionLongevity;1283    TransactionPriority: TransactionPriority;1284    TransactionSource: TransactionSource;1285    TransactionStorageProof: TransactionStorageProof;1286    TransactionTag: TransactionTag;1287    TransactionV0: TransactionV0;1288    TransactionV1: TransactionV1;1289    TransactionV2: TransactionV2;1290    TransactionValidity: TransactionValidity;1291    TransactionValidityError: TransactionValidityError;1292    TransientValidationData: TransientValidationData;1293    TreasuryProposal: TreasuryProposal;1294    TrieId: TrieId;1295    TrieIndex: TrieIndex;1296    Type: Type;1297    u128: u128;1298    U128: U128;1299    u16: u16;1300    U16: U16;1301    u256: u256;1302    U256: U256;1303    u32: u32;1304    U32: U32;1305    U32F32: U32F32;1306    u64: u64;1307    U64: U64;1308    u8: u8;1309    U8: U8;1310    UnappliedSlash: UnappliedSlash;1311    UnappliedSlashOther: UnappliedSlashOther;1312    UncleEntryItem: UncleEntryItem;1313    UnknownTransaction: UnknownTransaction;1314    UnlockChunk: UnlockChunk;1315    UnrewardedRelayer: UnrewardedRelayer;1316    UnrewardedRelayersState: UnrewardedRelayersState;1317    UpDataStructsAccessMode: UpDataStructsAccessMode;1318    UpDataStructsCollection: UpDataStructsCollection;1319    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1320    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1321    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1322    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1323    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1324    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1325    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1326    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1327    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1328    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1329    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1330    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1331    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1332    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1333    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1334    UpDataStructsProperties: UpDataStructsProperties;1335    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1336    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1337    UpDataStructsProperty: UpDataStructsProperty;1338    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1339    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1340    UpDataStructsPropertyScope: UpDataStructsPropertyScope;1341    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1342    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1343    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1344    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1345    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1346    UpDataStructsTokenChild: UpDataStructsTokenChild;1347    UpDataStructsTokenData: UpDataStructsTokenData;1348    UpgradeGoAhead: UpgradeGoAhead;1349    UpgradeRestriction: UpgradeRestriction;1350    UpwardMessage: UpwardMessage;1351    usize: usize;1352    USize: USize;1353    ValidationCode: ValidationCode;1354    ValidationCodeHash: ValidationCodeHash;1355    ValidationData: ValidationData;1356    ValidationDataType: ValidationDataType;1357    ValidationFunctionParams: ValidationFunctionParams;1358    ValidatorCount: ValidatorCount;1359    ValidatorId: ValidatorId;1360    ValidatorIdOf: ValidatorIdOf;1361    ValidatorIndex: ValidatorIndex;1362    ValidatorIndexCompact: ValidatorIndexCompact;1363    ValidatorPrefs: ValidatorPrefs;1364    ValidatorPrefsTo145: ValidatorPrefsTo145;1365    ValidatorPrefsTo196: ValidatorPrefsTo196;1366    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1367    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1368    ValidatorSet: ValidatorSet;1369    ValidatorSetId: ValidatorSetId;1370    ValidatorSignature: ValidatorSignature;1371    ValidDisputeStatementKind: ValidDisputeStatementKind;1372    ValidityAttestation: ValidityAttestation;1373    ValidTransaction: ValidTransaction;1374    VecInboundHrmpMessage: VecInboundHrmpMessage;1375    VersionedMultiAsset: VersionedMultiAsset;1376    VersionedMultiAssets: VersionedMultiAssets;1377    VersionedMultiLocation: VersionedMultiLocation;1378    VersionedResponse: VersionedResponse;1379    VersionedXcm: VersionedXcm;1380    VersionMigrationStage: VersionMigrationStage;1381    VestingInfo: VestingInfo;1382    VestingSchedule: VestingSchedule;1383    Vote: Vote;1384    VoteIndex: VoteIndex;1385    Voter: Voter;1386    VoterInfo: VoterInfo;1387    Votes: Votes;1388    VotesTo230: VotesTo230;1389    VoteThreshold: VoteThreshold;1390    VoteWeight: VoteWeight;1391    Voting: Voting;1392    VotingDelegating: VotingDelegating;1393    VotingDirect: VotingDirect;1394    VotingDirectVote: VotingDirectVote;1395    VouchingStatus: VouchingStatus;1396    VrfData: VrfData;1397    VrfOutput: VrfOutput;1398    VrfProof: VrfProof;1399    Weight: Weight;1400    WeightLimitV2: WeightLimitV2;1401    WeightMultiplier: WeightMultiplier;1402    WeightPerClass: WeightPerClass;1403    WeightToFeeCoefficient: WeightToFeeCoefficient;1404    WeightV1: WeightV1;1405    WeightV2: WeightV2;1406    WildFungibility: WildFungibility;1407    WildFungibilityV0: WildFungibilityV0;1408    WildFungibilityV1: WildFungibilityV1;1409    WildFungibilityV2: WildFungibilityV2;1410    WildMultiAsset: WildMultiAsset;1411    WildMultiAssetV1: WildMultiAssetV1;1412    WildMultiAssetV2: WildMultiAssetV2;1413    WinnersData: WinnersData;1414    WinnersData10: WinnersData10;1415    WinnersDataTuple: WinnersDataTuple;1416    WinnersDataTuple10: WinnersDataTuple10;1417    WinningData: WinningData;1418    WinningData10: WinningData10;1419    WinningDataEntry: WinningDataEntry;1420    WithdrawReasons: WithdrawReasons;1421    Xcm: Xcm;1422    XcmAssetId: XcmAssetId;1423    XcmDoubleEncoded: XcmDoubleEncoded;1424    XcmError: XcmError;1425    XcmErrorV0: XcmErrorV0;1426    XcmErrorV1: XcmErrorV1;1427    XcmErrorV2: XcmErrorV2;1428    XcmOrder: XcmOrder;1429    XcmOrderV0: XcmOrderV0;1430    XcmOrderV1: XcmOrderV1;1431    XcmOrderV2: XcmOrderV2;1432    XcmOrigin: XcmOrigin;1433    XcmOriginKind: XcmOriginKind;1434    XcmpMessageFormat: XcmpMessageFormat;1435    XcmV0: XcmV0;1436    XcmV0Junction: XcmV0Junction;1437    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1438    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1439    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1440    XcmV0MultiAsset: XcmV0MultiAsset;1441    XcmV0MultiLocation: XcmV0MultiLocation;1442    XcmV0Order: XcmV0Order;1443    XcmV0OriginKind: XcmV0OriginKind;1444    XcmV0Response: XcmV0Response;1445    XcmV0Xcm: XcmV0Xcm;1446    XcmV1: XcmV1;1447    XcmV1Junction: XcmV1Junction;1448    XcmV1MultiAsset: XcmV1MultiAsset;1449    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1450    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1451    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1452    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1453    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1454    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1455    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1456    XcmV1MultiLocation: XcmV1MultiLocation;1457    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1458    XcmV1Order: XcmV1Order;1459    XcmV1Response: XcmV1Response;1460    XcmV1Xcm: XcmV1Xcm;1461    XcmV2: XcmV2;1462    XcmV2Instruction: XcmV2Instruction;1463    XcmV2Response: XcmV2Response;1464    XcmV2TraitsError: XcmV2TraitsError;1465    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1466    XcmV2WeightLimit: XcmV2WeightLimit;1467    XcmV2Xcm: XcmV2Xcm;1468    XcmVersion: XcmVersion;1469    XcmVersionedMultiAsset: XcmVersionedMultiAsset;1470    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1471    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1472    XcmVersionedXcm: XcmVersionedXcm;1473  } // InterfaceTypes1474} // declare module
after · tests/src/interfaces/augment-types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7273declare module '@polkadot/types/types/registry' {74  interface InterfaceTypes {75    AbridgedCandidateReceipt: AbridgedCandidateReceipt;76    AbridgedHostConfiguration: AbridgedHostConfiguration;77    AbridgedHrmpChannel: AbridgedHrmpChannel;78    AccountData: AccountData;79    AccountId: AccountId;80    AccountId20: AccountId20;81    AccountId32: AccountId32;82    AccountId33: AccountId33;83    AccountIdOf: AccountIdOf;84    AccountIndex: AccountIndex;85    AccountInfo: AccountInfo;86    AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87    AccountInfoWithProviders: AccountInfoWithProviders;88    AccountInfoWithRefCount: AccountInfoWithRefCount;89    AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90    AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91    AccountStatus: AccountStatus;92    AccountValidity: AccountValidity;93    AccountVote: AccountVote;94    AccountVoteSplit: AccountVoteSplit;95    AccountVoteStandard: AccountVoteStandard;96    ActiveEraInfo: ActiveEraInfo;97    ActiveGilt: ActiveGilt;98    ActiveGiltsTotal: ActiveGiltsTotal;99    ActiveIndex: ActiveIndex;100    ActiveRecovery: ActiveRecovery;101    Address: Address;102    AliveContractInfo: AliveContractInfo;103    AllowedSlots: AllowedSlots;104    AnySignature: AnySignature;105    ApiId: ApiId;106    ApplyExtrinsicResult: ApplyExtrinsicResult;107    ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108    ApprovalFlag: ApprovalFlag;109    Approvals: Approvals;110    ArithmeticError: ArithmeticError;111    AssetApproval: AssetApproval;112    AssetApprovalKey: AssetApprovalKey;113    AssetBalance: AssetBalance;114    AssetDestroyWitness: AssetDestroyWitness;115    AssetDetails: AssetDetails;116    AssetId: AssetId;117    AssetInstance: AssetInstance;118    AssetInstanceV0: AssetInstanceV0;119    AssetInstanceV1: AssetInstanceV1;120    AssetInstanceV2: AssetInstanceV2;121    AssetMetadata: AssetMetadata;122    AssetOptions: AssetOptions;123    AssignmentId: AssignmentId;124    AssignmentKind: AssignmentKind;125    AttestedCandidate: AttestedCandidate;126    AuctionIndex: AuctionIndex;127    AuthIndex: AuthIndex;128    AuthorityDiscoveryId: AuthorityDiscoveryId;129    AuthorityId: AuthorityId;130    AuthorityIndex: AuthorityIndex;131    AuthorityList: AuthorityList;132    AuthoritySet: AuthoritySet;133    AuthoritySetChange: AuthoritySetChange;134    AuthoritySetChanges: AuthoritySetChanges;135    AuthoritySignature: AuthoritySignature;136    AuthorityWeight: AuthorityWeight;137    AvailabilityBitfield: AvailabilityBitfield;138    AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139    BabeAuthorityWeight: BabeAuthorityWeight;140    BabeBlockWeight: BabeBlockWeight;141    BabeEpochConfiguration: BabeEpochConfiguration;142    BabeEquivocationProof: BabeEquivocationProof;143    BabeGenesisConfiguration: BabeGenesisConfiguration;144    BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145    BabeWeight: BabeWeight;146    BackedCandidate: BackedCandidate;147    Balance: Balance;148    BalanceLock: BalanceLock;149    BalanceLockTo212: BalanceLockTo212;150    BalanceOf: BalanceOf;151    BalanceStatus: BalanceStatus;152    BeefyAuthoritySet: BeefyAuthoritySet;153    BeefyCommitment: BeefyCommitment;154    BeefyId: BeefyId;155    BeefyKey: BeefyKey;156    BeefyNextAuthoritySet: BeefyNextAuthoritySet;157    BeefyPayload: BeefyPayload;158    BeefyPayloadId: BeefyPayloadId;159    BeefySignedCommitment: BeefySignedCommitment;160    BenchmarkBatch: BenchmarkBatch;161    BenchmarkConfig: BenchmarkConfig;162    BenchmarkList: BenchmarkList;163    BenchmarkMetadata: BenchmarkMetadata;164    BenchmarkParameter: BenchmarkParameter;165    BenchmarkResult: BenchmarkResult;166    Bid: Bid;167    Bidder: Bidder;168    BidKind: BidKind;169    BitVec: BitVec;170    Block: Block;171    BlockAttestations: BlockAttestations;172    BlockHash: BlockHash;173    BlockLength: BlockLength;174    BlockNumber: BlockNumber;175    BlockNumberFor: BlockNumberFor;176    BlockNumberOf: BlockNumberOf;177    BlockStats: BlockStats;178    BlockTrace: BlockTrace;179    BlockTraceEvent: BlockTraceEvent;180    BlockTraceEventData: BlockTraceEventData;181    BlockTraceSpan: BlockTraceSpan;182    BlockV0: BlockV0;183    BlockV1: BlockV1;184    BlockV2: BlockV2;185    BlockWeights: BlockWeights;186    BodyId: BodyId;187    BodyPart: BodyPart;188    bool: bool;189    Bool: Bool;190    Bounty: Bounty;191    BountyIndex: BountyIndex;192    BountyStatus: BountyStatus;193    BountyStatusActive: BountyStatusActive;194    BountyStatusCuratorProposed: BountyStatusCuratorProposed;195    BountyStatusPendingPayout: BountyStatusPendingPayout;196    BridgedBlockHash: BridgedBlockHash;197    BridgedBlockNumber: BridgedBlockNumber;198    BridgedHeader: BridgedHeader;199    BridgeMessageId: BridgeMessageId;200    BufferedSessionChange: BufferedSessionChange;201    Bytes: Bytes;202    Call: Call;203    CallHash: CallHash;204    CallHashOf: CallHashOf;205    CallIndex: CallIndex;206    CallOrigin: CallOrigin;207    CandidateCommitments: CandidateCommitments;208    CandidateDescriptor: CandidateDescriptor;209    CandidateEvent: CandidateEvent;210    CandidateHash: CandidateHash;211    CandidateInfo: CandidateInfo;212    CandidatePendingAvailability: CandidatePendingAvailability;213    CandidateReceipt: CandidateReceipt;214    ChainId: ChainId;215    ChainProperties: ChainProperties;216    ChainType: ChainType;217    ChangesTrieConfiguration: ChangesTrieConfiguration;218    ChangesTrieSignal: ChangesTrieSignal;219    CheckInherentsResult: CheckInherentsResult;220    ClassDetails: ClassDetails;221    ClassId: ClassId;222    ClassMetadata: ClassMetadata;223    CodecHash: CodecHash;224    CodeHash: CodeHash;225    CodeSource: CodeSource;226    CodeUploadRequest: CodeUploadRequest;227    CodeUploadResult: CodeUploadResult;228    CodeUploadResultValue: CodeUploadResultValue;229    CollationInfo: CollationInfo;230    CollationInfoV1: CollationInfoV1;231    CollatorId: CollatorId;232    CollatorSignature: CollatorSignature;233    CollectiveOrigin: CollectiveOrigin;234    CommittedCandidateReceipt: CommittedCandidateReceipt;235    CompactAssignments: CompactAssignments;236    CompactAssignmentsTo257: CompactAssignmentsTo257;237    CompactAssignmentsTo265: CompactAssignmentsTo265;238    CompactAssignmentsWith16: CompactAssignmentsWith16;239    CompactAssignmentsWith24: CompactAssignmentsWith24;240    CompactScore: CompactScore;241    CompactScoreCompact: CompactScoreCompact;242    ConfigData: ConfigData;243    Consensus: Consensus;244    ConsensusEngineId: ConsensusEngineId;245    ConsumedWeight: ConsumedWeight;246    ContractCallFlags: ContractCallFlags;247    ContractCallRequest: ContractCallRequest;248    ContractConstructorSpecLatest: ContractConstructorSpecLatest;249    ContractConstructorSpecV0: ContractConstructorSpecV0;250    ContractConstructorSpecV1: ContractConstructorSpecV1;251    ContractConstructorSpecV2: ContractConstructorSpecV2;252    ContractConstructorSpecV3: ContractConstructorSpecV3;253    ContractContractSpecV0: ContractContractSpecV0;254    ContractContractSpecV1: ContractContractSpecV1;255    ContractContractSpecV2: ContractContractSpecV2;256    ContractContractSpecV3: ContractContractSpecV3;257    ContractContractSpecV4: ContractContractSpecV4;258    ContractCryptoHasher: ContractCryptoHasher;259    ContractDiscriminant: ContractDiscriminant;260    ContractDisplayName: ContractDisplayName;261    ContractEventParamSpecLatest: ContractEventParamSpecLatest;262    ContractEventParamSpecV0: ContractEventParamSpecV0;263    ContractEventParamSpecV2: ContractEventParamSpecV2;264    ContractEventSpecLatest: ContractEventSpecLatest;265    ContractEventSpecV0: ContractEventSpecV0;266    ContractEventSpecV1: ContractEventSpecV1;267    ContractEventSpecV2: ContractEventSpecV2;268    ContractExecResult: ContractExecResult;269    ContractExecResultOk: ContractExecResultOk;270    ContractExecResultResult: ContractExecResultResult;271    ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272    ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273    ContractExecResultTo255: ContractExecResultTo255;274    ContractExecResultTo260: ContractExecResultTo260;275    ContractExecResultTo267: ContractExecResultTo267;276    ContractInfo: ContractInfo;277    ContractInstantiateResult: ContractInstantiateResult;278    ContractInstantiateResultTo267: ContractInstantiateResultTo267;279    ContractInstantiateResultTo299: ContractInstantiateResultTo299;280    ContractLayoutArray: ContractLayoutArray;281    ContractLayoutCell: ContractLayoutCell;282    ContractLayoutEnum: ContractLayoutEnum;283    ContractLayoutHash: ContractLayoutHash;284    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;285    ContractLayoutKey: ContractLayoutKey;286    ContractLayoutStruct: ContractLayoutStruct;287    ContractLayoutStructField: ContractLayoutStructField;288    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;289    ContractMessageParamSpecV0: ContractMessageParamSpecV0;290    ContractMessageParamSpecV2: ContractMessageParamSpecV2;291    ContractMessageSpecLatest: ContractMessageSpecLatest;292    ContractMessageSpecV0: ContractMessageSpecV0;293    ContractMessageSpecV1: ContractMessageSpecV1;294    ContractMessageSpecV2: ContractMessageSpecV2;295    ContractMetadata: ContractMetadata;296    ContractMetadataLatest: ContractMetadataLatest;297    ContractMetadataV0: ContractMetadataV0;298    ContractMetadataV1: ContractMetadataV1;299    ContractMetadataV2: ContractMetadataV2;300    ContractMetadataV3: ContractMetadataV3;301    ContractMetadataV4: ContractMetadataV4;302    ContractProject: ContractProject;303    ContractProjectContract: ContractProjectContract;304    ContractProjectInfo: ContractProjectInfo;305    ContractProjectSource: ContractProjectSource;306    ContractProjectV0: ContractProjectV0;307    ContractReturnFlags: ContractReturnFlags;308    ContractSelector: ContractSelector;309    ContractStorageKey: ContractStorageKey;310    ContractStorageLayout: ContractStorageLayout;311    ContractTypeSpec: ContractTypeSpec;312    Conviction: Conviction;313    CoreAssignment: CoreAssignment;314    CoreIndex: CoreIndex;315    CoreOccupied: CoreOccupied;316    CoreState: CoreState;317    CrateVersion: CrateVersion;318    CreatedBlock: CreatedBlock;319    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;320    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;321    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;322    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;323    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;324    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;325    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;326    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;327    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;328    CumulusPalletXcmCall: CumulusPalletXcmCall;329    CumulusPalletXcmError: CumulusPalletXcmError;330    CumulusPalletXcmEvent: CumulusPalletXcmEvent;331    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;332    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;333    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;334    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;335    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;336    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;337    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;338    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;339    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;340    Data: Data;341    DeferredOffenceOf: DeferredOffenceOf;342    DefunctVoter: DefunctVoter;343    DelayKind: DelayKind;344    DelayKindBest: DelayKindBest;345    Delegations: Delegations;346    DeletedContract: DeletedContract;347    DeliveredMessages: DeliveredMessages;348    DepositBalance: DepositBalance;349    DepositBalanceOf: DepositBalanceOf;350    DestroyWitness: DestroyWitness;351    Digest: Digest;352    DigestItem: DigestItem;353    DigestOf: DigestOf;354    DispatchClass: DispatchClass;355    DispatchError: DispatchError;356    DispatchErrorModule: DispatchErrorModule;357    DispatchErrorModulePre6: DispatchErrorModulePre6;358    DispatchErrorModuleU8: DispatchErrorModuleU8;359    DispatchErrorModuleU8a: DispatchErrorModuleU8a;360    DispatchErrorPre6: DispatchErrorPre6;361    DispatchErrorPre6First: DispatchErrorPre6First;362    DispatchErrorTo198: DispatchErrorTo198;363    DispatchFeePayment: DispatchFeePayment;364    DispatchInfo: DispatchInfo;365    DispatchInfoTo190: DispatchInfoTo190;366    DispatchInfoTo244: DispatchInfoTo244;367    DispatchOutcome: DispatchOutcome;368    DispatchOutcomePre6: DispatchOutcomePre6;369    DispatchResult: DispatchResult;370    DispatchResultOf: DispatchResultOf;371    DispatchResultTo198: DispatchResultTo198;372    DisputeLocation: DisputeLocation;373    DisputeResult: DisputeResult;374    DisputeState: DisputeState;375    DisputeStatement: DisputeStatement;376    DisputeStatementSet: DisputeStatementSet;377    DoubleEncodedCall: DoubleEncodedCall;378    DoubleVoteReport: DoubleVoteReport;379    DownwardMessage: DownwardMessage;380    EcdsaSignature: EcdsaSignature;381    Ed25519Signature: Ed25519Signature;382    EIP1559Transaction: EIP1559Transaction;383    EIP2930Transaction: EIP2930Transaction;384    ElectionCompute: ElectionCompute;385    ElectionPhase: ElectionPhase;386    ElectionResult: ElectionResult;387    ElectionScore: ElectionScore;388    ElectionSize: ElectionSize;389    ElectionStatus: ElectionStatus;390    EncodedFinalityProofs: EncodedFinalityProofs;391    EncodedJustification: EncodedJustification;392    Epoch: Epoch;393    EpochAuthorship: EpochAuthorship;394    Era: Era;395    EraIndex: EraIndex;396    EraPoints: EraPoints;397    EraRewardPoints: EraRewardPoints;398    EraRewards: EraRewards;399    ErrorMetadataLatest: ErrorMetadataLatest;400    ErrorMetadataV10: ErrorMetadataV10;401    ErrorMetadataV11: ErrorMetadataV11;402    ErrorMetadataV12: ErrorMetadataV12;403    ErrorMetadataV13: ErrorMetadataV13;404    ErrorMetadataV14: ErrorMetadataV14;405    ErrorMetadataV9: ErrorMetadataV9;406    EthAccessList: EthAccessList;407    EthAccessListItem: EthAccessListItem;408    EthAccount: EthAccount;409    EthAddress: EthAddress;410    EthBlock: EthBlock;411    EthBloom: EthBloom;412    EthbloomBloom: EthbloomBloom;413    EthCallRequest: EthCallRequest;414    EthereumAccountId: EthereumAccountId;415    EthereumAddress: EthereumAddress;416    EthereumBlock: EthereumBlock;417    EthereumHeader: EthereumHeader;418    EthereumLog: EthereumLog;419    EthereumLookupSource: EthereumLookupSource;420    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;421    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;422    EthereumSignature: EthereumSignature;423    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;424    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;425    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;426    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;427    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;428    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;429    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;430    EthereumTypesHashH64: EthereumTypesHashH64;431    EthFeeHistory: EthFeeHistory;432    EthFilter: EthFilter;433    EthFilterAddress: EthFilterAddress;434    EthFilterChanges: EthFilterChanges;435    EthFilterTopic: EthFilterTopic;436    EthFilterTopicEntry: EthFilterTopicEntry;437    EthFilterTopicInner: EthFilterTopicInner;438    EthHeader: EthHeader;439    EthLog: EthLog;440    EthReceipt: EthReceipt;441    EthReceiptV0: EthReceiptV0;442    EthReceiptV3: EthReceiptV3;443    EthRichBlock: EthRichBlock;444    EthRichHeader: EthRichHeader;445    EthStorageProof: EthStorageProof;446    EthSubKind: EthSubKind;447    EthSubParams: EthSubParams;448    EthSubResult: EthSubResult;449    EthSyncInfo: EthSyncInfo;450    EthSyncStatus: EthSyncStatus;451    EthTransaction: EthTransaction;452    EthTransactionAction: EthTransactionAction;453    EthTransactionCondition: EthTransactionCondition;454    EthTransactionRequest: EthTransactionRequest;455    EthTransactionSignature: EthTransactionSignature;456    EthTransactionStatus: EthTransactionStatus;457    EthWork: EthWork;458    Event: Event;459    EventId: EventId;460    EventIndex: EventIndex;461    EventMetadataLatest: EventMetadataLatest;462    EventMetadataV10: EventMetadataV10;463    EventMetadataV11: EventMetadataV11;464    EventMetadataV12: EventMetadataV12;465    EventMetadataV13: EventMetadataV13;466    EventMetadataV14: EventMetadataV14;467    EventMetadataV9: EventMetadataV9;468    EventRecord: EventRecord;469    EvmAccount: EvmAccount;470    EvmCallInfo: EvmCallInfo;471    EvmCoreErrorExitError: EvmCoreErrorExitError;472    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;473    EvmCoreErrorExitReason: EvmCoreErrorExitReason;474    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;475    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;476    EvmCreateInfo: EvmCreateInfo;477    EvmLog: EvmLog;478    EvmVicinity: EvmVicinity;479    ExecReturnValue: ExecReturnValue;480    ExitError: ExitError;481    ExitFatal: ExitFatal;482    ExitReason: ExitReason;483    ExitRevert: ExitRevert;484    ExitSucceed: ExitSucceed;485    ExplicitDisputeStatement: ExplicitDisputeStatement;486    Exposure: Exposure;487    ExtendedBalance: ExtendedBalance;488    Extrinsic: Extrinsic;489    ExtrinsicEra: ExtrinsicEra;490    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;491    ExtrinsicMetadataV11: ExtrinsicMetadataV11;492    ExtrinsicMetadataV12: ExtrinsicMetadataV12;493    ExtrinsicMetadataV13: ExtrinsicMetadataV13;494    ExtrinsicMetadataV14: ExtrinsicMetadataV14;495    ExtrinsicOrHash: ExtrinsicOrHash;496    ExtrinsicPayload: ExtrinsicPayload;497    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;498    ExtrinsicPayloadV4: ExtrinsicPayloadV4;499    ExtrinsicSignature: ExtrinsicSignature;500    ExtrinsicSignatureV4: ExtrinsicSignatureV4;501    ExtrinsicStatus: ExtrinsicStatus;502    ExtrinsicsWeight: ExtrinsicsWeight;503    ExtrinsicUnknown: ExtrinsicUnknown;504    ExtrinsicV4: ExtrinsicV4;505    f32: f32;506    F32: F32;507    f64: f64;508    F64: F64;509    FeeDetails: FeeDetails;510    Fixed128: Fixed128;511    Fixed64: Fixed64;512    FixedI128: FixedI128;513    FixedI64: FixedI64;514    FixedU128: FixedU128;515    FixedU64: FixedU64;516    Forcing: Forcing;517    ForkTreePendingChange: ForkTreePendingChange;518    ForkTreePendingChangeNode: ForkTreePendingChangeNode;519    FpRpcTransactionStatus: FpRpcTransactionStatus;520    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;521    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;522    FrameSupportDispatchPays: FrameSupportDispatchPays;523    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;524    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;525    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;526    FrameSupportPalletId: FrameSupportPalletId;527    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;528    FrameSystemAccountInfo: FrameSystemAccountInfo;529    FrameSystemCall: FrameSystemCall;530    FrameSystemError: FrameSystemError;531    FrameSystemEvent: FrameSystemEvent;532    FrameSystemEventRecord: FrameSystemEventRecord;533    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;534    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;535    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;536    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;537    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;538    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;539    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;540    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;541    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;542    FrameSystemPhase: FrameSystemPhase;543    FullIdentification: FullIdentification;544    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;545    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;546    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;547    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;548    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;549    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;550    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;551    FunctionMetadataLatest: FunctionMetadataLatest;552    FunctionMetadataV10: FunctionMetadataV10;553    FunctionMetadataV11: FunctionMetadataV11;554    FunctionMetadataV12: FunctionMetadataV12;555    FunctionMetadataV13: FunctionMetadataV13;556    FunctionMetadataV14: FunctionMetadataV14;557    FunctionMetadataV9: FunctionMetadataV9;558    FundIndex: FundIndex;559    FundInfo: FundInfo;560    Fungibility: Fungibility;561    FungibilityV0: FungibilityV0;562    FungibilityV1: FungibilityV1;563    FungibilityV2: FungibilityV2;564    Gas: Gas;565    GiltBid: GiltBid;566    GlobalValidationData: GlobalValidationData;567    GlobalValidationSchedule: GlobalValidationSchedule;568    GrandpaCommit: GrandpaCommit;569    GrandpaEquivocation: GrandpaEquivocation;570    GrandpaEquivocationProof: GrandpaEquivocationProof;571    GrandpaEquivocationValue: GrandpaEquivocationValue;572    GrandpaJustification: GrandpaJustification;573    GrandpaPrecommit: GrandpaPrecommit;574    GrandpaPrevote: GrandpaPrevote;575    GrandpaSignedPrecommit: GrandpaSignedPrecommit;576    GroupIndex: GroupIndex;577    GroupRotationInfo: GroupRotationInfo;578    H1024: H1024;579    H128: H128;580    H160: H160;581    H2048: H2048;582    H256: H256;583    H32: H32;584    H512: H512;585    H64: H64;586    Hash: Hash;587    HeadData: HeadData;588    Header: Header;589    HeaderPartial: HeaderPartial;590    Health: Health;591    Heartbeat: Heartbeat;592    HeartbeatTo244: HeartbeatTo244;593    HostConfiguration: HostConfiguration;594    HostFnWeights: HostFnWeights;595    HostFnWeightsTo264: HostFnWeightsTo264;596    HrmpChannel: HrmpChannel;597    HrmpChannelId: HrmpChannelId;598    HrmpOpenChannelRequest: HrmpOpenChannelRequest;599    i128: i128;600    I128: I128;601    i16: i16;602    I16: I16;603    i256: i256;604    I256: I256;605    i32: i32;606    I32: I32;607    I32F32: I32F32;608    i64: i64;609    I64: I64;610    i8: i8;611    I8: I8;612    IdentificationTuple: IdentificationTuple;613    IdentityFields: IdentityFields;614    IdentityInfo: IdentityInfo;615    IdentityInfoAdditional: IdentityInfoAdditional;616    IdentityInfoTo198: IdentityInfoTo198;617    IdentityJudgement: IdentityJudgement;618    ImmortalEra: ImmortalEra;619    ImportedAux: ImportedAux;620    InboundDownwardMessage: InboundDownwardMessage;621    InboundHrmpMessage: InboundHrmpMessage;622    InboundHrmpMessages: InboundHrmpMessages;623    InboundLaneData: InboundLaneData;624    InboundRelayer: InboundRelayer;625    InboundStatus: InboundStatus;626    IncludedBlocks: IncludedBlocks;627    InclusionFee: InclusionFee;628    IncomingParachain: IncomingParachain;629    IncomingParachainDeploy: IncomingParachainDeploy;630    IncomingParachainFixed: IncomingParachainFixed;631    Index: Index;632    IndicesLookupSource: IndicesLookupSource;633    IndividualExposure: IndividualExposure;634    InherentData: InherentData;635    InherentIdentifier: InherentIdentifier;636    InitializationData: InitializationData;637    InstanceDetails: InstanceDetails;638    InstanceId: InstanceId;639    InstanceMetadata: InstanceMetadata;640    InstantiateRequest: InstantiateRequest;641    InstantiateRequestV1: InstantiateRequestV1;642    InstantiateRequestV2: InstantiateRequestV2;643    InstantiateReturnValue: InstantiateReturnValue;644    InstantiateReturnValueOk: InstantiateReturnValueOk;645    InstantiateReturnValueTo267: InstantiateReturnValueTo267;646    InstructionV2: InstructionV2;647    InstructionWeights: InstructionWeights;648    InteriorMultiLocation: InteriorMultiLocation;649    InvalidDisputeStatementKind: InvalidDisputeStatementKind;650    InvalidTransaction: InvalidTransaction;651    Json: Json;652    Junction: Junction;653    Junctions: Junctions;654    JunctionsV1: JunctionsV1;655    JunctionsV2: JunctionsV2;656    JunctionV0: JunctionV0;657    JunctionV1: JunctionV1;658    JunctionV2: JunctionV2;659    Justification: Justification;660    JustificationNotification: JustificationNotification;661    Justifications: Justifications;662    Key: Key;663    KeyOwnerProof: KeyOwnerProof;664    Keys: Keys;665    KeyType: KeyType;666    KeyTypeId: KeyTypeId;667    KeyValue: KeyValue;668    KeyValueOption: KeyValueOption;669    Kind: Kind;670    LaneId: LaneId;671    LastContribution: LastContribution;672    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;673    LeasePeriod: LeasePeriod;674    LeasePeriodOf: LeasePeriodOf;675    LegacyTransaction: LegacyTransaction;676    Limits: Limits;677    LimitsTo264: LimitsTo264;678    LocalValidationData: LocalValidationData;679    LockIdentifier: LockIdentifier;680    LookupSource: LookupSource;681    LookupTarget: LookupTarget;682    LotteryConfig: LotteryConfig;683    MaybeRandomness: MaybeRandomness;684    MaybeVrf: MaybeVrf;685    MemberCount: MemberCount;686    MembershipProof: MembershipProof;687    MessageData: MessageData;688    MessageId: MessageId;689    MessageIngestionType: MessageIngestionType;690    MessageKey: MessageKey;691    MessageNonce: MessageNonce;692    MessageQueueChain: MessageQueueChain;693    MessagesDeliveryProofOf: MessagesDeliveryProofOf;694    MessagesProofOf: MessagesProofOf;695    MessagingStateSnapshot: MessagingStateSnapshot;696    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;697    MetadataAll: MetadataAll;698    MetadataLatest: MetadataLatest;699    MetadataV10: MetadataV10;700    MetadataV11: MetadataV11;701    MetadataV12: MetadataV12;702    MetadataV13: MetadataV13;703    MetadataV14: MetadataV14;704    MetadataV9: MetadataV9;705    MigrationStatusResult: MigrationStatusResult;706    MmrBatchProof: MmrBatchProof;707    MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;708    MmrError: MmrError;709    MmrLeafBatchProof: MmrLeafBatchProof;710    MmrLeafIndex: MmrLeafIndex;711    MmrLeafProof: MmrLeafProof;712    MmrNodeIndex: MmrNodeIndex;713    MmrProof: MmrProof;714    MmrRootHash: MmrRootHash;715    ModuleConstantMetadataV10: ModuleConstantMetadataV10;716    ModuleConstantMetadataV11: ModuleConstantMetadataV11;717    ModuleConstantMetadataV12: ModuleConstantMetadataV12;718    ModuleConstantMetadataV13: ModuleConstantMetadataV13;719    ModuleConstantMetadataV9: ModuleConstantMetadataV9;720    ModuleId: ModuleId;721    ModuleMetadataV10: ModuleMetadataV10;722    ModuleMetadataV11: ModuleMetadataV11;723    ModuleMetadataV12: ModuleMetadataV12;724    ModuleMetadataV13: ModuleMetadataV13;725    ModuleMetadataV9: ModuleMetadataV9;726    Moment: Moment;727    MomentOf: MomentOf;728    MoreAttestations: MoreAttestations;729    MortalEra: MortalEra;730    MultiAddress: MultiAddress;731    MultiAsset: MultiAsset;732    MultiAssetFilter: MultiAssetFilter;733    MultiAssetFilterV1: MultiAssetFilterV1;734    MultiAssetFilterV2: MultiAssetFilterV2;735    MultiAssets: MultiAssets;736    MultiAssetsV1: MultiAssetsV1;737    MultiAssetsV2: MultiAssetsV2;738    MultiAssetV0: MultiAssetV0;739    MultiAssetV1: MultiAssetV1;740    MultiAssetV2: MultiAssetV2;741    MultiDisputeStatementSet: MultiDisputeStatementSet;742    MultiLocation: MultiLocation;743    MultiLocationV0: MultiLocationV0;744    MultiLocationV1: MultiLocationV1;745    MultiLocationV2: MultiLocationV2;746    Multiplier: Multiplier;747    Multisig: Multisig;748    MultiSignature: MultiSignature;749    MultiSigner: MultiSigner;750    NetworkId: NetworkId;751    NetworkState: NetworkState;752    NetworkStatePeerset: NetworkStatePeerset;753    NetworkStatePeersetInfo: NetworkStatePeersetInfo;754    NewBidder: NewBidder;755    NextAuthority: NextAuthority;756    NextConfigDescriptor: NextConfigDescriptor;757    NextConfigDescriptorV1: NextConfigDescriptorV1;758    NodeRole: NodeRole;759    Nominations: Nominations;760    NominatorIndex: NominatorIndex;761    NominatorIndexCompact: NominatorIndexCompact;762    NotConnectedPeer: NotConnectedPeer;763    NpApiError: NpApiError;764    Null: Null;765    OccupiedCore: OccupiedCore;766    OccupiedCoreAssumption: OccupiedCoreAssumption;767    OffchainAccuracy: OffchainAccuracy;768    OffchainAccuracyCompact: OffchainAccuracyCompact;769    OffenceDetails: OffenceDetails;770    Offender: Offender;771    OldV1SessionInfo: OldV1SessionInfo;772    OpalRuntimeRuntime: OpalRuntimeRuntime;773    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;774    OpaqueCall: OpaqueCall;775    OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;776    OpaqueMetadata: OpaqueMetadata;777    OpaqueMultiaddr: OpaqueMultiaddr;778    OpaqueNetworkState: OpaqueNetworkState;779    OpaquePeerId: OpaquePeerId;780    OpaqueTimeSlot: OpaqueTimeSlot;781    OpenTip: OpenTip;782    OpenTipFinderTo225: OpenTipFinderTo225;783    OpenTipTip: OpenTipTip;784    OpenTipTo225: OpenTipTo225;785    OperatingMode: OperatingMode;786    OptionBool: OptionBool;787    Origin: Origin;788    OriginCaller: OriginCaller;789    OriginKindV0: OriginKindV0;790    OriginKindV1: OriginKindV1;791    OriginKindV2: OriginKindV2;792    OrmlTokensAccountData: OrmlTokensAccountData;793    OrmlTokensBalanceLock: OrmlTokensBalanceLock;794    OrmlTokensModuleCall: OrmlTokensModuleCall;795    OrmlTokensModuleError: OrmlTokensModuleError;796    OrmlTokensModuleEvent: OrmlTokensModuleEvent;797    OrmlTokensReserveData: OrmlTokensReserveData;798    OrmlVestingModuleCall: OrmlVestingModuleCall;799    OrmlVestingModuleError: OrmlVestingModuleError;800    OrmlVestingModuleEvent: OrmlVestingModuleEvent;801    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;802    OrmlXtokensModuleCall: OrmlXtokensModuleCall;803    OrmlXtokensModuleError: OrmlXtokensModuleError;804    OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;805    OutboundHrmpMessage: OutboundHrmpMessage;806    OutboundLaneData: OutboundLaneData;807    OutboundMessageFee: OutboundMessageFee;808    OutboundPayload: OutboundPayload;809    OutboundStatus: OutboundStatus;810    Outcome: Outcome;811    OverweightIndex: OverweightIndex;812    Owner: Owner;813    PageCounter: PageCounter;814    PageIndexData: PageIndexData;815    PalletAppPromotionCall: PalletAppPromotionCall;816    PalletAppPromotionError: PalletAppPromotionError;817    PalletAppPromotionEvent: PalletAppPromotionEvent;818    PalletBalancesAccountData: PalletBalancesAccountData;819    PalletBalancesBalanceLock: PalletBalancesBalanceLock;820    PalletBalancesCall: PalletBalancesCall;821    PalletBalancesError: PalletBalancesError;822    PalletBalancesEvent: PalletBalancesEvent;823    PalletBalancesReasons: PalletBalancesReasons;824    PalletBalancesReleases: PalletBalancesReleases;825    PalletBalancesReserveData: PalletBalancesReserveData;826    PalletCallMetadataLatest: PalletCallMetadataLatest;827    PalletCallMetadataV14: PalletCallMetadataV14;828    PalletCommonError: PalletCommonError;829    PalletCommonEvent: PalletCommonEvent;830    PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;831    PalletConfigurationCall: PalletConfigurationCall;832    PalletConfigurationError: PalletConfigurationError;833    PalletConstantMetadataLatest: PalletConstantMetadataLatest;834    PalletConstantMetadataV14: PalletConstantMetadataV14;835    PalletErrorMetadataLatest: PalletErrorMetadataLatest;836    PalletErrorMetadataV14: PalletErrorMetadataV14;837    PalletEthereumCall: PalletEthereumCall;838    PalletEthereumError: PalletEthereumError;839    PalletEthereumEvent: PalletEthereumEvent;840    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;841    PalletEventMetadataLatest: PalletEventMetadataLatest;842    PalletEventMetadataV14: PalletEventMetadataV14;843    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;844    PalletEvmCall: PalletEvmCall;845    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;846    PalletEvmContractHelpersError: PalletEvmContractHelpersError;847    PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;848    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;849    PalletEvmError: PalletEvmError;850    PalletEvmEvent: PalletEvmEvent;851    PalletEvmMigrationCall: PalletEvmMigrationCall;852    PalletEvmMigrationError: PalletEvmMigrationError;853    PalletEvmMigrationEvent: PalletEvmMigrationEvent;854    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;855    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;856    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;857    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;858    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;859    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;860    PalletFungibleError: PalletFungibleError;861    PalletId: PalletId;862    PalletInflationCall: PalletInflationCall;863    PalletMaintenanceCall: PalletMaintenanceCall;864    PalletMaintenanceError: PalletMaintenanceError;865    PalletMaintenanceEvent: PalletMaintenanceEvent;866    PalletMetadataLatest: PalletMetadataLatest;867    PalletMetadataV14: PalletMetadataV14;868    PalletNonfungibleError: PalletNonfungibleError;869    PalletNonfungibleItemData: PalletNonfungibleItemData;870    PalletRefungibleError: PalletRefungibleError;871    PalletRefungibleItemData: PalletRefungibleItemData;872    PalletRmrkCoreCall: PalletRmrkCoreCall;873    PalletRmrkCoreError: PalletRmrkCoreError;874    PalletRmrkCoreEvent: PalletRmrkCoreEvent;875    PalletRmrkEquipCall: PalletRmrkEquipCall;876    PalletRmrkEquipError: PalletRmrkEquipError;877    PalletRmrkEquipEvent: PalletRmrkEquipEvent;878    PalletsOrigin: PalletsOrigin;879    PalletStorageMetadataLatest: PalletStorageMetadataLatest;880    PalletStorageMetadataV14: PalletStorageMetadataV14;881    PalletStructureCall: PalletStructureCall;882    PalletStructureError: PalletStructureError;883    PalletStructureEvent: PalletStructureEvent;884    PalletSudoCall: PalletSudoCall;885    PalletSudoError: PalletSudoError;886    PalletSudoEvent: PalletSudoEvent;887    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;888    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;889    PalletTestUtilsCall: PalletTestUtilsCall;890    PalletTestUtilsError: PalletTestUtilsError;891    PalletTestUtilsEvent: PalletTestUtilsEvent;892    PalletTimestampCall: PalletTimestampCall;893    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;894    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;895    PalletTreasuryCall: PalletTreasuryCall;896    PalletTreasuryError: PalletTreasuryError;897    PalletTreasuryEvent: PalletTreasuryEvent;898    PalletTreasuryProposal: PalletTreasuryProposal;899    PalletUniqueCall: PalletUniqueCall;900    PalletUniqueError: PalletUniqueError;901    PalletVersion: PalletVersion;902    PalletXcmCall: PalletXcmCall;903    PalletXcmError: PalletXcmError;904    PalletXcmEvent: PalletXcmEvent;905    ParachainDispatchOrigin: ParachainDispatchOrigin;906    ParachainInherentData: ParachainInherentData;907    ParachainProposal: ParachainProposal;908    ParachainsInherentData: ParachainsInherentData;909    ParaGenesisArgs: ParaGenesisArgs;910    ParaId: ParaId;911    ParaInfo: ParaInfo;912    ParaLifecycle: ParaLifecycle;913    Parameter: Parameter;914    ParaPastCodeMeta: ParaPastCodeMeta;915    ParaScheduling: ParaScheduling;916    ParathreadClaim: ParathreadClaim;917    ParathreadClaimQueue: ParathreadClaimQueue;918    ParathreadEntry: ParathreadEntry;919    ParaValidatorIndex: ParaValidatorIndex;920    Pays: Pays;921    Peer: Peer;922    PeerEndpoint: PeerEndpoint;923    PeerEndpointAddr: PeerEndpointAddr;924    PeerInfo: PeerInfo;925    PeerPing: PeerPing;926    PendingChange: PendingChange;927    PendingPause: PendingPause;928    PendingResume: PendingResume;929    Perbill: Perbill;930    Percent: Percent;931    PerDispatchClassU32: PerDispatchClassU32;932    PerDispatchClassWeight: PerDispatchClassWeight;933    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;934    Period: Period;935    Permill: Permill;936    PermissionLatest: PermissionLatest;937    PermissionsV1: PermissionsV1;938    PermissionVersions: PermissionVersions;939    Perquintill: Perquintill;940    PersistedValidationData: PersistedValidationData;941    PerU16: PerU16;942    Phantom: Phantom;943    PhantomData: PhantomData;944    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;945    Phase: Phase;946    PhragmenScore: PhragmenScore;947    Points: Points;948    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;949    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;950    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;951    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;952    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;953    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;954    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;955    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;956    PortableType: PortableType;957    PortableTypeV14: PortableTypeV14;958    Precommits: Precommits;959    PrefabWasmModule: PrefabWasmModule;960    PrefixedStorageKey: PrefixedStorageKey;961    PreimageStatus: PreimageStatus;962    PreimageStatusAvailable: PreimageStatusAvailable;963    PreRuntime: PreRuntime;964    Prevotes: Prevotes;965    Priority: Priority;966    PriorLock: PriorLock;967    PropIndex: PropIndex;968    Proposal: Proposal;969    ProposalIndex: ProposalIndex;970    ProxyAnnouncement: ProxyAnnouncement;971    ProxyDefinition: ProxyDefinition;972    ProxyState: ProxyState;973    ProxyType: ProxyType;974    PvfCheckStatement: PvfCheckStatement;975    QueryId: QueryId;976    QueryStatus: QueryStatus;977    QueueConfigData: QueueConfigData;978    QueuedParathread: QueuedParathread;979    Randomness: Randomness;980    Raw: Raw;981    RawAuraPreDigest: RawAuraPreDigest;982    RawBabePreDigest: RawBabePreDigest;983    RawBabePreDigestCompat: RawBabePreDigestCompat;984    RawBabePreDigestPrimary: RawBabePreDigestPrimary;985    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;986    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;987    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;988    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;989    RawBabePreDigestTo159: RawBabePreDigestTo159;990    RawOrigin: RawOrigin;991    RawSolution: RawSolution;992    RawSolutionTo265: RawSolutionTo265;993    RawSolutionWith16: RawSolutionWith16;994    RawSolutionWith24: RawSolutionWith24;995    RawVRFOutput: RawVRFOutput;996    ReadProof: ReadProof;997    ReadySolution: ReadySolution;998    Reasons: Reasons;999    RecoveryConfig: RecoveryConfig;1000    RefCount: RefCount;1001    RefCountTo259: RefCountTo259;1002    ReferendumIndex: ReferendumIndex;1003    ReferendumInfo: ReferendumInfo;1004    ReferendumInfoFinished: ReferendumInfoFinished;1005    ReferendumInfoTo239: ReferendumInfoTo239;1006    ReferendumStatus: ReferendumStatus;1007    RegisteredParachainInfo: RegisteredParachainInfo;1008    RegistrarIndex: RegistrarIndex;1009    RegistrarInfo: RegistrarInfo;1010    Registration: Registration;1011    RegistrationJudgement: RegistrationJudgement;1012    RegistrationTo198: RegistrationTo198;1013    RelayBlockNumber: RelayBlockNumber;1014    RelayChainBlockNumber: RelayChainBlockNumber;1015    RelayChainHash: RelayChainHash;1016    RelayerId: RelayerId;1017    RelayHash: RelayHash;1018    Releases: Releases;1019    Remark: Remark;1020    Renouncing: Renouncing;1021    RentProjection: RentProjection;1022    ReplacementTimes: ReplacementTimes;1023    ReportedRoundStates: ReportedRoundStates;1024    Reporter: Reporter;1025    ReportIdOf: ReportIdOf;1026    ReserveData: ReserveData;1027    ReserveIdentifier: ReserveIdentifier;1028    Response: Response;1029    ResponseV0: ResponseV0;1030    ResponseV1: ResponseV1;1031    ResponseV2: ResponseV2;1032    ResponseV2Error: ResponseV2Error;1033    ResponseV2Result: ResponseV2Result;1034    Retriable: Retriable;1035    RewardDestination: RewardDestination;1036    RewardPoint: RewardPoint;1037    RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1038    RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1039    RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1040    RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1041    RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1042    RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1043    RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1044    RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1045    RmrkTraitsPartPartType: RmrkTraitsPartPartType;1046    RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1047    RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1048    RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1049    RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1050    RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1051    RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1052    RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1053    RmrkTraitsTheme: RmrkTraitsTheme;1054    RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1055    RoundSnapshot: RoundSnapshot;1056    RoundState: RoundState;1057    RpcMethods: RpcMethods;1058    RuntimeDbWeight: RuntimeDbWeight;1059    RuntimeDispatchInfo: RuntimeDispatchInfo;1060    RuntimeVersion: RuntimeVersion;1061    RuntimeVersionApi: RuntimeVersionApi;1062    RuntimeVersionPartial: RuntimeVersionPartial;1063    RuntimeVersionPre3: RuntimeVersionPre3;1064    RuntimeVersionPre4: RuntimeVersionPre4;1065    Schedule: Schedule;1066    Scheduled: Scheduled;1067    ScheduledCore: ScheduledCore;1068    ScheduledTo254: ScheduledTo254;1069    SchedulePeriod: SchedulePeriod;1070    SchedulePriority: SchedulePriority;1071    ScheduleTo212: ScheduleTo212;1072    ScheduleTo258: ScheduleTo258;1073    ScheduleTo264: ScheduleTo264;1074    Scheduling: Scheduling;1075    ScrapedOnChainVotes: ScrapedOnChainVotes;1076    Seal: Seal;1077    SealV0: SealV0;1078    SeatHolder: SeatHolder;1079    SeedOf: SeedOf;1080    ServiceQuality: ServiceQuality;1081    SessionIndex: SessionIndex;1082    SessionInfo: SessionInfo;1083    SessionInfoValidatorGroup: SessionInfoValidatorGroup;1084    SessionKeys1: SessionKeys1;1085    SessionKeys10: SessionKeys10;1086    SessionKeys10B: SessionKeys10B;1087    SessionKeys2: SessionKeys2;1088    SessionKeys3: SessionKeys3;1089    SessionKeys4: SessionKeys4;1090    SessionKeys5: SessionKeys5;1091    SessionKeys6: SessionKeys6;1092    SessionKeys6B: SessionKeys6B;1093    SessionKeys7: SessionKeys7;1094    SessionKeys7B: SessionKeys7B;1095    SessionKeys8: SessionKeys8;1096    SessionKeys8B: SessionKeys8B;1097    SessionKeys9: SessionKeys9;1098    SessionKeys9B: SessionKeys9B;1099    SetId: SetId;1100    SetIndex: SetIndex;1101    Si0Field: Si0Field;1102    Si0LookupTypeId: Si0LookupTypeId;1103    Si0Path: Si0Path;1104    Si0Type: Si0Type;1105    Si0TypeDef: Si0TypeDef;1106    Si0TypeDefArray: Si0TypeDefArray;1107    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1108    Si0TypeDefCompact: Si0TypeDefCompact;1109    Si0TypeDefComposite: Si0TypeDefComposite;1110    Si0TypeDefPhantom: Si0TypeDefPhantom;1111    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1112    Si0TypeDefSequence: Si0TypeDefSequence;1113    Si0TypeDefTuple: Si0TypeDefTuple;1114    Si0TypeDefVariant: Si0TypeDefVariant;1115    Si0TypeParameter: Si0TypeParameter;1116    Si0Variant: Si0Variant;1117    Si1Field: Si1Field;1118    Si1LookupTypeId: Si1LookupTypeId;1119    Si1Path: Si1Path;1120    Si1Type: Si1Type;1121    Si1TypeDef: Si1TypeDef;1122    Si1TypeDefArray: Si1TypeDefArray;1123    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1124    Si1TypeDefCompact: Si1TypeDefCompact;1125    Si1TypeDefComposite: Si1TypeDefComposite;1126    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1127    Si1TypeDefSequence: Si1TypeDefSequence;1128    Si1TypeDefTuple: Si1TypeDefTuple;1129    Si1TypeDefVariant: Si1TypeDefVariant;1130    Si1TypeParameter: Si1TypeParameter;1131    Si1Variant: Si1Variant;1132    SiField: SiField;1133    Signature: Signature;1134    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1135    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1136    SignedBlock: SignedBlock;1137    SignedBlockWithJustification: SignedBlockWithJustification;1138    SignedBlockWithJustifications: SignedBlockWithJustifications;1139    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1140    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1141    SignedSubmission: SignedSubmission;1142    SignedSubmissionOf: SignedSubmissionOf;1143    SignedSubmissionTo276: SignedSubmissionTo276;1144    SignerPayload: SignerPayload;1145    SigningContext: SigningContext;1146    SiLookupTypeId: SiLookupTypeId;1147    SiPath: SiPath;1148    SiType: SiType;1149    SiTypeDef: SiTypeDef;1150    SiTypeDefArray: SiTypeDefArray;1151    SiTypeDefBitSequence: SiTypeDefBitSequence;1152    SiTypeDefCompact: SiTypeDefCompact;1153    SiTypeDefComposite: SiTypeDefComposite;1154    SiTypeDefPrimitive: SiTypeDefPrimitive;1155    SiTypeDefSequence: SiTypeDefSequence;1156    SiTypeDefTuple: SiTypeDefTuple;1157    SiTypeDefVariant: SiTypeDefVariant;1158    SiTypeParameter: SiTypeParameter;1159    SiVariant: SiVariant;1160    SlashingSpans: SlashingSpans;1161    SlashingSpansTo204: SlashingSpansTo204;1162    SlashJournalEntry: SlashJournalEntry;1163    Slot: Slot;1164    SlotDuration: SlotDuration;1165    SlotNumber: SlotNumber;1166    SlotRange: SlotRange;1167    SlotRange10: SlotRange10;1168    SocietyJudgement: SocietyJudgement;1169    SocietyVote: SocietyVote;1170    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1171    SolutionSupport: SolutionSupport;1172    SolutionSupports: SolutionSupports;1173    SpanIndex: SpanIndex;1174    SpanRecord: SpanRecord;1175    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1176    SpCoreEd25519Signature: SpCoreEd25519Signature;1177    SpCoreSr25519Signature: SpCoreSr25519Signature;1178    SpecVersion: SpecVersion;1179    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1180    SpRuntimeDigest: SpRuntimeDigest;1181    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1182    SpRuntimeDispatchError: SpRuntimeDispatchError;1183    SpRuntimeModuleError: SpRuntimeModuleError;1184    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1185    SpRuntimeTokenError: SpRuntimeTokenError;1186    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1187    SpTrieStorageProof: SpTrieStorageProof;1188    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1189    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1190    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1191    Sr25519Signature: Sr25519Signature;1192    StakingLedger: StakingLedger;1193    StakingLedgerTo223: StakingLedgerTo223;1194    StakingLedgerTo240: StakingLedgerTo240;1195    Statement: Statement;1196    StatementKind: StatementKind;1197    StorageChangeSet: StorageChangeSet;1198    StorageData: StorageData;1199    StorageDeposit: StorageDeposit;1200    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1201    StorageEntryMetadataV10: StorageEntryMetadataV10;1202    StorageEntryMetadataV11: StorageEntryMetadataV11;1203    StorageEntryMetadataV12: StorageEntryMetadataV12;1204    StorageEntryMetadataV13: StorageEntryMetadataV13;1205    StorageEntryMetadataV14: StorageEntryMetadataV14;1206    StorageEntryMetadataV9: StorageEntryMetadataV9;1207    StorageEntryModifierLatest: StorageEntryModifierLatest;1208    StorageEntryModifierV10: StorageEntryModifierV10;1209    StorageEntryModifierV11: StorageEntryModifierV11;1210    StorageEntryModifierV12: StorageEntryModifierV12;1211    StorageEntryModifierV13: StorageEntryModifierV13;1212    StorageEntryModifierV14: StorageEntryModifierV14;1213    StorageEntryModifierV9: StorageEntryModifierV9;1214    StorageEntryTypeLatest: StorageEntryTypeLatest;1215    StorageEntryTypeV10: StorageEntryTypeV10;1216    StorageEntryTypeV11: StorageEntryTypeV11;1217    StorageEntryTypeV12: StorageEntryTypeV12;1218    StorageEntryTypeV13: StorageEntryTypeV13;1219    StorageEntryTypeV14: StorageEntryTypeV14;1220    StorageEntryTypeV9: StorageEntryTypeV9;1221    StorageHasher: StorageHasher;1222    StorageHasherV10: StorageHasherV10;1223    StorageHasherV11: StorageHasherV11;1224    StorageHasherV12: StorageHasherV12;1225    StorageHasherV13: StorageHasherV13;1226    StorageHasherV14: StorageHasherV14;1227    StorageHasherV9: StorageHasherV9;1228    StorageInfo: StorageInfo;1229    StorageKey: StorageKey;1230    StorageKind: StorageKind;1231    StorageMetadataV10: StorageMetadataV10;1232    StorageMetadataV11: StorageMetadataV11;1233    StorageMetadataV12: StorageMetadataV12;1234    StorageMetadataV13: StorageMetadataV13;1235    StorageMetadataV9: StorageMetadataV9;1236    StorageProof: StorageProof;1237    StoredPendingChange: StoredPendingChange;1238    StoredState: StoredState;1239    StrikeCount: StrikeCount;1240    SubId: SubId;1241    SubmissionIndicesOf: SubmissionIndicesOf;1242    Supports: Supports;1243    SyncState: SyncState;1244    SystemInherentData: SystemInherentData;1245    SystemOrigin: SystemOrigin;1246    Tally: Tally;1247    TaskAddress: TaskAddress;1248    TAssetBalance: TAssetBalance;1249    TAssetDepositBalance: TAssetDepositBalance;1250    Text: Text;1251    Timepoint: Timepoint;1252    TokenError: TokenError;1253    TombstoneContractInfo: TombstoneContractInfo;1254    TraceBlockResponse: TraceBlockResponse;1255    TraceError: TraceError;1256    TransactionalError: TransactionalError;1257    TransactionInfo: TransactionInfo;1258    TransactionLongevity: TransactionLongevity;1259    TransactionPriority: TransactionPriority;1260    TransactionSource: TransactionSource;1261    TransactionStorageProof: TransactionStorageProof;1262    TransactionTag: TransactionTag;1263    TransactionV0: TransactionV0;1264    TransactionV1: TransactionV1;1265    TransactionV2: TransactionV2;1266    TransactionValidity: TransactionValidity;1267    TransactionValidityError: TransactionValidityError;1268    TransientValidationData: TransientValidationData;1269    TreasuryProposal: TreasuryProposal;1270    TrieId: TrieId;1271    TrieIndex: TrieIndex;1272    Type: Type;1273    u128: u128;1274    U128: U128;1275    u16: u16;1276    U16: U16;1277    u256: u256;1278    U256: U256;1279    u32: u32;1280    U32: U32;1281    U32F32: U32F32;1282    u64: u64;1283    U64: U64;1284    u8: u8;1285    U8: U8;1286    UnappliedSlash: UnappliedSlash;1287    UnappliedSlashOther: UnappliedSlashOther;1288    UncleEntryItem: UncleEntryItem;1289    UnknownTransaction: UnknownTransaction;1290    UnlockChunk: UnlockChunk;1291    UnrewardedRelayer: UnrewardedRelayer;1292    UnrewardedRelayersState: UnrewardedRelayersState;1293    UpDataStructsAccessMode: UpDataStructsAccessMode;1294    UpDataStructsCollection: UpDataStructsCollection;1295    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1296    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1297    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1298    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1299    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1300    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1301    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1302    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1303    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1304    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1305    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1306    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1307    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1308    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1309    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1310    UpDataStructsProperties: UpDataStructsProperties;1311    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1312    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1313    UpDataStructsProperty: UpDataStructsProperty;1314    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1315    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1316    UpDataStructsPropertyScope: UpDataStructsPropertyScope;1317    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1318    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1319    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1320    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1321    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1322    UpDataStructsTokenChild: UpDataStructsTokenChild;1323    UpDataStructsTokenData: UpDataStructsTokenData;1324    UpgradeGoAhead: UpgradeGoAhead;1325    UpgradeRestriction: UpgradeRestriction;1326    UpwardMessage: UpwardMessage;1327    usize: usize;1328    USize: USize;1329    ValidationCode: ValidationCode;1330    ValidationCodeHash: ValidationCodeHash;1331    ValidationData: ValidationData;1332    ValidationDataType: ValidationDataType;1333    ValidationFunctionParams: ValidationFunctionParams;1334    ValidatorCount: ValidatorCount;1335    ValidatorId: ValidatorId;1336    ValidatorIdOf: ValidatorIdOf;1337    ValidatorIndex: ValidatorIndex;1338    ValidatorIndexCompact: ValidatorIndexCompact;1339    ValidatorPrefs: ValidatorPrefs;1340    ValidatorPrefsTo145: ValidatorPrefsTo145;1341    ValidatorPrefsTo196: ValidatorPrefsTo196;1342    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1343    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1344    ValidatorSet: ValidatorSet;1345    ValidatorSetId: ValidatorSetId;1346    ValidatorSignature: ValidatorSignature;1347    ValidDisputeStatementKind: ValidDisputeStatementKind;1348    ValidityAttestation: ValidityAttestation;1349    ValidTransaction: ValidTransaction;1350    VecInboundHrmpMessage: VecInboundHrmpMessage;1351    VersionedMultiAsset: VersionedMultiAsset;1352    VersionedMultiAssets: VersionedMultiAssets;1353    VersionedMultiLocation: VersionedMultiLocation;1354    VersionedResponse: VersionedResponse;1355    VersionedXcm: VersionedXcm;1356    VersionMigrationStage: VersionMigrationStage;1357    VestingInfo: VestingInfo;1358    VestingSchedule: VestingSchedule;1359    Vote: Vote;1360    VoteIndex: VoteIndex;1361    Voter: Voter;1362    VoterInfo: VoterInfo;1363    Votes: Votes;1364    VotesTo230: VotesTo230;1365    VoteThreshold: VoteThreshold;1366    VoteWeight: VoteWeight;1367    Voting: Voting;1368    VotingDelegating: VotingDelegating;1369    VotingDirect: VotingDirect;1370    VotingDirectVote: VotingDirectVote;1371    VouchingStatus: VouchingStatus;1372    VrfData: VrfData;1373    VrfOutput: VrfOutput;1374    VrfProof: VrfProof;1375    Weight: Weight;1376    WeightLimitV2: WeightLimitV2;1377    WeightMultiplier: WeightMultiplier;1378    WeightPerClass: WeightPerClass;1379    WeightToFeeCoefficient: WeightToFeeCoefficient;1380    WeightV1: WeightV1;1381    WeightV2: WeightV2;1382    WildFungibility: WildFungibility;1383    WildFungibilityV0: WildFungibilityV0;1384    WildFungibilityV1: WildFungibilityV1;1385    WildFungibilityV2: WildFungibilityV2;1386    WildMultiAsset: WildMultiAsset;1387    WildMultiAssetV1: WildMultiAssetV1;1388    WildMultiAssetV2: WildMultiAssetV2;1389    WinnersData: WinnersData;1390    WinnersData10: WinnersData10;1391    WinnersDataTuple: WinnersDataTuple;1392    WinnersDataTuple10: WinnersDataTuple10;1393    WinningData: WinningData;1394    WinningData10: WinningData10;1395    WinningDataEntry: WinningDataEntry;1396    WithdrawReasons: WithdrawReasons;1397    Xcm: Xcm;1398    XcmAssetId: XcmAssetId;1399    XcmDoubleEncoded: XcmDoubleEncoded;1400    XcmError: XcmError;1401    XcmErrorV0: XcmErrorV0;1402    XcmErrorV1: XcmErrorV1;1403    XcmErrorV2: XcmErrorV2;1404    XcmOrder: XcmOrder;1405    XcmOrderV0: XcmOrderV0;1406    XcmOrderV1: XcmOrderV1;1407    XcmOrderV2: XcmOrderV2;1408    XcmOrigin: XcmOrigin;1409    XcmOriginKind: XcmOriginKind;1410    XcmpMessageFormat: XcmpMessageFormat;1411    XcmV0: XcmV0;1412    XcmV0Junction: XcmV0Junction;1413    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1414    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1415    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1416    XcmV0MultiAsset: XcmV0MultiAsset;1417    XcmV0MultiLocation: XcmV0MultiLocation;1418    XcmV0Order: XcmV0Order;1419    XcmV0OriginKind: XcmV0OriginKind;1420    XcmV0Response: XcmV0Response;1421    XcmV0Xcm: XcmV0Xcm;1422    XcmV1: XcmV1;1423    XcmV1Junction: XcmV1Junction;1424    XcmV1MultiAsset: XcmV1MultiAsset;1425    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1426    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1427    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1428    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1429    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1430    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1431    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1432    XcmV1MultiLocation: XcmV1MultiLocation;1433    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1434    XcmV1Order: XcmV1Order;1435    XcmV1Response: XcmV1Response;1436    XcmV1Xcm: XcmV1Xcm;1437    XcmV2: XcmV2;1438    XcmV2Instruction: XcmV2Instruction;1439    XcmV2Response: XcmV2Response;1440    XcmV2TraitsError: XcmV2TraitsError;1441    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1442    XcmV2WeightLimit: XcmV2WeightLimit;1443    XcmV2Xcm: XcmV2Xcm;1444    XcmVersion: XcmVersion;1445    XcmVersionedMultiAsset: XcmVersionedMultiAsset;1446    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1447    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1448    XcmVersionedXcm: XcmVersionedXcm;1449  } // InterfaceTypes1450} // declare module
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -153,14 +153,6 @@
   readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
 }
 
-/** @name CumulusPalletXcmOrigin */
-export interface CumulusPalletXcmOrigin extends Enum {
-  readonly isRelay: boolean;
-  readonly isSiblingParachain: boolean;
-  readonly asSiblingParachain: u32;
-  readonly type: 'Relay' | 'SiblingParachain';
-}
-
 /** @name CumulusPalletXcmpQueueCall */
 export interface CumulusPalletXcmpQueueCall extends Enum {
   readonly isServiceOverweight: boolean;
@@ -544,15 +536,6 @@
   readonly mandatory: FrameSystemLimitsWeightsPerClass;
 }
 
-/** @name FrameSupportDispatchRawOrigin */
-export interface FrameSupportDispatchRawOrigin extends Enum {
-  readonly isRoot: boolean;
-  readonly isSigned: boolean;
-  readonly asSigned: AccountId32;
-  readonly isNone: boolean;
-  readonly type: 'Root' | 'Signed' | 'None';
-}
-
 /** @name FrameSupportPalletId */
 export interface FrameSupportPalletId extends U8aFixed {}
 
@@ -710,21 +693,6 @@
   readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
 }
 
-/** @name OpalRuntimeOriginCaller */
-export interface OpalRuntimeOriginCaller extends Enum {
-  readonly isSystem: boolean;
-  readonly asSystem: FrameSupportDispatchRawOrigin;
-  readonly isVoid: boolean;
-  readonly asVoid: SpCoreVoid;
-  readonly isPolkadotXcm: boolean;
-  readonly asPolkadotXcm: PalletXcmOrigin;
-  readonly isCumulusXcm: boolean;
-  readonly asCumulusXcm: CumulusPalletXcmOrigin;
-  readonly isEthereum: boolean;
-  readonly asEthereum: PalletEthereumRawOrigin;
-  readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
-}
-
 /** @name OpalRuntimeRuntime */
 export interface OpalRuntimeRuntime extends Null {}
 
@@ -1345,7 +1313,17 @@
   readonly asSetXcmAllowedLocations: {
     readonly locations: Option<Vec<XcmV1MultiLocation>>;
   } & Struct;
-  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
+  readonly isSetAppPromotionConfigurationOverride: boolean;
+  readonly asSetAppPromotionConfigurationOverride: {
+    readonly configuration: PalletConfigurationAppPromotionConfiguration;
+  } & Struct;
+  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';
+}
+
+/** @name PalletConfigurationError */
+export interface PalletConfigurationError extends Enum {
+  readonly isInconsistentConfiguration: boolean;
+  readonly type: 'InconsistentConfiguration';
 }
 
 /** @name PalletEthereumCall */
@@ -1378,13 +1356,6 @@
 
 /** @name PalletEthereumFakeTransactionFinalizer */
 export interface PalletEthereumFakeTransactionFinalizer extends Null {}
-
-/** @name PalletEthereumRawOrigin */
-export interface PalletEthereumRawOrigin extends Enum {
-  readonly isEthereumTransaction: boolean;
-  readonly asEthereumTransaction: H160;
-  readonly type: 'EthereumTransaction';
-}
 
 /** @name PalletEvmAccountBasicCrossAccountIdRepr */
 export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
@@ -2049,17 +2020,12 @@
     readonly value: u32;
   } & Struct;
   readonly isIncTestValue: boolean;
-  readonly isSelfCancelingInc: boolean;
-  readonly asSelfCancelingInc: {
-    readonly id: U8aFixed;
-    readonly maxTestValue: u32;
-  } & Struct;
   readonly isJustTakeFee: boolean;
   readonly isBatchAll: boolean;
   readonly asBatchAll: {
     readonly calls: Vec<Call>;
   } & Struct;
-  readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
+  readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
 }
 
 /** @name PalletTestUtilsError */
@@ -2363,131 +2329,6 @@
   readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
 }
 
-/** @name PalletUniqueSchedulerV2BlockAgenda */
-export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
-  readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
-  readonly freePlaces: u32;
-}
-
-/** @name PalletUniqueSchedulerV2Call */
-export interface PalletUniqueSchedulerV2Call extends Enum {
-  readonly isSchedule: boolean;
-  readonly asSchedule: {
-    readonly when: u32;
-    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-    readonly priority: Option<u8>;
-    readonly call: Call;
-  } & Struct;
-  readonly isCancel: boolean;
-  readonly asCancel: {
-    readonly when: u32;
-    readonly index: u32;
-  } & Struct;
-  readonly isScheduleNamed: boolean;
-  readonly asScheduleNamed: {
-    readonly id: U8aFixed;
-    readonly when: u32;
-    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-    readonly priority: Option<u8>;
-    readonly call: Call;
-  } & Struct;
-  readonly isCancelNamed: boolean;
-  readonly asCancelNamed: {
-    readonly id: U8aFixed;
-  } & Struct;
-  readonly isScheduleAfter: boolean;
-  readonly asScheduleAfter: {
-    readonly after: u32;
-    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-    readonly priority: Option<u8>;
-    readonly call: Call;
-  } & Struct;
-  readonly isScheduleNamedAfter: boolean;
-  readonly asScheduleNamedAfter: {
-    readonly id: U8aFixed;
-    readonly after: u32;
-    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-    readonly priority: Option<u8>;
-    readonly call: Call;
-  } & Struct;
-  readonly isChangeNamedPriority: boolean;
-  readonly asChangeNamedPriority: {
-    readonly id: U8aFixed;
-    readonly priority: u8;
-  } & Struct;
-  readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
-}
-
-/** @name PalletUniqueSchedulerV2Error */
-export interface PalletUniqueSchedulerV2Error extends Enum {
-  readonly isFailedToSchedule: boolean;
-  readonly isAgendaIsExhausted: boolean;
-  readonly isScheduledCallCorrupted: boolean;
-  readonly isPreimageNotFound: boolean;
-  readonly isTooBigScheduledCall: boolean;
-  readonly isNotFound: boolean;
-  readonly isTargetBlockNumberInPast: boolean;
-  readonly isNamed: boolean;
-  readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
-}
-
-/** @name PalletUniqueSchedulerV2Event */
-export interface PalletUniqueSchedulerV2Event extends Enum {
-  readonly isScheduled: boolean;
-  readonly asScheduled: {
-    readonly when: u32;
-    readonly index: u32;
-  } & Struct;
-  readonly isCanceled: boolean;
-  readonly asCanceled: {
-    readonly when: u32;
-    readonly index: u32;
-  } & Struct;
-  readonly isDispatched: boolean;
-  readonly asDispatched: {
-    readonly task: ITuple<[u32, u32]>;
-    readonly id: Option<U8aFixed>;
-    readonly result: Result<Null, SpRuntimeDispatchError>;
-  } & Struct;
-  readonly isPriorityChanged: boolean;
-  readonly asPriorityChanged: {
-    readonly task: ITuple<[u32, u32]>;
-    readonly priority: u8;
-  } & Struct;
-  readonly isCallUnavailable: boolean;
-  readonly asCallUnavailable: {
-    readonly task: ITuple<[u32, u32]>;
-    readonly id: Option<U8aFixed>;
-  } & Struct;
-  readonly isPermanentlyOverweight: boolean;
-  readonly asPermanentlyOverweight: {
-    readonly task: ITuple<[u32, u32]>;
-    readonly id: Option<U8aFixed>;
-  } & Struct;
-  readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
-}
-
-/** @name PalletUniqueSchedulerV2Scheduled */
-export interface PalletUniqueSchedulerV2Scheduled extends Struct {
-  readonly maybeId: Option<U8aFixed>;
-  readonly priority: u8;
-  readonly call: PalletUniqueSchedulerV2ScheduledCall;
-  readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-  readonly origin: OpalRuntimeOriginCaller;
-}
-
-/** @name PalletUniqueSchedulerV2ScheduledCall */
-export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
-  readonly isInline: boolean;
-  readonly asInline: Bytes;
-  readonly isPreimageLookup: boolean;
-  readonly asPreimageLookup: {
-    readonly hash_: H256;
-    readonly unboundedLen: u32;
-  } & Struct;
-  readonly type: 'Inline' | 'PreimageLookup';
-}
-
 /** @name PalletXcmCall */
 export interface PalletXcmCall extends Enum {
   readonly isSend: boolean;
@@ -2607,15 +2448,6 @@
   readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
 }
 
-/** @name PalletXcmOrigin */
-export interface PalletXcmOrigin extends Enum {
-  readonly isXcm: boolean;
-  readonly asXcm: XcmV1MultiLocation;
-  readonly isResponse: boolean;
-  readonly asResponse: XcmV1MultiLocation;
-  readonly type: 'Xcm' | 'Response';
-}
-
 /** @name PhantomTypeUpDataStructs */
 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
 
@@ -2835,9 +2667,6 @@
 
 /** @name SpCoreSr25519Signature */
 export interface SpCoreSr25519Signature extends U8aFixed {}
-
-/** @name SpCoreVoid */
-export interface SpCoreVoid extends Null {}
 
 /** @name SpRuntimeArithmeticError */
 export interface SpRuntimeArithmeticError extends Enum {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -989,39 +989,7 @@
     }
   },
   /**
-   * Lookup89: pallet_unique_scheduler_v2::pallet::Event<T>
-   **/
-  PalletUniqueSchedulerV2Event: {
-    _enum: {
-      Scheduled: {
-        when: 'u32',
-        index: 'u32',
-      },
-      Canceled: {
-        when: 'u32',
-        index: 'u32',
-      },
-      Dispatched: {
-        task: '(u32,u32)',
-        id: 'Option<[u8;32]>',
-        result: 'Result<Null, SpRuntimeDispatchError>',
-      },
-      PriorityChanged: {
-        task: '(u32,u32)',
-        priority: 'u8',
-      },
-      CallUnavailable: {
-        task: '(u32,u32)',
-        id: 'Option<[u8;32]>',
-      },
-      PermanentlyOverweight: {
-        task: '(u32,u32)',
-        id: 'Option<[u8;32]>'
-      }
-    }
-  },
-  /**
-   * Lookup92: pallet_common::pallet::Event<T>
+   * Lookup89: pallet_common::pallet::Event<T>
    **/
   PalletCommonEvent: {
     _enum: {
@@ -1050,7 +1018,7 @@
     }
   },
   /**
-   * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+   * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
    **/
   PalletEvmAccountBasicCrossAccountIdRepr: {
     _enum: {
@@ -1059,7 +1027,7 @@
     }
   },
   /**
-   * Lookup99: pallet_structure::pallet::Event<T>
+   * Lookup96: pallet_structure::pallet::Event<T>
    **/
   PalletStructureEvent: {
     _enum: {
@@ -1067,7 +1035,7 @@
     }
   },
   /**
-   * Lookup100: pallet_rmrk_core::pallet::Event<T>
+   * Lookup97: pallet_rmrk_core::pallet::Event<T>
    **/
   PalletRmrkCoreEvent: {
     _enum: {
@@ -1144,7 +1112,7 @@
     }
   },
   /**
-   * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+   * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
    **/
   RmrkTraitsNftAccountIdOrCollectionNftTuple: {
     _enum: {
@@ -1153,7 +1121,7 @@
     }
   },
   /**
-   * Lookup105: pallet_rmrk_equip::pallet::Event<T>
+   * Lookup102: pallet_rmrk_equip::pallet::Event<T>
    **/
   PalletRmrkEquipEvent: {
     _enum: {
@@ -1168,7 +1136,7 @@
     }
   },
   /**
-   * Lookup106: pallet_app_promotion::pallet::Event<T>
+   * Lookup103: pallet_app_promotion::pallet::Event<T>
    **/
   PalletAppPromotionEvent: {
     _enum: {
@@ -1179,7 +1147,7 @@
     }
   },
   /**
-   * Lookup107: pallet_foreign_assets::module::Event<T>
+   * Lookup104: pallet_foreign_assets::module::Event<T>
    **/
   PalletForeignAssetsModuleEvent: {
     _enum: {
@@ -1204,7 +1172,7 @@
     }
   },
   /**
-   * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>
+   * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>
    **/
   PalletForeignAssetsModuleAssetMetadata: {
     name: 'Bytes',
@@ -1213,7 +1181,7 @@
     minimalBalance: 'u128'
   },
   /**
-   * Lookup109: pallet_evm::pallet::Event<T>
+   * Lookup106: pallet_evm::pallet::Event<T>
    **/
   PalletEvmEvent: {
     _enum: {
@@ -1235,7 +1203,7 @@
     }
   },
   /**
-   * Lookup110: ethereum::log::Log
+   * Lookup107: ethereum::log::Log
    **/
   EthereumLog: {
     address: 'H160',
@@ -1243,7 +1211,7 @@
     data: 'Bytes'
   },
   /**
-   * Lookup112: pallet_ethereum::pallet::Event
+   * Lookup109: pallet_ethereum::pallet::Event
    **/
   PalletEthereumEvent: {
     _enum: {
@@ -1256,7 +1224,7 @@
     }
   },
   /**
-   * Lookup113: evm_core::error::ExitReason
+   * Lookup110: evm_core::error::ExitReason
    **/
   EvmCoreErrorExitReason: {
     _enum: {
@@ -1267,13 +1235,13 @@
     }
   },
   /**
-   * Lookup114: evm_core::error::ExitSucceed
+   * Lookup111: evm_core::error::ExitSucceed
    **/
   EvmCoreErrorExitSucceed: {
     _enum: ['Stopped', 'Returned', 'Suicided']
   },
   /**
-   * Lookup115: evm_core::error::ExitError
+   * Lookup112: evm_core::error::ExitError
    **/
   EvmCoreErrorExitError: {
     _enum: {
@@ -1295,13 +1263,13 @@
     }
   },
   /**
-   * Lookup118: evm_core::error::ExitRevert
+   * Lookup115: evm_core::error::ExitRevert
    **/
   EvmCoreErrorExitRevert: {
     _enum: ['Reverted']
   },
   /**
-   * Lookup119: evm_core::error::ExitFatal
+   * Lookup116: evm_core::error::ExitFatal
    **/
   EvmCoreErrorExitFatal: {
     _enum: {
@@ -1312,7 +1280,7 @@
     }
   },
   /**
-   * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>
+   * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>
    **/
   PalletEvmContractHelpersEvent: {
     _enum: {
@@ -1322,25 +1290,25 @@
     }
   },
   /**
-   * Lookup121: pallet_evm_migration::pallet::Event<T>
+   * Lookup118: pallet_evm_migration::pallet::Event<T>
    **/
   PalletEvmMigrationEvent: {
     _enum: ['TestEvent']
   },
   /**
-   * Lookup122: pallet_maintenance::pallet::Event<T>
+   * Lookup119: pallet_maintenance::pallet::Event<T>
    **/
   PalletMaintenanceEvent: {
     _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
   },
   /**
-   * Lookup123: pallet_test_utils::pallet::Event<T>
+   * Lookup120: pallet_test_utils::pallet::Event<T>
    **/
   PalletTestUtilsEvent: {
     _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
   },
   /**
-   * Lookup124: frame_system::Phase
+   * Lookup121: frame_system::Phase
    **/
   FrameSystemPhase: {
     _enum: {
@@ -1350,14 +1318,14 @@
     }
   },
   /**
-   * Lookup126: frame_system::LastRuntimeUpgradeInfo
+   * Lookup124: frame_system::LastRuntimeUpgradeInfo
    **/
   FrameSystemLastRuntimeUpgradeInfo: {
     specVersion: 'Compact<u32>',
     specName: 'Text'
   },
   /**
-   * Lookup127: frame_system::pallet::Call<T>
+   * Lookup125: frame_system::pallet::Call<T>
    **/
   FrameSystemCall: {
     _enum: {
@@ -1395,7 +1363,7 @@
     }
   },
   /**
-   * Lookup132: frame_system::limits::BlockWeights
+   * Lookup130: frame_system::limits::BlockWeights
    **/
   FrameSystemLimitsBlockWeights: {
     baseBlock: 'SpWeightsWeightV2Weight',
@@ -1403,7 +1371,7 @@
     perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
   },
   /**
-   * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
+   * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
    **/
   FrameSupportDispatchPerDispatchClassWeightsPerClass: {
     normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1411,7 +1379,7 @@
     mandatory: 'FrameSystemLimitsWeightsPerClass'
   },
   /**
-   * Lookup134: frame_system::limits::WeightsPerClass
+   * Lookup132: frame_system::limits::WeightsPerClass
    **/
   FrameSystemLimitsWeightsPerClass: {
     baseExtrinsic: 'SpWeightsWeightV2Weight',
@@ -1420,13 +1388,13 @@
     reserved: 'Option<SpWeightsWeightV2Weight>'
   },
   /**
-   * Lookup136: frame_system::limits::BlockLength
+   * Lookup134: frame_system::limits::BlockLength
    **/
   FrameSystemLimitsBlockLength: {
     max: 'FrameSupportDispatchPerDispatchClassU32'
   },
   /**
-   * Lookup137: frame_support::dispatch::PerDispatchClass<T>
+   * Lookup135: frame_support::dispatch::PerDispatchClass<T>
    **/
   FrameSupportDispatchPerDispatchClassU32: {
     normal: 'u32',
@@ -1434,14 +1402,14 @@
     mandatory: 'u32'
   },
   /**
-   * Lookup138: sp_weights::RuntimeDbWeight
+   * Lookup136: sp_weights::RuntimeDbWeight
    **/
   SpWeightsRuntimeDbWeight: {
     read: 'u64',
     write: 'u64'
   },
   /**
-   * Lookup139: sp_version::RuntimeVersion
+   * Lookup137: sp_version::RuntimeVersion
    **/
   SpVersionRuntimeVersion: {
     specName: 'Text',
@@ -1454,13 +1422,13 @@
     stateVersion: 'u8'
   },
   /**
-   * Lookup144: frame_system::pallet::Error<T>
+   * Lookup142: frame_system::pallet::Error<T>
    **/
   FrameSystemError: {
     _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
   },
   /**
-   * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+   * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
    **/
   PolkadotPrimitivesV2PersistedValidationData: {
     parentHead: 'Bytes',
@@ -1469,19 +1437,19 @@
     maxPovSize: 'u32'
   },
   /**
-   * Lookup148: polkadot_primitives::v2::UpgradeRestriction
+   * Lookup146: polkadot_primitives::v2::UpgradeRestriction
    **/
   PolkadotPrimitivesV2UpgradeRestriction: {
     _enum: ['Present']
   },
   /**
-   * Lookup149: sp_trie::storage_proof::StorageProof
+   * Lookup147: sp_trie::storage_proof::StorageProof
    **/
   SpTrieStorageProof: {
     trieNodes: 'BTreeSet<Bytes>'
   },
   /**
-   * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+   * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
    **/
   CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
     dmqMqcHead: 'H256',
@@ -1490,7 +1458,7 @@
     egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
   },
   /**
-   * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel
+   * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel
    **/
   PolkadotPrimitivesV2AbridgedHrmpChannel: {
     maxCapacity: 'u32',
@@ -1501,7 +1469,7 @@
     mqcHead: 'Option<H256>'
   },
   /**
-   * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration
+   * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration
    **/
   PolkadotPrimitivesV2AbridgedHostConfiguration: {
     maxCodeSize: 'u32',
@@ -1515,14 +1483,14 @@
     validationUpgradeDelay: 'u32'
   },
   /**
-   * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+   * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
    **/
   PolkadotCorePrimitivesOutboundHrmpMessage: {
     recipient: 'u32',
     data: 'Bytes'
   },
   /**
-   * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>
+   * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>
    **/
   CumulusPalletParachainSystemCall: {
     _enum: {
@@ -1541,7 +1509,7 @@
     }
   },
   /**
-   * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData
+   * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData
    **/
   CumulusPrimitivesParachainInherentParachainInherentData: {
     validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1550,27 +1518,27 @@
     horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
   },
   /**
-   * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+   * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
    **/
   PolkadotCorePrimitivesInboundDownwardMessage: {
     sentAt: 'u32',
     msg: 'Bytes'
   },
   /**
-   * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+   * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
    **/
   PolkadotCorePrimitivesInboundHrmpMessage: {
     sentAt: 'u32',
     data: 'Bytes'
   },
   /**
-   * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>
+   * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>
    **/
   CumulusPalletParachainSystemError: {
     _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
   },
   /**
-   * Lookup173: pallet_balances::BalanceLock<Balance>
+   * Lookup171: pallet_balances::BalanceLock<Balance>
    **/
   PalletBalancesBalanceLock: {
     id: '[u8;8]',
@@ -1578,26 +1546,26 @@
     reasons: 'PalletBalancesReasons'
   },
   /**
-   * Lookup174: pallet_balances::Reasons
+   * Lookup172: pallet_balances::Reasons
    **/
   PalletBalancesReasons: {
     _enum: ['Fee', 'Misc', 'All']
   },
   /**
-   * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+   * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>
    **/
   PalletBalancesReserveData: {
     id: '[u8;16]',
     amount: 'u128'
   },
   /**
-   * Lookup179: pallet_balances::Releases
+   * Lookup177: pallet_balances::Releases
    **/
   PalletBalancesReleases: {
     _enum: ['V1_0_0', 'V2_0_0']
   },
   /**
-   * Lookup180: pallet_balances::pallet::Call<T, I>
+   * Lookup178: pallet_balances::pallet::Call<T, I>
    **/
   PalletBalancesCall: {
     _enum: {
@@ -1630,13 +1598,13 @@
     }
   },
   /**
-   * Lookup183: pallet_balances::pallet::Error<T, I>
+   * Lookup181: pallet_balances::pallet::Error<T, I>
    **/
   PalletBalancesError: {
     _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
   },
   /**
-   * Lookup185: pallet_timestamp::pallet::Call<T>
+   * Lookup183: pallet_timestamp::pallet::Call<T>
    **/
   PalletTimestampCall: {
     _enum: {
@@ -1646,13 +1614,13 @@
     }
   },
   /**
-   * Lookup187: pallet_transaction_payment::Releases
+   * Lookup185: pallet_transaction_payment::Releases
    **/
   PalletTransactionPaymentReleases: {
     _enum: ['V1Ancient', 'V2']
   },
   /**
-   * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+   * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
    **/
   PalletTreasuryProposal: {
     proposer: 'AccountId32',
@@ -1661,7 +1629,7 @@
     bond: 'u128'
   },
   /**
-   * Lookup191: pallet_treasury::pallet::Call<T, I>
+   * Lookup189: pallet_treasury::pallet::Call<T, I>
    **/
   PalletTreasuryCall: {
     _enum: {
@@ -1685,17 +1653,17 @@
     }
   },
   /**
-   * Lookup194: frame_support::PalletId
+   * Lookup192: frame_support::PalletId
    **/
   FrameSupportPalletId: '[u8;8]',
   /**
-   * Lookup195: pallet_treasury::pallet::Error<T, I>
+   * Lookup193: pallet_treasury::pallet::Error<T, I>
    **/
   PalletTreasuryError: {
     _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
   },
   /**
-   * Lookup196: pallet_sudo::pallet::Call<T>
+   * Lookup194: pallet_sudo::pallet::Call<T>
    **/
   PalletSudoCall: {
     _enum: {
@@ -1719,7 +1687,7 @@
     }
   },
   /**
-   * Lookup198: orml_vesting::module::Call<T>
+   * Lookup196: orml_vesting::module::Call<T>
    **/
   OrmlVestingModuleCall: {
     _enum: {
@@ -1738,7 +1706,7 @@
     }
   },
   /**
-   * Lookup200: orml_xtokens::module::Call<T>
+   * Lookup198: orml_xtokens::module::Call<T>
    **/
   OrmlXtokensModuleCall: {
     _enum: {
@@ -1781,7 +1749,7 @@
     }
   },
   /**
-   * Lookup201: xcm::VersionedMultiAsset
+   * Lookup199: xcm::VersionedMultiAsset
    **/
   XcmVersionedMultiAsset: {
     _enum: {
@@ -1790,7 +1758,7 @@
     }
   },
   /**
-   * Lookup204: orml_tokens::module::Call<T>
+   * Lookup202: orml_tokens::module::Call<T>
    **/
   OrmlTokensModuleCall: {
     _enum: {
@@ -1824,7 +1792,7 @@
     }
   },
   /**
-   * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>
+   * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>
    **/
   CumulusPalletXcmpQueueCall: {
     _enum: {
@@ -1873,7 +1841,7 @@
     }
   },
   /**
-   * Lookup206: pallet_xcm::pallet::Call<T>
+   * Lookup204: pallet_xcm::pallet::Call<T>
    **/
   PalletXcmCall: {
     _enum: {
@@ -1927,7 +1895,7 @@
     }
   },
   /**
-   * Lookup207: xcm::VersionedXcm<RuntimeCall>
+   * Lookup205: xcm::VersionedXcm<RuntimeCall>
    **/
   XcmVersionedXcm: {
     _enum: {
@@ -1937,7 +1905,7 @@
     }
   },
   /**
-   * Lookup208: xcm::v0::Xcm<RuntimeCall>
+   * Lookup206: xcm::v0::Xcm<RuntimeCall>
    **/
   XcmV0Xcm: {
     _enum: {
@@ -1991,7 +1959,7 @@
     }
   },
   /**
-   * Lookup210: xcm::v0::order::Order<RuntimeCall>
+   * Lookup208: xcm::v0::order::Order<RuntimeCall>
    **/
   XcmV0Order: {
     _enum: {
@@ -2034,7 +2002,7 @@
     }
   },
   /**
-   * Lookup212: xcm::v0::Response
+   * Lookup210: xcm::v0::Response
    **/
   XcmV0Response: {
     _enum: {
@@ -2042,7 +2010,7 @@
     }
   },
   /**
-   * Lookup213: xcm::v1::Xcm<RuntimeCall>
+   * Lookup211: xcm::v1::Xcm<RuntimeCall>
    **/
   XcmV1Xcm: {
     _enum: {
@@ -2101,7 +2069,7 @@
     }
   },
   /**
-   * Lookup215: xcm::v1::order::Order<RuntimeCall>
+   * Lookup213: xcm::v1::order::Order<RuntimeCall>
    **/
   XcmV1Order: {
     _enum: {
@@ -2146,7 +2114,7 @@
     }
   },
   /**
-   * Lookup217: xcm::v1::Response
+   * Lookup215: xcm::v1::Response
    **/
   XcmV1Response: {
     _enum: {
@@ -2155,11 +2123,11 @@
     }
   },
   /**
-   * Lookup231: cumulus_pallet_xcm::pallet::Call<T>
+   * Lookup229: cumulus_pallet_xcm::pallet::Call<T>
    **/
   CumulusPalletXcmCall: 'Null',
   /**
-   * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>
+   * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>
    **/
   CumulusPalletDmpQueueCall: {
     _enum: {
@@ -2170,7 +2138,7 @@
     }
   },
   /**
-   * Lookup233: pallet_inflation::pallet::Call<T>
+   * Lookup231: pallet_inflation::pallet::Call<T>
    **/
   PalletInflationCall: {
     _enum: {
@@ -2180,7 +2148,7 @@
     }
   },
   /**
-   * Lookup234: pallet_unique::Call<T>
+   * Lookup232: pallet_unique::Call<T>
    **/
   PalletUniqueCall: {
     _enum: {
@@ -2317,7 +2285,7 @@
     }
   },
   /**
-   * Lookup239: up_data_structs::CollectionMode
+   * Lookup237: up_data_structs::CollectionMode
    **/
   UpDataStructsCollectionMode: {
     _enum: {
@@ -2327,7 +2295,7 @@
     }
   },
   /**
-   * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+   * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCreateCollectionData: {
     mode: 'UpDataStructsCollectionMode',
@@ -2342,13 +2310,13 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup242: up_data_structs::AccessMode
+   * Lookup240: up_data_structs::AccessMode
    **/
   UpDataStructsAccessMode: {
     _enum: ['Normal', 'AllowList']
   },
   /**
-   * Lookup244: up_data_structs::CollectionLimits
+   * Lookup242: up_data_structs::CollectionLimits
    **/
   UpDataStructsCollectionLimits: {
     accountTokenOwnershipLimit: 'Option<u32>',
@@ -2362,7 +2330,7 @@
     transfersEnabled: 'Option<bool>'
   },
   /**
-   * Lookup246: up_data_structs::SponsoringRateLimit
+   * Lookup244: up_data_structs::SponsoringRateLimit
    **/
   UpDataStructsSponsoringRateLimit: {
     _enum: {
@@ -2371,7 +2339,7 @@
     }
   },
   /**
-   * Lookup249: up_data_structs::CollectionPermissions
+   * Lookup247: up_data_structs::CollectionPermissions
    **/
   UpDataStructsCollectionPermissions: {
     access: 'Option<UpDataStructsAccessMode>',
@@ -2379,7 +2347,7 @@
     nesting: 'Option<UpDataStructsNestingPermissions>'
   },
   /**
-   * Lookup251: up_data_structs::NestingPermissions
+   * Lookup249: up_data_structs::NestingPermissions
    **/
   UpDataStructsNestingPermissions: {
     tokenOwner: 'bool',
@@ -2387,18 +2355,18 @@
     restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
   },
   /**
-   * Lookup253: up_data_structs::OwnerRestrictedSet
+   * Lookup251: up_data_structs::OwnerRestrictedSet
    **/
   UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
   /**
-   * Lookup258: up_data_structs::PropertyKeyPermission
+   * Lookup256: up_data_structs::PropertyKeyPermission
    **/
   UpDataStructsPropertyKeyPermission: {
     key: 'Bytes',
     permission: 'UpDataStructsPropertyPermission'
   },
   /**
-   * Lookup259: up_data_structs::PropertyPermission
+   * Lookup257: up_data_structs::PropertyPermission
    **/
   UpDataStructsPropertyPermission: {
     mutable: 'bool',
@@ -2406,14 +2374,14 @@
     tokenOwner: 'bool'
   },
   /**
-   * Lookup262: up_data_structs::Property
+   * Lookup260: up_data_structs::Property
    **/
   UpDataStructsProperty: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup265: up_data_structs::CreateItemData
+   * Lookup263: up_data_structs::CreateItemData
    **/
   UpDataStructsCreateItemData: {
     _enum: {
@@ -2423,26 +2391,26 @@
     }
   },
   /**
-   * Lookup266: up_data_structs::CreateNftData
+   * Lookup264: up_data_structs::CreateNftData
    **/
   UpDataStructsCreateNftData: {
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup267: up_data_structs::CreateFungibleData
+   * Lookup265: up_data_structs::CreateFungibleData
    **/
   UpDataStructsCreateFungibleData: {
     value: 'u128'
   },
   /**
-   * Lookup268: up_data_structs::CreateReFungibleData
+   * Lookup266: up_data_structs::CreateReFungibleData
    **/
   UpDataStructsCreateReFungibleData: {
     pieces: 'u128',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateItemExData: {
     _enum: {
@@ -2453,14 +2421,14 @@
     }
   },
   /**
-   * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateNftExData: {
     properties: 'Vec<UpDataStructsProperty>',
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateRefungibleExSingleOwner: {
     user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2468,58 +2436,14 @@
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsCreateRefungibleExMultipleOwners: {
     users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
     properties: 'Vec<UpDataStructsProperty>'
   },
   /**
-   * Lookup283: pallet_unique_scheduler_v2::pallet::Call<T>
-   **/
-  PalletUniqueSchedulerV2Call: {
-    _enum: {
-      schedule: {
-        when: 'u32',
-        maybePeriodic: 'Option<(u32,u32)>',
-        priority: 'Option<u8>',
-        call: 'Call',
-      },
-      cancel: {
-        when: 'u32',
-        index: 'u32',
-      },
-      schedule_named: {
-        id: '[u8;32]',
-        when: 'u32',
-        maybePeriodic: 'Option<(u32,u32)>',
-        priority: 'Option<u8>',
-        call: 'Call',
-      },
-      cancel_named: {
-        id: '[u8;32]',
-      },
-      schedule_after: {
-        after: 'u32',
-        maybePeriodic: 'Option<(u32,u32)>',
-        priority: 'Option<u8>',
-        call: 'Call',
-      },
-      schedule_named_after: {
-        id: '[u8;32]',
-        after: 'u32',
-        maybePeriodic: 'Option<(u32,u32)>',
-        priority: 'Option<u8>',
-        call: 'Call',
-      },
-      change_named_priority: {
-        id: '[u8;32]',
-        priority: 'u8'
-      }
-    }
-  },
-  /**
-   * Lookup286: pallet_configuration::pallet::Call<T>
+   * Lookup281: pallet_configuration::pallet::Call<T>
    **/
   PalletConfigurationCall: {
     _enum: {
@@ -2530,20 +2454,32 @@
         coeff: 'Option<u64>',
       },
       set_xcm_allowed_locations: {
-        locations: 'Option<Vec<XcmV1MultiLocation>>'
+        locations: 'Option<Vec<XcmV1MultiLocation>>',
+      },
+      set_app_promotion_configuration_override: {
+        configuration: 'PalletConfigurationAppPromotionConfiguration'
       }
     }
   },
   /**
-   * Lookup291: pallet_template_transaction_payment::Call<T>
+   * Lookup286: pallet_configuration::AppPromotionConfiguration<BlockNumber>
+   **/
+  PalletConfigurationAppPromotionConfiguration: {
+    recalculationInterval: 'Option<u32>',
+    pendingInterval: 'Option<u32>',
+    intervalIncome: 'Option<Perbill>',
+    maxStakersPerCalculation: 'Option<u8>'
+  },
+  /**
+   * Lookup289: pallet_template_transaction_payment::Call<T>
    **/
   PalletTemplateTransactionPaymentCall: 'Null',
   /**
-   * Lookup292: pallet_structure::pallet::Call<T>
+   * Lookup290: pallet_structure::pallet::Call<T>
    **/
   PalletStructureCall: 'Null',
   /**
-   * Lookup293: pallet_rmrk_core::pallet::Call<T>
+   * Lookup291: pallet_rmrk_core::pallet::Call<T>
    **/
   PalletRmrkCoreCall: {
     _enum: {
@@ -2634,7 +2570,7 @@
     }
   },
   /**
-   * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceResourceTypes: {
     _enum: {
@@ -2644,7 +2580,7 @@
     }
   },
   /**
-   * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceBasicResource: {
     src: 'Option<Bytes>',
@@ -2653,7 +2589,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceComposableResource: {
     parts: 'Vec<u32>',
@@ -2664,7 +2600,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceSlotResource: {
     base: 'u32',
@@ -2675,7 +2611,7 @@
     thumb: 'Option<Bytes>'
   },
   /**
-   * Lookup307: pallet_rmrk_equip::pallet::Call<T>
+   * Lookup305: pallet_rmrk_equip::pallet::Call<T>
    **/
   PalletRmrkEquipCall: {
     _enum: {
@@ -2696,7 +2632,7 @@
     }
   },
   /**
-   * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartPartType: {
     _enum: {
@@ -2705,7 +2641,7 @@
     }
   },
   /**
-   * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartFixedPart: {
     id: 'u32',
@@ -2713,7 +2649,7 @@
     src: 'Bytes'
   },
   /**
-   * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartSlotPart: {
     id: 'u32',
@@ -2722,7 +2658,7 @@
     z: 'u32'
   },
   /**
-   * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPartEquippableList: {
     _enum: {
@@ -2732,7 +2668,7 @@
     }
   },
   /**
-   * Lookup316: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+   * Lookup314: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
    **/
   RmrkTraitsTheme: {
     name: 'Bytes',
@@ -2740,14 +2676,14 @@
     inherit: 'bool'
   },
   /**
-   * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsThemeThemeProperty: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup320: pallet_app_promotion::pallet::Call<T>
+   * Lookup318: pallet_app_promotion::pallet::Call<T>
    **/
   PalletAppPromotionCall: {
     _enum: {
@@ -2776,7 +2712,7 @@
     }
   },
   /**
-   * Lookup321: pallet_foreign_assets::module::Call<T>
+   * Lookup319: pallet_foreign_assets::module::Call<T>
    **/
   PalletForeignAssetsModuleCall: {
     _enum: {
@@ -2793,7 +2729,7 @@
     }
   },
   /**
-   * Lookup322: pallet_evm::pallet::Call<T>
+   * Lookup320: pallet_evm::pallet::Call<T>
    **/
   PalletEvmCall: {
     _enum: {
@@ -2836,7 +2772,7 @@
     }
   },
   /**
-   * Lookup328: pallet_ethereum::pallet::Call<T>
+   * Lookup326: pallet_ethereum::pallet::Call<T>
    **/
   PalletEthereumCall: {
     _enum: {
@@ -2846,7 +2782,7 @@
     }
   },
   /**
-   * Lookup329: ethereum::transaction::TransactionV2
+   * Lookup327: ethereum::transaction::TransactionV2
    **/
   EthereumTransactionTransactionV2: {
     _enum: {
@@ -2856,7 +2792,7 @@
     }
   },
   /**
-   * Lookup330: ethereum::transaction::LegacyTransaction
+   * Lookup328: ethereum::transaction::LegacyTransaction
    **/
   EthereumTransactionLegacyTransaction: {
     nonce: 'U256',
@@ -2868,7 +2804,7 @@
     signature: 'EthereumTransactionTransactionSignature'
   },
   /**
-   * Lookup331: ethereum::transaction::TransactionAction
+   * Lookup329: ethereum::transaction::TransactionAction
    **/
   EthereumTransactionTransactionAction: {
     _enum: {
@@ -2877,7 +2813,7 @@
     }
   },
   /**
-   * Lookup332: ethereum::transaction::TransactionSignature
+   * Lookup330: ethereum::transaction::TransactionSignature
    **/
   EthereumTransactionTransactionSignature: {
     v: 'u64',
@@ -2885,7 +2821,7 @@
     s: 'H256'
   },
   /**
-   * Lookup334: ethereum::transaction::EIP2930Transaction
+   * Lookup332: ethereum::transaction::EIP2930Transaction
    **/
   EthereumTransactionEip2930Transaction: {
     chainId: 'u64',
@@ -2901,14 +2837,14 @@
     s: 'H256'
   },
   /**
-   * Lookup336: ethereum::transaction::AccessListItem
+   * Lookup334: ethereum::transaction::AccessListItem
    **/
   EthereumTransactionAccessListItem: {
     address: 'H160',
     storageKeys: 'Vec<H256>'
   },
   /**
-   * Lookup337: ethereum::transaction::EIP1559Transaction
+   * Lookup335: ethereum::transaction::EIP1559Transaction
    **/
   EthereumTransactionEip1559Transaction: {
     chainId: 'u64',
@@ -2925,7 +2861,7 @@
     s: 'H256'
   },
   /**
-   * Lookup338: pallet_evm_migration::pallet::Call<T>
+   * Lookup336: pallet_evm_migration::pallet::Call<T>
    **/
   PalletEvmMigrationCall: {
     _enum: {
@@ -2949,13 +2885,13 @@
     }
   },
   /**
-   * Lookup342: pallet_maintenance::pallet::Call<T>
+   * Lookup340: pallet_maintenance::pallet::Call<T>
    **/
   PalletMaintenanceCall: {
     _enum: ['enable', 'disable']
   },
   /**
-   * Lookup343: pallet_test_utils::pallet::Call<T>
+   * Lookup341: pallet_test_utils::pallet::Call<T>
    **/
   PalletTestUtilsCall: {
     _enum: {
@@ -2967,10 +2903,6 @@
         value: 'u32',
       },
       inc_test_value: 'Null',
-      self_canceling_inc: {
-        id: '[u8;32]',
-        maxTestValue: 'u32',
-      },
       just_take_fee: 'Null',
       batch_all: {
         calls: 'Vec<Call>'
@@ -2978,32 +2910,32 @@
     }
   },
   /**
-   * Lookup345: pallet_sudo::pallet::Error<T>
+   * Lookup343: pallet_sudo::pallet::Error<T>
    **/
   PalletSudoError: {
     _enum: ['RequireSudo']
   },
   /**
-   * Lookup347: orml_vesting::module::Error<T>
+   * Lookup345: orml_vesting::module::Error<T>
    **/
   OrmlVestingModuleError: {
     _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
   },
   /**
-   * Lookup348: orml_xtokens::module::Error<T>
+   * Lookup346: orml_xtokens::module::Error<T>
    **/
   OrmlXtokensModuleError: {
     _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
   },
   /**
-   * Lookup351: orml_tokens::BalanceLock<Balance>
+   * Lookup349: orml_tokens::BalanceLock<Balance>
    **/
   OrmlTokensBalanceLock: {
     id: '[u8;8]',
     amount: 'u128'
   },
   /**
-   * Lookup353: orml_tokens::AccountData<Balance>
+   * Lookup351: orml_tokens::AccountData<Balance>
    **/
   OrmlTokensAccountData: {
     free: 'u128',
@@ -3011,20 +2943,20 @@
     frozen: 'u128'
   },
   /**
-   * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+   * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
    **/
   OrmlTokensReserveData: {
     id: 'Null',
     amount: 'u128'
   },
   /**
-   * Lookup357: orml_tokens::module::Error<T>
+   * Lookup355: orml_tokens::module::Error<T>
    **/
   OrmlTokensModuleError: {
     _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
   },
   /**
-   * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails
+   * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
    **/
   CumulusPalletXcmpQueueInboundChannelDetails: {
     sender: 'u32',
@@ -3032,19 +2964,19 @@
     messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
   },
   /**
-   * Lookup360: cumulus_pallet_xcmp_queue::InboundState
+   * Lookup358: cumulus_pallet_xcmp_queue::InboundState
    **/
   CumulusPalletXcmpQueueInboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat
+   * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
    **/
   PolkadotParachainPrimitivesXcmpMessageFormat: {
     _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
   },
   /**
-   * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+   * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
    **/
   CumulusPalletXcmpQueueOutboundChannelDetails: {
     recipient: 'u32',
@@ -3054,13 +2986,13 @@
     lastIndex: 'u16'
   },
   /**
-   * Lookup367: cumulus_pallet_xcmp_queue::OutboundState
+   * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
    **/
   CumulusPalletXcmpQueueOutboundState: {
     _enum: ['Ok', 'Suspended']
   },
   /**
-   * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData
+   * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
    **/
   CumulusPalletXcmpQueueQueueConfigData: {
     suspendThreshold: 'u32',
@@ -3071,29 +3003,29 @@
     xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>
+   * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
    **/
   CumulusPalletXcmpQueueError: {
     _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
   },
   /**
-   * Lookup372: pallet_xcm::pallet::Error<T>
+   * Lookup370: pallet_xcm::pallet::Error<T>
    **/
   PalletXcmError: {
     _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
   },
   /**
-   * Lookup373: cumulus_pallet_xcm::pallet::Error<T>
+   * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
    **/
   CumulusPalletXcmError: 'Null',
   /**
-   * Lookup374: cumulus_pallet_dmp_queue::ConfigData
+   * Lookup372: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
     maxIndividual: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup375: cumulus_pallet_dmp_queue::PageIndexData
+   * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
    **/
   CumulusPalletDmpQueuePageIndexData: {
     beginUsed: 'u32',
@@ -3101,212 +3033,25 @@
     overweightCount: 'u64'
   },
   /**
-   * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>
+   * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
    **/
   CumulusPalletDmpQueueError: {
     _enum: ['Unknown', 'OverLimit']
   },
   /**
-   * Lookup382: pallet_unique::Error<T>
+   * Lookup380: pallet_unique::Error<T>
    **/
   PalletUniqueError: {
     _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
-  },
-  /**
-   * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
-   **/
-  PalletUniqueSchedulerV2BlockAgenda: {
-    agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
-    freePlaces: 'u32'
-  },
-  /**
-   * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
-   **/
-  PalletUniqueSchedulerV2Scheduled: {
-    maybeId: 'Option<[u8;32]>',
-    priority: 'u8',
-    call: 'PalletUniqueSchedulerV2ScheduledCall',
-    maybePeriodic: 'Option<(u32,u32)>',
-    origin: 'OpalRuntimeOriginCaller'
   },
   /**
-   * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
-   **/
-  PalletUniqueSchedulerV2ScheduledCall: {
-    _enum: {
-      Inline: 'Bytes',
-      PreimageLookup: {
-        _alias: {
-          hash_: 'hash',
-        },
-        hash_: 'H256',
-        unboundedLen: 'u32'
-      }
-    }
-  },
-  /**
-   * Lookup389: opal_runtime::OriginCaller
-   **/
-  OpalRuntimeOriginCaller: {
-    _enum: {
-      system: 'FrameSupportDispatchRawOrigin',
-      __Unused1: 'Null',
-      __Unused2: 'Null',
-      __Unused3: 'Null',
-      Void: 'SpCoreVoid',
-      __Unused5: 'Null',
-      __Unused6: 'Null',
-      __Unused7: 'Null',
-      __Unused8: 'Null',
-      __Unused9: 'Null',
-      __Unused10: 'Null',
-      __Unused11: 'Null',
-      __Unused12: 'Null',
-      __Unused13: 'Null',
-      __Unused14: 'Null',
-      __Unused15: 'Null',
-      __Unused16: 'Null',
-      __Unused17: 'Null',
-      __Unused18: 'Null',
-      __Unused19: 'Null',
-      __Unused20: 'Null',
-      __Unused21: 'Null',
-      __Unused22: 'Null',
-      __Unused23: 'Null',
-      __Unused24: 'Null',
-      __Unused25: 'Null',
-      __Unused26: 'Null',
-      __Unused27: 'Null',
-      __Unused28: 'Null',
-      __Unused29: 'Null',
-      __Unused30: 'Null',
-      __Unused31: 'Null',
-      __Unused32: 'Null',
-      __Unused33: 'Null',
-      __Unused34: 'Null',
-      __Unused35: 'Null',
-      __Unused36: 'Null',
-      __Unused37: 'Null',
-      __Unused38: 'Null',
-      __Unused39: 'Null',
-      __Unused40: 'Null',
-      __Unused41: 'Null',
-      __Unused42: 'Null',
-      __Unused43: 'Null',
-      __Unused44: 'Null',
-      __Unused45: 'Null',
-      __Unused46: 'Null',
-      __Unused47: 'Null',
-      __Unused48: 'Null',
-      __Unused49: 'Null',
-      __Unused50: 'Null',
-      PolkadotXcm: 'PalletXcmOrigin',
-      CumulusXcm: 'CumulusPalletXcmOrigin',
-      __Unused53: 'Null',
-      __Unused54: 'Null',
-      __Unused55: 'Null',
-      __Unused56: 'Null',
-      __Unused57: 'Null',
-      __Unused58: 'Null',
-      __Unused59: 'Null',
-      __Unused60: 'Null',
-      __Unused61: 'Null',
-      __Unused62: 'Null',
-      __Unused63: 'Null',
-      __Unused64: 'Null',
-      __Unused65: 'Null',
-      __Unused66: 'Null',
-      __Unused67: 'Null',
-      __Unused68: 'Null',
-      __Unused69: 'Null',
-      __Unused70: 'Null',
-      __Unused71: 'Null',
-      __Unused72: 'Null',
-      __Unused73: 'Null',
-      __Unused74: 'Null',
-      __Unused75: 'Null',
-      __Unused76: 'Null',
-      __Unused77: 'Null',
-      __Unused78: 'Null',
-      __Unused79: 'Null',
-      __Unused80: 'Null',
-      __Unused81: 'Null',
-      __Unused82: 'Null',
-      __Unused83: 'Null',
-      __Unused84: 'Null',
-      __Unused85: 'Null',
-      __Unused86: 'Null',
-      __Unused87: 'Null',
-      __Unused88: 'Null',
-      __Unused89: 'Null',
-      __Unused90: 'Null',
-      __Unused91: 'Null',
-      __Unused92: 'Null',
-      __Unused93: 'Null',
-      __Unused94: 'Null',
-      __Unused95: 'Null',
-      __Unused96: 'Null',
-      __Unused97: 'Null',
-      __Unused98: 'Null',
-      __Unused99: 'Null',
-      __Unused100: 'Null',
-      Ethereum: 'PalletEthereumRawOrigin'
-    }
-  },
-  /**
-   * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
-   **/
-  FrameSupportDispatchRawOrigin: {
-    _enum: {
-      Root: 'Null',
-      Signed: 'AccountId32',
-      None: 'Null'
-    }
-  },
-  /**
-   * Lookup391: pallet_xcm::pallet::Origin
-   **/
-  PalletXcmOrigin: {
-    _enum: {
-      Xcm: 'XcmV1MultiLocation',
-      Response: 'XcmV1MultiLocation'
-    }
-  },
-  /**
-   * Lookup392: cumulus_pallet_xcm::pallet::Origin
-   **/
-  CumulusPalletXcmOrigin: {
-    _enum: {
-      Relay: 'Null',
-      SiblingParachain: 'u32'
-    }
-  },
-  /**
-   * Lookup393: pallet_ethereum::RawOrigin
-   **/
-  PalletEthereumRawOrigin: {
-    _enum: {
-      EthereumTransaction: 'H160'
-    }
-  },
-  /**
-   * Lookup394: sp_core::Void
+   * Lookup381: pallet_configuration::pallet::Error<T>
    **/
-  SpCoreVoid: 'Null',
-  /**
-   * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
-   **/
-  PalletUniqueSchedulerV2Error: {
-    _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
-  },
-  /**
-   * Lookup400: pallet_configuration::pallet::Error<T>
-   **/
   PalletConfigurationError: {
     _enum: ['InconsistentConfiguration']
   },
   /**
-   * Lookup401: up_data_structs::Collection<sp_core::crypto::AccountId32>
+   * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsCollection: {
     owner: 'AccountId32',
@@ -3320,7 +3065,7 @@
     flags: '[u8;1]'
   },
   /**
-   * Lookup402: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+   * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
    **/
   UpDataStructsSponsorshipStateAccountId32: {
     _enum: {
@@ -3330,7 +3075,7 @@
     }
   },
   /**
-   * Lookup404: up_data_structs::Properties
+   * Lookup385: up_data_structs::Properties
    **/
   UpDataStructsProperties: {
     map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3338,15 +3083,15 @@
     spaceLimit: 'u32'
   },
   /**
-   * Lookup405: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
   /**
-   * Lookup410: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+   * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
    **/
   UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
   /**
-   * Lookup417: up_data_structs::CollectionStats
+   * Lookup398: up_data_structs::CollectionStats
    **/
   UpDataStructsCollectionStats: {
     created: 'u32',
@@ -3354,18 +3099,18 @@
     alive: 'u32'
   },
   /**
-   * Lookup418: up_data_structs::TokenChild
+   * Lookup399: up_data_structs::TokenChild
    **/
   UpDataStructsTokenChild: {
     token: 'u32',
     collection: 'u32'
   },
   /**
-   * Lookup419: PhantomType::up_data_structs<T>
+   * Lookup400: PhantomType::up_data_structs<T>
    **/
   PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
   /**
-   * Lookup421: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsTokenData: {
     properties: 'Vec<UpDataStructsProperty>',
@@ -3373,7 +3118,7 @@
     pieces: 'u128'
   },
   /**
-   * Lookup423: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+   * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
    **/
   UpDataStructsRpcCollection: {
     owner: 'AccountId32',
@@ -3390,14 +3135,14 @@
     flags: 'UpDataStructsRpcCollectionFlags'
   },
   /**
-   * Lookup424: up_data_structs::RpcCollectionFlags
+   * Lookup405: up_data_structs::RpcCollectionFlags
    **/
   UpDataStructsRpcCollectionFlags: {
     foreign: 'bool',
     erc721metadata: 'bool'
   },
   /**
-   * Lookup425: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+   * Lookup406: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
    **/
   RmrkTraitsCollectionCollectionInfo: {
     issuer: 'AccountId32',
@@ -3407,7 +3152,7 @@
     nftsCount: 'u32'
   },
   /**
-   * Lookup426: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsNftNftInfo: {
     owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3417,14 +3162,14 @@
     pending: 'bool'
   },
   /**
-   * Lookup428: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+   * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
    **/
   RmrkTraitsNftRoyaltyInfo: {
     recipient: 'AccountId32',
     amount: 'Permill'
   },
   /**
-   * Lookup429: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsResourceResourceInfo: {
     id: 'u32',
@@ -3433,14 +3178,14 @@
     pendingRemoval: 'bool'
   },
   /**
-   * Lookup430: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsPropertyPropertyInfo: {
     key: 'Bytes',
     value: 'Bytes'
   },
   /**
-   * Lookup431: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+   * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
    **/
   RmrkTraitsBaseBaseInfo: {
     issuer: 'AccountId32',
@@ -3448,92 +3193,92 @@
     symbol: 'Bytes'
   },
   /**
-   * Lookup432: rmrk_traits::nft::NftChild
+   * Lookup413: rmrk_traits::nft::NftChild
    **/
   RmrkTraitsNftNftChild: {
     collectionId: 'u32',
     nftId: 'u32'
   },
   /**
-   * Lookup434: pallet_common::pallet::Error<T>
+   * Lookup415: 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', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
   },
   /**
-   * Lookup436: pallet_fungible::pallet::Error<T>
+   * Lookup417: pallet_fungible::pallet::Error<T>
    **/
   PalletFungibleError: {
     _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
   },
   /**
-   * Lookup437: pallet_refungible::ItemData
+   * Lookup418: pallet_refungible::ItemData
    **/
   PalletRefungibleItemData: {
     constData: 'Bytes'
   },
   /**
-   * Lookup442: pallet_refungible::pallet::Error<T>
+   * Lookup423: pallet_refungible::pallet::Error<T>
    **/
   PalletRefungibleError: {
     _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
   },
   /**
-   * Lookup443: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup424: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   PalletNonfungibleItemData: {
     owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
   },
   /**
-   * Lookup445: up_data_structs::PropertyScope
+   * Lookup426: up_data_structs::PropertyScope
    **/
   UpDataStructsPropertyScope: {
     _enum: ['None', 'Rmrk']
   },
   /**
-   * Lookup447: pallet_nonfungible::pallet::Error<T>
+   * Lookup428: pallet_nonfungible::pallet::Error<T>
    **/
   PalletNonfungibleError: {
     _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
   },
   /**
-   * Lookup448: pallet_structure::pallet::Error<T>
+   * Lookup429: pallet_structure::pallet::Error<T>
    **/
   PalletStructureError: {
     _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
   },
   /**
-   * Lookup449: pallet_rmrk_core::pallet::Error<T>
+   * Lookup430: 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']
   },
   /**
-   * Lookup451: pallet_rmrk_equip::pallet::Error<T>
+   * Lookup432: pallet_rmrk_equip::pallet::Error<T>
    **/
   PalletRmrkEquipError: {
     _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
   },
   /**
-   * Lookup457: pallet_app_promotion::pallet::Error<T>
+   * Lookup438: pallet_app_promotion::pallet::Error<T>
    **/
   PalletAppPromotionError: {
     _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
   },
   /**
-   * Lookup458: pallet_foreign_assets::module::Error<T>
+   * Lookup439: pallet_foreign_assets::module::Error<T>
    **/
   PalletForeignAssetsModuleError: {
     _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
   },
   /**
-   * Lookup460: pallet_evm::pallet::Error<T>
+   * Lookup441: pallet_evm::pallet::Error<T>
    **/
   PalletEvmError: {
     _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
   },
   /**
-   * Lookup463: fp_rpc::TransactionStatus
+   * Lookup444: fp_rpc::TransactionStatus
    **/
   FpRpcTransactionStatus: {
     transactionHash: 'H256',
@@ -3545,11 +3290,11 @@
     logsBloom: 'EthbloomBloom'
   },
   /**
-   * Lookup465: ethbloom::Bloom
+   * Lookup446: ethbloom::Bloom
    **/
   EthbloomBloom: '[u8;256]',
   /**
-   * Lookup467: ethereum::receipt::ReceiptV3
+   * Lookup448: ethereum::receipt::ReceiptV3
    **/
   EthereumReceiptReceiptV3: {
     _enum: {
@@ -3559,7 +3304,7 @@
     }
   },
   /**
-   * Lookup468: ethereum::receipt::EIP658ReceiptData
+   * Lookup449: ethereum::receipt::EIP658ReceiptData
    **/
   EthereumReceiptEip658ReceiptData: {
     statusCode: 'u8',
@@ -3568,7 +3313,7 @@
     logs: 'Vec<EthereumLog>'
   },
   /**
-   * Lookup469: ethereum::block::Block<ethereum::transaction::TransactionV2>
+   * Lookup450: ethereum::block::Block<ethereum::transaction::TransactionV2>
    **/
   EthereumBlock: {
     header: 'EthereumHeader',
@@ -3576,7 +3321,7 @@
     ommers: 'Vec<EthereumHeader>'
   },
   /**
-   * Lookup470: ethereum::header::Header
+   * Lookup451: ethereum::header::Header
    **/
   EthereumHeader: {
     parentHash: 'H256',
@@ -3596,23 +3341,23 @@
     nonce: 'EthereumTypesHashH64'
   },
   /**
-   * Lookup471: ethereum_types::hash::H64
+   * Lookup452: ethereum_types::hash::H64
    **/
   EthereumTypesHashH64: '[u8;8]',
   /**
-   * Lookup476: pallet_ethereum::pallet::Error<T>
+   * Lookup457: pallet_ethereum::pallet::Error<T>
    **/
   PalletEthereumError: {
     _enum: ['InvalidSignature', 'PreLogExists']
   },
   /**
-   * Lookup477: pallet_evm_coder_substrate::pallet::Error<T>
+   * Lookup458: pallet_evm_coder_substrate::pallet::Error<T>
    **/
   PalletEvmCoderSubstrateError: {
     _enum: ['OutOfGas', 'OutOfFund']
   },
   /**
-   * Lookup478: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+   * Lookup459: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
    **/
   UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
     _enum: {
@@ -3622,35 +3367,35 @@
     }
   },
   /**
-   * Lookup479: pallet_evm_contract_helpers::SponsoringModeT
+   * Lookup460: pallet_evm_contract_helpers::SponsoringModeT
    **/
   PalletEvmContractHelpersSponsoringModeT: {
     _enum: ['Disabled', 'Allowlisted', 'Generous']
   },
   /**
-   * Lookup485: pallet_evm_contract_helpers::pallet::Error<T>
+   * Lookup466: pallet_evm_contract_helpers::pallet::Error<T>
    **/
   PalletEvmContractHelpersError: {
     _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
   },
   /**
-   * Lookup486: pallet_evm_migration::pallet::Error<T>
+   * Lookup467: pallet_evm_migration::pallet::Error<T>
    **/
   PalletEvmMigrationError: {
     _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
   },
   /**
-   * Lookup487: pallet_maintenance::pallet::Error<T>
+   * Lookup468: pallet_maintenance::pallet::Error<T>
    **/
   PalletMaintenanceError: 'Null',
   /**
-   * Lookup488: pallet_test_utils::pallet::Error<T>
+   * Lookup469: pallet_test_utils::pallet::Error<T>
    **/
   PalletTestUtilsError: {
     _enum: ['TestPalletDisabled', 'TriggerRollback']
   },
   /**
-   * Lookup490: sp_runtime::MultiSignature
+   * Lookup471: sp_runtime::MultiSignature
    **/
   SpRuntimeMultiSignature: {
     _enum: {
@@ -3660,51 +3405,51 @@
     }
   },
   /**
-   * Lookup491: sp_core::ed25519::Signature
+   * Lookup472: sp_core::ed25519::Signature
    **/
   SpCoreEd25519Signature: '[u8;64]',
   /**
-   * Lookup493: sp_core::sr25519::Signature
+   * Lookup474: sp_core::sr25519::Signature
    **/
   SpCoreSr25519Signature: '[u8;64]',
   /**
-   * Lookup494: sp_core::ecdsa::Signature
+   * Lookup475: sp_core::ecdsa::Signature
    **/
   SpCoreEcdsaSignature: '[u8;65]',
   /**
-   * Lookup497: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+   * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
    **/
   FrameSystemExtensionsCheckSpecVersion: 'Null',
   /**
-   * Lookup498: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+   * Lookup479: frame_system::extensions::check_tx_version::CheckTxVersion<T>
    **/
   FrameSystemExtensionsCheckTxVersion: 'Null',
   /**
-   * Lookup499: frame_system::extensions::check_genesis::CheckGenesis<T>
+   * Lookup480: frame_system::extensions::check_genesis::CheckGenesis<T>
    **/
   FrameSystemExtensionsCheckGenesis: 'Null',
   /**
-   * Lookup502: frame_system::extensions::check_nonce::CheckNonce<T>
+   * Lookup483: frame_system::extensions::check_nonce::CheckNonce<T>
    **/
   FrameSystemExtensionsCheckNonce: 'Compact<u32>',
   /**
-   * Lookup503: frame_system::extensions::check_weight::CheckWeight<T>
+   * Lookup484: frame_system::extensions::check_weight::CheckWeight<T>
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup504: opal_runtime::runtime_common::maintenance::CheckMaintenance
+   * Lookup485: opal_runtime::runtime_common::maintenance::CheckMaintenance
    **/
   OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
   /**
-   * Lookup505: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+   * Lookup486: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup506: opal_runtime::Runtime
+   * Lookup487: opal_runtime::Runtime
    **/
   OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup507: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+   * Lookup488: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
    **/
   PalletEthereumFakeTransactionFinalizer: 'Null'
 };
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,19 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-<<<<<<< HEAD
-<<<<<<< HEAD
-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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
-=======
-<<<<<<< HEAD
-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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
-=======
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
->>>>>>> refactor: `app-promotion` configuration pallet
->>>>>>> e2b20310... refactor: `app-promotion` configuration pallet
-=======
-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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
->>>>>>> 4824c0e1... chore: regenerate types
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   interface InterfaceTypes {
@@ -33,7 +21,6 @@
     CumulusPalletXcmCall: CumulusPalletXcmCall;
     CumulusPalletXcmError: CumulusPalletXcmError;
     CumulusPalletXcmEvent: CumulusPalletXcmEvent;
-    CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
     CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
     CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
     CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -69,7 +56,6 @@
     FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
     FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
     FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
-    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
     FrameSupportPalletId: FrameSupportPalletId;
     FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
     FrameSystemAccountInfo: FrameSystemAccountInfo;
@@ -87,7 +73,6 @@
     FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
     FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
     FrameSystemPhase: FrameSystemPhase;
-    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
     OpalRuntimeRuntime: OpalRuntimeRuntime;
     OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
     OrmlTokensAccountData: OrmlTokensAccountData;
@@ -123,7 +108,6 @@
     PalletEthereumError: PalletEthereumError;
     PalletEthereumEvent: PalletEthereumEvent;
     PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
-    PalletEthereumRawOrigin: PalletEthereumRawOrigin;
     PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
     PalletEvmCall: PalletEvmCall;
     PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -176,16 +160,9 @@
     PalletTreasuryProposal: PalletTreasuryProposal;
     PalletUniqueCall: PalletUniqueCall;
     PalletUniqueError: PalletUniqueError;
-    PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
-    PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
-    PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
-    PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
-    PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
-    PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
     PalletXcmCall: PalletXcmCall;
     PalletXcmError: PalletXcmError;
     PalletXcmEvent: PalletXcmEvent;
-    PalletXcmOrigin: PalletXcmOrigin;
     PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
     PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
     PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -216,7 +193,6 @@
     SpCoreEcdsaSignature: SpCoreEcdsaSignature;
     SpCoreEd25519Signature: SpCoreEd25519Signature;
     SpCoreSr25519Signature: SpCoreSr25519Signature;
-    SpCoreVoid: SpCoreVoid;
     SpRuntimeArithmeticError: SpRuntimeArithmeticError;
     SpRuntimeDigest: SpRuntimeDigest;
     SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1109,43 +1109,7 @@
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name PalletUniqueSchedulerV2Event (89) */
-  interface PalletUniqueSchedulerV2Event extends Enum {
-    readonly isScheduled: boolean;
-    readonly asScheduled: {
-      readonly when: u32;
-      readonly index: u32;
-    } & Struct;
-    readonly isCanceled: boolean;
-    readonly asCanceled: {
-      readonly when: u32;
-      readonly index: u32;
-    } & Struct;
-    readonly isDispatched: boolean;
-    readonly asDispatched: {
-      readonly task: ITuple<[u32, u32]>;
-      readonly id: Option<U8aFixed>;
-      readonly result: Result<Null, SpRuntimeDispatchError>;
-    } & Struct;
-    readonly isPriorityChanged: boolean;
-    readonly asPriorityChanged: {
-      readonly task: ITuple<[u32, u32]>;
-      readonly priority: u8;
-    } & Struct;
-    readonly isCallUnavailable: boolean;
-    readonly asCallUnavailable: {
-      readonly task: ITuple<[u32, u32]>;
-      readonly id: Option<U8aFixed>;
-    } & Struct;
-    readonly isPermanentlyOverweight: boolean;
-    readonly asPermanentlyOverweight: {
-      readonly task: ITuple<[u32, u32]>;
-      readonly id: Option<U8aFixed>;
-    } & Struct;
-    readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
-  }
-
-  /** @name PalletCommonEvent (92) */
+  /** @name PalletCommonEvent (89) */
   interface PalletCommonEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1194,7 +1158,7 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
   }
 
-  /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */
+  /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */
   interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
     readonly isSubstrate: boolean;
     readonly asSubstrate: AccountId32;
@@ -1203,14 +1167,14 @@
     readonly type: 'Substrate' | 'Ethereum';
   }
 
-  /** @name PalletStructureEvent (99) */
+  /** @name PalletStructureEvent (96) */
   interface PalletStructureEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
     readonly type: 'Executed';
   }
 
-  /** @name PalletRmrkCoreEvent (100) */
+  /** @name PalletRmrkCoreEvent (97) */
   interface PalletRmrkCoreEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: {
@@ -1300,7 +1264,7 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
   }
 
-  /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */
+  /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */
   interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
     readonly isAccountId: boolean;
     readonly asAccountId: AccountId32;
@@ -1309,7 +1273,7 @@
     readonly type: 'AccountId' | 'CollectionAndNftTuple';
   }
 
-  /** @name PalletRmrkEquipEvent (105) */
+  /** @name PalletRmrkEquipEvent (102) */
   interface PalletRmrkEquipEvent extends Enum {
     readonly isBaseCreated: boolean;
     readonly asBaseCreated: {
@@ -1324,7 +1288,7 @@
     readonly type: 'BaseCreated' | 'EquippablesUpdated';
   }
 
-  /** @name PalletAppPromotionEvent (106) */
+  /** @name PalletAppPromotionEvent (103) */
   interface PalletAppPromotionEvent extends Enum {
     readonly isStakingRecalculation: boolean;
     readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1337,7 +1301,7 @@
     readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
   }
 
-  /** @name PalletForeignAssetsModuleEvent (107) */
+  /** @name PalletForeignAssetsModuleEvent (104) */
   interface PalletForeignAssetsModuleEvent extends Enum {
     readonly isForeignAssetRegistered: boolean;
     readonly asForeignAssetRegistered: {
@@ -1364,7 +1328,7 @@
     readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
   }
 
-  /** @name PalletForeignAssetsModuleAssetMetadata (108) */
+  /** @name PalletForeignAssetsModuleAssetMetadata (105) */
   interface PalletForeignAssetsModuleAssetMetadata extends Struct {
     readonly name: Bytes;
     readonly symbol: Bytes;
@@ -1372,7 +1336,7 @@
     readonly minimalBalance: u128;
   }
 
-  /** @name PalletEvmEvent (109) */
+  /** @name PalletEvmEvent (106) */
   interface PalletEvmEvent extends Enum {
     readonly isLog: boolean;
     readonly asLog: {
@@ -1397,14 +1361,14 @@
     readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
   }
 
-  /** @name EthereumLog (110) */
+  /** @name EthereumLog (107) */
   interface EthereumLog extends Struct {
     readonly address: H160;
     readonly topics: Vec<H256>;
     readonly data: Bytes;
   }
 
-  /** @name PalletEthereumEvent (112) */
+  /** @name PalletEthereumEvent (109) */
   interface PalletEthereumEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: {
@@ -1416,7 +1380,7 @@
     readonly type: 'Executed';
   }
 
-  /** @name EvmCoreErrorExitReason (113) */
+  /** @name EvmCoreErrorExitReason (110) */
   interface EvmCoreErrorExitReason extends Enum {
     readonly isSucceed: boolean;
     readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1429,7 +1393,7 @@
     readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
   }
 
-  /** @name EvmCoreErrorExitSucceed (114) */
+  /** @name EvmCoreErrorExitSucceed (111) */
   interface EvmCoreErrorExitSucceed extends Enum {
     readonly isStopped: boolean;
     readonly isReturned: boolean;
@@ -1437,7 +1401,7 @@
     readonly type: 'Stopped' | 'Returned' | 'Suicided';
   }
 
-  /** @name EvmCoreErrorExitError (115) */
+  /** @name EvmCoreErrorExitError (112) */
   interface EvmCoreErrorExitError extends Enum {
     readonly isStackUnderflow: boolean;
     readonly isStackOverflow: boolean;
@@ -1458,13 +1422,13 @@
     readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
   }
 
-  /** @name EvmCoreErrorExitRevert (118) */
+  /** @name EvmCoreErrorExitRevert (115) */
   interface EvmCoreErrorExitRevert extends Enum {
     readonly isReverted: boolean;
     readonly type: 'Reverted';
   }
 
-  /** @name EvmCoreErrorExitFatal (119) */
+  /** @name EvmCoreErrorExitFatal (116) */
   interface EvmCoreErrorExitFatal extends Enum {
     readonly isNotSupported: boolean;
     readonly isUnhandledInterrupt: boolean;
@@ -1475,7 +1439,7 @@
     readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
   }
 
-  /** @name PalletEvmContractHelpersEvent (120) */
+  /** @name PalletEvmContractHelpersEvent (117) */
   interface PalletEvmContractHelpersEvent extends Enum {
     readonly isContractSponsorSet: boolean;
     readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1486,20 +1450,20 @@
     readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
   }
 
-  /** @name PalletEvmMigrationEvent (121) */
+  /** @name PalletEvmMigrationEvent (118) */
   interface PalletEvmMigrationEvent extends Enum {
     readonly isTestEvent: boolean;
     readonly type: 'TestEvent';
   }
 
-  /** @name PalletMaintenanceEvent (122) */
+  /** @name PalletMaintenanceEvent (119) */
   interface PalletMaintenanceEvent extends Enum {
     readonly isMaintenanceEnabled: boolean;
     readonly isMaintenanceDisabled: boolean;
     readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
   }
 
-  /** @name PalletTestUtilsEvent (123) */
+  /** @name PalletTestUtilsEvent (120) */
   interface PalletTestUtilsEvent extends Enum {
     readonly isValueIsSet: boolean;
     readonly isShouldRollback: boolean;
@@ -1507,7 +1471,7 @@
     readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
   }
 
-  /** @name FrameSystemPhase (124) */
+  /** @name FrameSystemPhase (121) */
   interface FrameSystemPhase extends Enum {
     readonly isApplyExtrinsic: boolean;
     readonly asApplyExtrinsic: u32;
@@ -1516,13 +1480,13 @@
     readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
   }
 
-  /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
+  /** @name FrameSystemLastRuntimeUpgradeInfo (124) */
   interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
     readonly specVersion: Compact<u32>;
     readonly specName: Text;
   }
 
-  /** @name FrameSystemCall (127) */
+  /** @name FrameSystemCall (125) */
   interface FrameSystemCall extends Enum {
     readonly isFillBlock: boolean;
     readonly asFillBlock: {
@@ -1564,21 +1528,21 @@
     readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
   }
 
-  /** @name FrameSystemLimitsBlockWeights (132) */
+  /** @name FrameSystemLimitsBlockWeights (130) */
   interface FrameSystemLimitsBlockWeights extends Struct {
     readonly baseBlock: SpWeightsWeightV2Weight;
     readonly maxBlock: SpWeightsWeightV2Weight;
     readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */
+  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */
   interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
     readonly normal: FrameSystemLimitsWeightsPerClass;
     readonly operational: FrameSystemLimitsWeightsPerClass;
     readonly mandatory: FrameSystemLimitsWeightsPerClass;
   }
 
-  /** @name FrameSystemLimitsWeightsPerClass (134) */
+  /** @name FrameSystemLimitsWeightsPerClass (132) */
   interface FrameSystemLimitsWeightsPerClass extends Struct {
     readonly baseExtrinsic: SpWeightsWeightV2Weight;
     readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1586,25 +1550,25 @@
     readonly reserved: Option<SpWeightsWeightV2Weight>;
   }
 
-  /** @name FrameSystemLimitsBlockLength (136) */
+  /** @name FrameSystemLimitsBlockLength (134) */
   interface FrameSystemLimitsBlockLength extends Struct {
     readonly max: FrameSupportDispatchPerDispatchClassU32;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassU32 (137) */
+  /** @name FrameSupportDispatchPerDispatchClassU32 (135) */
   interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
     readonly normal: u32;
     readonly operational: u32;
     readonly mandatory: u32;
   }
 
-  /** @name SpWeightsRuntimeDbWeight (138) */
+  /** @name SpWeightsRuntimeDbWeight (136) */
   interface SpWeightsRuntimeDbWeight extends Struct {
     readonly read: u64;
     readonly write: u64;
   }
 
-  /** @name SpVersionRuntimeVersion (139) */
+  /** @name SpVersionRuntimeVersion (137) */
   interface SpVersionRuntimeVersion extends Struct {
     readonly specName: Text;
     readonly implName: Text;
@@ -1616,7 +1580,7 @@
     readonly stateVersion: u8;
   }
 
-  /** @name FrameSystemError (144) */
+  /** @name FrameSystemError (142) */
   interface FrameSystemError extends Enum {
     readonly isInvalidSpecName: boolean;
     readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1627,7 +1591,7 @@
     readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
   }
 
-  /** @name PolkadotPrimitivesV2PersistedValidationData (145) */
+  /** @name PolkadotPrimitivesV2PersistedValidationData (143) */
   interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
     readonly parentHead: Bytes;
     readonly relayParentNumber: u32;
@@ -1635,18 +1599,18 @@
     readonly maxPovSize: u32;
   }
 
-  /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */
+  /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */
   interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
     readonly isPresent: boolean;
     readonly type: 'Present';
   }
 
-  /** @name SpTrieStorageProof (149) */
+  /** @name SpTrieStorageProof (147) */
   interface SpTrieStorageProof extends Struct {
     readonly trieNodes: BTreeSet<Bytes>;
   }
 
-  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */
+  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */
   interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
     readonly dmqMqcHead: H256;
     readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1654,7 +1618,7 @@
     readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */
+  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */
   interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
     readonly maxCapacity: u32;
     readonly maxTotalSize: u32;
@@ -1664,7 +1628,7 @@
     readonly mqcHead: Option<H256>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */
+  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */
   interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
     readonly maxCodeSize: u32;
     readonly maxHeadDataSize: u32;
@@ -1677,13 +1641,13 @@
     readonly validationUpgradeDelay: u32;
   }
 
-  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */
+  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */
   interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
     readonly recipient: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemCall (162) */
+  /** @name CumulusPalletParachainSystemCall (160) */
   interface CumulusPalletParachainSystemCall extends Enum {
     readonly isSetValidationData: boolean;
     readonly asSetValidationData: {
@@ -1704,7 +1668,7 @@
     readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
   }
 
-  /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */
+  /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */
   interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
     readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
     readonly relayChainState: SpTrieStorageProof;
@@ -1712,19 +1676,19 @@
     readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
   }
 
-  /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */
+  /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */
   interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
     readonly sentAt: u32;
     readonly msg: Bytes;
   }
 
-  /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */
+  /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */
   interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
     readonly sentAt: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemError (171) */
+  /** @name CumulusPalletParachainSystemError (169) */
   interface CumulusPalletParachainSystemError extends Enum {
     readonly isOverlappingUpgrades: boolean;
     readonly isProhibitedByPolkadot: boolean;
@@ -1737,14 +1701,14 @@
     readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
   }
 
-  /** @name PalletBalancesBalanceLock (173) */
+  /** @name PalletBalancesBalanceLock (171) */
   interface PalletBalancesBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
     readonly reasons: PalletBalancesReasons;
   }
 
-  /** @name PalletBalancesReasons (174) */
+  /** @name PalletBalancesReasons (172) */
   interface PalletBalancesReasons extends Enum {
     readonly isFee: boolean;
     readonly isMisc: boolean;
@@ -1752,20 +1716,20 @@
     readonly type: 'Fee' | 'Misc' | 'All';
   }
 
-  /** @name PalletBalancesReserveData (177) */
+  /** @name PalletBalancesReserveData (175) */
   interface PalletBalancesReserveData extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name PalletBalancesReleases (179) */
+  /** @name PalletBalancesReleases (177) */
   interface PalletBalancesReleases extends Enum {
     readonly isV100: boolean;
     readonly isV200: boolean;
     readonly type: 'V100' | 'V200';
   }
 
-  /** @name PalletBalancesCall (180) */
+  /** @name PalletBalancesCall (178) */
   interface PalletBalancesCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -1802,7 +1766,7 @@
     readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
   }
 
-  /** @name PalletBalancesError (183) */
+  /** @name PalletBalancesError (181) */
   interface PalletBalancesError extends Enum {
     readonly isVestingBalance: boolean;
     readonly isLiquidityRestrictions: boolean;
@@ -1815,7 +1779,7 @@
     readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name PalletTimestampCall (185) */
+  /** @name PalletTimestampCall (183) */
   interface PalletTimestampCall extends Enum {
     readonly isSet: boolean;
     readonly asSet: {
@@ -1824,14 +1788,14 @@
     readonly type: 'Set';
   }
 
-  /** @name PalletTransactionPaymentReleases (187) */
+  /** @name PalletTransactionPaymentReleases (185) */
   interface PalletTransactionPaymentReleases extends Enum {
     readonly isV1Ancient: boolean;
     readonly isV2: boolean;
     readonly type: 'V1Ancient' | 'V2';
   }
 
-  /** @name PalletTreasuryProposal (188) */
+  /** @name PalletTreasuryProposal (186) */
   interface PalletTreasuryProposal extends Struct {
     readonly proposer: AccountId32;
     readonly value: u128;
@@ -1839,7 +1803,7 @@
     readonly bond: u128;
   }
 
-  /** @name PalletTreasuryCall (191) */
+  /** @name PalletTreasuryCall (189) */
   interface PalletTreasuryCall extends Enum {
     readonly isProposeSpend: boolean;
     readonly asProposeSpend: {
@@ -1866,10 +1830,10 @@
     readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
   }
 
-  /** @name FrameSupportPalletId (194) */
+  /** @name FrameSupportPalletId (192) */
   interface FrameSupportPalletId extends U8aFixed {}
 
-  /** @name PalletTreasuryError (195) */
+  /** @name PalletTreasuryError (193) */
   interface PalletTreasuryError extends Enum {
     readonly isInsufficientProposersBalance: boolean;
     readonly isInvalidIndex: boolean;
@@ -1879,7 +1843,7 @@
     readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
   }
 
-  /** @name PalletSudoCall (196) */
+  /** @name PalletSudoCall (194) */
   interface PalletSudoCall extends Enum {
     readonly isSudo: boolean;
     readonly asSudo: {
@@ -1902,7 +1866,7 @@
     readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
   }
 
-  /** @name OrmlVestingModuleCall (198) */
+  /** @name OrmlVestingModuleCall (196) */
   interface OrmlVestingModuleCall extends Enum {
     readonly isClaim: boolean;
     readonly isVestedTransfer: boolean;
@@ -1922,7 +1886,7 @@
     readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
   }
 
-  /** @name OrmlXtokensModuleCall (200) */
+  /** @name OrmlXtokensModuleCall (198) */
   interface OrmlXtokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -1969,7 +1933,7 @@
     readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
   }
 
-  /** @name XcmVersionedMultiAsset (201) */
+  /** @name XcmVersionedMultiAsset (199) */
   interface XcmVersionedMultiAsset extends Enum {
     readonly isV0: boolean;
     readonly asV0: XcmV0MultiAsset;
@@ -1978,7 +1942,7 @@
     readonly type: 'V0' | 'V1';
   }
 
-  /** @name OrmlTokensModuleCall (204) */
+  /** @name OrmlTokensModuleCall (202) */
   interface OrmlTokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -2015,7 +1979,7 @@
     readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
   }
 
-  /** @name CumulusPalletXcmpQueueCall (205) */
+  /** @name CumulusPalletXcmpQueueCall (203) */
   interface CumulusPalletXcmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
@@ -2051,7 +2015,7 @@
     readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
   }
 
-  /** @name PalletXcmCall (206) */
+  /** @name PalletXcmCall (204) */
   interface PalletXcmCall extends Enum {
     readonly isSend: boolean;
     readonly asSend: {
@@ -2113,7 +2077,7 @@
     readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
   }
 
-  /** @name XcmVersionedXcm (207) */
+  /** @name XcmVersionedXcm (205) */
   interface XcmVersionedXcm extends Enum {
     readonly isV0: boolean;
     readonly asV0: XcmV0Xcm;
@@ -2124,7 +2088,7 @@
     readonly type: 'V0' | 'V1' | 'V2';
   }
 
-  /** @name XcmV0Xcm (208) */
+  /** @name XcmV0Xcm (206) */
   interface XcmV0Xcm extends Enum {
     readonly isWithdrawAsset: boolean;
     readonly asWithdrawAsset: {
@@ -2187,7 +2151,7 @@
     readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
   }
 
-  /** @name XcmV0Order (210) */
+  /** @name XcmV0Order (208) */
   interface XcmV0Order extends Enum {
     readonly isNull: boolean;
     readonly isDepositAsset: boolean;
@@ -2235,14 +2199,14 @@
     readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
   }
 
-  /** @name XcmV0Response (212) */
+  /** @name XcmV0Response (210) */
   interface XcmV0Response extends Enum {
     readonly isAssets: boolean;
     readonly asAssets: Vec<XcmV0MultiAsset>;
     readonly type: 'Assets';
   }
 
-  /** @name XcmV1Xcm (213) */
+  /** @name XcmV1Xcm (211) */
   interface XcmV1Xcm extends Enum {
     readonly isWithdrawAsset: boolean;
     readonly asWithdrawAsset: {
@@ -2311,7 +2275,7 @@
     readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
   }
 
-  /** @name XcmV1Order (215) */
+  /** @name XcmV1Order (213) */
   interface XcmV1Order extends Enum {
     readonly isNoop: boolean;
     readonly isDepositAsset: boolean;
@@ -2361,7 +2325,7 @@
     readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
   }
 
-  /** @name XcmV1Response (217) */
+  /** @name XcmV1Response (215) */
   interface XcmV1Response extends Enum {
     readonly isAssets: boolean;
     readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2370,10 +2334,10 @@
     readonly type: 'Assets' | 'Version';
   }
 
-  /** @name CumulusPalletXcmCall (231) */
+  /** @name CumulusPalletXcmCall (229) */
   type CumulusPalletXcmCall = Null;
 
-  /** @name CumulusPalletDmpQueueCall (232) */
+  /** @name CumulusPalletDmpQueueCall (230) */
   interface CumulusPalletDmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
@@ -2383,7 +2347,7 @@
     readonly type: 'ServiceOverweight';
   }
 
-  /** @name PalletInflationCall (233) */
+  /** @name PalletInflationCall (231) */
   interface PalletInflationCall extends Enum {
     readonly isStartInflation: boolean;
     readonly asStartInflation: {
@@ -2392,7 +2356,7 @@
     readonly type: 'StartInflation';
   }
 
-  /** @name PalletUniqueCall (234) */
+  /** @name PalletUniqueCall (232) */
   interface PalletUniqueCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -2556,7 +2520,7 @@
     readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';
   }
 
-  /** @name UpDataStructsCollectionMode (239) */
+  /** @name UpDataStructsCollectionMode (237) */
   interface UpDataStructsCollectionMode extends Enum {
     readonly isNft: boolean;
     readonly isFungible: boolean;
@@ -2565,7 +2529,7 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateCollectionData (240) */
+  /** @name UpDataStructsCreateCollectionData (238) */
   interface UpDataStructsCreateCollectionData extends Struct {
     readonly mode: UpDataStructsCollectionMode;
     readonly access: Option<UpDataStructsAccessMode>;
@@ -2579,14 +2543,14 @@
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsAccessMode (242) */
+  /** @name UpDataStructsAccessMode (240) */
   interface UpDataStructsAccessMode extends Enum {
     readonly isNormal: boolean;
     readonly isAllowList: boolean;
     readonly type: 'Normal' | 'AllowList';
   }
 
-  /** @name UpDataStructsCollectionLimits (244) */
+  /** @name UpDataStructsCollectionLimits (242) */
   interface UpDataStructsCollectionLimits extends Struct {
     readonly accountTokenOwnershipLimit: Option<u32>;
     readonly sponsoredDataSize: Option<u32>;
@@ -2599,7 +2563,7 @@
     readonly transfersEnabled: Option<bool>;
   }
 
-  /** @name UpDataStructsSponsoringRateLimit (246) */
+  /** @name UpDataStructsSponsoringRateLimit (244) */
   interface UpDataStructsSponsoringRateLimit extends Enum {
     readonly isSponsoringDisabled: boolean;
     readonly isBlocks: boolean;
@@ -2607,43 +2571,43 @@
     readonly type: 'SponsoringDisabled' | 'Blocks';
   }
 
-  /** @name UpDataStructsCollectionPermissions (249) */
+  /** @name UpDataStructsCollectionPermissions (247) */
   interface UpDataStructsCollectionPermissions extends Struct {
     readonly access: Option<UpDataStructsAccessMode>;
     readonly mintMode: Option<bool>;
     readonly nesting: Option<UpDataStructsNestingPermissions>;
   }
 
-  /** @name UpDataStructsNestingPermissions (251) */
+  /** @name UpDataStructsNestingPermissions (249) */
   interface UpDataStructsNestingPermissions extends Struct {
     readonly tokenOwner: bool;
     readonly collectionAdmin: bool;
     readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
   }
 
-  /** @name UpDataStructsOwnerRestrictedSet (253) */
+  /** @name UpDataStructsOwnerRestrictedSet (251) */
   interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
 
-  /** @name UpDataStructsPropertyKeyPermission (258) */
+  /** @name UpDataStructsPropertyKeyPermission (256) */
   interface UpDataStructsPropertyKeyPermission extends Struct {
     readonly key: Bytes;
     readonly permission: UpDataStructsPropertyPermission;
   }
 
-  /** @name UpDataStructsPropertyPermission (259) */
+  /** @name UpDataStructsPropertyPermission (257) */
   interface UpDataStructsPropertyPermission extends Struct {
     readonly mutable: bool;
     readonly collectionAdmin: bool;
     readonly tokenOwner: bool;
   }
 
-  /** @name UpDataStructsProperty (262) */
+  /** @name UpDataStructsProperty (260) */
   interface UpDataStructsProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name UpDataStructsCreateItemData (265) */
+  /** @name UpDataStructsCreateItemData (263) */
   interface UpDataStructsCreateItemData extends Enum {
     readonly isNft: boolean;
     readonly asNft: UpDataStructsCreateNftData;
@@ -2654,23 +2618,23 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateNftData (266) */
+  /** @name UpDataStructsCreateNftData (264) */
   interface UpDataStructsCreateNftData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateFungibleData (267) */
+  /** @name UpDataStructsCreateFungibleData (265) */
   interface UpDataStructsCreateFungibleData extends Struct {
     readonly value: u128;
   }
 
-  /** @name UpDataStructsCreateReFungibleData (268) */
+  /** @name UpDataStructsCreateReFungibleData (266) */
   interface UpDataStructsCreateReFungibleData extends Struct {
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateItemExData (271) */
+  /** @name UpDataStructsCreateItemExData (269) */
   interface UpDataStructsCreateItemExData extends Enum {
     readonly isNft: boolean;
     readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2683,75 +2647,26 @@
     readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
   }
 
-  /** @name UpDataStructsCreateNftExData (273) */
+  /** @name UpDataStructsCreateNftExData (271) */
   interface UpDataStructsCreateNftExData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */
+  /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */
   interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
     readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */
+  /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */
   interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
     readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name PalletUniqueSchedulerV2Call (283) */
-  interface PalletUniqueSchedulerV2Call extends Enum {
-    readonly isSchedule: boolean;
-    readonly asSchedule: {
-      readonly when: u32;
-      readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-      readonly priority: Option<u8>;
-      readonly call: Call;
-    } & Struct;
-    readonly isCancel: boolean;
-    readonly asCancel: {
-      readonly when: u32;
-      readonly index: u32;
-    } & Struct;
-    readonly isScheduleNamed: boolean;
-    readonly asScheduleNamed: {
-      readonly id: U8aFixed;
-      readonly when: u32;
-      readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-      readonly priority: Option<u8>;
-      readonly call: Call;
-    } & Struct;
-    readonly isCancelNamed: boolean;
-    readonly asCancelNamed: {
-      readonly id: U8aFixed;
-    } & Struct;
-    readonly isScheduleAfter: boolean;
-    readonly asScheduleAfter: {
-      readonly after: u32;
-      readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-      readonly priority: Option<u8>;
-      readonly call: Call;
-    } & Struct;
-    readonly isScheduleNamedAfter: boolean;
-    readonly asScheduleNamedAfter: {
-      readonly id: U8aFixed;
-      readonly after: u32;
-      readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-      readonly priority: Option<u8>;
-      readonly call: Call;
-    } & Struct;
-    readonly isChangeNamedPriority: boolean;
-    readonly asChangeNamedPriority: {
-      readonly id: U8aFixed;
-      readonly priority: u8;
-    } & Struct;
-    readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
-  }
-
-  /** @name PalletConfigurationCall (286) */
+  /** @name PalletConfigurationCall (281) */
   interface PalletConfigurationCall extends Enum {
     readonly isSetWeightToFeeCoefficientOverride: boolean;
     readonly asSetWeightToFeeCoefficientOverride: {
@@ -2765,16 +2680,28 @@
     readonly asSetXcmAllowedLocations: {
       readonly locations: Option<Vec<XcmV1MultiLocation>>;
     } & Struct;
-    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
+    readonly isSetAppPromotionConfigurationOverride: boolean;
+    readonly asSetAppPromotionConfigurationOverride: {
+      readonly configuration: PalletConfigurationAppPromotionConfiguration;
+    } & Struct;
+    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride';
   }
 
-  /** @name PalletTemplateTransactionPaymentCall (291) */
+  /** @name PalletConfigurationAppPromotionConfiguration (286) */
+  interface PalletConfigurationAppPromotionConfiguration extends Struct {
+    readonly recalculationInterval: Option<u32>;
+    readonly pendingInterval: Option<u32>;
+    readonly intervalIncome: Option<Perbill>;
+    readonly maxStakersPerCalculation: Option<u8>;
+  }
+
+  /** @name PalletTemplateTransactionPaymentCall (289) */
   type PalletTemplateTransactionPaymentCall = Null;
 
-  /** @name PalletStructureCall (292) */
+  /** @name PalletStructureCall (290) */
   type PalletStructureCall = Null;
 
-  /** @name PalletRmrkCoreCall (293) */
+  /** @name PalletRmrkCoreCall (291) */
   interface PalletRmrkCoreCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -2880,7 +2807,7 @@
     readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
   }
 
-  /** @name RmrkTraitsResourceResourceTypes (299) */
+  /** @name RmrkTraitsResourceResourceTypes (297) */
   interface RmrkTraitsResourceResourceTypes extends Enum {
     readonly isBasic: boolean;
     readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2891,7 +2818,7 @@
     readonly type: 'Basic' | 'Composable' | 'Slot';
   }
 
-  /** @name RmrkTraitsResourceBasicResource (301) */
+  /** @name RmrkTraitsResourceBasicResource (299) */
   interface RmrkTraitsResourceBasicResource extends Struct {
     readonly src: Option<Bytes>;
     readonly metadata: Option<Bytes>;
@@ -2899,7 +2826,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceComposableResource (303) */
+  /** @name RmrkTraitsResourceComposableResource (301) */
   interface RmrkTraitsResourceComposableResource extends Struct {
     readonly parts: Vec<u32>;
     readonly base: u32;
@@ -2909,7 +2836,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name RmrkTraitsResourceSlotResource (304) */
+  /** @name RmrkTraitsResourceSlotResource (302) */
   interface RmrkTraitsResourceSlotResource extends Struct {
     readonly base: u32;
     readonly src: Option<Bytes>;
@@ -2919,7 +2846,7 @@
     readonly thumb: Option<Bytes>;
   }
 
-  /** @name PalletRmrkEquipCall (307) */
+  /** @name PalletRmrkEquipCall (305) */
   interface PalletRmrkEquipCall extends Enum {
     readonly isCreateBase: boolean;
     readonly asCreateBase: {
@@ -2941,7 +2868,7 @@
     readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
   }
 
-  /** @name RmrkTraitsPartPartType (310) */
+  /** @name RmrkTraitsPartPartType (308) */
   interface RmrkTraitsPartPartType extends Enum {
     readonly isFixedPart: boolean;
     readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2950,14 +2877,14 @@
     readonly type: 'FixedPart' | 'SlotPart';
   }
 
-  /** @name RmrkTraitsPartFixedPart (312) */
+  /** @name RmrkTraitsPartFixedPart (310) */
   interface RmrkTraitsPartFixedPart extends Struct {
     readonly id: u32;
     readonly z: u32;
     readonly src: Bytes;
   }
 
-  /** @name RmrkTraitsPartSlotPart (313) */
+  /** @name RmrkTraitsPartSlotPart (311) */
   interface RmrkTraitsPartSlotPart extends Struct {
     readonly id: u32;
     readonly equippable: RmrkTraitsPartEquippableList;
@@ -2965,7 +2892,7 @@
     readonly z: u32;
   }
 
-  /** @name RmrkTraitsPartEquippableList (314) */
+  /** @name RmrkTraitsPartEquippableList (312) */
   interface RmrkTraitsPartEquippableList extends Enum {
     readonly isAll: boolean;
     readonly isEmpty: boolean;
@@ -2974,20 +2901,20 @@
     readonly type: 'All' | 'Empty' | 'Custom';
   }
 
-  /** @name RmrkTraitsTheme (316) */
+  /** @name RmrkTraitsTheme (314) */
   interface RmrkTraitsTheme extends Struct {
     readonly name: Bytes;
     readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
     readonly inherit: bool;
   }
 
-  /** @name RmrkTraitsThemeThemeProperty (318) */
+  /** @name RmrkTraitsThemeThemeProperty (316) */
   interface RmrkTraitsThemeThemeProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name PalletAppPromotionCall (320) */
+  /** @name PalletAppPromotionCall (318) */
   interface PalletAppPromotionCall extends Enum {
     readonly isSetAdminAddress: boolean;
     readonly asSetAdminAddress: {
@@ -3021,7 +2948,7 @@
     readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
   }
 
-  /** @name PalletForeignAssetsModuleCall (321) */
+  /** @name PalletForeignAssetsModuleCall (319) */
   interface PalletForeignAssetsModuleCall extends Enum {
     readonly isRegisterForeignAsset: boolean;
     readonly asRegisterForeignAsset: {
@@ -3038,7 +2965,7 @@
     readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
   }
 
-  /** @name PalletEvmCall (322) */
+  /** @name PalletEvmCall (320) */
   interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -3083,7 +3010,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (328) */
+  /** @name PalletEthereumCall (326) */
   interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -3092,7 +3019,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (329) */
+  /** @name EthereumTransactionTransactionV2 (327) */
   interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3103,7 +3030,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (330) */
+  /** @name EthereumTransactionLegacyTransaction (328) */
   interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -3114,7 +3041,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (331) */
+  /** @name EthereumTransactionTransactionAction (329) */
   interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -3122,14 +3049,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (332) */
+  /** @name EthereumTransactionTransactionSignature (330) */
   interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (334) */
+  /** @name EthereumTransactionEip2930Transaction (332) */
   interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3144,13 +3071,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (336) */
+  /** @name EthereumTransactionAccessListItem (334) */
   interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (337) */
+  /** @name EthereumTransactionEip1559Transaction (335) */
   interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3166,7 +3093,7 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmMigrationCall (338) */
+  /** @name PalletEvmMigrationCall (336) */
   interface PalletEvmMigrationCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
@@ -3193,14 +3120,14 @@
     readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
   }
 
-  /** @name PalletMaintenanceCall (342) */
+  /** @name PalletMaintenanceCall (340) */
   interface PalletMaintenanceCall extends Enum {
     readonly isEnable: boolean;
     readonly isDisable: boolean;
     readonly type: 'Enable' | 'Disable';
   }
 
-  /** @name PalletTestUtilsCall (343) */
+  /** @name PalletTestUtilsCall (341) */
   interface PalletTestUtilsCall extends Enum {
     readonly isEnable: boolean;
     readonly isSetTestValue: boolean;
@@ -3212,26 +3139,21 @@
       readonly value: u32;
     } & Struct;
     readonly isIncTestValue: boolean;
-    readonly isSelfCancelingInc: boolean;
-    readonly asSelfCancelingInc: {
-      readonly id: U8aFixed;
-      readonly maxTestValue: u32;
-    } & Struct;
     readonly isJustTakeFee: boolean;
     readonly isBatchAll: boolean;
     readonly asBatchAll: {
       readonly calls: Vec<Call>;
     } & Struct;
-    readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
+    readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
   }
 
-  /** @name PalletSudoError (345) */
+  /** @name PalletSudoError (343) */
   interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name OrmlVestingModuleError (347) */
+  /** @name OrmlVestingModuleError (345) */
   interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -3242,7 +3164,7 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name OrmlXtokensModuleError (348) */
+  /** @name OrmlXtokensModuleError (346) */
   interface OrmlXtokensModuleError extends Enum {
     readonly isAssetHasNoReserve: boolean;
     readonly isNotCrossChainTransfer: boolean;
@@ -3266,26 +3188,26 @@
     readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
   }
 
-  /** @name OrmlTokensBalanceLock (351) */
+  /** @name OrmlTokensBalanceLock (349) */
   interface OrmlTokensBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensAccountData (353) */
+  /** @name OrmlTokensAccountData (351) */
   interface OrmlTokensAccountData extends Struct {
     readonly free: u128;
     readonly reserved: u128;
     readonly frozen: u128;
   }
 
-  /** @name OrmlTokensReserveData (355) */
+  /** @name OrmlTokensReserveData (353) */
   interface OrmlTokensReserveData extends Struct {
     readonly id: Null;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensModuleError (357) */
+  /** @name OrmlTokensModuleError (355) */
   interface OrmlTokensModuleError extends Enum {
     readonly isBalanceTooLow: boolean;
     readonly isAmountIntoBalanceFailed: boolean;
@@ -3298,21 +3220,21 @@
     readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */
   interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (360) */
+  /** @name CumulusPalletXcmpQueueInboundState (358) */
   interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */
   interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -3320,7 +3242,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */
   interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3329,14 +3251,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (367) */
+  /** @name CumulusPalletXcmpQueueOutboundState (365) */
   interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (369) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (367) */
   interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -3346,7 +3268,7 @@
     readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletXcmpQueueError (371) */
+  /** @name CumulusPalletXcmpQueueError (369) */
   interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -3356,7 +3278,7 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmError (372) */
+  /** @name PalletXcmError (370) */
   interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -3374,133 +3296,43 @@
     readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
   }
 
-  /** @name CumulusPalletXcmError (373) */
+  /** @name CumulusPalletXcmError (371) */
   type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (374) */
+  /** @name CumulusPalletDmpQueueConfigData (372) */
   interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (375) */
+  /** @name CumulusPalletDmpQueuePageIndexData (373) */
   interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (378) */
+  /** @name CumulusPalletDmpQueueError (376) */
   interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (382) */
+  /** @name PalletUniqueError (380) */
   interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isEmptyArgument: boolean;
     readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
-  }
-
-  /** @name PalletUniqueSchedulerV2BlockAgenda (383) */
-  interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
-    readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
-    readonly freePlaces: u32;
   }
 
-  /** @name PalletUniqueSchedulerV2Scheduled (386) */
-  interface PalletUniqueSchedulerV2Scheduled extends Struct {
-    readonly maybeId: Option<U8aFixed>;
-    readonly priority: u8;
-    readonly call: PalletUniqueSchedulerV2ScheduledCall;
-    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-    readonly origin: OpalRuntimeOriginCaller;
-  }
-
-  /** @name PalletUniqueSchedulerV2ScheduledCall (387) */
-  interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
-    readonly isInline: boolean;
-    readonly asInline: Bytes;
-    readonly isPreimageLookup: boolean;
-    readonly asPreimageLookup: {
-      readonly hash_: H256;
-      readonly unboundedLen: u32;
-    } & Struct;
-    readonly type: 'Inline' | 'PreimageLookup';
-  }
-
-  /** @name OpalRuntimeOriginCaller (389) */
-  interface OpalRuntimeOriginCaller extends Enum {
-    readonly isSystem: boolean;
-    readonly asSystem: FrameSupportDispatchRawOrigin;
-    readonly isVoid: boolean;
-    readonly isPolkadotXcm: boolean;
-    readonly asPolkadotXcm: PalletXcmOrigin;
-    readonly isCumulusXcm: boolean;
-    readonly asCumulusXcm: CumulusPalletXcmOrigin;
-    readonly isEthereum: boolean;
-    readonly asEthereum: PalletEthereumRawOrigin;
-    readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
-  }
-
-  /** @name FrameSupportDispatchRawOrigin (390) */
-  interface FrameSupportDispatchRawOrigin extends Enum {
-    readonly isRoot: boolean;
-    readonly isSigned: boolean;
-    readonly asSigned: AccountId32;
-    readonly isNone: boolean;
-    readonly type: 'Root' | 'Signed' | 'None';
-  }
-
-  /** @name PalletXcmOrigin (391) */
-  interface PalletXcmOrigin extends Enum {
-    readonly isXcm: boolean;
-    readonly asXcm: XcmV1MultiLocation;
-    readonly isResponse: boolean;
-    readonly asResponse: XcmV1MultiLocation;
-    readonly type: 'Xcm' | 'Response';
-  }
-
-  /** @name CumulusPalletXcmOrigin (392) */
-  interface CumulusPalletXcmOrigin extends Enum {
-    readonly isRelay: boolean;
-    readonly isSiblingParachain: boolean;
-    readonly asSiblingParachain: u32;
-    readonly type: 'Relay' | 'SiblingParachain';
-  }
-
-  /** @name PalletEthereumRawOrigin (393) */
-  interface PalletEthereumRawOrigin extends Enum {
-    readonly isEthereumTransaction: boolean;
-    readonly asEthereumTransaction: H160;
-    readonly type: 'EthereumTransaction';
-  }
-
-  /** @name SpCoreVoid (394) */
-  type SpCoreVoid = Null;
-
-  /** @name PalletUniqueSchedulerV2Error (396) */
-  interface PalletUniqueSchedulerV2Error extends Enum {
-    readonly isFailedToSchedule: boolean;
-    readonly isAgendaIsExhausted: boolean;
-    readonly isScheduledCallCorrupted: boolean;
-    readonly isPreimageNotFound: boolean;
-    readonly isTooBigScheduledCall: boolean;
-    readonly isNotFound: boolean;
-    readonly isTargetBlockNumberInPast: boolean;
-    readonly isNamed: boolean;
-    readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
-  }
-
-  /** @name PalletConfigurationError (400) */
+  /** @name PalletConfigurationError (381) */
   interface PalletConfigurationError extends Enum {
     readonly isInconsistentConfiguration: boolean;
     readonly type: 'InconsistentConfiguration';
   }
 
-  /** @name UpDataStructsCollection (401) */
+  /** @name UpDataStructsCollection (382) */
   interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3513,7 +3345,7 @@
     readonly flags: U8aFixed;
   }
 
-  /** @name UpDataStructsSponsorshipStateAccountId32 (402) */
+  /** @name UpDataStructsSponsorshipStateAccountId32 (383) */
   interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3523,43 +3355,43 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (404) */
+  /** @name UpDataStructsProperties (385) */
   interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
     readonly spaceLimit: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (405) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (386) */
   interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (410) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (391) */
   interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionStats (417) */
+  /** @name UpDataStructsCollectionStats (398) */
   interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name UpDataStructsTokenChild (418) */
+  /** @name UpDataStructsTokenChild (399) */
   interface UpDataStructsTokenChild extends Struct {
     readonly token: u32;
     readonly collection: u32;
   }
 
-  /** @name PhantomTypeUpDataStructs (419) */
+  /** @name PhantomTypeUpDataStructs (400) */
   interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
 
-  /** @name UpDataStructsTokenData (421) */
+  /** @name UpDataStructsTokenData (402) */
   interface UpDataStructsTokenData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
     readonly pieces: u128;
   }
 
-  /** @name UpDataStructsRpcCollection (423) */
+  /** @name UpDataStructsRpcCollection (404) */
   interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3575,13 +3407,13 @@
     readonly flags: UpDataStructsRpcCollectionFlags;
   }
 
-  /** @name UpDataStructsRpcCollectionFlags (424) */
+  /** @name UpDataStructsRpcCollectionFlags (405) */
   interface UpDataStructsRpcCollectionFlags extends Struct {
     readonly foreign: bool;
     readonly erc721metadata: bool;
   }
 
-  /** @name RmrkTraitsCollectionCollectionInfo (425) */
+  /** @name RmrkTraitsCollectionCollectionInfo (406) */
   interface RmrkTraitsCollectionCollectionInfo extends Struct {
     readonly issuer: AccountId32;
     readonly metadata: Bytes;
@@ -3590,7 +3422,7 @@
     readonly nftsCount: u32;
   }
 
-  /** @name RmrkTraitsNftNftInfo (426) */
+  /** @name RmrkTraitsNftNftInfo (407) */
   interface RmrkTraitsNftNftInfo extends Struct {
     readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
     readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3599,13 +3431,13 @@
     readonly pending: bool;
   }
 
-  /** @name RmrkTraitsNftRoyaltyInfo (428) */
+  /** @name RmrkTraitsNftRoyaltyInfo (409) */
   interface RmrkTraitsNftRoyaltyInfo extends Struct {
     readonly recipient: AccountId32;
     readonly amount: Permill;
   }
 
-  /** @name RmrkTraitsResourceResourceInfo (429) */
+  /** @name RmrkTraitsResourceResourceInfo (410) */
   interface RmrkTraitsResourceResourceInfo extends Struct {
     readonly id: u32;
     readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3613,26 +3445,26 @@
     readonly pendingRemoval: bool;
   }
 
-  /** @name RmrkTraitsPropertyPropertyInfo (430) */
+  /** @name RmrkTraitsPropertyPropertyInfo (411) */
   interface RmrkTraitsPropertyPropertyInfo extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name RmrkTraitsBaseBaseInfo (431) */
+  /** @name RmrkTraitsBaseBaseInfo (412) */
   interface RmrkTraitsBaseBaseInfo extends Struct {
     readonly issuer: AccountId32;
     readonly baseType: Bytes;
     readonly symbol: Bytes;
   }
 
-  /** @name RmrkTraitsNftNftChild (432) */
+  /** @name RmrkTraitsNftNftChild (413) */
   interface RmrkTraitsNftNftChild extends Struct {
     readonly collectionId: u32;
     readonly nftId: u32;
   }
 
-  /** @name PalletCommonError (434) */
+  /** @name PalletCommonError (415) */
   interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -3673,7 +3505,7 @@
     readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
   }
 
-  /** @name PalletFungibleError (436) */
+  /** @name PalletFungibleError (417) */
   interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -3684,12 +3516,12 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
   }
 
-  /** @name PalletRefungibleItemData (437) */
+  /** @name PalletRefungibleItemData (418) */
   interface PalletRefungibleItemData extends Struct {
     readonly constData: Bytes;
   }
 
-  /** @name PalletRefungibleError (442) */
+  /** @name PalletRefungibleError (423) */
   interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -3699,19 +3531,19 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (443) */
+  /** @name PalletNonfungibleItemData (424) */
   interface PalletNonfungibleItemData extends Struct {
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsPropertyScope (445) */
+  /** @name UpDataStructsPropertyScope (426) */
   interface UpDataStructsPropertyScope extends Enum {
     readonly isNone: boolean;
     readonly isRmrk: boolean;
     readonly type: 'None' | 'Rmrk';
   }
 
-  /** @name PalletNonfungibleError (447) */
+  /** @name PalletNonfungibleError (428) */
   interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3719,7 +3551,7 @@
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
   }
 
-  /** @name PalletStructureError (448) */
+  /** @name PalletStructureError (429) */
   interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -3728,7 +3560,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
   }
 
-  /** @name PalletRmrkCoreError (449) */
+  /** @name PalletRmrkCoreError (430) */
   interface PalletRmrkCoreError extends Enum {
     readonly isCorruptedCollectionType: boolean;
     readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3752,7 +3584,7 @@
     readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
   }
 
-  /** @name PalletRmrkEquipError (451) */
+  /** @name PalletRmrkEquipError (432) */
   interface PalletRmrkEquipError extends Enum {
     readonly isPermissionError: boolean;
     readonly isNoAvailableBaseId: boolean;
@@ -3764,7 +3596,7 @@
     readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
   }
 
-  /** @name PalletAppPromotionError (457) */
+  /** @name PalletAppPromotionError (438) */
   interface PalletAppPromotionError extends Enum {
     readonly isAdminNotSet: boolean;
     readonly isNoPermission: boolean;
@@ -3775,7 +3607,7 @@
     readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
   }
 
-  /** @name PalletForeignAssetsModuleError (458) */
+  /** @name PalletForeignAssetsModuleError (439) */
   interface PalletForeignAssetsModuleError extends Enum {
     readonly isBadLocation: boolean;
     readonly isMultiLocationExisted: boolean;
@@ -3784,7 +3616,7 @@
     readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
   }
 
-  /** @name PalletEvmError (460) */
+  /** @name PalletEvmError (441) */
   interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -3799,7 +3631,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
   }
 
-  /** @name FpRpcTransactionStatus (463) */
+  /** @name FpRpcTransactionStatus (444) */
   interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -3810,10 +3642,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (465) */
+  /** @name EthbloomBloom (446) */
   interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (467) */
+  /** @name EthereumReceiptReceiptV3 (448) */
   interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3824,7 +3656,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (468) */
+  /** @name EthereumReceiptEip658ReceiptData (449) */
   interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -3832,14 +3664,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (469) */
+  /** @name EthereumBlock (450) */
   interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (470) */
+  /** @name EthereumHeader (451) */
   interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -3858,24 +3690,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (471) */
+  /** @name EthereumTypesHashH64 (452) */
   interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (476) */
+  /** @name PalletEthereumError (457) */
   interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (477) */
+  /** @name PalletEvmCoderSubstrateError (458) */
   interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (478) */
+  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (459) */
   interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3885,7 +3717,7 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (479) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (460) */
   interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -3893,7 +3725,7 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (485) */
+  /** @name PalletEvmContractHelpersError (466) */
   interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly isNoPendingSponsor: boolean;
@@ -3901,7 +3733,7 @@
     readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
   }
 
-  /** @name PalletEvmMigrationError (486) */
+  /** @name PalletEvmMigrationError (467) */
   interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
@@ -3909,17 +3741,17 @@
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
   }
 
-  /** @name PalletMaintenanceError (487) */
+  /** @name PalletMaintenanceError (468) */
   type PalletMaintenanceError = Null;
 
-  /** @name PalletTestUtilsError (488) */
+  /** @name PalletTestUtilsError (469) */
   interface PalletTestUtilsError extends Enum {
     readonly isTestPalletDisabled: boolean;
     readonly isTriggerRollback: boolean;
     readonly type: 'TestPalletDisabled' | 'TriggerRollback';
   }
 
-  /** @name SpRuntimeMultiSignature (490) */
+  /** @name SpRuntimeMultiSignature (471) */
   interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -3930,40 +3762,40 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (491) */
+  /** @name SpCoreEd25519Signature (472) */
   interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (493) */
+  /** @name SpCoreSr25519Signature (474) */
   interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (494) */
+  /** @name SpCoreEcdsaSignature (475) */
   interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (497) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (478) */
   type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckTxVersion (498) */
+  /** @name FrameSystemExtensionsCheckTxVersion (479) */
   type FrameSystemExtensionsCheckTxVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (499) */
+  /** @name FrameSystemExtensionsCheckGenesis (480) */
   type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (502) */
+  /** @name FrameSystemExtensionsCheckNonce (483) */
   interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (503) */
+  /** @name FrameSystemExtensionsCheckWeight (484) */
   type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (504) */
+  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (485) */
   type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (505) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (486) */
   interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (506) */
+  /** @name OpalRuntimeRuntime (487) */
   type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (507) */
+  /** @name PalletEthereumFakeTransactionFinalizer (488) */
   type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module