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
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.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 './default';
-=======
-<<<<<<< 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 './default';
-=======
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, 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';
->>>>>>> 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 './default';
->>>>>>> 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 './default';
 import type { Data, StorageKey } from '@polkadot/types';
 import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
 import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -340,7 +328,6 @@
     CumulusPalletXcmCall: CumulusPalletXcmCall;
     CumulusPalletXcmError: CumulusPalletXcmError;
     CumulusPalletXcmEvent: CumulusPalletXcmEvent;
-    CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
     CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
     CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
     CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -536,7 +523,6 @@
     FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
     FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
     FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
-    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
     FrameSupportPalletId: FrameSupportPalletId;
     FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
     FrameSystemAccountInfo: FrameSystemAccountInfo;
@@ -783,7 +769,6 @@
     OffenceDetails: OffenceDetails;
     Offender: Offender;
     OldV1SessionInfo: OldV1SessionInfo;
-    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
     OpalRuntimeRuntime: OpalRuntimeRuntime;
     OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
     OpaqueCall: OpaqueCall;
@@ -853,7 +838,6 @@
     PalletEthereumError: PalletEthereumError;
     PalletEthereumEvent: PalletEthereumEvent;
     PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
-    PalletEthereumRawOrigin: PalletEthereumRawOrigin;
     PalletEventMetadataLatest: PalletEventMetadataLatest;
     PalletEventMetadataV14: PalletEventMetadataV14;
     PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
@@ -914,17 +898,10 @@
     PalletTreasuryProposal: PalletTreasuryProposal;
     PalletUniqueCall: PalletUniqueCall;
     PalletUniqueError: PalletUniqueError;
-    PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
-    PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
-    PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
-    PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
-    PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
-    PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
     PalletVersion: PalletVersion;
     PalletXcmCall: PalletXcmCall;
     PalletXcmError: PalletXcmError;
     PalletXcmEvent: PalletXcmEvent;
-    PalletXcmOrigin: PalletXcmOrigin;
     ParachainDispatchOrigin: ParachainDispatchOrigin;
     ParachainInherentData: ParachainInherentData;
     ParachainProposal: ParachainProposal;
@@ -1198,7 +1175,6 @@
     SpCoreEcdsaSignature: SpCoreEcdsaSignature;
     SpCoreEd25519Signature: SpCoreEd25519Signature;
     SpCoreSr25519Signature: SpCoreSr25519Signature;
-    SpCoreVoid: SpCoreVoid;
     SpecVersion: SpecVersion;
     SpRuntimeArithmeticError: SpRuntimeArithmeticError;
     SpRuntimeDigest: SpRuntimeDigest;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
