git.delta.rocks / unique-network / refs/commits / c1adeefddae3

difftreelog

test regenerate types

Yaroslav Bolyukin2023-08-27parent: #86762e7.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
@@ -233,24 +233,6 @@
        **/
       [key: string]: Codec;
     };
-    govScheduler: {
-      /**
-       * 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.
-       * 
-       * NOTE:
-       * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
-       * higher limit under `runtime-benchmarks` feature.
-       **/
-      maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
-      /**
-       * Generic const
-       **/
-      [key: string]: Codec;
-    };
     identity: {
       /**
        * The amount held on deposit for a registered identity
@@ -295,6 +277,24 @@
        **/
       [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.
+       * 
+       * NOTE:
+       * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
+       * higher limit under `runtime-benchmarks` feature.
+       **/
+      maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
+      /**
+       * Generic const
+       **/
+      [key: string]: Codec;
+    };
     stateTrieMigration: {
       /**
        * Maximal number of bytes that a key can have.
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -762,32 +762,6 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
-    govScheduler: {
-      /**
-       * 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>;
-      /**
-       * Reschedule failed because it does not change scheduled time.
-       **/
-      RescheduleNoChange: AugmentedError<ApiType>;
-      /**
-       * Given target block number is in the past.
-       **/
-      TargetBlockNumberInPast: AugmentedError<ApiType>;
-      /**
-       * Generic error
-       **/
-      [key: string]: AugmentedError<ApiType>;
-    };
     identity: {
       /**
        * Account ID is already named.
@@ -1074,6 +1048,32 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
+    scheduler: {
+      /**
+       * 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>;
+      /**
+       * Reschedule failed because it does not change scheduled time.
+       **/
+      RescheduleNoChange: AugmentedError<ApiType>;
+      /**
+       * Given target block number is in the past.
+       **/
+      TargetBlockNumberInPast: AugmentedError<ApiType>;
+      /**
+       * Generic error
+       **/
+      [key: string]: AugmentedError<ApiType>;
+    };
     session: {
       /**
        * Registered duplicate key.
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -628,36 +628,6 @@
        **/
       [key: string]: AugmentedEvent<ApiType>;
     };
-    govScheduler: {
-      /**
-       * 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 was unable to be renewed since the agenda is full at that block.
-       **/
-      PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
-      /**
-       * 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 some task.
-       **/
-      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
-      /**
-       * Generic event
-       **/
-      [key: string]: AugmentedEvent<ApiType>;
-    };
     identity: {
       /**
        * A number of identities and associated info were forcibly inserted.
@@ -952,6 +922,36 @@
        **/
       [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 was unable to be renewed since the agenda is full at that block.
+       **/
+      PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+      /**
+       * 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 some task.
+       **/
+      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
+      /**
+       * Generic event
+       **/
+      [key: string]: AugmentedEvent<ApiType>;
+    };
     session: {
       /**
        * New session has happened. Note that the argument is the session index, not the
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -10,7 +10,7 @@
 import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletCollectiveVotes, PalletConfigurationAppPromotionConfiguration, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCodeMetadata, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletReferendaReferendumInfo, PalletSchedulerScheduled, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeRuntimeCommonSessionKeys, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletCollectiveVotes, PalletConfigurationAppPromotionConfiguration, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCodeMetadata, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletReferendaReferendumInfo, PalletSchedulerScheduled, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 import type { Observable } from '@polkadot/types/types';
 
 export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -611,24 +611,6 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
-    govScheduler: {
-      /**
-       * Items to be executed, indexed by the block number that they should be executed on.
-       **/
-      agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
-      incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
-      /**
-       * Lookup from a name to the block number and index of the task.
-       * 
-       * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
-       * identities.
-       **/
-      lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
-      /**
-       * Generic query
-       **/
-      [key: string]: QueryableStorageEntry<ApiType>;
-    };
     identity: {
       /**
        * Information that is pertinent to identify the entity behind an account.
@@ -1011,6 +993,24 @@
        **/
       [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<Vec<Option<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+      incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Lookup from a name to the block number and index of the task.
+       * 
+       * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
+       * identities.
+       **/
+      lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
     session: {
       /**
        * Current index of the session.
@@ -1031,7 +1031,7 @@
       /**
        * The next session keys for a validator.
        **/
-      nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<QuartzRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<OpalRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
       /**
        * True if the underlying economic identities or weighting behind the validators
        * has changed in the queued validator set.
@@ -1041,7 +1041,7 @@
        * The queued keys for the next session. When the next session begins, these keys
        * will be used to determine the validator's session keys.
        **/
-      queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, QuartzRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
+      queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, OpalRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * The current set of validators.
        **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -10,7 +10,7 @@
 import type { Bytes, Compact, Option, U256, U8aFixed, 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 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, QuartzRuntimeOriginCaller, QuartzRuntimeRuntimeCommonSessionKeys, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, OpalRuntimeOriginCaller, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
 export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -987,7 +987,7 @@
        * 
        * Emits `Submitted`.
        **/
-      submit: AugmentedSubmittable<(proposalOrigin: QuartzRuntimeOriginCaller | { system: any } | { Void: any } | { Council: any } | { TechnicalCommittee: any } | { PolkadotXcm: any } | { CumulusXcm: any } | { Origins: any } | { Ethereum: any } | string | Uint8Array, proposal: FrameSupportPreimagesBounded | { Legacy: any } | { Inline: any } | { Lookup: any } | string | Uint8Array, enactmentMoment: FrameSupportScheduleDispatchTime | { At: any } | { After: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [QuartzRuntimeOriginCaller, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime]>;
+      submit: AugmentedSubmittable<(proposalOrigin: OpalRuntimeOriginCaller | { system: any } | { Void: any } | { Council: any } | { TechnicalCommittee: any } | { PolkadotXcm: any } | { CumulusXcm: any } | { Origins: any } | { Ethereum: any } | string | Uint8Array, proposal: FrameSupportPreimagesBounded | { Legacy: any } | { Inline: any } | { Lookup: any } | string | Uint8Array, enactmentMoment: FrameSupportScheduleDispatchTime | { At: any } | { After: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeOriginCaller, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime]>;
       /**
        * Generic tx
        **/
@@ -996,36 +996,6 @@
     foreignAssets: {
       registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
       updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
-      /**
-       * Generic tx
-       **/
-      [key: string]: SubmittableExtrinsicFunction<ApiType>;
-    };
-    govScheduler: {
-      /**
-       * Cancel an anonymously scheduled task.
-       **/
-      cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
-      /**
-       * Cancel a named scheduled task.
-       **/
-      cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
-      /**
-       * Anonymously schedule a task.
-       **/
-      schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
-      /**
-       * Anonymously schedule a task after a delay.
-       **/
-      scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
-      /**
-       * Schedule a named task.
-       **/
-      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: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
-      /**
-       * Schedule a named task after a delay.
-       **/
-      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: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
       /**
        * Generic tx
        **/
@@ -1580,6 +1550,36 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    scheduler: {
+      /**
+       * Cancel an anonymously scheduled task.
+       **/
+      cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+      /**
+       * Cancel a named scheduled task.
+       **/
+      cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
+      /**
+       * Anonymously schedule a task.
+       **/
+      schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+      /**
+       * Anonymously schedule a task after a delay.
+       **/
+      scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+      /**
+       * Schedule a named task.
+       **/
+      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: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+      /**
+       * Schedule a named task after a delay.
+       **/
+      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: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     session: {
       /**
        * Removes any session key(s) of the function caller.
@@ -1607,7 +1607,7 @@
        * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
        * fixed.
        **/
-      setKeys: AugmentedSubmittable<(keys: QuartzRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [QuartzRuntimeRuntimeCommonSessionKeys, Bytes]>;
+      setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
       /**
        * Generic tx
        **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, 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, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeOriginCaller, QuartzRuntimeRuntime, QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls, QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance, QuartzRuntimeRuntimeCommonSessionKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, 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, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
 import type { Data, StorageKey } from '@polkadot/types';
 import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, 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';
@@ -795,6 +795,11 @@
     OffenceDetails: OffenceDetails;
     Offender: Offender;
     OldV1SessionInfo: OldV1SessionInfo;
+    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
+    OpalRuntimeRuntime: OpalRuntimeRuntime;
+    OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
+    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+    OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
     OpaqueCall: OpaqueCall;
     OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
     OpaqueMetadata: OpaqueMetadata;
@@ -1067,11 +1072,6 @@
     PvfCheckStatement: PvfCheckStatement;
     PvfExecTimeoutKind: PvfExecTimeoutKind;
     PvfPrepTimeoutKind: PvfPrepTimeoutKind;
-    QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
-    QuartzRuntimeRuntime: QuartzRuntimeRuntime;
-    QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
-    QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
-    QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
     QueryId: QueryId;
     QueryStatus: QueryStatus;
     QueueConfigData: QueueConfigData;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -752,6 +752,41 @@
   readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
 }
 
+/** @name OpalRuntimeOriginCaller */
+export interface OpalRuntimeOriginCaller extends Enum {
+  readonly isSystem: boolean;
+  readonly asSystem: FrameSupportDispatchRawOrigin;
+  readonly isVoid: boolean;
+  readonly asVoid: SpCoreVoid;
+  readonly isCouncil: boolean;
+  readonly asCouncil: PalletCollectiveRawOrigin;
+  readonly isTechnicalCommittee: boolean;
+  readonly asTechnicalCommittee: PalletCollectiveRawOrigin;
+  readonly isPolkadotXcm: boolean;
+  readonly asPolkadotXcm: PalletXcmOrigin;
+  readonly isCumulusXcm: boolean;
+  readonly asCumulusXcm: CumulusPalletXcmOrigin;
+  readonly isOrigins: boolean;
+  readonly asOrigins: PalletGovOriginsOrigin;
+  readonly isEthereum: boolean;
+  readonly asEthereum: PalletEthereumRawOrigin;
+  readonly type: 'System' | 'Void' | 'Council' | 'TechnicalCommittee' | 'PolkadotXcm' | 'CumulusXcm' | 'Origins' | 'Ethereum';
+}
+
+/** @name OpalRuntimeRuntime */
+export interface OpalRuntimeRuntime extends Null {}
+
+/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */
+export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
+
+/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
+export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
+
+/** @name OpalRuntimeRuntimeCommonSessionKeys */
+export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
+  readonly aura: SpConsensusAuraSr25519AppSr25519Public;
+}
+
 /** @name OrmlTokensAccountData */
 export interface OrmlTokensAccountData extends Struct {
   readonly free: u128;
@@ -2789,7 +2824,7 @@
 export interface PalletReferendaCall extends Enum {
   readonly isSubmit: boolean;
   readonly asSubmit: {
-    readonly proposalOrigin: QuartzRuntimeOriginCaller;
+    readonly proposalOrigin: OpalRuntimeOriginCaller;
     readonly proposal: FrameSupportPreimagesBounded;
     readonly enactmentMoment: FrameSupportScheduleDispatchTime;
   } & Struct;
@@ -2991,7 +3026,7 @@
 /** @name PalletReferendaReferendumStatus */
 export interface PalletReferendaReferendumStatus extends Struct {
   readonly track: u16;
-  readonly origin: QuartzRuntimeOriginCaller;
+  readonly origin: OpalRuntimeOriginCaller;
   readonly proposal: FrameSupportPreimagesBounded;
   readonly enactment: FrameSupportScheduleDispatchTime;
   readonly submitted: u32;
@@ -3122,14 +3157,14 @@
   readonly priority: u8;
   readonly call: FrameSupportPreimagesBounded;
   readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-  readonly origin: QuartzRuntimeOriginCaller;
+  readonly origin: OpalRuntimeOriginCaller;
 }
 
 /** @name PalletSessionCall */
 export interface PalletSessionCall extends Enum {
   readonly isSetKeys: boolean;
   readonly asSetKeys: {
-    readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;
+    readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
     readonly proof: Bytes;
   } & Struct;
   readonly isPurgeKeys: boolean;
@@ -3923,41 +3958,6 @@
 export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
   readonly isPresent: boolean;
   readonly type: 'Present';
-}
-
-/** @name QuartzRuntimeOriginCaller */
-export interface QuartzRuntimeOriginCaller extends Enum {
-  readonly isSystem: boolean;
-  readonly asSystem: FrameSupportDispatchRawOrigin;
-  readonly isVoid: boolean;
-  readonly asVoid: SpCoreVoid;
-  readonly isCouncil: boolean;
-  readonly asCouncil: PalletCollectiveRawOrigin;
-  readonly isTechnicalCommittee: boolean;
-  readonly asTechnicalCommittee: PalletCollectiveRawOrigin;
-  readonly isPolkadotXcm: boolean;
-  readonly asPolkadotXcm: PalletXcmOrigin;
-  readonly isCumulusXcm: boolean;
-  readonly asCumulusXcm: CumulusPalletXcmOrigin;
-  readonly isOrigins: boolean;
-  readonly asOrigins: PalletGovOriginsOrigin;
-  readonly isEthereum: boolean;
-  readonly asEthereum: PalletEthereumRawOrigin;
-  readonly type: 'System' | 'Void' | 'Council' | 'TechnicalCommittee' | 'PolkadotXcm' | 'CumulusXcm' | 'Origins' | 'Ethereum';
-}
-
-/** @name QuartzRuntimeRuntime */
-export interface QuartzRuntimeRuntime extends Null {}
-
-/** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls */
-export interface QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
-
-/** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance */
-export interface QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
-
-/** @name QuartzRuntimeRuntimeCommonSessionKeys */
-export interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {
-  readonly aura: SpConsensusAuraSr25519AppSr25519Public;
 }
 
 /** @name SpArithmeticArithmeticError */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -61,7 +61,7 @@
     }
   },
   /**
-   * Lookup19: frame_system::EventRecord<quartz_runtime::RuntimeEvent, primitive_types::H256>
+   * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
    **/
   FrameSystemEventRecord: {
     phase: 'FrameSystemPhase',
@@ -1081,7 +1081,7 @@
     }
   },
   /**
-   * Lookup86: frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>
+   * Lookup86: frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>
    **/
   FrameSupportPreimagesBounded: {
     _enum: {
@@ -1297,16 +1297,16 @@
         _alias: {
           keys_: 'keys',
         },
-        keys_: 'QuartzRuntimeRuntimeCommonSessionKeys',
+        keys_: 'OpalRuntimeRuntimeCommonSessionKeys',
         proof: 'Bytes',
       },
       purge_keys: 'Null'
     }
   },
   /**
-   * Lookup115: quartz_runtime::runtime_common::SessionKeys
+   * Lookup115: opal_runtime::runtime_common::SessionKeys
    **/
-  QuartzRuntimeRuntimeCommonSessionKeys: {
+  OpalRuntimeRuntimeCommonSessionKeys: {
     aura: 'SpConsensusAuraSr25519AppSr25519Public'
   },
   /**
@@ -2030,7 +2030,7 @@
   PalletReferendaCall: {
     _enum: {
       submit: {
-        proposalOrigin: 'QuartzRuntimeOriginCaller',
+        proposalOrigin: 'OpalRuntimeOriginCaller',
         proposal: 'FrameSupportPreimagesBounded',
         enactmentMoment: 'FrameSupportScheduleDispatchTime',
       },
@@ -2062,9 +2062,9 @@
     }
   },
   /**
-   * Lookup209: quartz_runtime::OriginCaller
+   * Lookup209: opal_runtime::OriginCaller
    **/
-  QuartzRuntimeOriginCaller: {
+  OpalRuntimeOriginCaller: {
     _enum: {
       system: 'FrameSupportDispatchRawOrigin',
       __Unused1: 'Null',
@@ -4177,7 +4177,7 @@
     _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
   },
   /**
-   * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>
+   * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
    **/
   PalletDemocracyReferendumInfo: {
     _enum: {
@@ -4189,7 +4189,7 @@
     }
   },
   /**
-   * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>
+   * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
    **/
   PalletDemocracyReferendumStatus: {
     end: 'u32',
@@ -4277,7 +4277,7 @@
     _enum: ['AlreadyMember', 'NotMember', 'NotPolling', 'Ongoing', 'NoneRemaining', 'Corruption', 'RankTooLow', 'InvalidWitness', 'NoPermission']
   },
   /**
-   * Lookup508: pallet_referenda::types::ReferendumInfo<TrackId, quartz_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
+   * Lookup508: pallet_referenda::types::ReferendumInfo<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
    **/
   PalletReferendaReferendumInfo: {
     _enum: {
@@ -4290,11 +4290,11 @@
     }
   },
   /**
-   * Lookup509: pallet_referenda::types::ReferendumStatus<TrackId, quartz_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
+   * Lookup509: pallet_referenda::types::ReferendumStatus<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
    **/
   PalletReferendaReferendumStatus: {
     track: 'u16',
-    origin: 'QuartzRuntimeOriginCaller',
+    origin: 'OpalRuntimeOriginCaller',
     proposal: 'FrameSupportPreimagesBounded',
     enactment: 'FrameSupportScheduleDispatchTime',
     submitted: 'u32',
@@ -4363,14 +4363,14 @@
     _enum: ['NotOngoing', 'HasDeposit', 'BadTrack', 'Full', 'QueueEmpty', 'BadReferendum', 'NothingToDo', 'NoTrack', 'Unfinished', 'NoPermission', 'NoDeposit', 'BadStatus', 'PreimageNotExist']
   },
   /**
-   * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, BlockNumber, quartz_runtime::OriginCaller, sp_core::crypto::AccountId32>
+   * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
    **/
   PalletSchedulerScheduled: {
     maybeId: 'Option<[u8;32]>',
     priority: 'u8',
     call: 'FrameSupportPreimagesBounded',
     maybePeriodic: 'Option<(u32,u32)>',
-    origin: 'QuartzRuntimeOriginCaller'
+    origin: 'OpalRuntimeOriginCaller'
   },
   /**
    * Lookup528: pallet_scheduler::pallet::Error<T>
@@ -4912,23 +4912,23 @@
    **/
   FrameSystemExtensionsCheckWeight: 'Null',
   /**
-   * Lookup674: quartz_runtime::runtime_common::maintenance::CheckMaintenance
+   * Lookup674: opal_runtime::runtime_common::maintenance::CheckMaintenance
    **/
-  QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
+  OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
   /**
-   * Lookup675: quartz_runtime::runtime_common::identity::DisableIdentityCalls
+   * Lookup675: opal_runtime::runtime_common::identity::DisableIdentityCalls
    **/
-  QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
+  OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
   /**
-   * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<quartz_runtime::Runtime>
+   * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
    **/
   PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
   /**
-   * Lookup677: quartz_runtime::Runtime
+   * Lookup677: opal_runtime::Runtime
    **/
-  QuartzRuntimeRuntime: 'Null',
+  OpalRuntimeRuntime: 'Null',
   /**
-   * Lookup678: pallet_ethereum::FakeTransactionFinalizer<quartz_runtime::Runtime>
+   * Lookup678: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
    **/
   PalletEthereumFakeTransactionFinalizer: 'Null'
 };
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
before · tests/src/interfaces/registry.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, 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, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeOriginCaller, QuartzRuntimeRuntime, QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls, QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance, QuartzRuntimeRuntimeCommonSessionKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';910declare module '@polkadot/types/types/registry' {11  interface InterfaceTypes {12    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;13    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;14    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;15    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;16    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;17    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;18    CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;19    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;20    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;21    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;22    CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize: CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize;23    CumulusPalletXcmCall: CumulusPalletXcmCall;24    CumulusPalletXcmError: CumulusPalletXcmError;25    CumulusPalletXcmEvent: CumulusPalletXcmEvent;26    CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;27    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;28    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;29    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;30    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;31    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;32    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;33    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;34    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;35    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;36    EthbloomBloom: EthbloomBloom;37    EthereumBlock: EthereumBlock;38    EthereumHeader: EthereumHeader;39    EthereumLog: EthereumLog;40    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;41    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;42    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;43    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;44    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;45    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;46    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;47    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;48    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;49    EthereumTypesHashH64: EthereumTypesHashH64;50    EvmCoreErrorExitError: EvmCoreErrorExitError;51    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;52    EvmCoreErrorExitReason: EvmCoreErrorExitReason;53    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;54    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;55    FpRpcTransactionStatus: FpRpcTransactionStatus;56    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;57    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;58    FrameSupportDispatchPays: FrameSupportDispatchPays;59    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;60    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;61    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;62    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;63    FrameSupportPalletId: FrameSupportPalletId;64    FrameSupportPreimagesBounded: FrameSupportPreimagesBounded;65    FrameSupportScheduleDispatchTime: FrameSupportScheduleDispatchTime;66    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;67    FrameSystemAccountInfo: FrameSystemAccountInfo;68    FrameSystemCall: FrameSystemCall;69    FrameSystemError: FrameSystemError;70    FrameSystemEvent: FrameSystemEvent;71    FrameSystemEventRecord: FrameSystemEventRecord;72    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;73    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;74    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;75    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;76    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;77    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;78    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;79    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;80    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;81    FrameSystemPhase: FrameSystemPhase;82    OrmlTokensAccountData: OrmlTokensAccountData;83    OrmlTokensBalanceLock: OrmlTokensBalanceLock;84    OrmlTokensModuleCall: OrmlTokensModuleCall;85    OrmlTokensModuleError: OrmlTokensModuleError;86    OrmlTokensModuleEvent: OrmlTokensModuleEvent;87    OrmlTokensReserveData: OrmlTokensReserveData;88    OrmlVestingModuleCall: OrmlVestingModuleCall;89    OrmlVestingModuleError: OrmlVestingModuleError;90    OrmlVestingModuleEvent: OrmlVestingModuleEvent;91    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;92    OrmlXtokensModuleCall: OrmlXtokensModuleCall;93    OrmlXtokensModuleError: OrmlXtokensModuleError;94    OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;95    PalletAppPromotionCall: PalletAppPromotionCall;96    PalletAppPromotionError: PalletAppPromotionError;97    PalletAppPromotionEvent: PalletAppPromotionEvent;98    PalletBalancesAccountData: PalletBalancesAccountData;99    PalletBalancesBalanceLock: PalletBalancesBalanceLock;100    PalletBalancesCall: PalletBalancesCall;101    PalletBalancesError: PalletBalancesError;102    PalletBalancesEvent: PalletBalancesEvent;103    PalletBalancesIdAmount: PalletBalancesIdAmount;104    PalletBalancesReasons: PalletBalancesReasons;105    PalletBalancesReserveData: PalletBalancesReserveData;106    PalletCollatorSelectionCall: PalletCollatorSelectionCall;107    PalletCollatorSelectionError: PalletCollatorSelectionError;108    PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;109    PalletCollectiveCall: PalletCollectiveCall;110    PalletCollectiveError: PalletCollectiveError;111    PalletCollectiveEvent: PalletCollectiveEvent;112    PalletCollectiveRawOrigin: PalletCollectiveRawOrigin;113    PalletCollectiveVotes: PalletCollectiveVotes;114    PalletCommonError: PalletCommonError;115    PalletCommonEvent: PalletCommonEvent;116    PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;117    PalletConfigurationCall: PalletConfigurationCall;118    PalletConfigurationError: PalletConfigurationError;119    PalletConfigurationEvent: PalletConfigurationEvent;120    PalletDemocracyCall: PalletDemocracyCall;121    PalletDemocracyConviction: PalletDemocracyConviction;122    PalletDemocracyDelegations: PalletDemocracyDelegations;123    PalletDemocracyError: PalletDemocracyError;124    PalletDemocracyEvent: PalletDemocracyEvent;125    PalletDemocracyMetadataOwner: PalletDemocracyMetadataOwner;126    PalletDemocracyReferendumInfo: PalletDemocracyReferendumInfo;127    PalletDemocracyReferendumStatus: PalletDemocracyReferendumStatus;128    PalletDemocracyTally: PalletDemocracyTally;129    PalletDemocracyVoteAccountVote: PalletDemocracyVoteAccountVote;130    PalletDemocracyVotePriorLock: PalletDemocracyVotePriorLock;131    PalletDemocracyVoteThreshold: PalletDemocracyVoteThreshold;132    PalletDemocracyVoteVoting: PalletDemocracyVoteVoting;133    PalletEthereumCall: PalletEthereumCall;134    PalletEthereumError: PalletEthereumError;135    PalletEthereumEvent: PalletEthereumEvent;136    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;137    PalletEthereumRawOrigin: PalletEthereumRawOrigin;138    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;139    PalletEvmCall: PalletEvmCall;140    PalletEvmCodeMetadata: PalletEvmCodeMetadata;141    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;142    PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;143    PalletEvmContractHelpersError: PalletEvmContractHelpersError;144    PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;145    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;146    PalletEvmError: PalletEvmError;147    PalletEvmEvent: PalletEvmEvent;148    PalletEvmMigrationCall: PalletEvmMigrationCall;149    PalletEvmMigrationError: PalletEvmMigrationError;150    PalletEvmMigrationEvent: PalletEvmMigrationEvent;151    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;152    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;153    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;154    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;155    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;156    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;157    PalletFungibleError: PalletFungibleError;158    PalletGovOriginsOrigin: PalletGovOriginsOrigin;159    PalletIdentityBitFlags: PalletIdentityBitFlags;160    PalletIdentityCall: PalletIdentityCall;161    PalletIdentityError: PalletIdentityError;162    PalletIdentityEvent: PalletIdentityEvent;163    PalletIdentityIdentityField: PalletIdentityIdentityField;164    PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;165    PalletIdentityJudgement: PalletIdentityJudgement;166    PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;167    PalletIdentityRegistration: PalletIdentityRegistration;168    PalletInflationCall: PalletInflationCall;169    PalletMaintenanceCall: PalletMaintenanceCall;170    PalletMaintenanceError: PalletMaintenanceError;171    PalletMaintenanceEvent: PalletMaintenanceEvent;172    PalletMembershipCall: PalletMembershipCall;173    PalletMembershipError: PalletMembershipError;174    PalletMembershipEvent: PalletMembershipEvent;175    PalletNonfungibleError: PalletNonfungibleError;176    PalletNonfungibleItemData: PalletNonfungibleItemData;177    PalletPreimageCall: PalletPreimageCall;178    PalletPreimageError: PalletPreimageError;179    PalletPreimageEvent: PalletPreimageEvent;180    PalletPreimageRequestStatus: PalletPreimageRequestStatus;181    PalletRankedCollectiveCall: PalletRankedCollectiveCall;182    PalletRankedCollectiveError: PalletRankedCollectiveError;183    PalletRankedCollectiveEvent: PalletRankedCollectiveEvent;184    PalletRankedCollectiveMemberRecord: PalletRankedCollectiveMemberRecord;185    PalletRankedCollectiveTally: PalletRankedCollectiveTally;186    PalletRankedCollectiveVoteRecord: PalletRankedCollectiveVoteRecord;187    PalletReferendaCall: PalletReferendaCall;188    PalletReferendaCurve: PalletReferendaCurve;189    PalletReferendaDecidingStatus: PalletReferendaDecidingStatus;190    PalletReferendaDeposit: PalletReferendaDeposit;191    PalletReferendaError: PalletReferendaError;192    PalletReferendaEvent: PalletReferendaEvent;193    PalletReferendaReferendumInfo: PalletReferendaReferendumInfo;194    PalletReferendaReferendumStatus: PalletReferendaReferendumStatus;195    PalletReferendaTrackInfo: PalletReferendaTrackInfo;196    PalletRefungibleError: PalletRefungibleError;197    PalletSchedulerCall: PalletSchedulerCall;198    PalletSchedulerError: PalletSchedulerError;199    PalletSchedulerEvent: PalletSchedulerEvent;200    PalletSchedulerScheduled: PalletSchedulerScheduled;201    PalletSessionCall: PalletSessionCall;202    PalletSessionError: PalletSessionError;203    PalletSessionEvent: PalletSessionEvent;204    PalletStateTrieMigrationCall: PalletStateTrieMigrationCall;205    PalletStateTrieMigrationError: PalletStateTrieMigrationError;206    PalletStateTrieMigrationEvent: PalletStateTrieMigrationEvent;207    PalletStateTrieMigrationMigrationCompute: PalletStateTrieMigrationMigrationCompute;208    PalletStateTrieMigrationMigrationLimits: PalletStateTrieMigrationMigrationLimits;209    PalletStateTrieMigrationMigrationTask: PalletStateTrieMigrationMigrationTask;210    PalletStateTrieMigrationProgress: PalletStateTrieMigrationProgress;211    PalletStructureCall: PalletStructureCall;212    PalletStructureError: PalletStructureError;213    PalletStructureEvent: PalletStructureEvent;214    PalletSudoCall: PalletSudoCall;215    PalletSudoError: PalletSudoError;216    PalletSudoEvent: PalletSudoEvent;217    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;218    PalletTestUtilsCall: PalletTestUtilsCall;219    PalletTestUtilsError: PalletTestUtilsError;220    PalletTestUtilsEvent: PalletTestUtilsEvent;221    PalletTimestampCall: PalletTimestampCall;222    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;223    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;224    PalletTreasuryCall: PalletTreasuryCall;225    PalletTreasuryError: PalletTreasuryError;226    PalletTreasuryEvent: PalletTreasuryEvent;227    PalletTreasuryProposal: PalletTreasuryProposal;228    PalletUniqueCall: PalletUniqueCall;229    PalletUniqueError: PalletUniqueError;230    PalletXcmCall: PalletXcmCall;231    PalletXcmError: PalletXcmError;232    PalletXcmEvent: PalletXcmEvent;233    PalletXcmOrigin: PalletXcmOrigin;234    PalletXcmQueryStatus: PalletXcmQueryStatus;235    PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;236    PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;237    ParachainInfoCall: ParachainInfoCall;238    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;239    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;240    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;241    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;242    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;243    PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;244    PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;245    PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;246    PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;247    QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;248    QuartzRuntimeRuntime: QuartzRuntimeRuntime;249    QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;250    QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;251    QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;252    SpArithmeticArithmeticError: SpArithmeticArithmeticError;253    SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;254    SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;255    SpCoreEcdsaSignature: SpCoreEcdsaSignature;256    SpCoreEd25519Signature: SpCoreEd25519Signature;257    SpCoreSr25519Public: SpCoreSr25519Public;258    SpCoreSr25519Signature: SpCoreSr25519Signature;259    SpCoreVoid: SpCoreVoid;260    SpRuntimeDigest: SpRuntimeDigest;261    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;262    SpRuntimeDispatchError: SpRuntimeDispatchError;263    SpRuntimeModuleError: SpRuntimeModuleError;264    SpRuntimeMultiSignature: SpRuntimeMultiSignature;265    SpRuntimeTokenError: SpRuntimeTokenError;266    SpRuntimeTransactionValidityInvalidTransaction: SpRuntimeTransactionValidityInvalidTransaction;267    SpRuntimeTransactionValidityTransactionValidityError: SpRuntimeTransactionValidityTransactionValidityError;268    SpRuntimeTransactionValidityUnknownTransaction: SpRuntimeTransactionValidityUnknownTransaction;269    SpRuntimeTransactionalError: SpRuntimeTransactionalError;270    SpTrieStorageProof: SpTrieStorageProof;271    SpVersionRuntimeVersion: SpVersionRuntimeVersion;272    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;273    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;274    UpDataStructsAccessMode: UpDataStructsAccessMode;275    UpDataStructsCollection: UpDataStructsCollection;276    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;277    UpDataStructsCollectionMode: UpDataStructsCollectionMode;278    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;279    UpDataStructsCollectionStats: UpDataStructsCollectionStats;280    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;281    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;282    UpDataStructsCreateItemData: UpDataStructsCreateItemData;283    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;284    UpDataStructsCreateNftData: UpDataStructsCreateNftData;285    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;286    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;287    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;288    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;289    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;290    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;291    UpDataStructsProperties: UpDataStructsProperties;292    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;293    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;294    UpDataStructsProperty: UpDataStructsProperty;295    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;296    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;297    UpDataStructsPropertyScope: UpDataStructsPropertyScope;298    UpDataStructsRpcCollection: UpDataStructsRpcCollection;299    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;300    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;301    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;302    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;303    UpDataStructsTokenChild: UpDataStructsTokenChild;304    UpDataStructsTokenData: UpDataStructsTokenData;305    UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;306    UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;307    XcmDoubleEncoded: XcmDoubleEncoded;308    XcmV2BodyId: XcmV2BodyId;309    XcmV2BodyPart: XcmV2BodyPart;310    XcmV2Instruction: XcmV2Instruction;311    XcmV2Junction: XcmV2Junction;312    XcmV2MultiAsset: XcmV2MultiAsset;313    XcmV2MultiLocation: XcmV2MultiLocation;314    XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;315    XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;316    XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;317    XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;318    XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;319    XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;320    XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;321    XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;322    XcmV2NetworkId: XcmV2NetworkId;323    XcmV2OriginKind: XcmV2OriginKind;324    XcmV2Response: XcmV2Response;325    XcmV2TraitsError: XcmV2TraitsError;326    XcmV2WeightLimit: XcmV2WeightLimit;327    XcmV2Xcm: XcmV2Xcm;328    XcmV3Instruction: XcmV3Instruction;329    XcmV3Junction: XcmV3Junction;330    XcmV3JunctionBodyId: XcmV3JunctionBodyId;331    XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;332    XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;333    XcmV3Junctions: XcmV3Junctions;334    XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;335    XcmV3MultiAsset: XcmV3MultiAsset;336    XcmV3MultiLocation: XcmV3MultiLocation;337    XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;338    XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;339    XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;340    XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;341    XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;342    XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;343    XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;344    XcmV3PalletInfo: XcmV3PalletInfo;345    XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;346    XcmV3Response: XcmV3Response;347    XcmV3TraitsError: XcmV3TraitsError;348    XcmV3TraitsOutcome: XcmV3TraitsOutcome;349    XcmV3WeightLimit: XcmV3WeightLimit;350    XcmV3Xcm: XcmV3Xcm;351    XcmVersionedAssetId: XcmVersionedAssetId;352    XcmVersionedMultiAsset: XcmVersionedMultiAsset;353    XcmVersionedMultiAssets: XcmVersionedMultiAssets;354    XcmVersionedMultiLocation: XcmVersionedMultiLocation;355    XcmVersionedResponse: XcmVersionedResponse;356    XcmVersionedXcm: XcmVersionedXcm;357  } // InterfaceTypes358} // declare module
after · tests/src/interfaces/registry.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, 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, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';910declare module '@polkadot/types/types/registry' {11  interface InterfaceTypes {12    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;13    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;14    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;15    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;16    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;17    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;18    CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;19    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;20    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;21    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;22    CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize: CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize;23    CumulusPalletXcmCall: CumulusPalletXcmCall;24    CumulusPalletXcmError: CumulusPalletXcmError;25    CumulusPalletXcmEvent: CumulusPalletXcmEvent;26    CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;27    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;28    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;29    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;30    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;31    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;32    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;33    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;34    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;35    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;36    EthbloomBloom: EthbloomBloom;37    EthereumBlock: EthereumBlock;38    EthereumHeader: EthereumHeader;39    EthereumLog: EthereumLog;40    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;41    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;42    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;43    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;44    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;45    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;46    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;47    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;48    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;49    EthereumTypesHashH64: EthereumTypesHashH64;50    EvmCoreErrorExitError: EvmCoreErrorExitError;51    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;52    EvmCoreErrorExitReason: EvmCoreErrorExitReason;53    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;54    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;55    FpRpcTransactionStatus: FpRpcTransactionStatus;56    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;57    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;58    FrameSupportDispatchPays: FrameSupportDispatchPays;59    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;60    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;61    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;62    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;63    FrameSupportPalletId: FrameSupportPalletId;64    FrameSupportPreimagesBounded: FrameSupportPreimagesBounded;65    FrameSupportScheduleDispatchTime: FrameSupportScheduleDispatchTime;66    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;67    FrameSystemAccountInfo: FrameSystemAccountInfo;68    FrameSystemCall: FrameSystemCall;69    FrameSystemError: FrameSystemError;70    FrameSystemEvent: FrameSystemEvent;71    FrameSystemEventRecord: FrameSystemEventRecord;72    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;73    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;74    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;75    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;76    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;77    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;78    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;79    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;80    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;81    FrameSystemPhase: FrameSystemPhase;82    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;83    OpalRuntimeRuntime: OpalRuntimeRuntime;84    OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;85    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;86    OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;87    OrmlTokensAccountData: OrmlTokensAccountData;88    OrmlTokensBalanceLock: OrmlTokensBalanceLock;89    OrmlTokensModuleCall: OrmlTokensModuleCall;90    OrmlTokensModuleError: OrmlTokensModuleError;91    OrmlTokensModuleEvent: OrmlTokensModuleEvent;92    OrmlTokensReserveData: OrmlTokensReserveData;93    OrmlVestingModuleCall: OrmlVestingModuleCall;94    OrmlVestingModuleError: OrmlVestingModuleError;95    OrmlVestingModuleEvent: OrmlVestingModuleEvent;96    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;97    OrmlXtokensModuleCall: OrmlXtokensModuleCall;98    OrmlXtokensModuleError: OrmlXtokensModuleError;99    OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;100    PalletAppPromotionCall: PalletAppPromotionCall;101    PalletAppPromotionError: PalletAppPromotionError;102    PalletAppPromotionEvent: PalletAppPromotionEvent;103    PalletBalancesAccountData: PalletBalancesAccountData;104    PalletBalancesBalanceLock: PalletBalancesBalanceLock;105    PalletBalancesCall: PalletBalancesCall;106    PalletBalancesError: PalletBalancesError;107    PalletBalancesEvent: PalletBalancesEvent;108    PalletBalancesIdAmount: PalletBalancesIdAmount;109    PalletBalancesReasons: PalletBalancesReasons;110    PalletBalancesReserveData: PalletBalancesReserveData;111    PalletCollatorSelectionCall: PalletCollatorSelectionCall;112    PalletCollatorSelectionError: PalletCollatorSelectionError;113    PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;114    PalletCollectiveCall: PalletCollectiveCall;115    PalletCollectiveError: PalletCollectiveError;116    PalletCollectiveEvent: PalletCollectiveEvent;117    PalletCollectiveRawOrigin: PalletCollectiveRawOrigin;118    PalletCollectiveVotes: PalletCollectiveVotes;119    PalletCommonError: PalletCommonError;120    PalletCommonEvent: PalletCommonEvent;121    PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;122    PalletConfigurationCall: PalletConfigurationCall;123    PalletConfigurationError: PalletConfigurationError;124    PalletConfigurationEvent: PalletConfigurationEvent;125    PalletDemocracyCall: PalletDemocracyCall;126    PalletDemocracyConviction: PalletDemocracyConviction;127    PalletDemocracyDelegations: PalletDemocracyDelegations;128    PalletDemocracyError: PalletDemocracyError;129    PalletDemocracyEvent: PalletDemocracyEvent;130    PalletDemocracyMetadataOwner: PalletDemocracyMetadataOwner;131    PalletDemocracyReferendumInfo: PalletDemocracyReferendumInfo;132    PalletDemocracyReferendumStatus: PalletDemocracyReferendumStatus;133    PalletDemocracyTally: PalletDemocracyTally;134    PalletDemocracyVoteAccountVote: PalletDemocracyVoteAccountVote;135    PalletDemocracyVotePriorLock: PalletDemocracyVotePriorLock;136    PalletDemocracyVoteThreshold: PalletDemocracyVoteThreshold;137    PalletDemocracyVoteVoting: PalletDemocracyVoteVoting;138    PalletEthereumCall: PalletEthereumCall;139    PalletEthereumError: PalletEthereumError;140    PalletEthereumEvent: PalletEthereumEvent;141    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;142    PalletEthereumRawOrigin: PalletEthereumRawOrigin;143    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;144    PalletEvmCall: PalletEvmCall;145    PalletEvmCodeMetadata: PalletEvmCodeMetadata;146    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;147    PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;148    PalletEvmContractHelpersError: PalletEvmContractHelpersError;149    PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;150    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;151    PalletEvmError: PalletEvmError;152    PalletEvmEvent: PalletEvmEvent;153    PalletEvmMigrationCall: PalletEvmMigrationCall;154    PalletEvmMigrationError: PalletEvmMigrationError;155    PalletEvmMigrationEvent: PalletEvmMigrationEvent;156    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;157    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;158    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;159    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;160    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;161    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;162    PalletFungibleError: PalletFungibleError;163    PalletGovOriginsOrigin: PalletGovOriginsOrigin;164    PalletIdentityBitFlags: PalletIdentityBitFlags;165    PalletIdentityCall: PalletIdentityCall;166    PalletIdentityError: PalletIdentityError;167    PalletIdentityEvent: PalletIdentityEvent;168    PalletIdentityIdentityField: PalletIdentityIdentityField;169    PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;170    PalletIdentityJudgement: PalletIdentityJudgement;171    PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;172    PalletIdentityRegistration: PalletIdentityRegistration;173    PalletInflationCall: PalletInflationCall;174    PalletMaintenanceCall: PalletMaintenanceCall;175    PalletMaintenanceError: PalletMaintenanceError;176    PalletMaintenanceEvent: PalletMaintenanceEvent;177    PalletMembershipCall: PalletMembershipCall;178    PalletMembershipError: PalletMembershipError;179    PalletMembershipEvent: PalletMembershipEvent;180    PalletNonfungibleError: PalletNonfungibleError;181    PalletNonfungibleItemData: PalletNonfungibleItemData;182    PalletPreimageCall: PalletPreimageCall;183    PalletPreimageError: PalletPreimageError;184    PalletPreimageEvent: PalletPreimageEvent;185    PalletPreimageRequestStatus: PalletPreimageRequestStatus;186    PalletRankedCollectiveCall: PalletRankedCollectiveCall;187    PalletRankedCollectiveError: PalletRankedCollectiveError;188    PalletRankedCollectiveEvent: PalletRankedCollectiveEvent;189    PalletRankedCollectiveMemberRecord: PalletRankedCollectiveMemberRecord;190    PalletRankedCollectiveTally: PalletRankedCollectiveTally;191    PalletRankedCollectiveVoteRecord: PalletRankedCollectiveVoteRecord;192    PalletReferendaCall: PalletReferendaCall;193    PalletReferendaCurve: PalletReferendaCurve;194    PalletReferendaDecidingStatus: PalletReferendaDecidingStatus;195    PalletReferendaDeposit: PalletReferendaDeposit;196    PalletReferendaError: PalletReferendaError;197    PalletReferendaEvent: PalletReferendaEvent;198    PalletReferendaReferendumInfo: PalletReferendaReferendumInfo;199    PalletReferendaReferendumStatus: PalletReferendaReferendumStatus;200    PalletReferendaTrackInfo: PalletReferendaTrackInfo;201    PalletRefungibleError: PalletRefungibleError;202    PalletSchedulerCall: PalletSchedulerCall;203    PalletSchedulerError: PalletSchedulerError;204    PalletSchedulerEvent: PalletSchedulerEvent;205    PalletSchedulerScheduled: PalletSchedulerScheduled;206    PalletSessionCall: PalletSessionCall;207    PalletSessionError: PalletSessionError;208    PalletSessionEvent: PalletSessionEvent;209    PalletStateTrieMigrationCall: PalletStateTrieMigrationCall;210    PalletStateTrieMigrationError: PalletStateTrieMigrationError;211    PalletStateTrieMigrationEvent: PalletStateTrieMigrationEvent;212    PalletStateTrieMigrationMigrationCompute: PalletStateTrieMigrationMigrationCompute;213    PalletStateTrieMigrationMigrationLimits: PalletStateTrieMigrationMigrationLimits;214    PalletStateTrieMigrationMigrationTask: PalletStateTrieMigrationMigrationTask;215    PalletStateTrieMigrationProgress: PalletStateTrieMigrationProgress;216    PalletStructureCall: PalletStructureCall;217    PalletStructureError: PalletStructureError;218    PalletStructureEvent: PalletStructureEvent;219    PalletSudoCall: PalletSudoCall;220    PalletSudoError: PalletSudoError;221    PalletSudoEvent: PalletSudoEvent;222    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;223    PalletTestUtilsCall: PalletTestUtilsCall;224    PalletTestUtilsError: PalletTestUtilsError;225    PalletTestUtilsEvent: PalletTestUtilsEvent;226    PalletTimestampCall: PalletTimestampCall;227    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;228    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;229    PalletTreasuryCall: PalletTreasuryCall;230    PalletTreasuryError: PalletTreasuryError;231    PalletTreasuryEvent: PalletTreasuryEvent;232    PalletTreasuryProposal: PalletTreasuryProposal;233    PalletUniqueCall: PalletUniqueCall;234    PalletUniqueError: PalletUniqueError;235    PalletXcmCall: PalletXcmCall;236    PalletXcmError: PalletXcmError;237    PalletXcmEvent: PalletXcmEvent;238    PalletXcmOrigin: PalletXcmOrigin;239    PalletXcmQueryStatus: PalletXcmQueryStatus;240    PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;241    PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;242    ParachainInfoCall: ParachainInfoCall;243    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;244    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;245    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;246    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;247    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;248    PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;249    PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;250    PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;251    PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;252    SpArithmeticArithmeticError: SpArithmeticArithmeticError;253    SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;254    SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;255    SpCoreEcdsaSignature: SpCoreEcdsaSignature;256    SpCoreEd25519Signature: SpCoreEd25519Signature;257    SpCoreSr25519Public: SpCoreSr25519Public;258    SpCoreSr25519Signature: SpCoreSr25519Signature;259    SpCoreVoid: SpCoreVoid;260    SpRuntimeDigest: SpRuntimeDigest;261    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;262    SpRuntimeDispatchError: SpRuntimeDispatchError;263    SpRuntimeModuleError: SpRuntimeModuleError;264    SpRuntimeMultiSignature: SpRuntimeMultiSignature;265    SpRuntimeTokenError: SpRuntimeTokenError;266    SpRuntimeTransactionValidityInvalidTransaction: SpRuntimeTransactionValidityInvalidTransaction;267    SpRuntimeTransactionValidityTransactionValidityError: SpRuntimeTransactionValidityTransactionValidityError;268    SpRuntimeTransactionValidityUnknownTransaction: SpRuntimeTransactionValidityUnknownTransaction;269    SpRuntimeTransactionalError: SpRuntimeTransactionalError;270    SpTrieStorageProof: SpTrieStorageProof;271    SpVersionRuntimeVersion: SpVersionRuntimeVersion;272    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;273    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;274    UpDataStructsAccessMode: UpDataStructsAccessMode;275    UpDataStructsCollection: UpDataStructsCollection;276    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;277    UpDataStructsCollectionMode: UpDataStructsCollectionMode;278    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;279    UpDataStructsCollectionStats: UpDataStructsCollectionStats;280    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;281    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;282    UpDataStructsCreateItemData: UpDataStructsCreateItemData;283    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;284    UpDataStructsCreateNftData: UpDataStructsCreateNftData;285    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;286    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;287    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;288    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;289    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;290    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;291    UpDataStructsProperties: UpDataStructsProperties;292    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;293    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;294    UpDataStructsProperty: UpDataStructsProperty;295    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;296    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;297    UpDataStructsPropertyScope: UpDataStructsPropertyScope;298    UpDataStructsRpcCollection: UpDataStructsRpcCollection;299    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;300    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;301    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;302    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;303    UpDataStructsTokenChild: UpDataStructsTokenChild;304    UpDataStructsTokenData: UpDataStructsTokenData;305    UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;306    UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;307    XcmDoubleEncoded: XcmDoubleEncoded;308    XcmV2BodyId: XcmV2BodyId;309    XcmV2BodyPart: XcmV2BodyPart;310    XcmV2Instruction: XcmV2Instruction;311    XcmV2Junction: XcmV2Junction;312    XcmV2MultiAsset: XcmV2MultiAsset;313    XcmV2MultiLocation: XcmV2MultiLocation;314    XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;315    XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;316    XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;317    XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;318    XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;319    XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;320    XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;321    XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;322    XcmV2NetworkId: XcmV2NetworkId;323    XcmV2OriginKind: XcmV2OriginKind;324    XcmV2Response: XcmV2Response;325    XcmV2TraitsError: XcmV2TraitsError;326    XcmV2WeightLimit: XcmV2WeightLimit;327    XcmV2Xcm: XcmV2Xcm;328    XcmV3Instruction: XcmV3Instruction;329    XcmV3Junction: XcmV3Junction;330    XcmV3JunctionBodyId: XcmV3JunctionBodyId;331    XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;332    XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;333    XcmV3Junctions: XcmV3Junctions;334    XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;335    XcmV3MultiAsset: XcmV3MultiAsset;336    XcmV3MultiLocation: XcmV3MultiLocation;337    XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;338    XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;339    XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;340    XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;341    XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;342    XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;343    XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;344    XcmV3PalletInfo: XcmV3PalletInfo;345    XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;346    XcmV3Response: XcmV3Response;347    XcmV3TraitsError: XcmV3TraitsError;348    XcmV3TraitsOutcome: XcmV3TraitsOutcome;349    XcmV3WeightLimit: XcmV3WeightLimit;350    XcmV3Xcm: XcmV3Xcm;351    XcmVersionedAssetId: XcmVersionedAssetId;352    XcmVersionedMultiAsset: XcmVersionedMultiAsset;353    XcmVersionedMultiAssets: XcmVersionedMultiAssets;354    XcmVersionedMultiLocation: XcmVersionedMultiLocation;355    XcmVersionedResponse: XcmVersionedResponse;356    XcmVersionedXcm: XcmVersionedXcm;357  } // InterfaceTypes358} // declare module
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1390,15 +1390,15 @@
   interface PalletSessionCall extends Enum {
     readonly isSetKeys: boolean;
     readonly asSetKeys: {
-      readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;
+      readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
       readonly proof: Bytes;
     } & Struct;
     readonly isPurgeKeys: boolean;
     readonly type: 'SetKeys' | 'PurgeKeys';
   }
 
-  /** @name QuartzRuntimeRuntimeCommonSessionKeys (115) */
-  interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {
+  /** @name OpalRuntimeRuntimeCommonSessionKeys (115) */
+  interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
     readonly aura: SpConsensusAuraSr25519AppSr25519Public;
   }
 
@@ -2177,7 +2177,7 @@
   interface PalletReferendaCall extends Enum {
     readonly isSubmit: boolean;
     readonly asSubmit: {
-      readonly proposalOrigin: QuartzRuntimeOriginCaller;
+      readonly proposalOrigin: OpalRuntimeOriginCaller;
       readonly proposal: FrameSupportPreimagesBounded;
       readonly enactmentMoment: FrameSupportScheduleDispatchTime;
     } & Struct;
@@ -2217,8 +2217,8 @@
     readonly type: 'Submit' | 'PlaceDecisionDeposit' | 'RefundDecisionDeposit' | 'Cancel' | 'Kill' | 'NudgeReferendum' | 'OneFewerDeciding' | 'RefundSubmissionDeposit' | 'SetMetadata';
   }
 
-  /** @name QuartzRuntimeOriginCaller (209) */
-  interface QuartzRuntimeOriginCaller extends Enum {
+  /** @name OpalRuntimeOriginCaller (209) */
+  interface OpalRuntimeOriginCaller extends Enum {
     readonly isSystem: boolean;
     readonly asSystem: FrameSupportDispatchRawOrigin;
     readonly isVoid: boolean;
@@ -4616,7 +4616,7 @@
   /** @name PalletReferendaReferendumStatus (509) */
   interface PalletReferendaReferendumStatus extends Struct {
     readonly track: u16;
-    readonly origin: QuartzRuntimeOriginCaller;
+    readonly origin: OpalRuntimeOriginCaller;
     readonly proposal: FrameSupportPreimagesBounded;
     readonly enactment: FrameSupportScheduleDispatchTime;
     readonly submitted: u32;
@@ -4701,7 +4701,7 @@
     readonly priority: u8;
     readonly call: FrameSupportPreimagesBounded;
     readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
-    readonly origin: QuartzRuntimeOriginCaller;
+    readonly origin: OpalRuntimeOriginCaller;
   }
 
   /** @name PalletSchedulerError (528) */
@@ -5312,17 +5312,17 @@
   /** @name FrameSystemExtensionsCheckWeight (673) */
   type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */
-  type QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
+  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */
+  type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
 
-  /** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */
-  type QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
+  /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */
+  type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
 
   /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (676) */
   interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name QuartzRuntimeRuntime (677) */
-  type QuartzRuntimeRuntime = Null;
+  /** @name OpalRuntimeRuntime (677) */
+  type OpalRuntimeRuntime = Null;
 
   /** @name PalletEthereumFakeTransactionFinalizer (678) */
   type PalletEthereumFakeTransactionFinalizer = Null;