before · tests/src/interfaces/default/types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11  readonly isServiceOverweight: boolean;12  readonly asServiceOverweight: {13    readonly index: u64;14    readonly weightLimit: u64;15  } & Struct;16  readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21  readonly maxIndividual: SpWeightsWeightV2Weight;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26  readonly isUnknown: boolean;27  readonly isOverLimit: boolean;28  readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33  readonly isInvalidFormat: boolean;34  readonly asInvalidFormat: {35    readonly messageId: U8aFixed;36  } & Struct;37  readonly isUnsupportedVersion: boolean;38  readonly asUnsupportedVersion: {39    readonly messageId: U8aFixed;40  } & Struct;41  readonly isExecutedDownward: boolean;42  readonly asExecutedDownward: {43    readonly messageId: U8aFixed;44    readonly outcome: XcmV2TraitsOutcome;45  } & Struct;46  readonly isWeightExhausted: boolean;47  readonly asWeightExhausted: {48    readonly messageId: U8aFixed;49    readonly remainingWeight: SpWeightsWeightV2Weight;50    readonly requiredWeight: SpWeightsWeightV2Weight;51  } & Struct;52  readonly isOverweightEnqueued: boolean;53  readonly asOverweightEnqueued: {54    readonly messageId: U8aFixed;55    readonly overweightIndex: u64;56    readonly requiredWeight: SpWeightsWeightV2Weight;57  } & Struct;58  readonly isOverweightServiced: boolean;59  readonly asOverweightServiced: {60    readonly overweightIndex: u64;61    readonly weightUsed: SpWeightsWeightV2Weight;62  } & Struct;63  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68  readonly beginUsed: u32;69  readonly endUsed: u32;70  readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75  readonly isSetValidationData: boolean;76  readonly asSetValidationData: {77    readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78  } & Struct;79  readonly isSudoSendUpwardMessage: boolean;80  readonly asSudoSendUpwardMessage: {81    readonly message: Bytes;82  } & Struct;83  readonly isAuthorizeUpgrade: boolean;84  readonly asAuthorizeUpgrade: {85    readonly codeHash: H256;86  } & Struct;87  readonly isEnactAuthorizedUpgrade: boolean;88  readonly asEnactAuthorizedUpgrade: {89    readonly code: Bytes;90  } & Struct;91  readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96  readonly isOverlappingUpgrades: boolean;97  readonly isProhibitedByPolkadot: boolean;98  readonly isTooBig: boolean;99  readonly isValidationDataNotAvailable: boolean;100  readonly isHostConfigurationNotAvailable: boolean;101  readonly isNotScheduled: boolean;102  readonly isNothingAuthorized: boolean;103  readonly isUnauthorized: boolean;104  readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109  readonly isValidationFunctionStored: boolean;110  readonly isValidationFunctionApplied: boolean;111  readonly asValidationFunctionApplied: {112    readonly relayChainBlockNum: u32;113  } & Struct;114  readonly isValidationFunctionDiscarded: boolean;115  readonly isUpgradeAuthorized: boolean;116  readonly asUpgradeAuthorized: {117    readonly codeHash: H256;118  } & Struct;119  readonly isDownwardMessagesReceived: boolean;120  readonly asDownwardMessagesReceived: {121    readonly count: u32;122  } & Struct;123  readonly isDownwardMessagesProcessed: boolean;124  readonly asDownwardMessagesProcessed: {125    readonly weightUsed: SpWeightsWeightV2Weight;126    readonly dmqHead: H256;127  } & Struct;128  readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133  readonly dmqMqcHead: H256;134  readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135  readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147  readonly isInvalidFormat: boolean;148  readonly asInvalidFormat: U8aFixed;149  readonly isUnsupportedVersion: boolean;150  readonly asUnsupportedVersion: U8aFixed;151  readonly isExecutedDownward: boolean;152  readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmOrigin */157export interface CumulusPalletXcmOrigin extends Enum {158  readonly isRelay: boolean;159  readonly isSiblingParachain: boolean;160  readonly asSiblingParachain: u32;161  readonly type: 'Relay' | 'SiblingParachain';162}163164/** @name CumulusPalletXcmpQueueCall */165export interface CumulusPalletXcmpQueueCall extends Enum {166  readonly isServiceOverweight: boolean;167  readonly asServiceOverweight: {168    readonly index: u64;169    readonly weightLimit: u64;170  } & Struct;171  readonly isSuspendXcmExecution: boolean;172  readonly isResumeXcmExecution: boolean;173  readonly isUpdateSuspendThreshold: boolean;174  readonly asUpdateSuspendThreshold: {175    readonly new_: u32;176  } & Struct;177  readonly isUpdateDropThreshold: boolean;178  readonly asUpdateDropThreshold: {179    readonly new_: u32;180  } & Struct;181  readonly isUpdateResumeThreshold: boolean;182  readonly asUpdateResumeThreshold: {183    readonly new_: u32;184  } & Struct;185  readonly isUpdateThresholdWeight: boolean;186  readonly asUpdateThresholdWeight: {187    readonly new_: u64;188  } & Struct;189  readonly isUpdateWeightRestrictDecay: boolean;190  readonly asUpdateWeightRestrictDecay: {191    readonly new_: u64;192  } & Struct;193  readonly isUpdateXcmpMaxIndividualWeight: boolean;194  readonly asUpdateXcmpMaxIndividualWeight: {195    readonly new_: u64;196  } & Struct;197  readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198}199200/** @name CumulusPalletXcmpQueueError */201export interface CumulusPalletXcmpQueueError extends Enum {202  readonly isFailedToSend: boolean;203  readonly isBadXcmOrigin: boolean;204  readonly isBadXcm: boolean;205  readonly isBadOverweightIndex: boolean;206  readonly isWeightOverLimit: boolean;207  readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';208}209210/** @name CumulusPalletXcmpQueueEvent */211export interface CumulusPalletXcmpQueueEvent extends Enum {212  readonly isSuccess: boolean;213  readonly asSuccess: {214    readonly messageHash: Option<H256>;215    readonly weight: SpWeightsWeightV2Weight;216  } & Struct;217  readonly isFail: boolean;218  readonly asFail: {219    readonly messageHash: Option<H256>;220    readonly error: XcmV2TraitsError;221    readonly weight: SpWeightsWeightV2Weight;222  } & Struct;223  readonly isBadVersion: boolean;224  readonly asBadVersion: {225    readonly messageHash: Option<H256>;226  } & Struct;227  readonly isBadFormat: boolean;228  readonly asBadFormat: {229    readonly messageHash: Option<H256>;230  } & Struct;231  readonly isUpwardMessageSent: boolean;232  readonly asUpwardMessageSent: {233    readonly messageHash: Option<H256>;234  } & Struct;235  readonly isXcmpMessageSent: boolean;236  readonly asXcmpMessageSent: {237    readonly messageHash: Option<H256>;238  } & Struct;239  readonly isOverweightEnqueued: boolean;240  readonly asOverweightEnqueued: {241    readonly sender: u32;242    readonly sentAt: u32;243    readonly index: u64;244    readonly required: SpWeightsWeightV2Weight;245  } & Struct;246  readonly isOverweightServiced: boolean;247  readonly asOverweightServiced: {248    readonly index: u64;249    readonly used: SpWeightsWeightV2Weight;250  } & Struct;251  readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';252}253254/** @name CumulusPalletXcmpQueueInboundChannelDetails */255export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {256  readonly sender: u32;257  readonly state: CumulusPalletXcmpQueueInboundState;258  readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;259}260261/** @name CumulusPalletXcmpQueueInboundState */262export interface CumulusPalletXcmpQueueInboundState extends Enum {263  readonly isOk: boolean;264  readonly isSuspended: boolean;265  readonly type: 'Ok' | 'Suspended';266}267268/** @name CumulusPalletXcmpQueueOutboundChannelDetails */269export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {270  readonly recipient: u32;271  readonly state: CumulusPalletXcmpQueueOutboundState;272  readonly signalsExist: bool;273  readonly firstIndex: u16;274  readonly lastIndex: u16;275}276277/** @name CumulusPalletXcmpQueueOutboundState */278export interface CumulusPalletXcmpQueueOutboundState extends Enum {279  readonly isOk: boolean;280  readonly isSuspended: boolean;281  readonly type: 'Ok' | 'Suspended';282}283284/** @name CumulusPalletXcmpQueueQueueConfigData */285export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {286  readonly suspendThreshold: u32;287  readonly dropThreshold: u32;288  readonly resumeThreshold: u32;289  readonly thresholdWeight: SpWeightsWeightV2Weight;290  readonly weightRestrictDecay: SpWeightsWeightV2Weight;291  readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;292}293294/** @name CumulusPrimitivesParachainInherentParachainInherentData */295export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {296  readonly validationData: PolkadotPrimitivesV2PersistedValidationData;297  readonly relayChainState: SpTrieStorageProof;298  readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;299  readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;300}301302/** @name EthbloomBloom */303export interface EthbloomBloom extends U8aFixed {}304305/** @name EthereumBlock */306export interface EthereumBlock extends Struct {307  readonly header: EthereumHeader;308  readonly transactions: Vec<EthereumTransactionTransactionV2>;309  readonly ommers: Vec<EthereumHeader>;310}311312/** @name EthereumHeader */313export interface EthereumHeader extends Struct {314  readonly parentHash: H256;315  readonly ommersHash: H256;316  readonly beneficiary: H160;317  readonly stateRoot: H256;318  readonly transactionsRoot: H256;319  readonly receiptsRoot: H256;320  readonly logsBloom: EthbloomBloom;321  readonly difficulty: U256;322  readonly number: U256;323  readonly gasLimit: U256;324  readonly gasUsed: U256;325  readonly timestamp: u64;326  readonly extraData: Bytes;327  readonly mixHash: H256;328  readonly nonce: EthereumTypesHashH64;329}330331/** @name EthereumLog */332export interface EthereumLog extends Struct {333  readonly address: H160;334  readonly topics: Vec<H256>;335  readonly data: Bytes;336}337338/** @name EthereumReceiptEip658ReceiptData */339export interface EthereumReceiptEip658ReceiptData extends Struct {340  readonly statusCode: u8;341  readonly usedGas: U256;342  readonly logsBloom: EthbloomBloom;343  readonly logs: Vec<EthereumLog>;344}345346/** @name EthereumReceiptReceiptV3 */347export interface EthereumReceiptReceiptV3 extends Enum {348  readonly isLegacy: boolean;349  readonly asLegacy: EthereumReceiptEip658ReceiptData;350  readonly isEip2930: boolean;351  readonly asEip2930: EthereumReceiptEip658ReceiptData;352  readonly isEip1559: boolean;353  readonly asEip1559: EthereumReceiptEip658ReceiptData;354  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';355}356357/** @name EthereumTransactionAccessListItem */358export interface EthereumTransactionAccessListItem extends Struct {359  readonly address: H160;360  readonly storageKeys: Vec<H256>;361}362363/** @name EthereumTransactionEip1559Transaction */364export interface EthereumTransactionEip1559Transaction extends Struct {365  readonly chainId: u64;366  readonly nonce: U256;367  readonly maxPriorityFeePerGas: U256;368  readonly maxFeePerGas: U256;369  readonly gasLimit: U256;370  readonly action: EthereumTransactionTransactionAction;371  readonly value: U256;372  readonly input: Bytes;373  readonly accessList: Vec<EthereumTransactionAccessListItem>;374  readonly oddYParity: bool;375  readonly r: H256;376  readonly s: H256;377}378379/** @name EthereumTransactionEip2930Transaction */380export interface EthereumTransactionEip2930Transaction extends Struct {381  readonly chainId: u64;382  readonly nonce: U256;383  readonly gasPrice: U256;384  readonly gasLimit: U256;385  readonly action: EthereumTransactionTransactionAction;386  readonly value: U256;387  readonly input: Bytes;388  readonly accessList: Vec<EthereumTransactionAccessListItem>;389  readonly oddYParity: bool;390  readonly r: H256;391  readonly s: H256;392}393394/** @name EthereumTransactionLegacyTransaction */395export interface EthereumTransactionLegacyTransaction extends Struct {396  readonly nonce: U256;397  readonly gasPrice: U256;398  readonly gasLimit: U256;399  readonly action: EthereumTransactionTransactionAction;400  readonly value: U256;401  readonly input: Bytes;402  readonly signature: EthereumTransactionTransactionSignature;403}404405/** @name EthereumTransactionTransactionAction */406export interface EthereumTransactionTransactionAction extends Enum {407  readonly isCall: boolean;408  readonly asCall: H160;409  readonly isCreate: boolean;410  readonly type: 'Call' | 'Create';411}412413/** @name EthereumTransactionTransactionSignature */414export interface EthereumTransactionTransactionSignature extends Struct {415  readonly v: u64;416  readonly r: H256;417  readonly s: H256;418}419420/** @name EthereumTransactionTransactionV2 */421export interface EthereumTransactionTransactionV2 extends Enum {422  readonly isLegacy: boolean;423  readonly asLegacy: EthereumTransactionLegacyTransaction;424  readonly isEip2930: boolean;425  readonly asEip2930: EthereumTransactionEip2930Transaction;426  readonly isEip1559: boolean;427  readonly asEip1559: EthereumTransactionEip1559Transaction;428  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';429}430431/** @name EthereumTypesHashH64 */432export interface EthereumTypesHashH64 extends U8aFixed {}433434/** @name EvmCoreErrorExitError */435export interface EvmCoreErrorExitError extends Enum {436  readonly isStackUnderflow: boolean;437  readonly isStackOverflow: boolean;438  readonly isInvalidJump: boolean;439  readonly isInvalidRange: boolean;440  readonly isDesignatedInvalid: boolean;441  readonly isCallTooDeep: boolean;442  readonly isCreateCollision: boolean;443  readonly isCreateContractLimit: boolean;444  readonly isOutOfOffset: boolean;445  readonly isOutOfGas: boolean;446  readonly isOutOfFund: boolean;447  readonly isPcUnderflow: boolean;448  readonly isCreateEmpty: boolean;449  readonly isOther: boolean;450  readonly asOther: Text;451  readonly isInvalidCode: boolean;452  readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';453}454455/** @name EvmCoreErrorExitFatal */456export interface EvmCoreErrorExitFatal extends Enum {457  readonly isNotSupported: boolean;458  readonly isUnhandledInterrupt: boolean;459  readonly isCallErrorAsFatal: boolean;460  readonly asCallErrorAsFatal: EvmCoreErrorExitError;461  readonly isOther: boolean;462  readonly asOther: Text;463  readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';464}465466/** @name EvmCoreErrorExitReason */467export interface EvmCoreErrorExitReason extends Enum {468  readonly isSucceed: boolean;469  readonly asSucceed: EvmCoreErrorExitSucceed;470  readonly isError: boolean;471  readonly asError: EvmCoreErrorExitError;472  readonly isRevert: boolean;473  readonly asRevert: EvmCoreErrorExitRevert;474  readonly isFatal: boolean;475  readonly asFatal: EvmCoreErrorExitFatal;476  readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';477}478479/** @name EvmCoreErrorExitRevert */480export interface EvmCoreErrorExitRevert extends Enum {481  readonly isReverted: boolean;482  readonly type: 'Reverted';483}484485/** @name EvmCoreErrorExitSucceed */486export interface EvmCoreErrorExitSucceed extends Enum {487  readonly isStopped: boolean;488  readonly isReturned: boolean;489  readonly isSuicided: boolean;490  readonly type: 'Stopped' | 'Returned' | 'Suicided';491}492493/** @name FpRpcTransactionStatus */494export interface FpRpcTransactionStatus extends Struct {495  readonly transactionHash: H256;496  readonly transactionIndex: u32;497  readonly from: H160;498  readonly to: Option<H160>;499  readonly contractAddress: Option<H160>;500  readonly logs: Vec<EthereumLog>;501  readonly logsBloom: EthbloomBloom;502}503504/** @name FrameSupportDispatchDispatchClass */505export interface FrameSupportDispatchDispatchClass extends Enum {506  readonly isNormal: boolean;507  readonly isOperational: boolean;508  readonly isMandatory: boolean;509  readonly type: 'Normal' | 'Operational' | 'Mandatory';510}511512/** @name FrameSupportDispatchDispatchInfo */513export interface FrameSupportDispatchDispatchInfo extends Struct {514  readonly weight: SpWeightsWeightV2Weight;515  readonly class: FrameSupportDispatchDispatchClass;516  readonly paysFee: FrameSupportDispatchPays;517}518519/** @name FrameSupportDispatchPays */520export interface FrameSupportDispatchPays extends Enum {521  readonly isYes: boolean;522  readonly isNo: boolean;523  readonly type: 'Yes' | 'No';524}525526/** @name FrameSupportDispatchPerDispatchClassU32 */527export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {528  readonly normal: u32;529  readonly operational: u32;530  readonly mandatory: u32;531}532533/** @name FrameSupportDispatchPerDispatchClassWeight */534export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {535  readonly normal: SpWeightsWeightV2Weight;536  readonly operational: SpWeightsWeightV2Weight;537  readonly mandatory: SpWeightsWeightV2Weight;538}539540/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */541export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {542  readonly normal: FrameSystemLimitsWeightsPerClass;543  readonly operational: FrameSystemLimitsWeightsPerClass;544  readonly mandatory: FrameSystemLimitsWeightsPerClass;545}546547/** @name FrameSupportDispatchRawOrigin */548export interface FrameSupportDispatchRawOrigin extends Enum {549  readonly isRoot: boolean;550  readonly isSigned: boolean;551  readonly asSigned: AccountId32;552  readonly isNone: boolean;553  readonly type: 'Root' | 'Signed' | 'None';554}555556/** @name FrameSupportPalletId */557export interface FrameSupportPalletId extends U8aFixed {}558559/** @name FrameSupportTokensMiscBalanceStatus */560export interface FrameSupportTokensMiscBalanceStatus extends Enum {561  readonly isFree: boolean;562  readonly isReserved: boolean;563  readonly type: 'Free' | 'Reserved';564}565566/** @name FrameSystemAccountInfo */567export interface FrameSystemAccountInfo extends Struct {568  readonly nonce: u32;569  readonly consumers: u32;570  readonly providers: u32;571  readonly sufficients: u32;572  readonly data: PalletBalancesAccountData;573}574575/** @name FrameSystemCall */576export interface FrameSystemCall extends Enum {577  readonly isFillBlock: boolean;578  readonly asFillBlock: {579    readonly ratio: Perbill;580  } & Struct;581  readonly isRemark: boolean;582  readonly asRemark: {583    readonly remark: Bytes;584  } & Struct;585  readonly isSetHeapPages: boolean;586  readonly asSetHeapPages: {587    readonly pages: u64;588  } & Struct;589  readonly isSetCode: boolean;590  readonly asSetCode: {591    readonly code: Bytes;592  } & Struct;593  readonly isSetCodeWithoutChecks: boolean;594  readonly asSetCodeWithoutChecks: {595    readonly code: Bytes;596  } & Struct;597  readonly isSetStorage: boolean;598  readonly asSetStorage: {599    readonly items: Vec<ITuple<[Bytes, Bytes]>>;600  } & Struct;601  readonly isKillStorage: boolean;602  readonly asKillStorage: {603    readonly keys_: Vec<Bytes>;604  } & Struct;605  readonly isKillPrefix: boolean;606  readonly asKillPrefix: {607    readonly prefix: Bytes;608    readonly subkeys: u32;609  } & Struct;610  readonly isRemarkWithEvent: boolean;611  readonly asRemarkWithEvent: {612    readonly remark: Bytes;613  } & Struct;614  readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';615}616617/** @name FrameSystemError */618export interface FrameSystemError extends Enum {619  readonly isInvalidSpecName: boolean;620  readonly isSpecVersionNeedsToIncrease: boolean;621  readonly isFailedToExtractRuntimeVersion: boolean;622  readonly isNonDefaultComposite: boolean;623  readonly isNonZeroRefCount: boolean;624  readonly isCallFiltered: boolean;625  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';626}627628/** @name FrameSystemEvent */629export interface FrameSystemEvent extends Enum {630  readonly isExtrinsicSuccess: boolean;631  readonly asExtrinsicSuccess: {632    readonly dispatchInfo: FrameSupportDispatchDispatchInfo;633  } & Struct;634  readonly isExtrinsicFailed: boolean;635  readonly asExtrinsicFailed: {636    readonly dispatchError: SpRuntimeDispatchError;637    readonly dispatchInfo: FrameSupportDispatchDispatchInfo;638  } & Struct;639  readonly isCodeUpdated: boolean;640  readonly isNewAccount: boolean;641  readonly asNewAccount: {642    readonly account: AccountId32;643  } & Struct;644  readonly isKilledAccount: boolean;645  readonly asKilledAccount: {646    readonly account: AccountId32;647  } & Struct;648  readonly isRemarked: boolean;649  readonly asRemarked: {650    readonly sender: AccountId32;651    readonly hash_: H256;652  } & Struct;653  readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';654}655656/** @name FrameSystemEventRecord */657export interface FrameSystemEventRecord extends Struct {658  readonly phase: FrameSystemPhase;659  readonly event: Event;660  readonly topics: Vec<H256>;661}662663/** @name FrameSystemExtensionsCheckGenesis */664export interface FrameSystemExtensionsCheckGenesis extends Null {}665666/** @name FrameSystemExtensionsCheckNonce */667export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}668669/** @name FrameSystemExtensionsCheckSpecVersion */670export interface FrameSystemExtensionsCheckSpecVersion extends Null {}671672/** @name FrameSystemExtensionsCheckTxVersion */673export interface FrameSystemExtensionsCheckTxVersion extends Null {}674675/** @name FrameSystemExtensionsCheckWeight */676export interface FrameSystemExtensionsCheckWeight extends Null {}677678/** @name FrameSystemLastRuntimeUpgradeInfo */679export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {680  readonly specVersion: Compact<u32>;681  readonly specName: Text;682}683684/** @name FrameSystemLimitsBlockLength */685export interface FrameSystemLimitsBlockLength extends Struct {686  readonly max: FrameSupportDispatchPerDispatchClassU32;687}688689/** @name FrameSystemLimitsBlockWeights */690export interface FrameSystemLimitsBlockWeights extends Struct {691  readonly baseBlock: SpWeightsWeightV2Weight;692  readonly maxBlock: SpWeightsWeightV2Weight;693  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;694}695696/** @name FrameSystemLimitsWeightsPerClass */697export interface FrameSystemLimitsWeightsPerClass extends Struct {698  readonly baseExtrinsic: SpWeightsWeightV2Weight;699  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;700  readonly maxTotal: Option<SpWeightsWeightV2Weight>;701  readonly reserved: Option<SpWeightsWeightV2Weight>;702}703704/** @name FrameSystemPhase */705export interface FrameSystemPhase extends Enum {706  readonly isApplyExtrinsic: boolean;707  readonly asApplyExtrinsic: u32;708  readonly isFinalization: boolean;709  readonly isInitialization: boolean;710  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';711}712713/** @name OpalRuntimeOriginCaller */714export interface OpalRuntimeOriginCaller extends Enum {715  readonly isSystem: boolean;716  readonly asSystem: FrameSupportDispatchRawOrigin;717  readonly isVoid: boolean;718  readonly asVoid: SpCoreVoid;719  readonly isPolkadotXcm: boolean;720  readonly asPolkadotXcm: PalletXcmOrigin;721  readonly isCumulusXcm: boolean;722  readonly asCumulusXcm: CumulusPalletXcmOrigin;723  readonly isEthereum: boolean;724  readonly asEthereum: PalletEthereumRawOrigin;725  readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';726}727728/** @name OpalRuntimeRuntime */729export interface OpalRuntimeRuntime extends Null {}730731/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */732export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}733734/** @name OrmlTokensAccountData */735export interface OrmlTokensAccountData extends Struct {736  readonly free: u128;737  readonly reserved: u128;738  readonly frozen: u128;739}740741/** @name OrmlTokensBalanceLock */742export interface OrmlTokensBalanceLock extends Struct {743  readonly id: U8aFixed;744  readonly amount: u128;745}746747/** @name OrmlTokensModuleCall */748export interface OrmlTokensModuleCall extends Enum {749  readonly isTransfer: boolean;750  readonly asTransfer: {751    readonly dest: MultiAddress;752    readonly currencyId: PalletForeignAssetsAssetIds;753    readonly amount: Compact<u128>;754  } & Struct;755  readonly isTransferAll: boolean;756  readonly asTransferAll: {757    readonly dest: MultiAddress;758    readonly currencyId: PalletForeignAssetsAssetIds;759    readonly keepAlive: bool;760  } & Struct;761  readonly isTransferKeepAlive: boolean;762  readonly asTransferKeepAlive: {763    readonly dest: MultiAddress;764    readonly currencyId: PalletForeignAssetsAssetIds;765    readonly amount: Compact<u128>;766  } & Struct;767  readonly isForceTransfer: boolean;768  readonly asForceTransfer: {769    readonly source: MultiAddress;770    readonly dest: MultiAddress;771    readonly currencyId: PalletForeignAssetsAssetIds;772    readonly amount: Compact<u128>;773  } & Struct;774  readonly isSetBalance: boolean;775  readonly asSetBalance: {776    readonly who: MultiAddress;777    readonly currencyId: PalletForeignAssetsAssetIds;778    readonly newFree: Compact<u128>;779    readonly newReserved: Compact<u128>;780  } & Struct;781  readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';782}783784/** @name OrmlTokensModuleError */785export interface OrmlTokensModuleError extends Enum {786  readonly isBalanceTooLow: boolean;787  readonly isAmountIntoBalanceFailed: boolean;788  readonly isLiquidityRestrictions: boolean;789  readonly isMaxLocksExceeded: boolean;790  readonly isKeepAlive: boolean;791  readonly isExistentialDeposit: boolean;792  readonly isDeadAccount: boolean;793  readonly isTooManyReserves: boolean;794  readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';795}796797/** @name OrmlTokensModuleEvent */798export interface OrmlTokensModuleEvent extends Enum {799  readonly isEndowed: boolean;800  readonly asEndowed: {801    readonly currencyId: PalletForeignAssetsAssetIds;802    readonly who: AccountId32;803    readonly amount: u128;804  } & Struct;805  readonly isDustLost: boolean;806  readonly asDustLost: {807    readonly currencyId: PalletForeignAssetsAssetIds;808    readonly who: AccountId32;809    readonly amount: u128;810  } & Struct;811  readonly isTransfer: boolean;812  readonly asTransfer: {813    readonly currencyId: PalletForeignAssetsAssetIds;814    readonly from: AccountId32;815    readonly to: AccountId32;816    readonly amount: u128;817  } & Struct;818  readonly isReserved: boolean;819  readonly asReserved: {820    readonly currencyId: PalletForeignAssetsAssetIds;821    readonly who: AccountId32;822    readonly amount: u128;823  } & Struct;824  readonly isUnreserved: boolean;825  readonly asUnreserved: {826    readonly currencyId: PalletForeignAssetsAssetIds;827    readonly who: AccountId32;828    readonly amount: u128;829  } & Struct;830  readonly isReserveRepatriated: boolean;831  readonly asReserveRepatriated: {832    readonly currencyId: PalletForeignAssetsAssetIds;833    readonly from: AccountId32;834    readonly to: AccountId32;835    readonly amount: u128;836    readonly status: FrameSupportTokensMiscBalanceStatus;837  } & Struct;838  readonly isBalanceSet: boolean;839  readonly asBalanceSet: {840    readonly currencyId: PalletForeignAssetsAssetIds;841    readonly who: AccountId32;842    readonly free: u128;843    readonly reserved: u128;844  } & Struct;845  readonly isTotalIssuanceSet: boolean;846  readonly asTotalIssuanceSet: {847    readonly currencyId: PalletForeignAssetsAssetIds;848    readonly amount: u128;849  } & Struct;850  readonly isWithdrawn: boolean;851  readonly asWithdrawn: {852    readonly currencyId: PalletForeignAssetsAssetIds;853    readonly who: AccountId32;854    readonly amount: u128;855  } & Struct;856  readonly isSlashed: boolean;857  readonly asSlashed: {858    readonly currencyId: PalletForeignAssetsAssetIds;859    readonly who: AccountId32;860    readonly freeAmount: u128;861    readonly reservedAmount: u128;862  } & Struct;863  readonly isDeposited: boolean;864  readonly asDeposited: {865    readonly currencyId: PalletForeignAssetsAssetIds;866    readonly who: AccountId32;867    readonly amount: u128;868  } & Struct;869  readonly isLockSet: boolean;870  readonly asLockSet: {871    readonly lockId: U8aFixed;872    readonly currencyId: PalletForeignAssetsAssetIds;873    readonly who: AccountId32;874    readonly amount: u128;875  } & Struct;876  readonly isLockRemoved: boolean;877  readonly asLockRemoved: {878    readonly lockId: U8aFixed;879    readonly currencyId: PalletForeignAssetsAssetIds;880    readonly who: AccountId32;881  } & Struct;882  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';883}884885/** @name OrmlTokensReserveData */886export interface OrmlTokensReserveData extends Struct {887  readonly id: Null;888  readonly amount: u128;889}890891/** @name OrmlVestingModuleCall */892export interface OrmlVestingModuleCall extends Enum {893  readonly isClaim: boolean;894  readonly isVestedTransfer: boolean;895  readonly asVestedTransfer: {896    readonly dest: MultiAddress;897    readonly schedule: OrmlVestingVestingSchedule;898  } & Struct;899  readonly isUpdateVestingSchedules: boolean;900  readonly asUpdateVestingSchedules: {901    readonly who: MultiAddress;902    readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;903  } & Struct;904  readonly isClaimFor: boolean;905  readonly asClaimFor: {906    readonly dest: MultiAddress;907  } & Struct;908  readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';909}910911/** @name OrmlVestingModuleError */912export interface OrmlVestingModuleError extends Enum {913  readonly isZeroVestingPeriod: boolean;914  readonly isZeroVestingPeriodCount: boolean;915  readonly isInsufficientBalanceToLock: boolean;916  readonly isTooManyVestingSchedules: boolean;917  readonly isAmountLow: boolean;918  readonly isMaxVestingSchedulesExceeded: boolean;919  readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';920}921922/** @name OrmlVestingModuleEvent */923export interface OrmlVestingModuleEvent extends Enum {924  readonly isVestingScheduleAdded: boolean;925  readonly asVestingScheduleAdded: {926    readonly from: AccountId32;927    readonly to: AccountId32;928    readonly vestingSchedule: OrmlVestingVestingSchedule;929  } & Struct;930  readonly isClaimed: boolean;931  readonly asClaimed: {932    readonly who: AccountId32;933    readonly amount: u128;934  } & Struct;935  readonly isVestingSchedulesUpdated: boolean;936  readonly asVestingSchedulesUpdated: {937    readonly who: AccountId32;938  } & Struct;939  readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';940}941942/** @name OrmlVestingVestingSchedule */943export interface OrmlVestingVestingSchedule extends Struct {944  readonly start: u32;945  readonly period: u32;946  readonly periodCount: u32;947  readonly perPeriod: Compact<u128>;948}949950/** @name OrmlXtokensModuleCall */951export interface OrmlXtokensModuleCall extends Enum {952  readonly isTransfer: boolean;953  readonly asTransfer: {954    readonly currencyId: PalletForeignAssetsAssetIds;955    readonly amount: u128;956    readonly dest: XcmVersionedMultiLocation;957    readonly destWeightLimit: XcmV2WeightLimit;958  } & Struct;959  readonly isTransferMultiasset: boolean;960  readonly asTransferMultiasset: {961    readonly asset: XcmVersionedMultiAsset;962    readonly dest: XcmVersionedMultiLocation;963    readonly destWeightLimit: XcmV2WeightLimit;964  } & Struct;965  readonly isTransferWithFee: boolean;966  readonly asTransferWithFee: {967    readonly currencyId: PalletForeignAssetsAssetIds;968    readonly amount: u128;969    readonly fee: u128;970    readonly dest: XcmVersionedMultiLocation;971    readonly destWeightLimit: XcmV2WeightLimit;972  } & Struct;973  readonly isTransferMultiassetWithFee: boolean;974  readonly asTransferMultiassetWithFee: {975    readonly asset: XcmVersionedMultiAsset;976    readonly fee: XcmVersionedMultiAsset;977    readonly dest: XcmVersionedMultiLocation;978    readonly destWeightLimit: XcmV2WeightLimit;979  } & Struct;980  readonly isTransferMulticurrencies: boolean;981  readonly asTransferMulticurrencies: {982    readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;983    readonly feeItem: u32;984    readonly dest: XcmVersionedMultiLocation;985    readonly destWeightLimit: XcmV2WeightLimit;986  } & Struct;987  readonly isTransferMultiassets: boolean;988  readonly asTransferMultiassets: {989    readonly assets: XcmVersionedMultiAssets;990    readonly feeItem: u32;991    readonly dest: XcmVersionedMultiLocation;992    readonly destWeightLimit: XcmV2WeightLimit;993  } & Struct;994  readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';995}996997/** @name OrmlXtokensModuleError */998export interface OrmlXtokensModuleError extends Enum {999  readonly isAssetHasNoReserve: boolean;1000  readonly isNotCrossChainTransfer: boolean;1001  readonly isInvalidDest: boolean;1002  readonly isNotCrossChainTransferableCurrency: boolean;1003  readonly isUnweighableMessage: boolean;1004  readonly isXcmExecutionFailed: boolean;1005  readonly isCannotReanchor: boolean;1006  readonly isInvalidAncestry: boolean;1007  readonly isInvalidAsset: boolean;1008  readonly isDestinationNotInvertible: boolean;1009  readonly isBadVersion: boolean;1010  readonly isDistinctReserveForAssetAndFee: boolean;1011  readonly isZeroFee: boolean;1012  readonly isZeroAmount: boolean;1013  readonly isTooManyAssetsBeingSent: boolean;1014  readonly isAssetIndexNonExistent: boolean;1015  readonly isFeeNotEnough: boolean;1016  readonly isNotSupportedMultiLocation: boolean;1017  readonly isMinXcmFeeNotDefined: boolean;1018  readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';1019}10201021/** @name OrmlXtokensModuleEvent */1022export interface OrmlXtokensModuleEvent extends Enum {1023  readonly isTransferredMultiAssets: boolean;1024  readonly asTransferredMultiAssets: {1025    readonly sender: AccountId32;1026    readonly assets: XcmV1MultiassetMultiAssets;1027    readonly fee: XcmV1MultiAsset;1028    readonly dest: XcmV1MultiLocation;1029  } & Struct;1030  readonly type: 'TransferredMultiAssets';1031}10321033/** @name PalletAppPromotionCall */1034export interface PalletAppPromotionCall extends Enum {1035  readonly isSetAdminAddress: boolean;1036  readonly asSetAdminAddress: {1037    readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1038  } & Struct;1039  readonly isStake: boolean;1040  readonly asStake: {1041    readonly amount: u128;1042  } & Struct;1043  readonly isUnstake: boolean;1044  readonly isSponsorCollection: boolean;1045  readonly asSponsorCollection: {1046    readonly collectionId: u32;1047  } & Struct;1048  readonly isStopSponsoringCollection: boolean;1049  readonly asStopSponsoringCollection: {1050    readonly collectionId: u32;1051  } & Struct;1052  readonly isSponsorContract: boolean;1053  readonly asSponsorContract: {1054    readonly contractId: H160;1055  } & Struct;1056  readonly isStopSponsoringContract: boolean;1057  readonly asStopSponsoringContract: {1058    readonly contractId: H160;1059  } & Struct;1060  readonly isPayoutStakers: boolean;1061  readonly asPayoutStakers: {1062    readonly stakersNumber: Option<u8>;1063  } & Struct;1064  readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';1065}10661067/** @name PalletAppPromotionError */1068export interface PalletAppPromotionError extends Enum {1069  readonly isAdminNotSet: boolean;1070  readonly isNoPermission: boolean;1071  readonly isNotSufficientFunds: boolean;1072  readonly isPendingForBlockOverflow: boolean;1073  readonly isSponsorNotSet: boolean;1074  readonly isIncorrectLockedBalanceOperation: boolean;1075  readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';1076}10771078/** @name PalletAppPromotionEvent */1079export interface PalletAppPromotionEvent extends Enum {1080  readonly isStakingRecalculation: boolean;1081  readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1082  readonly isStake: boolean;1083  readonly asStake: ITuple<[AccountId32, u128]>;1084  readonly isUnstake: boolean;1085  readonly asUnstake: ITuple<[AccountId32, u128]>;1086  readonly isSetAdmin: boolean;1087  readonly asSetAdmin: AccountId32;1088  readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1089}10901091/** @name PalletBalancesAccountData */1092export interface PalletBalancesAccountData extends Struct {1093  readonly free: u128;1094  readonly reserved: u128;1095  readonly miscFrozen: u128;1096  readonly feeFrozen: u128;1097}10981099/** @name PalletBalancesBalanceLock */1100export interface PalletBalancesBalanceLock extends Struct {1101  readonly id: U8aFixed;1102  readonly amount: u128;1103  readonly reasons: PalletBalancesReasons;1104}11051106/** @name PalletBalancesCall */1107export interface PalletBalancesCall extends Enum {1108  readonly isTransfer: boolean;1109  readonly asTransfer: {1110    readonly dest: MultiAddress;1111    readonly value: Compact<u128>;1112  } & Struct;1113  readonly isSetBalance: boolean;1114  readonly asSetBalance: {1115    readonly who: MultiAddress;1116    readonly newFree: Compact<u128>;1117    readonly newReserved: Compact<u128>;1118  } & Struct;1119  readonly isForceTransfer: boolean;1120  readonly asForceTransfer: {1121    readonly source: MultiAddress;1122    readonly dest: MultiAddress;1123    readonly value: Compact<u128>;1124  } & Struct;1125  readonly isTransferKeepAlive: boolean;1126  readonly asTransferKeepAlive: {1127    readonly dest: MultiAddress;1128    readonly value: Compact<u128>;1129  } & Struct;1130  readonly isTransferAll: boolean;1131  readonly asTransferAll: {1132    readonly dest: MultiAddress;1133    readonly keepAlive: bool;1134  } & Struct;1135  readonly isForceUnreserve: boolean;1136  readonly asForceUnreserve: {1137    readonly who: MultiAddress;1138    readonly amount: u128;1139  } & Struct;1140  readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1141}11421143/** @name PalletBalancesError */1144export interface PalletBalancesError extends Enum {1145  readonly isVestingBalance: boolean;1146  readonly isLiquidityRestrictions: boolean;1147  readonly isInsufficientBalance: boolean;1148  readonly isExistentialDeposit: boolean;1149  readonly isKeepAlive: boolean;1150  readonly isExistingVestingSchedule: boolean;1151  readonly isDeadAccount: boolean;1152  readonly isTooManyReserves: boolean;1153  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1154}11551156/** @name PalletBalancesEvent */1157export interface PalletBalancesEvent extends Enum {1158  readonly isEndowed: boolean;1159  readonly asEndowed: {1160    readonly account: AccountId32;1161    readonly freeBalance: u128;1162  } & Struct;1163  readonly isDustLost: boolean;1164  readonly asDustLost: {1165    readonly account: AccountId32;1166    readonly amount: u128;1167  } & Struct;1168  readonly isTransfer: boolean;1169  readonly asTransfer: {1170    readonly from: AccountId32;1171    readonly to: AccountId32;1172    readonly amount: u128;1173  } & Struct;1174  readonly isBalanceSet: boolean;1175  readonly asBalanceSet: {1176    readonly who: AccountId32;1177    readonly free: u128;1178    readonly reserved: u128;1179  } & Struct;1180  readonly isReserved: boolean;1181  readonly asReserved: {1182    readonly who: AccountId32;1183    readonly amount: u128;1184  } & Struct;1185  readonly isUnreserved: boolean;1186  readonly asUnreserved: {1187    readonly who: AccountId32;1188    readonly amount: u128;1189  } & Struct;1190  readonly isReserveRepatriated: boolean;1191  readonly asReserveRepatriated: {1192    readonly from: AccountId32;1193    readonly to: AccountId32;1194    readonly amount: u128;1195    readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1196  } & Struct;1197  readonly isDeposit: boolean;1198  readonly asDeposit: {1199    readonly who: AccountId32;1200    readonly amount: u128;1201  } & Struct;1202  readonly isWithdraw: boolean;1203  readonly asWithdraw: {1204    readonly who: AccountId32;1205    readonly amount: u128;1206  } & Struct;1207  readonly isSlashed: boolean;1208  readonly asSlashed: {1209    readonly who: AccountId32;1210    readonly amount: u128;1211  } & Struct;1212  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1213}12141215/** @name PalletBalancesReasons */1216export interface PalletBalancesReasons extends Enum {1217  readonly isFee: boolean;1218  readonly isMisc: boolean;1219  readonly isAll: boolean;1220  readonly type: 'Fee' | 'Misc' | 'All';1221}12221223/** @name PalletBalancesReleases */1224export interface PalletBalancesReleases extends Enum {1225  readonly isV100: boolean;1226  readonly isV200: boolean;1227  readonly type: 'V100' | 'V200';1228}12291230/** @name PalletBalancesReserveData */1231export interface PalletBalancesReserveData extends Struct {1232  readonly id: U8aFixed;1233  readonly amount: u128;1234}12351236/** @name PalletCommonError */1237export interface PalletCommonError extends Enum {1238  readonly isCollectionNotFound: boolean;1239  readonly isMustBeTokenOwner: boolean;1240  readonly isNoPermission: boolean;1241  readonly isCantDestroyNotEmptyCollection: boolean;1242  readonly isPublicMintingNotAllowed: boolean;1243  readonly isAddressNotInAllowlist: boolean;1244  readonly isCollectionNameLimitExceeded: boolean;1245  readonly isCollectionDescriptionLimitExceeded: boolean;1246  readonly isCollectionTokenPrefixLimitExceeded: boolean;1247  readonly isTotalCollectionsLimitExceeded: boolean;1248  readonly isCollectionAdminCountExceeded: boolean;1249  readonly isCollectionLimitBoundsExceeded: boolean;1250  readonly isOwnerPermissionsCantBeReverted: boolean;1251  readonly isTransferNotAllowed: boolean;1252  readonly isAccountTokenLimitExceeded: boolean;1253  readonly isCollectionTokenLimitExceeded: boolean;1254  readonly isMetadataFlagFrozen: boolean;1255  readonly isTokenNotFound: boolean;1256  readonly isTokenValueTooLow: boolean;1257  readonly isApprovedValueTooLow: boolean;1258  readonly isCantApproveMoreThanOwned: boolean;1259  readonly isAddressIsZero: boolean;1260  readonly isUnsupportedOperation: boolean;1261  readonly isNotSufficientFounds: boolean;1262  readonly isUserIsNotAllowedToNest: boolean;1263  readonly isSourceCollectionIsNotAllowedToNest: boolean;1264  readonly isCollectionFieldSizeExceeded: boolean;1265  readonly isNoSpaceForProperty: boolean;1266  readonly isPropertyLimitReached: boolean;1267  readonly isPropertyKeyIsTooLong: boolean;1268  readonly isInvalidCharacterInPropertyKey: boolean;1269  readonly isEmptyPropertyKey: boolean;1270  readonly isCollectionIsExternal: boolean;1271  readonly isCollectionIsInternal: boolean;1272  readonly isConfirmSponsorshipFail: boolean;1273  readonly isUserIsNotCollectionAdmin: boolean;1274  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';1275}12761277/** @name PalletCommonEvent */1278export interface PalletCommonEvent extends Enum {1279  readonly isCollectionCreated: boolean;1280  readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1281  readonly isCollectionDestroyed: boolean;1282  readonly asCollectionDestroyed: u32;1283  readonly isItemCreated: boolean;1284  readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1285  readonly isItemDestroyed: boolean;1286  readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1287  readonly isTransfer: boolean;1288  readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1289  readonly isApproved: boolean;1290  readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1291  readonly isApprovedForAll: boolean;1292  readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1293  readonly isCollectionPropertySet: boolean;1294  readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1295  readonly isCollectionPropertyDeleted: boolean;1296  readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1297  readonly isTokenPropertySet: boolean;1298  readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1299  readonly isTokenPropertyDeleted: boolean;1300  readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1301  readonly isPropertyPermissionSet: boolean;1302  readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1303  readonly isAllowListAddressAdded: boolean;1304  readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1305  readonly isAllowListAddressRemoved: boolean;1306  readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1307  readonly isCollectionAdminAdded: boolean;1308  readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1309  readonly isCollectionAdminRemoved: boolean;1310  readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1311  readonly isCollectionLimitSet: boolean;1312  readonly asCollectionLimitSet: u32;1313  readonly isCollectionOwnerChanged: boolean;1314  readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1315  readonly isCollectionPermissionSet: boolean;1316  readonly asCollectionPermissionSet: u32;1317  readonly isCollectionSponsorSet: boolean;1318  readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1319  readonly isSponsorshipConfirmed: boolean;1320  readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1321  readonly isCollectionSponsorRemoved: boolean;1322  readonly asCollectionSponsorRemoved: u32;1323  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1324}13251326/** @name PalletConfigurationAppPromotionConfiguration */1327export interface PalletConfigurationAppPromotionConfiguration extends Struct {1328  readonly recalculationInterval: Option<u32>;1329  readonly pendingInterval: Option<u32>;1330  readonly intervalIncome: Option<Perbill>;1331  readonly maxStakersPerCalculation: Option<u8>;1332}13331334/** @name PalletConfigurationCall */1335export interface PalletConfigurationCall extends Enum {1336  readonly isSetWeightToFeeCoefficientOverride: boolean;1337  readonly asSetWeightToFeeCoefficientOverride: {1338    readonly coeff: Option<u32>;1339  } & Struct;1340  readonly isSetMinGasPriceOverride: boolean;1341  readonly asSetMinGasPriceOverride: {1342    readonly coeff: Option<u64>;1343  } & Struct;1344  readonly isSetXcmAllowedLocations: boolean;1345  readonly asSetXcmAllowedLocations: {1346    readonly locations: Option<Vec<XcmV1MultiLocation>>;1347  } & Struct;1348  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';1349}13501351/** @name PalletEthereumCall */1352export interface PalletEthereumCall extends Enum {1353  readonly isTransact: boolean;1354  readonly asTransact: {1355    readonly transaction: EthereumTransactionTransactionV2;1356  } & Struct;1357  readonly type: 'Transact';1358}13591360/** @name PalletEthereumError */1361export interface PalletEthereumError extends Enum {1362  readonly isInvalidSignature: boolean;1363  readonly isPreLogExists: boolean;1364  readonly type: 'InvalidSignature' | 'PreLogExists';1365}13661367/** @name PalletEthereumEvent */1368export interface PalletEthereumEvent extends Enum {1369  readonly isExecuted: boolean;1370  readonly asExecuted: {1371    readonly from: H160;1372    readonly to: H160;1373    readonly transactionHash: H256;1374    readonly exitReason: EvmCoreErrorExitReason;1375  } & Struct;1376  readonly type: 'Executed';1377}13781379/** @name PalletEthereumFakeTransactionFinalizer */1380export interface PalletEthereumFakeTransactionFinalizer extends Null {}13811382/** @name PalletEthereumRawOrigin */1383export interface PalletEthereumRawOrigin extends Enum {1384  readonly isEthereumTransaction: boolean;1385  readonly asEthereumTransaction: H160;1386  readonly type: 'EthereumTransaction';1387}13881389/** @name PalletEvmAccountBasicCrossAccountIdRepr */1390export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1391  readonly isSubstrate: boolean;1392  readonly asSubstrate: AccountId32;1393  readonly isEthereum: boolean;1394  readonly asEthereum: H160;1395  readonly type: 'Substrate' | 'Ethereum';1396}13971398/** @name PalletEvmCall */1399export interface PalletEvmCall extends Enum {1400  readonly isWithdraw: boolean;1401  readonly asWithdraw: {1402    readonly address: H160;1403    readonly value: u128;1404  } & Struct;1405  readonly isCall: boolean;1406  readonly asCall: {1407    readonly source: H160;1408    readonly target: H160;1409    readonly input: Bytes;1410    readonly value: U256;1411    readonly gasLimit: u64;1412    readonly maxFeePerGas: U256;1413    readonly maxPriorityFeePerGas: Option<U256>;1414    readonly nonce: Option<U256>;1415    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1416  } & Struct;1417  readonly isCreate: boolean;1418  readonly asCreate: {1419    readonly source: H160;1420    readonly init: Bytes;1421    readonly value: U256;1422    readonly gasLimit: u64;1423    readonly maxFeePerGas: U256;1424    readonly maxPriorityFeePerGas: Option<U256>;1425    readonly nonce: Option<U256>;1426    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1427  } & Struct;1428  readonly isCreate2: boolean;1429  readonly asCreate2: {1430    readonly source: H160;1431    readonly init: Bytes;1432    readonly salt: H256;1433    readonly value: U256;1434    readonly gasLimit: u64;1435    readonly maxFeePerGas: U256;1436    readonly maxPriorityFeePerGas: Option<U256>;1437    readonly nonce: Option<U256>;1438    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1439  } & Struct;1440  readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1441}14421443/** @name PalletEvmCoderSubstrateError */1444export interface PalletEvmCoderSubstrateError extends Enum {1445  readonly isOutOfGas: boolean;1446  readonly isOutOfFund: boolean;1447  readonly type: 'OutOfGas' | 'OutOfFund';1448}14491450/** @name PalletEvmContractHelpersError */1451export interface PalletEvmContractHelpersError extends Enum {1452  readonly isNoPermission: boolean;1453  readonly isNoPendingSponsor: boolean;1454  readonly isTooManyMethodsHaveSponsoredLimit: boolean;1455  readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1456}14571458/** @name PalletEvmContractHelpersEvent */1459export interface PalletEvmContractHelpersEvent extends Enum {1460  readonly isContractSponsorSet: boolean;1461  readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1462  readonly isContractSponsorshipConfirmed: boolean;1463  readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1464  readonly isContractSponsorRemoved: boolean;1465  readonly asContractSponsorRemoved: H160;1466  readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1467}14681469/** @name PalletEvmContractHelpersSponsoringModeT */1470export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1471  readonly isDisabled: boolean;1472  readonly isAllowlisted: boolean;1473  readonly isGenerous: boolean;1474  readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1475}14761477/** @name PalletEvmError */1478export interface PalletEvmError extends Enum {1479  readonly isBalanceLow: boolean;1480  readonly isFeeOverflow: boolean;1481  readonly isPaymentOverflow: boolean;1482  readonly isWithdrawFailed: boolean;1483  readonly isGasPriceTooLow: boolean;1484  readonly isInvalidNonce: boolean;1485  readonly isGasLimitTooLow: boolean;1486  readonly isGasLimitTooHigh: boolean;1487  readonly isUndefined: boolean;1488  readonly isReentrancy: boolean;1489  readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';1490}14911492/** @name PalletEvmEvent */1493export interface PalletEvmEvent extends Enum {1494  readonly isLog: boolean;1495  readonly asLog: {1496    readonly log: EthereumLog;1497  } & Struct;1498  readonly isCreated: boolean;1499  readonly asCreated: {1500    readonly address: H160;1501  } & Struct;1502  readonly isCreatedFailed: boolean;1503  readonly asCreatedFailed: {1504    readonly address: H160;1505  } & Struct;1506  readonly isExecuted: boolean;1507  readonly asExecuted: {1508    readonly address: H160;1509  } & Struct;1510  readonly isExecutedFailed: boolean;1511  readonly asExecutedFailed: {1512    readonly address: H160;1513  } & Struct;1514  readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1515}15161517/** @name PalletEvmMigrationCall */1518export interface PalletEvmMigrationCall extends Enum {1519  readonly isBegin: boolean;1520  readonly asBegin: {1521    readonly address: H160;1522  } & Struct;1523  readonly isSetData: boolean;1524  readonly asSetData: {1525    readonly address: H160;1526    readonly data: Vec<ITuple<[H256, H256]>>;1527  } & Struct;1528  readonly isFinish: boolean;1529  readonly asFinish: {1530    readonly address: H160;1531    readonly code: Bytes;1532  } & Struct;1533  readonly isInsertEthLogs: boolean;1534  readonly asInsertEthLogs: {1535    readonly logs: Vec<EthereumLog>;1536  } & Struct;1537  readonly isInsertEvents: boolean;1538  readonly asInsertEvents: {1539    readonly events: Vec<Bytes>;1540  } & Struct;1541  readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1542}15431544/** @name PalletEvmMigrationError */1545export interface PalletEvmMigrationError extends Enum {1546  readonly isAccountNotEmpty: boolean;1547  readonly isAccountIsNotMigrating: boolean;1548  readonly isBadEvent: boolean;1549  readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1550}15511552/** @name PalletEvmMigrationEvent */1553export interface PalletEvmMigrationEvent extends Enum {1554  readonly isTestEvent: boolean;1555  readonly type: 'TestEvent';1556}15571558/** @name PalletForeignAssetsAssetIds */1559export interface PalletForeignAssetsAssetIds extends Enum {1560  readonly isForeignAssetId: boolean;1561  readonly asForeignAssetId: u32;1562  readonly isNativeAssetId: boolean;1563  readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1564  readonly type: 'ForeignAssetId' | 'NativeAssetId';1565}15661567/** @name PalletForeignAssetsModuleAssetMetadata */1568export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1569  readonly name: Bytes;1570  readonly symbol: Bytes;1571  readonly decimals: u8;1572  readonly minimalBalance: u128;1573}15741575/** @name PalletForeignAssetsModuleCall */1576export interface PalletForeignAssetsModuleCall extends Enum {1577  readonly isRegisterForeignAsset: boolean;1578  readonly asRegisterForeignAsset: {1579    readonly owner: AccountId32;1580    readonly location: XcmVersionedMultiLocation;1581    readonly metadata: PalletForeignAssetsModuleAssetMetadata;1582  } & Struct;1583  readonly isUpdateForeignAsset: boolean;1584  readonly asUpdateForeignAsset: {1585    readonly foreignAssetId: u32;1586    readonly location: XcmVersionedMultiLocation;1587    readonly metadata: PalletForeignAssetsModuleAssetMetadata;1588  } & Struct;1589  readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1590}15911592/** @name PalletForeignAssetsModuleError */1593export interface PalletForeignAssetsModuleError extends Enum {1594  readonly isBadLocation: boolean;1595  readonly isMultiLocationExisted: boolean;1596  readonly isAssetIdNotExists: boolean;1597  readonly isAssetIdExisted: boolean;1598  readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1599}16001601/** @name PalletForeignAssetsModuleEvent */1602export interface PalletForeignAssetsModuleEvent extends Enum {1603  readonly isForeignAssetRegistered: boolean;1604  readonly asForeignAssetRegistered: {1605    readonly assetId: u32;1606    readonly assetAddress: XcmV1MultiLocation;1607    readonly metadata: PalletForeignAssetsModuleAssetMetadata;1608  } & Struct;1609  readonly isForeignAssetUpdated: boolean;1610  readonly asForeignAssetUpdated: {1611    readonly assetId: u32;1612    readonly assetAddress: XcmV1MultiLocation;1613    readonly metadata: PalletForeignAssetsModuleAssetMetadata;1614  } & Struct;1615  readonly isAssetRegistered: boolean;1616  readonly asAssetRegistered: {1617    readonly assetId: PalletForeignAssetsAssetIds;1618    readonly metadata: PalletForeignAssetsModuleAssetMetadata;1619  } & Struct;1620  readonly isAssetUpdated: boolean;1621  readonly asAssetUpdated: {1622    readonly assetId: PalletForeignAssetsAssetIds;1623    readonly metadata: PalletForeignAssetsModuleAssetMetadata;1624  } & Struct;1625  readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1626}16271628/** @name PalletForeignAssetsNativeCurrency */1629export interface PalletForeignAssetsNativeCurrency extends Enum {1630  readonly isHere: boolean;1631  readonly isParent: boolean;1632  readonly type: 'Here' | 'Parent';1633}16341635/** @name PalletFungibleError */1636export interface PalletFungibleError extends Enum {1637  readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1638  readonly isFungibleItemsHaveNoId: boolean;1639  readonly isFungibleItemsDontHaveData: boolean;1640  readonly isFungibleDisallowsNesting: boolean;1641  readonly isSettingPropertiesNotAllowed: boolean;1642  readonly isSettingAllowanceForAllNotAllowed: boolean;1643  readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';1644}16451646/** @name PalletInflationCall */1647export interface PalletInflationCall extends Enum {1648  readonly isStartInflation: boolean;1649  readonly asStartInflation: {1650    readonly inflationStartRelayBlock: u32;1651  } & Struct;1652  readonly type: 'StartInflation';1653}16541655/** @name PalletMaintenanceCall */1656export interface PalletMaintenanceCall extends Enum {1657  readonly isEnable: boolean;1658  readonly isDisable: boolean;1659  readonly type: 'Enable' | 'Disable';1660}16611662/** @name PalletMaintenanceError */1663export interface PalletMaintenanceError extends Null {}16641665/** @name PalletMaintenanceEvent */1666export interface PalletMaintenanceEvent extends Enum {1667  readonly isMaintenanceEnabled: boolean;1668  readonly isMaintenanceDisabled: boolean;1669  readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1670}16711672/** @name PalletNonfungibleError */1673export interface PalletNonfungibleError extends Enum {1674  readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1675  readonly isNonfungibleItemsHaveNoAmount: boolean;1676  readonly isCantBurnNftWithChildren: boolean;1677  readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1678}16791680/** @name PalletNonfungibleItemData */1681export interface PalletNonfungibleItemData extends Struct {1682  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1683}16841685/** @name PalletRefungibleError */1686export interface PalletRefungibleError extends Enum {1687  readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1688  readonly isWrongRefungiblePieces: boolean;1689  readonly isRepartitionWhileNotOwningAllPieces: boolean;1690  readonly isRefungibleDisallowsNesting: boolean;1691  readonly isSettingPropertiesNotAllowed: boolean;1692  readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1693}16941695/** @name PalletRefungibleItemData */1696export interface PalletRefungibleItemData extends Struct {1697  readonly constData: Bytes;1698}16991700/** @name PalletRmrkCoreCall */1701export interface PalletRmrkCoreCall extends Enum {1702  readonly isCreateCollection: boolean;1703  readonly asCreateCollection: {1704    readonly metadata: Bytes;1705    readonly max: Option<u32>;1706    readonly symbol: Bytes;1707  } & Struct;1708  readonly isDestroyCollection: boolean;1709  readonly asDestroyCollection: {1710    readonly collectionId: u32;1711  } & Struct;1712  readonly isChangeCollectionIssuer: boolean;1713  readonly asChangeCollectionIssuer: {1714    readonly collectionId: u32;1715    readonly newIssuer: MultiAddress;1716  } & Struct;1717  readonly isLockCollection: boolean;1718  readonly asLockCollection: {1719    readonly collectionId: u32;1720  } & Struct;1721  readonly isMintNft: boolean;1722  readonly asMintNft: {1723    readonly owner: Option<AccountId32>;1724    readonly collectionId: u32;1725    readonly recipient: Option<AccountId32>;1726    readonly royaltyAmount: Option<Permill>;1727    readonly metadata: Bytes;1728    readonly transferable: bool;1729    readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1730  } & Struct;1731  readonly isBurnNft: boolean;1732  readonly asBurnNft: {1733    readonly collectionId: u32;1734    readonly nftId: u32;1735    readonly maxBurns: u32;1736  } & Struct;1737  readonly isSend: boolean;1738  readonly asSend: {1739    readonly rmrkCollectionId: u32;1740    readonly rmrkNftId: u32;1741    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1742  } & Struct;1743  readonly isAcceptNft: boolean;1744  readonly asAcceptNft: {1745    readonly rmrkCollectionId: u32;1746    readonly rmrkNftId: u32;1747    readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1748  } & Struct;1749  readonly isRejectNft: boolean;1750  readonly asRejectNft: {1751    readonly rmrkCollectionId: u32;1752    readonly rmrkNftId: u32;1753  } & Struct;1754  readonly isAcceptResource: boolean;1755  readonly asAcceptResource: {1756    readonly rmrkCollectionId: u32;1757    readonly rmrkNftId: u32;1758    readonly resourceId: u32;1759  } & Struct;1760  readonly isAcceptResourceRemoval: boolean;1761  readonly asAcceptResourceRemoval: {1762    readonly rmrkCollectionId: u32;1763    readonly rmrkNftId: u32;1764    readonly resourceId: u32;1765  } & Struct;1766  readonly isSetProperty: boolean;1767  readonly asSetProperty: {1768    readonly rmrkCollectionId: Compact<u32>;1769    readonly maybeNftId: Option<u32>;1770    readonly key: Bytes;1771    readonly value: Bytes;1772  } & Struct;1773  readonly isSetPriority: boolean;1774  readonly asSetPriority: {1775    readonly rmrkCollectionId: u32;1776    readonly rmrkNftId: u32;1777    readonly priorities: Vec<u32>;1778  } & Struct;1779  readonly isAddBasicResource: boolean;1780  readonly asAddBasicResource: {1781    readonly rmrkCollectionId: u32;1782    readonly nftId: u32;1783    readonly resource: RmrkTraitsResourceBasicResource;1784  } & Struct;1785  readonly isAddComposableResource: boolean;1786  readonly asAddComposableResource: {1787    readonly rmrkCollectionId: u32;1788    readonly nftId: u32;1789    readonly resource: RmrkTraitsResourceComposableResource;1790  } & Struct;1791  readonly isAddSlotResource: boolean;1792  readonly asAddSlotResource: {1793    readonly rmrkCollectionId: u32;1794    readonly nftId: u32;1795    readonly resource: RmrkTraitsResourceSlotResource;1796  } & Struct;1797  readonly isRemoveResource: boolean;1798  readonly asRemoveResource: {1799    readonly rmrkCollectionId: u32;1800    readonly nftId: u32;1801    readonly resourceId: u32;1802  } & Struct;1803  readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1804}18051806/** @name PalletRmrkCoreError */1807export interface PalletRmrkCoreError extends Enum {1808  readonly isCorruptedCollectionType: boolean;1809  readonly isRmrkPropertyKeyIsTooLong: boolean;1810  readonly isRmrkPropertyValueIsTooLong: boolean;1811  readonly isRmrkPropertyIsNotFound: boolean;1812  readonly isUnableToDecodeRmrkData: boolean;1813  readonly isCollectionNotEmpty: boolean;1814  readonly isNoAvailableCollectionId: boolean;1815  readonly isNoAvailableNftId: boolean;1816  readonly isCollectionUnknown: boolean;1817  readonly isNoPermission: boolean;1818  readonly isNonTransferable: boolean;1819  readonly isCollectionFullOrLocked: boolean;1820  readonly isResourceDoesntExist: boolean;1821  readonly isCannotSendToDescendentOrSelf: boolean;1822  readonly isCannotAcceptNonOwnedNft: boolean;1823  readonly isCannotRejectNonOwnedNft: boolean;1824  readonly isCannotRejectNonPendingNft: boolean;1825  readonly isResourceNotPending: boolean;1826  readonly isNoAvailableResourceId: boolean;1827  readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1828}18291830/** @name PalletRmrkCoreEvent */1831export interface PalletRmrkCoreEvent extends Enum {1832  readonly isCollectionCreated: boolean;1833  readonly asCollectionCreated: {1834    readonly issuer: AccountId32;1835    readonly collectionId: u32;1836  } & Struct;1837  readonly isCollectionDestroyed: boolean;1838  readonly asCollectionDestroyed: {1839    readonly issuer: AccountId32;1840    readonly collectionId: u32;1841  } & Struct;1842  readonly isIssuerChanged: boolean;1843  readonly asIssuerChanged: {1844    readonly oldIssuer: AccountId32;1845    readonly newIssuer: AccountId32;1846    readonly collectionId: u32;1847  } & Struct;1848  readonly isCollectionLocked: boolean;1849  readonly asCollectionLocked: {1850    readonly issuer: AccountId32;1851    readonly collectionId: u32;1852  } & Struct;1853  readonly isNftMinted: boolean;1854  readonly asNftMinted: {1855    readonly owner: AccountId32;1856    readonly collectionId: u32;1857    readonly nftId: u32;1858  } & Struct;1859  readonly isNftBurned: boolean;1860  readonly asNftBurned: {1861    readonly owner: AccountId32;1862    readonly nftId: u32;1863  } & Struct;1864  readonly isNftSent: boolean;1865  readonly asNftSent: {1866    readonly sender: AccountId32;1867    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1868    readonly collectionId: u32;1869    readonly nftId: u32;1870    readonly approvalRequired: bool;1871  } & Struct;1872  readonly isNftAccepted: boolean;1873  readonly asNftAccepted: {1874    readonly sender: AccountId32;1875    readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1876    readonly collectionId: u32;1877    readonly nftId: u32;1878  } & Struct;1879  readonly isNftRejected: boolean;1880  readonly asNftRejected: {1881    readonly sender: AccountId32;1882    readonly collectionId: u32;1883    readonly nftId: u32;1884  } & Struct;1885  readonly isPropertySet: boolean;1886  readonly asPropertySet: {1887    readonly collectionId: u32;1888    readonly maybeNftId: Option<u32>;1889    readonly key: Bytes;1890    readonly value: Bytes;1891  } & Struct;1892  readonly isResourceAdded: boolean;1893  readonly asResourceAdded: {1894    readonly nftId: u32;1895    readonly resourceId: u32;1896  } & Struct;1897  readonly isResourceRemoval: boolean;1898  readonly asResourceRemoval: {1899    readonly nftId: u32;1900    readonly resourceId: u32;1901  } & Struct;1902  readonly isResourceAccepted: boolean;1903  readonly asResourceAccepted: {1904    readonly nftId: u32;1905    readonly resourceId: u32;1906  } & Struct;1907  readonly isResourceRemovalAccepted: boolean;1908  readonly asResourceRemovalAccepted: {1909    readonly nftId: u32;1910    readonly resourceId: u32;1911  } & Struct;1912  readonly isPrioritySet: boolean;1913  readonly asPrioritySet: {1914    readonly collectionId: u32;1915    readonly nftId: u32;1916  } & Struct;1917  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1918}19191920/** @name PalletRmrkEquipCall */1921export interface PalletRmrkEquipCall extends Enum {1922  readonly isCreateBase: boolean;1923  readonly asCreateBase: {1924    readonly baseType: Bytes;1925    readonly symbol: Bytes;1926    readonly parts: Vec<RmrkTraitsPartPartType>;1927  } & Struct;1928  readonly isThemeAdd: boolean;1929  readonly asThemeAdd: {1930    readonly baseId: u32;1931    readonly theme: RmrkTraitsTheme;1932  } & Struct;1933  readonly isEquippable: boolean;1934  readonly asEquippable: {1935    readonly baseId: u32;1936    readonly slotId: u32;1937    readonly equippables: RmrkTraitsPartEquippableList;1938  } & Struct;1939  readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1940}19411942/** @name PalletRmrkEquipError */1943export interface PalletRmrkEquipError extends Enum {1944  readonly isPermissionError: boolean;1945  readonly isNoAvailableBaseId: boolean;1946  readonly isNoAvailablePartId: boolean;1947  readonly isBaseDoesntExist: boolean;1948  readonly isNeedsDefaultThemeFirst: boolean;1949  readonly isPartDoesntExist: boolean;1950  readonly isNoEquippableOnFixedPart: boolean;1951  readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1952}19531954/** @name PalletRmrkEquipEvent */1955export interface PalletRmrkEquipEvent extends Enum {1956  readonly isBaseCreated: boolean;1957  readonly asBaseCreated: {1958    readonly issuer: AccountId32;1959    readonly baseId: u32;1960  } & Struct;1961  readonly isEquippablesUpdated: boolean;1962  readonly asEquippablesUpdated: {1963    readonly baseId: u32;1964    readonly slotId: u32;1965  } & Struct;1966  readonly type: 'BaseCreated' | 'EquippablesUpdated';1967}19681969/** @name PalletStructureCall */1970export interface PalletStructureCall extends Null {}19711972/** @name PalletStructureError */1973export interface PalletStructureError extends Enum {1974  readonly isOuroborosDetected: boolean;1975  readonly isDepthLimit: boolean;1976  readonly isBreadthLimit: boolean;1977  readonly isTokenNotFound: boolean;1978  readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1979}19801981/** @name PalletStructureEvent */1982export interface PalletStructureEvent extends Enum {1983  readonly isExecuted: boolean;1984  readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1985  readonly type: 'Executed';1986}19871988/** @name PalletSudoCall */1989export interface PalletSudoCall extends Enum {1990  readonly isSudo: boolean;1991  readonly asSudo: {1992    readonly call: Call;1993  } & Struct;1994  readonly isSudoUncheckedWeight: boolean;1995  readonly asSudoUncheckedWeight: {1996    readonly call: Call;1997    readonly weight: SpWeightsWeightV2Weight;1998  } & Struct;1999  readonly isSetKey: boolean;2000  readonly asSetKey: {2001    readonly new_: MultiAddress;2002  } & Struct;2003  readonly isSudoAs: boolean;2004  readonly asSudoAs: {2005    readonly who: MultiAddress;2006    readonly call: Call;2007  } & Struct;2008  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2009}20102011/** @name PalletSudoError */2012export interface PalletSudoError extends Enum {2013  readonly isRequireSudo: boolean;2014  readonly type: 'RequireSudo';2015}20162017/** @name PalletSudoEvent */2018export interface PalletSudoEvent extends Enum {2019  readonly isSudid: boolean;2020  readonly asSudid: {2021    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2022  } & Struct;2023  readonly isKeyChanged: boolean;2024  readonly asKeyChanged: {2025    readonly oldSudoer: Option<AccountId32>;2026  } & Struct;2027  readonly isSudoAsDone: boolean;2028  readonly asSudoAsDone: {2029    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2030  } & Struct;2031  readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2032}20332034/** @name PalletTemplateTransactionPaymentCall */2035export interface PalletTemplateTransactionPaymentCall extends Null {}20362037/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2038export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}20392040/** @name PalletTestUtilsCall */2041export interface PalletTestUtilsCall extends Enum {2042  readonly isEnable: boolean;2043  readonly isSetTestValue: boolean;2044  readonly asSetTestValue: {2045    readonly value: u32;2046  } & Struct;2047  readonly isSetTestValueAndRollback: boolean;2048  readonly asSetTestValueAndRollback: {2049    readonly value: u32;2050  } & Struct;2051  readonly isIncTestValue: boolean;2052  readonly isSelfCancelingInc: boolean;2053  readonly asSelfCancelingInc: {2054    readonly id: U8aFixed;2055    readonly maxTestValue: u32;2056  } & Struct;2057  readonly isJustTakeFee: boolean;2058  readonly isBatchAll: boolean;2059  readonly asBatchAll: {2060    readonly calls: Vec<Call>;2061  } & Struct;2062  readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';2063}20642065/** @name PalletTestUtilsError */2066export interface PalletTestUtilsError extends Enum {2067  readonly isTestPalletDisabled: boolean;2068  readonly isTriggerRollback: boolean;2069  readonly type: 'TestPalletDisabled' | 'TriggerRollback';2070}20712072/** @name PalletTestUtilsEvent */2073export interface PalletTestUtilsEvent extends Enum {2074  readonly isValueIsSet: boolean;2075  readonly isShouldRollback: boolean;2076  readonly isBatchCompleted: boolean;2077  readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2078}20792080/** @name PalletTimestampCall */2081export interface PalletTimestampCall extends Enum {2082  readonly isSet: boolean;2083  readonly asSet: {2084    readonly now: Compact<u64>;2085  } & Struct;2086  readonly type: 'Set';2087}20882089/** @name PalletTransactionPaymentEvent */2090export interface PalletTransactionPaymentEvent extends Enum {2091  readonly isTransactionFeePaid: boolean;2092  readonly asTransactionFeePaid: {2093    readonly who: AccountId32;2094    readonly actualFee: u128;2095    readonly tip: u128;2096  } & Struct;2097  readonly type: 'TransactionFeePaid';2098}20992100/** @name PalletTransactionPaymentReleases */2101export interface PalletTransactionPaymentReleases extends Enum {2102  readonly isV1Ancient: boolean;2103  readonly isV2: boolean;2104  readonly type: 'V1Ancient' | 'V2';2105}21062107/** @name PalletTreasuryCall */2108export interface PalletTreasuryCall extends Enum {2109  readonly isProposeSpend: boolean;2110  readonly asProposeSpend: {2111    readonly value: Compact<u128>;2112    readonly beneficiary: MultiAddress;2113  } & Struct;2114  readonly isRejectProposal: boolean;2115  readonly asRejectProposal: {2116    readonly proposalId: Compact<u32>;2117  } & Struct;2118  readonly isApproveProposal: boolean;2119  readonly asApproveProposal: {2120    readonly proposalId: Compact<u32>;2121  } & Struct;2122  readonly isSpend: boolean;2123  readonly asSpend: {2124    readonly amount: Compact<u128>;2125    readonly beneficiary: MultiAddress;2126  } & Struct;2127  readonly isRemoveApproval: boolean;2128  readonly asRemoveApproval: {2129    readonly proposalId: Compact<u32>;2130  } & Struct;2131  readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2132}21332134/** @name PalletTreasuryError */2135export interface PalletTreasuryError extends Enum {2136  readonly isInsufficientProposersBalance: boolean;2137  readonly isInvalidIndex: boolean;2138  readonly isTooManyApprovals: boolean;2139  readonly isInsufficientPermission: boolean;2140  readonly isProposalNotApproved: boolean;2141  readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2142}21432144/** @name PalletTreasuryEvent */2145export interface PalletTreasuryEvent extends Enum {2146  readonly isProposed: boolean;2147  readonly asProposed: {2148    readonly proposalIndex: u32;2149  } & Struct;2150  readonly isSpending: boolean;2151  readonly asSpending: {2152    readonly budgetRemaining: u128;2153  } & Struct;2154  readonly isAwarded: boolean;2155  readonly asAwarded: {2156    readonly proposalIndex: u32;2157    readonly award: u128;2158    readonly account: AccountId32;2159  } & Struct;2160  readonly isRejected: boolean;2161  readonly asRejected: {2162    readonly proposalIndex: u32;2163    readonly slashed: u128;2164  } & Struct;2165  readonly isBurnt: boolean;2166  readonly asBurnt: {2167    readonly burntFunds: u128;2168  } & Struct;2169  readonly isRollover: boolean;2170  readonly asRollover: {2171    readonly rolloverBalance: u128;2172  } & Struct;2173  readonly isDeposit: boolean;2174  readonly asDeposit: {2175    readonly value: u128;2176  } & Struct;2177  readonly isSpendApproved: boolean;2178  readonly asSpendApproved: {2179    readonly proposalIndex: u32;2180    readonly amount: u128;2181    readonly beneficiary: AccountId32;2182  } & Struct;2183  readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';2184}21852186/** @name PalletTreasuryProposal */2187export interface PalletTreasuryProposal extends Struct {2188  readonly proposer: AccountId32;2189  readonly value: u128;2190  readonly beneficiary: AccountId32;2191  readonly bond: u128;2192}21932194/** @name PalletUniqueCall */2195export interface PalletUniqueCall extends Enum {2196  readonly isCreateCollection: boolean;2197  readonly asCreateCollection: {2198    readonly collectionName: Vec<u16>;2199    readonly collectionDescription: Vec<u16>;2200    readonly tokenPrefix: Bytes;2201    readonly mode: UpDataStructsCollectionMode;2202  } & Struct;2203  readonly isCreateCollectionEx: boolean;2204  readonly asCreateCollectionEx: {2205    readonly data: UpDataStructsCreateCollectionData;2206  } & Struct;2207  readonly isDestroyCollection: boolean;2208  readonly asDestroyCollection: {2209    readonly collectionId: u32;2210  } & Struct;2211  readonly isAddToAllowList: boolean;2212  readonly asAddToAllowList: {2213    readonly collectionId: u32;2214    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2215  } & Struct;2216  readonly isRemoveFromAllowList: boolean;2217  readonly asRemoveFromAllowList: {2218    readonly collectionId: u32;2219    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2220  } & Struct;2221  readonly isChangeCollectionOwner: boolean;2222  readonly asChangeCollectionOwner: {2223    readonly collectionId: u32;2224    readonly newOwner: AccountId32;2225  } & Struct;2226  readonly isAddCollectionAdmin: boolean;2227  readonly asAddCollectionAdmin: {2228    readonly collectionId: u32;2229    readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2230  } & Struct;2231  readonly isRemoveCollectionAdmin: boolean;2232  readonly asRemoveCollectionAdmin: {2233    readonly collectionId: u32;2234    readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2235  } & Struct;2236  readonly isSetCollectionSponsor: boolean;2237  readonly asSetCollectionSponsor: {2238    readonly collectionId: u32;2239    readonly newSponsor: AccountId32;2240  } & Struct;2241  readonly isConfirmSponsorship: boolean;2242  readonly asConfirmSponsorship: {2243    readonly collectionId: u32;2244  } & Struct;2245  readonly isRemoveCollectionSponsor: boolean;2246  readonly asRemoveCollectionSponsor: {2247    readonly collectionId: u32;2248  } & Struct;2249  readonly isCreateItem: boolean;2250  readonly asCreateItem: {2251    readonly collectionId: u32;2252    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2253    readonly data: UpDataStructsCreateItemData;2254  } & Struct;2255  readonly isCreateMultipleItems: boolean;2256  readonly asCreateMultipleItems: {2257    readonly collectionId: u32;2258    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2259    readonly itemsData: Vec<UpDataStructsCreateItemData>;2260  } & Struct;2261  readonly isSetCollectionProperties: boolean;2262  readonly asSetCollectionProperties: {2263    readonly collectionId: u32;2264    readonly properties: Vec<UpDataStructsProperty>;2265  } & Struct;2266  readonly isDeleteCollectionProperties: boolean;2267  readonly asDeleteCollectionProperties: {2268    readonly collectionId: u32;2269    readonly propertyKeys: Vec<Bytes>;2270  } & Struct;2271  readonly isSetTokenProperties: boolean;2272  readonly asSetTokenProperties: {2273    readonly collectionId: u32;2274    readonly tokenId: u32;2275    readonly properties: Vec<UpDataStructsProperty>;2276  } & Struct;2277  readonly isDeleteTokenProperties: boolean;2278  readonly asDeleteTokenProperties: {2279    readonly collectionId: u32;2280    readonly tokenId: u32;2281    readonly propertyKeys: Vec<Bytes>;2282  } & Struct;2283  readonly isSetTokenPropertyPermissions: boolean;2284  readonly asSetTokenPropertyPermissions: {2285    readonly collectionId: u32;2286    readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2287  } & Struct;2288  readonly isCreateMultipleItemsEx: boolean;2289  readonly asCreateMultipleItemsEx: {2290    readonly collectionId: u32;2291    readonly data: UpDataStructsCreateItemExData;2292  } & Struct;2293  readonly isSetTransfersEnabledFlag: boolean;2294  readonly asSetTransfersEnabledFlag: {2295    readonly collectionId: u32;2296    readonly value: bool;2297  } & Struct;2298  readonly isBurnItem: boolean;2299  readonly asBurnItem: {2300    readonly collectionId: u32;2301    readonly itemId: u32;2302    readonly value: u128;2303  } & Struct;2304  readonly isBurnFrom: boolean;2305  readonly asBurnFrom: {2306    readonly collectionId: u32;2307    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2308    readonly itemId: u32;2309    readonly value: u128;2310  } & Struct;2311  readonly isTransfer: boolean;2312  readonly asTransfer: {2313    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2314    readonly collectionId: u32;2315    readonly itemId: u32;2316    readonly value: u128;2317  } & Struct;2318  readonly isApprove: boolean;2319  readonly asApprove: {2320    readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2321    readonly collectionId: u32;2322    readonly itemId: u32;2323    readonly amount: u128;2324  } & Struct;2325  readonly isTransferFrom: boolean;2326  readonly asTransferFrom: {2327    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2328    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2329    readonly collectionId: u32;2330    readonly itemId: u32;2331    readonly value: u128;2332  } & Struct;2333  readonly isSetCollectionLimits: boolean;2334  readonly asSetCollectionLimits: {2335    readonly collectionId: u32;2336    readonly newLimit: UpDataStructsCollectionLimits;2337  } & Struct;2338  readonly isSetCollectionPermissions: boolean;2339  readonly asSetCollectionPermissions: {2340    readonly collectionId: u32;2341    readonly newPermission: UpDataStructsCollectionPermissions;2342  } & Struct;2343  readonly isRepartition: boolean;2344  readonly asRepartition: {2345    readonly collectionId: u32;2346    readonly tokenId: u32;2347    readonly amount: u128;2348  } & Struct;2349  readonly isSetAllowanceForAll: boolean;2350  readonly asSetAllowanceForAll: {2351    readonly collectionId: u32;2352    readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2353    readonly approve: bool;2354  } & Struct;2355  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';2356}23572358/** @name PalletUniqueError */2359export interface PalletUniqueError extends Enum {2360  readonly isCollectionDecimalPointLimitExceeded: boolean;2361  readonly isEmptyArgument: boolean;2362  readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2363  readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2364}23652366/** @name PalletUniqueSchedulerV2BlockAgenda */2367export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {2368  readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;2369  readonly freePlaces: u32;2370}23712372/** @name PalletUniqueSchedulerV2Call */2373export interface PalletUniqueSchedulerV2Call extends Enum {2374  readonly isSchedule: boolean;2375  readonly asSchedule: {2376    readonly when: u32;2377    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2378    readonly priority: Option<u8>;2379    readonly call: Call;2380  } & Struct;2381  readonly isCancel: boolean;2382  readonly asCancel: {2383    readonly when: u32;2384    readonly index: u32;2385  } & Struct;2386  readonly isScheduleNamed: boolean;2387  readonly asScheduleNamed: {2388    readonly id: U8aFixed;2389    readonly when: u32;2390    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2391    readonly priority: Option<u8>;2392    readonly call: Call;2393  } & Struct;2394  readonly isCancelNamed: boolean;2395  readonly asCancelNamed: {2396    readonly id: U8aFixed;2397  } & Struct;2398  readonly isScheduleAfter: boolean;2399  readonly asScheduleAfter: {2400    readonly after: u32;2401    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2402    readonly priority: Option<u8>;2403    readonly call: Call;2404  } & Struct;2405  readonly isScheduleNamedAfter: boolean;2406  readonly asScheduleNamedAfter: {2407    readonly id: U8aFixed;2408    readonly after: u32;2409    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2410    readonly priority: Option<u8>;2411    readonly call: Call;2412  } & Struct;2413  readonly isChangeNamedPriority: boolean;2414  readonly asChangeNamedPriority: {2415    readonly id: U8aFixed;2416    readonly priority: u8;2417  } & Struct;2418  readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2419}24202421/** @name PalletUniqueSchedulerV2Error */2422export interface PalletUniqueSchedulerV2Error extends Enum {2423  readonly isFailedToSchedule: boolean;2424  readonly isAgendaIsExhausted: boolean;2425  readonly isScheduledCallCorrupted: boolean;2426  readonly isPreimageNotFound: boolean;2427  readonly isTooBigScheduledCall: boolean;2428  readonly isNotFound: boolean;2429  readonly isTargetBlockNumberInPast: boolean;2430  readonly isNamed: boolean;2431  readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';2432}24332434/** @name PalletUniqueSchedulerV2Event */2435export interface PalletUniqueSchedulerV2Event extends Enum {2436  readonly isScheduled: boolean;2437  readonly asScheduled: {2438    readonly when: u32;2439    readonly index: u32;2440  } & Struct;2441  readonly isCanceled: boolean;2442  readonly asCanceled: {2443    readonly when: u32;2444    readonly index: u32;2445  } & Struct;2446  readonly isDispatched: boolean;2447  readonly asDispatched: {2448    readonly task: ITuple<[u32, u32]>;2449    readonly id: Option<U8aFixed>;2450    readonly result: Result<Null, SpRuntimeDispatchError>;2451  } & Struct;2452  readonly isPriorityChanged: boolean;2453  readonly asPriorityChanged: {2454    readonly task: ITuple<[u32, u32]>;2455    readonly priority: u8;2456  } & Struct;2457  readonly isCallUnavailable: boolean;2458  readonly asCallUnavailable: {2459    readonly task: ITuple<[u32, u32]>;2460    readonly id: Option<U8aFixed>;2461  } & Struct;2462  readonly isPermanentlyOverweight: boolean;2463  readonly asPermanentlyOverweight: {2464    readonly task: ITuple<[u32, u32]>;2465    readonly id: Option<U8aFixed>;2466  } & Struct;2467  readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';2468}24692470/** @name PalletUniqueSchedulerV2Scheduled */2471export interface PalletUniqueSchedulerV2Scheduled extends Struct {2472  readonly maybeId: Option<U8aFixed>;2473  readonly priority: u8;2474  readonly call: PalletUniqueSchedulerV2ScheduledCall;2475  readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2476  readonly origin: OpalRuntimeOriginCaller;2477}24782479/** @name PalletUniqueSchedulerV2ScheduledCall */2480export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {2481  readonly isInline: boolean;2482  readonly asInline: Bytes;2483  readonly isPreimageLookup: boolean;2484  readonly asPreimageLookup: {2485    readonly hash_: H256;2486    readonly unboundedLen: u32;2487  } & Struct;2488  readonly type: 'Inline' | 'PreimageLookup';2489}24902491/** @name PalletXcmCall */2492export interface PalletXcmCall extends Enum {2493  readonly isSend: boolean;2494  readonly asSend: {2495    readonly dest: XcmVersionedMultiLocation;2496    readonly message: XcmVersionedXcm;2497  } & Struct;2498  readonly isTeleportAssets: boolean;2499  readonly asTeleportAssets: {2500    readonly dest: XcmVersionedMultiLocation;2501    readonly beneficiary: XcmVersionedMultiLocation;2502    readonly assets: XcmVersionedMultiAssets;2503    readonly feeAssetItem: u32;2504  } & Struct;2505  readonly isReserveTransferAssets: boolean;2506  readonly asReserveTransferAssets: {2507    readonly dest: XcmVersionedMultiLocation;2508    readonly beneficiary: XcmVersionedMultiLocation;2509    readonly assets: XcmVersionedMultiAssets;2510    readonly feeAssetItem: u32;2511  } & Struct;2512  readonly isExecute: boolean;2513  readonly asExecute: {2514    readonly message: XcmVersionedXcm;2515    readonly maxWeight: u64;2516  } & Struct;2517  readonly isForceXcmVersion: boolean;2518  readonly asForceXcmVersion: {2519    readonly location: XcmV1MultiLocation;2520    readonly xcmVersion: u32;2521  } & Struct;2522  readonly isForceDefaultXcmVersion: boolean;2523  readonly asForceDefaultXcmVersion: {2524    readonly maybeXcmVersion: Option<u32>;2525  } & Struct;2526  readonly isForceSubscribeVersionNotify: boolean;2527  readonly asForceSubscribeVersionNotify: {2528    readonly location: XcmVersionedMultiLocation;2529  } & Struct;2530  readonly isForceUnsubscribeVersionNotify: boolean;2531  readonly asForceUnsubscribeVersionNotify: {2532    readonly location: XcmVersionedMultiLocation;2533  } & Struct;2534  readonly isLimitedReserveTransferAssets: boolean;2535  readonly asLimitedReserveTransferAssets: {2536    readonly dest: XcmVersionedMultiLocation;2537    readonly beneficiary: XcmVersionedMultiLocation;2538    readonly assets: XcmVersionedMultiAssets;2539    readonly feeAssetItem: u32;2540    readonly weightLimit: XcmV2WeightLimit;2541  } & Struct;2542  readonly isLimitedTeleportAssets: boolean;2543  readonly asLimitedTeleportAssets: {2544    readonly dest: XcmVersionedMultiLocation;2545    readonly beneficiary: XcmVersionedMultiLocation;2546    readonly assets: XcmVersionedMultiAssets;2547    readonly feeAssetItem: u32;2548    readonly weightLimit: XcmV2WeightLimit;2549  } & Struct;2550  readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2551}25522553/** @name PalletXcmError */2554export interface PalletXcmError extends Enum {2555  readonly isUnreachable: boolean;2556  readonly isSendFailure: boolean;2557  readonly isFiltered: boolean;2558  readonly isUnweighableMessage: boolean;2559  readonly isDestinationNotInvertible: boolean;2560  readonly isEmpty: boolean;2561  readonly isCannotReanchor: boolean;2562  readonly isTooManyAssets: boolean;2563  readonly isInvalidOrigin: boolean;2564  readonly isBadVersion: boolean;2565  readonly isBadLocation: boolean;2566  readonly isNoSubscription: boolean;2567  readonly isAlreadySubscribed: boolean;2568  readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2569}25702571/** @name PalletXcmEvent */2572export interface PalletXcmEvent extends Enum {2573  readonly isAttempted: boolean;2574  readonly asAttempted: XcmV2TraitsOutcome;2575  readonly isSent: boolean;2576  readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2577  readonly isUnexpectedResponse: boolean;2578  readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2579  readonly isResponseReady: boolean;2580  readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2581  readonly isNotified: boolean;2582  readonly asNotified: ITuple<[u64, u8, u8]>;2583  readonly isNotifyOverweight: boolean;2584  readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2585  readonly isNotifyDispatchError: boolean;2586  readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2587  readonly isNotifyDecodeFailed: boolean;2588  readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2589  readonly isInvalidResponder: boolean;2590  readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2591  readonly isInvalidResponderVersion: boolean;2592  readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2593  readonly isResponseTaken: boolean;2594  readonly asResponseTaken: u64;2595  readonly isAssetsTrapped: boolean;2596  readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2597  readonly isVersionChangeNotified: boolean;2598  readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2599  readonly isSupportedVersionChanged: boolean;2600  readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2601  readonly isNotifyTargetSendFail: boolean;2602  readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2603  readonly isNotifyTargetMigrationFail: boolean;2604  readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2605  readonly isAssetsClaimed: boolean;2606  readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2607  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2608}26092610/** @name PalletXcmOrigin */2611export interface PalletXcmOrigin extends Enum {2612  readonly isXcm: boolean;2613  readonly asXcm: XcmV1MultiLocation;2614  readonly isResponse: boolean;2615  readonly asResponse: XcmV1MultiLocation;2616  readonly type: 'Xcm' | 'Response';2617}26182619/** @name PhantomTypeUpDataStructs */2620export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}26212622/** @name PolkadotCorePrimitivesInboundDownwardMessage */2623export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2624  readonly sentAt: u32;2625  readonly msg: Bytes;2626}26272628/** @name PolkadotCorePrimitivesInboundHrmpMessage */2629export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2630  readonly sentAt: u32;2631  readonly data: Bytes;2632}26332634/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2635export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2636  readonly recipient: u32;2637  readonly data: Bytes;2638}26392640/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2641export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2642  readonly isConcatenatedVersionedXcm: boolean;2643  readonly isConcatenatedEncodedBlob: boolean;2644  readonly isSignals: boolean;2645  readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2646}26472648/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2649export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2650  readonly maxCodeSize: u32;2651  readonly maxHeadDataSize: u32;2652  readonly maxUpwardQueueCount: u32;2653  readonly maxUpwardQueueSize: u32;2654  readonly maxUpwardMessageSize: u32;2655  readonly maxUpwardMessageNumPerCandidate: u32;2656  readonly hrmpMaxMessageNumPerCandidate: u32;2657  readonly validationUpgradeCooldown: u32;2658  readonly validationUpgradeDelay: u32;2659}26602661/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2662export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2663  readonly maxCapacity: u32;2664  readonly maxTotalSize: u32;2665  readonly maxMessageSize: u32;2666  readonly msgCount: u32;2667  readonly totalSize: u32;2668  readonly mqcHead: Option<H256>;2669}26702671/** @name PolkadotPrimitivesV2PersistedValidationData */2672export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2673  readonly parentHead: Bytes;2674  readonly relayParentNumber: u32;2675  readonly relayParentStorageRoot: H256;2676  readonly maxPovSize: u32;2677}26782679/** @name PolkadotPrimitivesV2UpgradeRestriction */2680export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2681  readonly isPresent: boolean;2682  readonly type: 'Present';2683}26842685/** @name RmrkTraitsBaseBaseInfo */2686export interface RmrkTraitsBaseBaseInfo extends Struct {2687  readonly issuer: AccountId32;2688  readonly baseType: Bytes;2689  readonly symbol: Bytes;2690}26912692/** @name RmrkTraitsCollectionCollectionInfo */2693export interface RmrkTraitsCollectionCollectionInfo extends Struct {2694  readonly issuer: AccountId32;2695  readonly metadata: Bytes;2696  readonly max: Option<u32>;2697  readonly symbol: Bytes;2698  readonly nftsCount: u32;2699}27002701/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2702export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2703  readonly isAccountId: boolean;2704  readonly asAccountId: AccountId32;2705  readonly isCollectionAndNftTuple: boolean;2706  readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2707  readonly type: 'AccountId' | 'CollectionAndNftTuple';2708}27092710/** @name RmrkTraitsNftNftChild */2711export interface RmrkTraitsNftNftChild extends Struct {2712  readonly collectionId: u32;2713  readonly nftId: u32;2714}27152716/** @name RmrkTraitsNftNftInfo */2717export interface RmrkTraitsNftNftInfo extends Struct {2718  readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2719  readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2720  readonly metadata: Bytes;2721  readonly equipped: bool;2722  readonly pending: bool;2723}27242725/** @name RmrkTraitsNftRoyaltyInfo */2726export interface RmrkTraitsNftRoyaltyInfo extends Struct {2727  readonly recipient: AccountId32;2728  readonly amount: Permill;2729}27302731/** @name RmrkTraitsPartEquippableList */2732export interface RmrkTraitsPartEquippableList extends Enum {2733  readonly isAll: boolean;2734  readonly isEmpty: boolean;2735  readonly isCustom: boolean;2736  readonly asCustom: Vec<u32>;2737  readonly type: 'All' | 'Empty' | 'Custom';2738}27392740/** @name RmrkTraitsPartFixedPart */2741export interface RmrkTraitsPartFixedPart extends Struct {2742  readonly id: u32;2743  readonly z: u32;2744  readonly src: Bytes;2745}27462747/** @name RmrkTraitsPartPartType */2748export interface RmrkTraitsPartPartType extends Enum {2749  readonly isFixedPart: boolean;2750  readonly asFixedPart: RmrkTraitsPartFixedPart;2751  readonly isSlotPart: boolean;2752  readonly asSlotPart: RmrkTraitsPartSlotPart;2753  readonly type: 'FixedPart' | 'SlotPart';2754}27552756/** @name RmrkTraitsPartSlotPart */2757export interface RmrkTraitsPartSlotPart extends Struct {2758  readonly id: u32;2759  readonly equippable: RmrkTraitsPartEquippableList;2760  readonly src: Bytes;2761  readonly z: u32;2762}27632764/** @name RmrkTraitsPropertyPropertyInfo */2765export interface RmrkTraitsPropertyPropertyInfo extends Struct {2766  readonly key: Bytes;2767  readonly value: Bytes;2768}27692770/** @name RmrkTraitsResourceBasicResource */2771export interface RmrkTraitsResourceBasicResource extends Struct {2772  readonly src: Option<Bytes>;2773  readonly metadata: Option<Bytes>;2774  readonly license: Option<Bytes>;2775  readonly thumb: Option<Bytes>;2776}27772778/** @name RmrkTraitsResourceComposableResource */2779export interface RmrkTraitsResourceComposableResource extends Struct {2780  readonly parts: Vec<u32>;2781  readonly base: u32;2782  readonly src: Option<Bytes>;2783  readonly metadata: Option<Bytes>;2784  readonly license: Option<Bytes>;2785  readonly thumb: Option<Bytes>;2786}27872788/** @name RmrkTraitsResourceResourceInfo */2789export interface RmrkTraitsResourceResourceInfo extends Struct {2790  readonly id: u32;2791  readonly resource: RmrkTraitsResourceResourceTypes;2792  readonly pending: bool;2793  readonly pendingRemoval: bool;2794}27952796/** @name RmrkTraitsResourceResourceTypes */2797export interface RmrkTraitsResourceResourceTypes extends Enum {2798  readonly isBasic: boolean;2799  readonly asBasic: RmrkTraitsResourceBasicResource;2800  readonly isComposable: boolean;2801  readonly asComposable: RmrkTraitsResourceComposableResource;2802  readonly isSlot: boolean;2803  readonly asSlot: RmrkTraitsResourceSlotResource;2804  readonly type: 'Basic' | 'Composable' | 'Slot';2805}28062807/** @name RmrkTraitsResourceSlotResource */2808export interface RmrkTraitsResourceSlotResource extends Struct {2809  readonly base: u32;2810  readonly src: Option<Bytes>;2811  readonly metadata: Option<Bytes>;2812  readonly slot: u32;2813  readonly license: Option<Bytes>;2814  readonly thumb: Option<Bytes>;2815}28162817/** @name RmrkTraitsTheme */2818export interface RmrkTraitsTheme extends Struct {2819  readonly name: Bytes;2820  readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2821  readonly inherit: bool;2822}28232824/** @name RmrkTraitsThemeThemeProperty */2825export interface RmrkTraitsThemeThemeProperty extends Struct {2826  readonly key: Bytes;2827  readonly value: Bytes;2828}28292830/** @name SpCoreEcdsaSignature */2831export interface SpCoreEcdsaSignature extends U8aFixed {}28322833/** @name SpCoreEd25519Signature */2834export interface SpCoreEd25519Signature extends U8aFixed {}28352836/** @name SpCoreSr25519Signature */2837export interface SpCoreSr25519Signature extends U8aFixed {}28382839/** @name SpCoreVoid */2840export interface SpCoreVoid extends Null {}28412842/** @name SpRuntimeArithmeticError */2843export interface SpRuntimeArithmeticError extends Enum {2844  readonly isUnderflow: boolean;2845  readonly isOverflow: boolean;2846  readonly isDivisionByZero: boolean;2847  readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2848}28492850/** @name SpRuntimeDigest */2851export interface SpRuntimeDigest extends Struct {2852  readonly logs: Vec<SpRuntimeDigestDigestItem>;2853}28542855/** @name SpRuntimeDigestDigestItem */2856export interface SpRuntimeDigestDigestItem extends Enum {2857  readonly isOther: boolean;2858  readonly asOther: Bytes;2859  readonly isConsensus: boolean;2860  readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2861  readonly isSeal: boolean;2862  readonly asSeal: ITuple<[U8aFixed, Bytes]>;2863  readonly isPreRuntime: boolean;2864  readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2865  readonly isRuntimeEnvironmentUpdated: boolean;2866  readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2867}28682869/** @name SpRuntimeDispatchError */2870export interface SpRuntimeDispatchError extends Enum {2871  readonly isOther: boolean;2872  readonly isCannotLookup: boolean;2873  readonly isBadOrigin: boolean;2874  readonly isModule: boolean;2875  readonly asModule: SpRuntimeModuleError;2876  readonly isConsumerRemaining: boolean;2877  readonly isNoProviders: boolean;2878  readonly isTooManyConsumers: boolean;2879  readonly isToken: boolean;2880  readonly asToken: SpRuntimeTokenError;2881  readonly isArithmetic: boolean;2882  readonly asArithmetic: SpRuntimeArithmeticError;2883  readonly isTransactional: boolean;2884  readonly asTransactional: SpRuntimeTransactionalError;2885  readonly isExhausted: boolean;2886  readonly isCorruption: boolean;2887  readonly isUnavailable: boolean;2888  readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2889}28902891/** @name SpRuntimeModuleError */2892export interface SpRuntimeModuleError extends Struct {2893  readonly index: u8;2894  readonly error: U8aFixed;2895}28962897/** @name SpRuntimeMultiSignature */2898export interface SpRuntimeMultiSignature extends Enum {2899  readonly isEd25519: boolean;2900  readonly asEd25519: SpCoreEd25519Signature;2901  readonly isSr25519: boolean;2902  readonly asSr25519: SpCoreSr25519Signature;2903  readonly isEcdsa: boolean;2904  readonly asEcdsa: SpCoreEcdsaSignature;2905  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2906}29072908/** @name SpRuntimeTokenError */2909export interface SpRuntimeTokenError extends Enum {2910  readonly isNoFunds: boolean;2911  readonly isWouldDie: boolean;2912  readonly isBelowMinimum: boolean;2913  readonly isCannotCreate: boolean;2914  readonly isUnknownAsset: boolean;2915  readonly isFrozen: boolean;2916  readonly isUnsupported: boolean;2917  readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2918}29192920/** @name SpRuntimeTransactionalError */2921export interface SpRuntimeTransactionalError extends Enum {2922  readonly isLimitReached: boolean;2923  readonly isNoLayer: boolean;2924  readonly type: 'LimitReached' | 'NoLayer';2925}29262927/** @name SpTrieStorageProof */2928export interface SpTrieStorageProof extends Struct {2929  readonly trieNodes: BTreeSet<Bytes>;2930}29312932/** @name SpVersionRuntimeVersion */2933export interface SpVersionRuntimeVersion extends Struct {2934  readonly specName: Text;2935  readonly implName: Text;2936  readonly authoringVersion: u32;2937  readonly specVersion: u32;2938  readonly implVersion: u32;2939  readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2940  readonly transactionVersion: u32;2941  readonly stateVersion: u8;2942}29432944/** @name SpWeightsRuntimeDbWeight */2945export interface SpWeightsRuntimeDbWeight extends Struct {2946  readonly read: u64;2947  readonly write: u64;2948}29492950/** @name SpWeightsWeightV2Weight */2951export interface SpWeightsWeightV2Weight extends Struct {2952  readonly refTime: Compact<u64>;2953  readonly proofSize: Compact<u64>;2954}29552956/** @name UpDataStructsAccessMode */2957export interface UpDataStructsAccessMode extends Enum {2958  readonly isNormal: boolean;2959  readonly isAllowList: boolean;2960  readonly type: 'Normal' | 'AllowList';2961}29622963/** @name UpDataStructsCollection */2964export interface UpDataStructsCollection extends Struct {2965  readonly owner: AccountId32;2966  readonly mode: UpDataStructsCollectionMode;2967  readonly name: Vec<u16>;2968  readonly description: Vec<u16>;2969  readonly tokenPrefix: Bytes;2970  readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2971  readonly limits: UpDataStructsCollectionLimits;2972  readonly permissions: UpDataStructsCollectionPermissions;2973  readonly flags: U8aFixed;2974}29752976/** @name UpDataStructsCollectionLimits */2977export interface UpDataStructsCollectionLimits extends Struct {2978  readonly accountTokenOwnershipLimit: Option<u32>;2979  readonly sponsoredDataSize: Option<u32>;2980  readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2981  readonly tokenLimit: Option<u32>;2982  readonly sponsorTransferTimeout: Option<u32>;2983  readonly sponsorApproveTimeout: Option<u32>;2984  readonly ownerCanTransfer: Option<bool>;2985  readonly ownerCanDestroy: Option<bool>;2986  readonly transfersEnabled: Option<bool>;2987}29882989/** @name UpDataStructsCollectionMode */2990export interface UpDataStructsCollectionMode extends Enum {2991  readonly isNft: boolean;2992  readonly isFungible: boolean;2993  readonly asFungible: u8;2994  readonly isReFungible: boolean;2995  readonly type: 'Nft' | 'Fungible' | 'ReFungible';2996}29972998/** @name UpDataStructsCollectionPermissions */2999export interface UpDataStructsCollectionPermissions extends Struct {3000  readonly access: Option<UpDataStructsAccessMode>;3001  readonly mintMode: Option<bool>;3002  readonly nesting: Option<UpDataStructsNestingPermissions>;3003}30043005/** @name UpDataStructsCollectionStats */3006export interface UpDataStructsCollectionStats extends Struct {3007  readonly created: u32;3008  readonly destroyed: u32;3009  readonly alive: u32;3010}30113012/** @name UpDataStructsCreateCollectionData */3013export interface UpDataStructsCreateCollectionData extends Struct {3014  readonly mode: UpDataStructsCollectionMode;3015  readonly access: Option<UpDataStructsAccessMode>;3016  readonly name: Vec<u16>;3017  readonly description: Vec<u16>;3018  readonly tokenPrefix: Bytes;3019  readonly pendingSponsor: Option<AccountId32>;3020  readonly limits: Option<UpDataStructsCollectionLimits>;3021  readonly permissions: Option<UpDataStructsCollectionPermissions>;3022  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3023  readonly properties: Vec<UpDataStructsProperty>;3024}30253026/** @name UpDataStructsCreateFungibleData */3027export interface UpDataStructsCreateFungibleData extends Struct {3028  readonly value: u128;3029}30303031/** @name UpDataStructsCreateItemData */3032export interface UpDataStructsCreateItemData extends Enum {3033  readonly isNft: boolean;3034  readonly asNft: UpDataStructsCreateNftData;3035  readonly isFungible: boolean;3036  readonly asFungible: UpDataStructsCreateFungibleData;3037  readonly isReFungible: boolean;3038  readonly asReFungible: UpDataStructsCreateReFungibleData;3039  readonly type: 'Nft' | 'Fungible' | 'ReFungible';3040}30413042/** @name UpDataStructsCreateItemExData */3043export interface UpDataStructsCreateItemExData extends Enum {3044  readonly isNft: boolean;3045  readonly asNft: Vec<UpDataStructsCreateNftExData>;3046  readonly isFungible: boolean;3047  readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;3048  readonly isRefungibleMultipleItems: boolean;3049  readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;3050  readonly isRefungibleMultipleOwners: boolean;3051  readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;3052  readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3053}30543055/** @name UpDataStructsCreateNftData */3056export interface UpDataStructsCreateNftData extends Struct {3057  readonly properties: Vec<UpDataStructsProperty>;3058}30593060/** @name UpDataStructsCreateNftExData */3061export interface UpDataStructsCreateNftExData extends Struct {3062  readonly properties: Vec<UpDataStructsProperty>;3063  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3064}30653066/** @name UpDataStructsCreateReFungibleData */3067export interface UpDataStructsCreateReFungibleData extends Struct {3068  readonly pieces: u128;3069  readonly properties: Vec<UpDataStructsProperty>;3070}30713072/** @name UpDataStructsCreateRefungibleExMultipleOwners */3073export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3074  readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3075  readonly properties: Vec<UpDataStructsProperty>;3076}30773078/** @name UpDataStructsCreateRefungibleExSingleOwner */3079export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3080  readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3081  readonly pieces: u128;3082  readonly properties: Vec<UpDataStructsProperty>;3083}30843085/** @name UpDataStructsNestingPermissions */3086export interface UpDataStructsNestingPermissions extends Struct {3087  readonly tokenOwner: bool;3088  readonly collectionAdmin: bool;3089  readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3090}30913092/** @name UpDataStructsOwnerRestrictedSet */3093export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}30943095/** @name UpDataStructsProperties */3096export interface UpDataStructsProperties extends Struct {3097  readonly map: UpDataStructsPropertiesMapBoundedVec;3098  readonly consumedSpace: u32;3099  readonly spaceLimit: u32;3100}31013102/** @name UpDataStructsPropertiesMapBoundedVec */3103export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}31043105/** @name UpDataStructsPropertiesMapPropertyPermission */3106export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}31073108/** @name UpDataStructsProperty */3109export interface UpDataStructsProperty extends Struct {3110  readonly key: Bytes;3111  readonly value: Bytes;3112}31133114/** @name UpDataStructsPropertyKeyPermission */3115export interface UpDataStructsPropertyKeyPermission extends Struct {3116  readonly key: Bytes;3117  readonly permission: UpDataStructsPropertyPermission;3118}31193120/** @name UpDataStructsPropertyPermission */3121export interface UpDataStructsPropertyPermission extends Struct {3122  readonly mutable: bool;3123  readonly collectionAdmin: bool;3124  readonly tokenOwner: bool;3125}31263127/** @name UpDataStructsPropertyScope */3128export interface UpDataStructsPropertyScope extends Enum {3129  readonly isNone: boolean;3130  readonly isRmrk: boolean;3131  readonly type: 'None' | 'Rmrk';3132}31333134/** @name UpDataStructsRpcCollection */3135export interface UpDataStructsRpcCollection extends Struct {3136  readonly owner: AccountId32;3137  readonly mode: UpDataStructsCollectionMode;3138  readonly name: Vec<u16>;3139  readonly description: Vec<u16>;3140  readonly tokenPrefix: Bytes;3141  readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3142  readonly limits: UpDataStructsCollectionLimits;3143  readonly permissions: UpDataStructsCollectionPermissions;3144  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3145  readonly properties: Vec<UpDataStructsProperty>;3146  readonly readOnly: bool;3147  readonly flags: UpDataStructsRpcCollectionFlags;3148}31493150/** @name UpDataStructsRpcCollectionFlags */3151export interface UpDataStructsRpcCollectionFlags extends Struct {3152  readonly foreign: bool;3153  readonly erc721metadata: bool;3154}31553156/** @name UpDataStructsSponsoringRateLimit */3157export interface UpDataStructsSponsoringRateLimit extends Enum {3158  readonly isSponsoringDisabled: boolean;3159  readonly isBlocks: boolean;3160  readonly asBlocks: u32;3161  readonly type: 'SponsoringDisabled' | 'Blocks';3162}31633164/** @name UpDataStructsSponsorshipStateAccountId32 */3165export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3166  readonly isDisabled: boolean;3167  readonly isUnconfirmed: boolean;3168  readonly asUnconfirmed: AccountId32;3169  readonly isConfirmed: boolean;3170  readonly asConfirmed: AccountId32;3171  readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3172}31733174/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3175export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3176  readonly isDisabled: boolean;3177  readonly isUnconfirmed: boolean;3178  readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3179  readonly isConfirmed: boolean;3180  readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3181  readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3182}31833184/** @name UpDataStructsTokenChild */3185export interface UpDataStructsTokenChild extends Struct {3186  readonly token: u32;3187  readonly collection: u32;3188}31893190/** @name UpDataStructsTokenData */3191export interface UpDataStructsTokenData extends Struct {3192  readonly properties: Vec<UpDataStructsProperty>;3193  readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3194  readonly pieces: u128;3195}31963197/** @name XcmDoubleEncoded */3198export interface XcmDoubleEncoded extends Struct {3199  readonly encoded: Bytes;3200}32013202/** @name XcmV0Junction */3203export interface XcmV0Junction extends Enum {3204  readonly isParent: boolean;3205  readonly isParachain: boolean;3206  readonly asParachain: Compact<u32>;3207  readonly isAccountId32: boolean;3208  readonly asAccountId32: {3209    readonly network: XcmV0JunctionNetworkId;3210    readonly id: U8aFixed;3211  } & Struct;3212  readonly isAccountIndex64: boolean;3213  readonly asAccountIndex64: {3214    readonly network: XcmV0JunctionNetworkId;3215    readonly index: Compact<u64>;3216  } & Struct;3217  readonly isAccountKey20: boolean;3218  readonly asAccountKey20: {3219    readonly network: XcmV0JunctionNetworkId;3220    readonly key: U8aFixed;3221  } & Struct;3222  readonly isPalletInstance: boolean;3223  readonly asPalletInstance: u8;3224  readonly isGeneralIndex: boolean;3225  readonly asGeneralIndex: Compact<u128>;3226  readonly isGeneralKey: boolean;3227  readonly asGeneralKey: Bytes;3228  readonly isOnlyChild: boolean;3229  readonly isPlurality: boolean;3230  readonly asPlurality: {3231    readonly id: XcmV0JunctionBodyId;3232    readonly part: XcmV0JunctionBodyPart;3233  } & Struct;3234  readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3235}32363237/** @name XcmV0JunctionBodyId */3238export interface XcmV0JunctionBodyId extends Enum {3239  readonly isUnit: boolean;3240  readonly isNamed: boolean;3241  readonly asNamed: Bytes;3242  readonly isIndex: boolean;3243  readonly asIndex: Compact<u32>;3244  readonly isExecutive: boolean;3245  readonly isTechnical: boolean;3246  readonly isLegislative: boolean;3247  readonly isJudicial: boolean;3248  readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';3249}32503251/** @name XcmV0JunctionBodyPart */3252export interface XcmV0JunctionBodyPart extends Enum {3253  readonly isVoice: boolean;3254  readonly isMembers: boolean;3255  readonly asMembers: {3256    readonly count: Compact<u32>;3257  } & Struct;3258  readonly isFraction: boolean;3259  readonly asFraction: {3260    readonly nom: Compact<u32>;3261    readonly denom: Compact<u32>;3262  } & Struct;3263  readonly isAtLeastProportion: boolean;3264  readonly asAtLeastProportion: {3265    readonly nom: Compact<u32>;3266    readonly denom: Compact<u32>;3267  } & Struct;3268  readonly isMoreThanProportion: boolean;3269  readonly asMoreThanProportion: {3270    readonly nom: Compact<u32>;3271    readonly denom: Compact<u32>;3272  } & Struct;3273  readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3274}32753276/** @name XcmV0JunctionNetworkId */3277export interface XcmV0JunctionNetworkId extends Enum {3278  readonly isAny: boolean;3279  readonly isNamed: boolean;3280  readonly asNamed: Bytes;3281  readonly isPolkadot: boolean;3282  readonly isKusama: boolean;3283  readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3284}32853286/** @name XcmV0MultiAsset */3287export interface XcmV0MultiAsset extends Enum {3288  readonly isNone: boolean;3289  readonly isAll: boolean;3290  readonly isAllFungible: boolean;3291  readonly isAllNonFungible: boolean;3292  readonly isAllAbstractFungible: boolean;3293  readonly asAllAbstractFungible: {3294    readonly id: Bytes;3295  } & Struct;3296  readonly isAllAbstractNonFungible: boolean;3297  readonly asAllAbstractNonFungible: {3298    readonly class: Bytes;3299  } & Struct;3300  readonly isAllConcreteFungible: boolean;3301  readonly asAllConcreteFungible: {3302    readonly id: XcmV0MultiLocation;3303  } & Struct;3304  readonly isAllConcreteNonFungible: boolean;3305  readonly asAllConcreteNonFungible: {3306    readonly class: XcmV0MultiLocation;3307  } & Struct;3308  readonly isAbstractFungible: boolean;3309  readonly asAbstractFungible: {3310    readonly id: Bytes;3311    readonly amount: Compact<u128>;3312  } & Struct;3313  readonly isAbstractNonFungible: boolean;3314  readonly asAbstractNonFungible: {3315    readonly class: Bytes;3316    readonly instance: XcmV1MultiassetAssetInstance;3317  } & Struct;3318  readonly isConcreteFungible: boolean;3319  readonly asConcreteFungible: {3320    readonly id: XcmV0MultiLocation;3321    readonly amount: Compact<u128>;3322  } & Struct;3323  readonly isConcreteNonFungible: boolean;3324  readonly asConcreteNonFungible: {3325    readonly class: XcmV0MultiLocation;3326    readonly instance: XcmV1MultiassetAssetInstance;3327  } & Struct;3328  readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';3329}33303331/** @name XcmV0MultiLocation */3332export interface XcmV0MultiLocation extends Enum {3333  readonly isNull: boolean;3334  readonly isX1: boolean;3335  readonly asX1: XcmV0Junction;3336  readonly isX2: boolean;3337  readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;3338  readonly isX3: boolean;3339  readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3340  readonly isX4: boolean;3341  readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3342  readonly isX5: boolean;3343  readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3344  readonly isX6: boolean;3345  readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3346  readonly isX7: boolean;3347  readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3348  readonly isX8: boolean;3349  readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3350  readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3351}33523353/** @name XcmV0Order */3354export interface XcmV0Order extends Enum {3355  readonly isNull: boolean;3356  readonly isDepositAsset: boolean;3357  readonly asDepositAsset: {3358    readonly assets: Vec<XcmV0MultiAsset>;3359    readonly dest: XcmV0MultiLocation;3360  } & Struct;3361  readonly isDepositReserveAsset: boolean;3362  readonly asDepositReserveAsset: {3363    readonly assets: Vec<XcmV0MultiAsset>;3364    readonly dest: XcmV0MultiLocation;3365    readonly effects: Vec<XcmV0Order>;3366  } & Struct;3367  readonly isExchangeAsset: boolean;3368  readonly asExchangeAsset: {3369    readonly give: Vec<XcmV0MultiAsset>;3370    readonly receive: Vec<XcmV0MultiAsset>;3371  } & Struct;3372  readonly isInitiateReserveWithdraw: boolean;3373  readonly asInitiateReserveWithdraw: {3374    readonly assets: Vec<XcmV0MultiAsset>;3375    readonly reserve: XcmV0MultiLocation;3376    readonly effects: Vec<XcmV0Order>;3377  } & Struct;3378  readonly isInitiateTeleport: boolean;3379  readonly asInitiateTeleport: {3380    readonly assets: Vec<XcmV0MultiAsset>;3381    readonly dest: XcmV0MultiLocation;3382    readonly effects: Vec<XcmV0Order>;3383  } & Struct;3384  readonly isQueryHolding: boolean;3385  readonly asQueryHolding: {3386    readonly queryId: Compact<u64>;3387    readonly dest: XcmV0MultiLocation;3388    readonly assets: Vec<XcmV0MultiAsset>;3389  } & Struct;3390  readonly isBuyExecution: boolean;3391  readonly asBuyExecution: {3392    readonly fees: XcmV0MultiAsset;3393    readonly weight: u64;3394    readonly debt: u64;3395    readonly haltOnError: bool;3396    readonly xcm: Vec<XcmV0Xcm>;3397  } & Struct;3398  readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3399}34003401/** @name XcmV0OriginKind */3402export interface XcmV0OriginKind extends Enum {3403  readonly isNative: boolean;3404  readonly isSovereignAccount: boolean;3405  readonly isSuperuser: boolean;3406  readonly isXcm: boolean;3407  readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3408}34093410/** @name XcmV0Response */3411export interface XcmV0Response extends Enum {3412  readonly isAssets: boolean;3413  readonly asAssets: Vec<XcmV0MultiAsset>;3414  readonly type: 'Assets';3415}34163417/** @name XcmV0Xcm */3418export interface XcmV0Xcm extends Enum {3419  readonly isWithdrawAsset: boolean;3420  readonly asWithdrawAsset: {3421    readonly assets: Vec<XcmV0MultiAsset>;3422    readonly effects: Vec<XcmV0Order>;3423  } & Struct;3424  readonly isReserveAssetDeposit: boolean;3425  readonly asReserveAssetDeposit: {3426    readonly assets: Vec<XcmV0MultiAsset>;3427    readonly effects: Vec<XcmV0Order>;3428  } & Struct;3429  readonly isTeleportAsset: boolean;3430  readonly asTeleportAsset: {3431    readonly assets: Vec<XcmV0MultiAsset>;3432    readonly effects: Vec<XcmV0Order>;3433  } & Struct;3434  readonly isQueryResponse: boolean;3435  readonly asQueryResponse: {3436    readonly queryId: Compact<u64>;3437    readonly response: XcmV0Response;3438  } & Struct;3439  readonly isTransferAsset: boolean;3440  readonly asTransferAsset: {3441    readonly assets: Vec<XcmV0MultiAsset>;3442    readonly dest: XcmV0MultiLocation;3443  } & Struct;3444  readonly isTransferReserveAsset: boolean;3445  readonly asTransferReserveAsset: {3446    readonly assets: Vec<XcmV0MultiAsset>;3447    readonly dest: XcmV0MultiLocation;3448    readonly effects: Vec<XcmV0Order>;3449  } & Struct;3450  readonly isTransact: boolean;3451  readonly asTransact: {3452    readonly originType: XcmV0OriginKind;3453    readonly requireWeightAtMost: u64;3454    readonly call: XcmDoubleEncoded;3455  } & Struct;3456  readonly isHrmpNewChannelOpenRequest: boolean;3457  readonly asHrmpNewChannelOpenRequest: {3458    readonly sender: Compact<u32>;3459    readonly maxMessageSize: Compact<u32>;3460    readonly maxCapacity: Compact<u32>;3461  } & Struct;3462  readonly isHrmpChannelAccepted: boolean;3463  readonly asHrmpChannelAccepted: {3464    readonly recipient: Compact<u32>;3465  } & Struct;3466  readonly isHrmpChannelClosing: boolean;3467  readonly asHrmpChannelClosing: {3468    readonly initiator: Compact<u32>;3469    readonly sender: Compact<u32>;3470    readonly recipient: Compact<u32>;3471  } & Struct;3472  readonly isRelayedFrom: boolean;3473  readonly asRelayedFrom: {3474    readonly who: XcmV0MultiLocation;3475    readonly message: XcmV0Xcm;3476  } & Struct;3477  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';3478}34793480/** @name XcmV1Junction */3481export interface XcmV1Junction extends Enum {3482  readonly isParachain: boolean;3483  readonly asParachain: Compact<u32>;3484  readonly isAccountId32: boolean;3485  readonly asAccountId32: {3486    readonly network: XcmV0JunctionNetworkId;3487    readonly id: U8aFixed;3488  } & Struct;3489  readonly isAccountIndex64: boolean;3490  readonly asAccountIndex64: {3491    readonly network: XcmV0JunctionNetworkId;3492    readonly index: Compact<u64>;3493  } & Struct;3494  readonly isAccountKey20: boolean;3495  readonly asAccountKey20: {3496    readonly network: XcmV0JunctionNetworkId;3497    readonly key: U8aFixed;3498  } & Struct;3499  readonly isPalletInstance: boolean;3500  readonly asPalletInstance: u8;3501  readonly isGeneralIndex: boolean;3502  readonly asGeneralIndex: Compact<u128>;3503  readonly isGeneralKey: boolean;3504  readonly asGeneralKey: Bytes;3505  readonly isOnlyChild: boolean;3506  readonly isPlurality: boolean;3507  readonly asPlurality: {3508    readonly id: XcmV0JunctionBodyId;3509    readonly part: XcmV0JunctionBodyPart;3510  } & Struct;3511  readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3512}35133514/** @name XcmV1MultiAsset */3515export interface XcmV1MultiAsset extends Struct {3516  readonly id: XcmV1MultiassetAssetId;3517  readonly fun: XcmV1MultiassetFungibility;3518}35193520/** @name XcmV1MultiassetAssetId */3521export interface XcmV1MultiassetAssetId extends Enum {3522  readonly isConcrete: boolean;3523  readonly asConcrete: XcmV1MultiLocation;3524  readonly isAbstract: boolean;3525  readonly asAbstract: Bytes;3526  readonly type: 'Concrete' | 'Abstract';3527}35283529/** @name XcmV1MultiassetAssetInstance */3530export interface XcmV1MultiassetAssetInstance extends Enum {3531  readonly isUndefined: boolean;3532  readonly isIndex: boolean;3533  readonly asIndex: Compact<u128>;3534  readonly isArray4: boolean;3535  readonly asArray4: U8aFixed;3536  readonly isArray8: boolean;3537  readonly asArray8: U8aFixed;3538  readonly isArray16: boolean;3539  readonly asArray16: U8aFixed;3540  readonly isArray32: boolean;3541  readonly asArray32: U8aFixed;3542  readonly isBlob: boolean;3543  readonly asBlob: Bytes;3544  readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3545}35463547/** @name XcmV1MultiassetFungibility */3548export interface XcmV1MultiassetFungibility extends Enum {3549  readonly isFungible: boolean;3550  readonly asFungible: Compact<u128>;3551  readonly isNonFungible: boolean;3552  readonly asNonFungible: XcmV1MultiassetAssetInstance;3553  readonly type: 'Fungible' | 'NonFungible';3554}35553556/** @name XcmV1MultiassetMultiAssetFilter */3557export interface XcmV1MultiassetMultiAssetFilter extends Enum {3558  readonly isDefinite: boolean;3559  readonly asDefinite: XcmV1MultiassetMultiAssets;3560  readonly isWild: boolean;3561  readonly asWild: XcmV1MultiassetWildMultiAsset;3562  readonly type: 'Definite' | 'Wild';3563}35643565/** @name XcmV1MultiassetMultiAssets */3566export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}35673568/** @name XcmV1MultiassetWildFungibility */3569export interface XcmV1MultiassetWildFungibility extends Enum {3570  readonly isFungible: boolean;3571  readonly isNonFungible: boolean;3572  readonly type: 'Fungible' | 'NonFungible';3573}35743575/** @name XcmV1MultiassetWildMultiAsset */3576export interface XcmV1MultiassetWildMultiAsset extends Enum {3577  readonly isAll: boolean;3578  readonly isAllOf: boolean;3579  readonly asAllOf: {3580    readonly id: XcmV1MultiassetAssetId;3581    readonly fun: XcmV1MultiassetWildFungibility;3582  } & Struct;3583  readonly type: 'All' | 'AllOf';3584}35853586/** @name XcmV1MultiLocation */3587export interface XcmV1MultiLocation extends Struct {3588  readonly parents: u8;3589  readonly interior: XcmV1MultilocationJunctions;3590}35913592/** @name XcmV1MultilocationJunctions */3593export interface XcmV1MultilocationJunctions extends Enum {3594  readonly isHere: boolean;3595  readonly isX1: boolean;3596  readonly asX1: XcmV1Junction;3597  readonly isX2: boolean;3598  readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3599  readonly isX3: boolean;3600  readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3601  readonly isX4: boolean;3602  readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3603  readonly isX5: boolean;3604  readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3605  readonly isX6: boolean;3606  readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3607  readonly isX7: boolean;3608  readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3609  readonly isX8: boolean;3610  readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3611  readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3612}36133614/** @name XcmV1Order */3615export interface XcmV1Order extends Enum {3616  readonly isNoop: boolean;3617  readonly isDepositAsset: boolean;3618  readonly asDepositAsset: {3619    readonly assets: XcmV1MultiassetMultiAssetFilter;3620    readonly maxAssets: u32;3621    readonly beneficiary: XcmV1MultiLocation;3622  } & Struct;3623  readonly isDepositReserveAsset: boolean;3624  readonly asDepositReserveAsset: {3625    readonly assets: XcmV1MultiassetMultiAssetFilter;3626    readonly maxAssets: u32;3627    readonly dest: XcmV1MultiLocation;3628    readonly effects: Vec<XcmV1Order>;3629  } & Struct;3630  readonly isExchangeAsset: boolean;3631  readonly asExchangeAsset: {3632    readonly give: XcmV1MultiassetMultiAssetFilter;3633    readonly receive: XcmV1MultiassetMultiAssets;3634  } & Struct;3635  readonly isInitiateReserveWithdraw: boolean;3636  readonly asInitiateReserveWithdraw: {3637    readonly assets: XcmV1MultiassetMultiAssetFilter;3638    readonly reserve: XcmV1MultiLocation;3639    readonly effects: Vec<XcmV1Order>;3640  } & Struct;3641  readonly isInitiateTeleport: boolean;3642  readonly asInitiateTeleport: {3643    readonly assets: XcmV1MultiassetMultiAssetFilter;3644    readonly dest: XcmV1MultiLocation;3645    readonly effects: Vec<XcmV1Order>;3646  } & Struct;3647  readonly isQueryHolding: boolean;3648  readonly asQueryHolding: {3649    readonly queryId: Compact<u64>;3650    readonly dest: XcmV1MultiLocation;3651    readonly assets: XcmV1MultiassetMultiAssetFilter;3652  } & Struct;3653  readonly isBuyExecution: boolean;3654  readonly asBuyExecution: {3655    readonly fees: XcmV1MultiAsset;3656    readonly weight: u64;3657    readonly debt: u64;3658    readonly haltOnError: bool;3659    readonly instructions: Vec<XcmV1Xcm>;3660  } & Struct;3661  readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3662}36633664/** @name XcmV1Response */3665export interface XcmV1Response extends Enum {3666  readonly isAssets: boolean;3667  readonly asAssets: XcmV1MultiassetMultiAssets;3668  readonly isVersion: boolean;3669  readonly asVersion: u32;3670  readonly type: 'Assets' | 'Version';3671}36723673/** @name XcmV1Xcm */3674export interface XcmV1Xcm extends Enum {3675  readonly isWithdrawAsset: boolean;3676  readonly asWithdrawAsset: {3677    readonly assets: XcmV1MultiassetMultiAssets;3678    readonly effects: Vec<XcmV1Order>;3679  } & Struct;3680  readonly isReserveAssetDeposited: boolean;3681  readonly asReserveAssetDeposited: {3682    readonly assets: XcmV1MultiassetMultiAssets;3683    readonly effects: Vec<XcmV1Order>;3684  } & Struct;3685  readonly isReceiveTeleportedAsset: boolean;3686  readonly asReceiveTeleportedAsset: {3687    readonly assets: XcmV1MultiassetMultiAssets;3688    readonly effects: Vec<XcmV1Order>;3689  } & Struct;3690  readonly isQueryResponse: boolean;3691  readonly asQueryResponse: {3692    readonly queryId: Compact<u64>;3693    readonly response: XcmV1Response;3694  } & Struct;3695  readonly isTransferAsset: boolean;3696  readonly asTransferAsset: {3697    readonly assets: XcmV1MultiassetMultiAssets;3698    readonly beneficiary: XcmV1MultiLocation;3699  } & Struct;3700  readonly isTransferReserveAsset: boolean;3701  readonly asTransferReserveAsset: {3702    readonly assets: XcmV1MultiassetMultiAssets;3703    readonly dest: XcmV1MultiLocation;3704    readonly effects: Vec<XcmV1Order>;3705  } & Struct;3706  readonly isTransact: boolean;3707  readonly asTransact: {3708    readonly originType: XcmV0OriginKind;3709    readonly requireWeightAtMost: u64;3710    readonly call: XcmDoubleEncoded;3711  } & Struct;3712  readonly isHrmpNewChannelOpenRequest: boolean;3713  readonly asHrmpNewChannelOpenRequest: {3714    readonly sender: Compact<u32>;3715    readonly maxMessageSize: Compact<u32>;3716    readonly maxCapacity: Compact<u32>;3717  } & Struct;3718  readonly isHrmpChannelAccepted: boolean;3719  readonly asHrmpChannelAccepted: {3720    readonly recipient: Compact<u32>;3721  } & Struct;3722  readonly isHrmpChannelClosing: boolean;3723  readonly asHrmpChannelClosing: {3724    readonly initiator: Compact<u32>;3725    readonly sender: Compact<u32>;3726    readonly recipient: Compact<u32>;3727  } & Struct;3728  readonly isRelayedFrom: boolean;3729  readonly asRelayedFrom: {3730    readonly who: XcmV1MultilocationJunctions;3731    readonly message: XcmV1Xcm;3732  } & Struct;3733  readonly isSubscribeVersion: boolean;3734  readonly asSubscribeVersion: {3735    readonly queryId: Compact<u64>;3736    readonly maxResponseWeight: Compact<u64>;3737  } & Struct;3738  readonly isUnsubscribeVersion: boolean;3739  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3740}37413742/** @name XcmV2Instruction */3743export interface XcmV2Instruction extends Enum {3744  readonly isWithdrawAsset: boolean;3745  readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3746  readonly isReserveAssetDeposited: boolean;3747  readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3748  readonly isReceiveTeleportedAsset: boolean;3749  readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3750  readonly isQueryResponse: boolean;3751  readonly asQueryResponse: {3752    readonly queryId: Compact<u64>;3753    readonly response: XcmV2Response;3754    readonly maxWeight: Compact<u64>;3755  } & Struct;3756  readonly isTransferAsset: boolean;3757  readonly asTransferAsset: {3758    readonly assets: XcmV1MultiassetMultiAssets;3759    readonly beneficiary: XcmV1MultiLocation;3760  } & Struct;3761  readonly isTransferReserveAsset: boolean;3762  readonly asTransferReserveAsset: {3763    readonly assets: XcmV1MultiassetMultiAssets;3764    readonly dest: XcmV1MultiLocation;3765    readonly xcm: XcmV2Xcm;3766  } & Struct;3767  readonly isTransact: boolean;3768  readonly asTransact: {3769    readonly originType: XcmV0OriginKind;3770    readonly requireWeightAtMost: Compact<u64>;3771    readonly call: XcmDoubleEncoded;3772  } & Struct;3773  readonly isHrmpNewChannelOpenRequest: boolean;3774  readonly asHrmpNewChannelOpenRequest: {3775    readonly sender: Compact<u32>;3776    readonly maxMessageSize: Compact<u32>;3777    readonly maxCapacity: Compact<u32>;3778  } & Struct;3779  readonly isHrmpChannelAccepted: boolean;3780  readonly asHrmpChannelAccepted: {3781    readonly recipient: Compact<u32>;3782  } & Struct;3783  readonly isHrmpChannelClosing: boolean;3784  readonly asHrmpChannelClosing: {3785    readonly initiator: Compact<u32>;3786    readonly sender: Compact<u32>;3787    readonly recipient: Compact<u32>;3788  } & Struct;3789  readonly isClearOrigin: boolean;3790  readonly isDescendOrigin: boolean;3791  readonly asDescendOrigin: XcmV1MultilocationJunctions;3792  readonly isReportError: boolean;3793  readonly asReportError: {3794    readonly queryId: Compact<u64>;3795    readonly dest: XcmV1MultiLocation;3796    readonly maxResponseWeight: Compact<u64>;3797  } & Struct;3798  readonly isDepositAsset: boolean;3799  readonly asDepositAsset: {3800    readonly assets: XcmV1MultiassetMultiAssetFilter;3801    readonly maxAssets: Compact<u32>;3802    readonly beneficiary: XcmV1MultiLocation;3803  } & Struct;3804  readonly isDepositReserveAsset: boolean;3805  readonly asDepositReserveAsset: {3806    readonly assets: XcmV1MultiassetMultiAssetFilter;3807    readonly maxAssets: Compact<u32>;3808    readonly dest: XcmV1MultiLocation;3809    readonly xcm: XcmV2Xcm;3810  } & Struct;3811  readonly isExchangeAsset: boolean;3812  readonly asExchangeAsset: {3813    readonly give: XcmV1MultiassetMultiAssetFilter;3814    readonly receive: XcmV1MultiassetMultiAssets;3815  } & Struct;3816  readonly isInitiateReserveWithdraw: boolean;3817  readonly asInitiateReserveWithdraw: {3818    readonly assets: XcmV1MultiassetMultiAssetFilter;3819    readonly reserve: XcmV1MultiLocation;3820    readonly xcm: XcmV2Xcm;3821  } & Struct;3822  readonly isInitiateTeleport: boolean;3823  readonly asInitiateTeleport: {3824    readonly assets: XcmV1MultiassetMultiAssetFilter;3825    readonly dest: XcmV1MultiLocation;3826    readonly xcm: XcmV2Xcm;3827  } & Struct;3828  readonly isQueryHolding: boolean;3829  readonly asQueryHolding: {3830    readonly queryId: Compact<u64>;3831    readonly dest: XcmV1MultiLocation;3832    readonly assets: XcmV1MultiassetMultiAssetFilter;3833    readonly maxResponseWeight: Compact<u64>;3834  } & Struct;3835  readonly isBuyExecution: boolean;3836  readonly asBuyExecution: {3837    readonly fees: XcmV1MultiAsset;3838    readonly weightLimit: XcmV2WeightLimit;3839  } & Struct;3840  readonly isRefundSurplus: boolean;3841  readonly isSetErrorHandler: boolean;3842  readonly asSetErrorHandler: XcmV2Xcm;3843  readonly isSetAppendix: boolean;3844  readonly asSetAppendix: XcmV2Xcm;3845  readonly isClearError: boolean;3846  readonly isClaimAsset: boolean;3847  readonly asClaimAsset: {3848    readonly assets: XcmV1MultiassetMultiAssets;3849    readonly ticket: XcmV1MultiLocation;3850  } & Struct;3851  readonly isTrap: boolean;3852  readonly asTrap: Compact<u64>;3853  readonly isSubscribeVersion: boolean;3854  readonly asSubscribeVersion: {3855    readonly queryId: Compact<u64>;3856    readonly maxResponseWeight: Compact<u64>;3857  } & Struct;3858  readonly isUnsubscribeVersion: boolean;3859  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';3860}38613862/** @name XcmV2Response */3863export interface XcmV2Response extends Enum {3864  readonly isNull: boolean;3865  readonly isAssets: boolean;3866  readonly asAssets: XcmV1MultiassetMultiAssets;3867  readonly isExecutionResult: boolean;3868  readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3869  readonly isVersion: boolean;3870  readonly asVersion: u32;3871  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3872}38733874/** @name XcmV2TraitsError */3875export interface XcmV2TraitsError extends Enum {3876  readonly isOverflow: boolean;3877  readonly isUnimplemented: boolean;3878  readonly isUntrustedReserveLocation: boolean;3879  readonly isUntrustedTeleportLocation: boolean;3880  readonly isMultiLocationFull: boolean;3881  readonly isMultiLocationNotInvertible: boolean;3882  readonly isBadOrigin: boolean;3883  readonly isInvalidLocation: boolean;3884  readonly isAssetNotFound: boolean;3885  readonly isFailedToTransactAsset: boolean;3886  readonly isNotWithdrawable: boolean;3887  readonly isLocationCannotHold: boolean;3888  readonly isExceedsMaxMessageSize: boolean;3889  readonly isDestinationUnsupported: boolean;3890  readonly isTransport: boolean;3891  readonly isUnroutable: boolean;3892  readonly isUnknownClaim: boolean;3893  readonly isFailedToDecode: boolean;3894  readonly isMaxWeightInvalid: boolean;3895  readonly isNotHoldingFees: boolean;3896  readonly isTooExpensive: boolean;3897  readonly isTrap: boolean;3898  readonly asTrap: u64;3899  readonly isUnhandledXcmVersion: boolean;3900  readonly isWeightLimitReached: boolean;3901  readonly asWeightLimitReached: u64;3902  readonly isBarrier: boolean;3903  readonly isWeightNotComputable: boolean;3904  readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';3905}39063907/** @name XcmV2TraitsOutcome */3908export interface XcmV2TraitsOutcome extends Enum {3909  readonly isComplete: boolean;3910  readonly asComplete: u64;3911  readonly isIncomplete: boolean;3912  readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3913  readonly isError: boolean;3914  readonly asError: XcmV2TraitsError;3915  readonly type: 'Complete' | 'Incomplete' | 'Error';3916}39173918/** @name XcmV2WeightLimit */3919export interface XcmV2WeightLimit extends Enum {3920  readonly isUnlimited: boolean;3921  readonly isLimited: boolean;3922  readonly asLimited: Compact<u64>;3923  readonly type: 'Unlimited' | 'Limited';3924}39253926/** @name XcmV2Xcm */3927export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}39283929/** @name XcmVersionedMultiAsset */3930export interface XcmVersionedMultiAsset extends Enum {3931  readonly isV0: boolean;3932  readonly asV0: XcmV0MultiAsset;3933  readonly isV1: boolean;3934  readonly asV1: XcmV1MultiAsset;3935  readonly type: 'V0' | 'V1';3936}39373938/** @name XcmVersionedMultiAssets */3939export interface XcmVersionedMultiAssets extends Enum {3940  readonly isV0: boolean;3941  readonly asV0: Vec<XcmV0MultiAsset>;3942  readonly isV1: boolean;3943  readonly asV1: XcmV1MultiassetMultiAssets;3944  readonly type: 'V0' | 'V1';3945}39463947/** @name XcmVersionedMultiLocation */3948export interface XcmVersionedMultiLocation extends Enum {3949  readonly isV0: boolean;3950  readonly asV0: XcmV0MultiLocation;3951  readonly isV1: boolean;3952  readonly asV1: XcmV1MultiLocation;3953  readonly type: 'V0' | 'V1';3954}39553956/** @name XcmVersionedXcm */3957export interface XcmVersionedXcm extends Enum {3958  readonly isV0: boolean;3959  readonly asV0: XcmV0Xcm;3960  readonly isV1: boolean;3961  readonly asV1: XcmV1Xcm;3962  readonly isV2: boolean;3963  readonly asV2: XcmV2Xcm;3964  readonly type: 'V0' | 'V1' | 'V2';3965}39663967export type PHANTOM_DEFAULT = 'default';
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