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
before · tests/src/interfaces/default/types.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { Data } from '@polkadot/types';5import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, i64, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6import type { ITuple } from '@polkadot/types-codec/types';7import type { Vote } from '@polkadot/types/interfaces/elections';8import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';9import type { Event } from '@polkadot/types/interfaces/system';1011/** @name CumulusPalletDmpQueueCall */12export interface CumulusPalletDmpQueueCall extends Enum {13  readonly isServiceOverweight: boolean;14  readonly asServiceOverweight: {15    readonly index: u64;16    readonly weightLimit: SpWeightsWeightV2Weight;17  } & Struct;18  readonly type: 'ServiceOverweight';19}2021/** @name CumulusPalletDmpQueueConfigData */22export interface CumulusPalletDmpQueueConfigData extends Struct {23  readonly maxIndividual: SpWeightsWeightV2Weight;24}2526/** @name CumulusPalletDmpQueueError */27export interface CumulusPalletDmpQueueError extends Enum {28  readonly isUnknown: boolean;29  readonly isOverLimit: boolean;30  readonly type: 'Unknown' | 'OverLimit';31}3233/** @name CumulusPalletDmpQueueEvent */34export interface CumulusPalletDmpQueueEvent extends Enum {35  readonly isInvalidFormat: boolean;36  readonly asInvalidFormat: {37    readonly messageId: U8aFixed;38  } & Struct;39  readonly isUnsupportedVersion: boolean;40  readonly asUnsupportedVersion: {41    readonly messageId: U8aFixed;42  } & Struct;43  readonly isExecutedDownward: boolean;44  readonly asExecutedDownward: {45    readonly messageId: U8aFixed;46    readonly outcome: XcmV3TraitsOutcome;47  } & Struct;48  readonly isWeightExhausted: boolean;49  readonly asWeightExhausted: {50    readonly messageId: U8aFixed;51    readonly remainingWeight: SpWeightsWeightV2Weight;52    readonly requiredWeight: SpWeightsWeightV2Weight;53  } & Struct;54  readonly isOverweightEnqueued: boolean;55  readonly asOverweightEnqueued: {56    readonly messageId: U8aFixed;57    readonly overweightIndex: u64;58    readonly requiredWeight: SpWeightsWeightV2Weight;59  } & Struct;60  readonly isOverweightServiced: boolean;61  readonly asOverweightServiced: {62    readonly overweightIndex: u64;63    readonly weightUsed: SpWeightsWeightV2Weight;64  } & Struct;65  readonly isMaxMessagesExhausted: boolean;66  readonly asMaxMessagesExhausted: {67    readonly messageId: U8aFixed;68  } & Struct;69  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';70}7172/** @name CumulusPalletDmpQueuePageIndexData */73export interface CumulusPalletDmpQueuePageIndexData extends Struct {74  readonly beginUsed: u32;75  readonly endUsed: u32;76  readonly overweightCount: u64;77}7879/** @name CumulusPalletParachainSystemCall */80export interface CumulusPalletParachainSystemCall extends Enum {81  readonly isSetValidationData: boolean;82  readonly asSetValidationData: {83    readonly data: CumulusPrimitivesParachainInherentParachainInherentData;84  } & Struct;85  readonly isSudoSendUpwardMessage: boolean;86  readonly asSudoSendUpwardMessage: {87    readonly message: Bytes;88  } & Struct;89  readonly isAuthorizeUpgrade: boolean;90  readonly asAuthorizeUpgrade: {91    readonly codeHash: H256;92    readonly checkVersion: bool;93  } & Struct;94  readonly isEnactAuthorizedUpgrade: boolean;95  readonly asEnactAuthorizedUpgrade: {96    readonly code: Bytes;97  } & Struct;98  readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';99}100101/** @name CumulusPalletParachainSystemCodeUpgradeAuthorization */102export interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {103  readonly codeHash: H256;104  readonly checkVersion: bool;105}106107/** @name CumulusPalletParachainSystemError */108export interface CumulusPalletParachainSystemError extends Enum {109  readonly isOverlappingUpgrades: boolean;110  readonly isProhibitedByPolkadot: boolean;111  readonly isTooBig: boolean;112  readonly isValidationDataNotAvailable: boolean;113  readonly isHostConfigurationNotAvailable: boolean;114  readonly isNotScheduled: boolean;115  readonly isNothingAuthorized: boolean;116  readonly isUnauthorized: boolean;117  readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';118}119120/** @name CumulusPalletParachainSystemEvent */121export interface CumulusPalletParachainSystemEvent extends Enum {122  readonly isValidationFunctionStored: boolean;123  readonly isValidationFunctionApplied: boolean;124  readonly asValidationFunctionApplied: {125    readonly relayChainBlockNum: u32;126  } & Struct;127  readonly isValidationFunctionDiscarded: boolean;128  readonly isUpgradeAuthorized: boolean;129  readonly asUpgradeAuthorized: {130    readonly codeHash: H256;131  } & Struct;132  readonly isDownwardMessagesReceived: boolean;133  readonly asDownwardMessagesReceived: {134    readonly count: u32;135  } & Struct;136  readonly isDownwardMessagesProcessed: boolean;137  readonly asDownwardMessagesProcessed: {138    readonly weightUsed: SpWeightsWeightV2Weight;139    readonly dmqHead: H256;140  } & Struct;141  readonly isUpwardMessageSent: boolean;142  readonly asUpwardMessageSent: {143    readonly messageHash: Option<U8aFixed>;144  } & Struct;145  readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';146}147148/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */149export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {150  readonly dmqMqcHead: H256;151  readonly relayDispatchQueueSize: CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize;152  readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;153  readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;154}155156/** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize */157export interface CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize extends Struct {158  readonly remainingCount: u32;159  readonly remainingSize: u32;160}161162/** @name CumulusPalletXcmCall */163export interface CumulusPalletXcmCall extends Null {}164165/** @name CumulusPalletXcmError */166export interface CumulusPalletXcmError extends Null {}167168/** @name CumulusPalletXcmEvent */169export interface CumulusPalletXcmEvent extends Enum {170  readonly isInvalidFormat: boolean;171  readonly asInvalidFormat: U8aFixed;172  readonly isUnsupportedVersion: boolean;173  readonly asUnsupportedVersion: U8aFixed;174  readonly isExecutedDownward: boolean;175  readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;176  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';177}178179/** @name CumulusPalletXcmOrigin */180export interface CumulusPalletXcmOrigin extends Enum {181  readonly isRelay: boolean;182  readonly isSiblingParachain: boolean;183  readonly asSiblingParachain: u32;184  readonly type: 'Relay' | 'SiblingParachain';185}186187/** @name CumulusPalletXcmpQueueCall */188export interface CumulusPalletXcmpQueueCall extends Enum {189  readonly isServiceOverweight: boolean;190  readonly asServiceOverweight: {191    readonly index: u64;192    readonly weightLimit: SpWeightsWeightV2Weight;193  } & Struct;194  readonly isSuspendXcmExecution: boolean;195  readonly isResumeXcmExecution: boolean;196  readonly isUpdateSuspendThreshold: boolean;197  readonly asUpdateSuspendThreshold: {198    readonly new_: u32;199  } & Struct;200  readonly isUpdateDropThreshold: boolean;201  readonly asUpdateDropThreshold: {202    readonly new_: u32;203  } & Struct;204  readonly isUpdateResumeThreshold: boolean;205  readonly asUpdateResumeThreshold: {206    readonly new_: u32;207  } & Struct;208  readonly isUpdateThresholdWeight: boolean;209  readonly asUpdateThresholdWeight: {210    readonly new_: SpWeightsWeightV2Weight;211  } & Struct;212  readonly isUpdateWeightRestrictDecay: boolean;213  readonly asUpdateWeightRestrictDecay: {214    readonly new_: SpWeightsWeightV2Weight;215  } & Struct;216  readonly isUpdateXcmpMaxIndividualWeight: boolean;217  readonly asUpdateXcmpMaxIndividualWeight: {218    readonly new_: SpWeightsWeightV2Weight;219  } & Struct;220  readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';221}222223/** @name CumulusPalletXcmpQueueError */224export interface CumulusPalletXcmpQueueError extends Enum {225  readonly isFailedToSend: boolean;226  readonly isBadXcmOrigin: boolean;227  readonly isBadXcm: boolean;228  readonly isBadOverweightIndex: boolean;229  readonly isWeightOverLimit: boolean;230  readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';231}232233/** @name CumulusPalletXcmpQueueEvent */234export interface CumulusPalletXcmpQueueEvent extends Enum {235  readonly isSuccess: boolean;236  readonly asSuccess: {237    readonly messageHash: Option<U8aFixed>;238    readonly weight: SpWeightsWeightV2Weight;239  } & Struct;240  readonly isFail: boolean;241  readonly asFail: {242    readonly messageHash: Option<U8aFixed>;243    readonly error: XcmV3TraitsError;244    readonly weight: SpWeightsWeightV2Weight;245  } & Struct;246  readonly isBadVersion: boolean;247  readonly asBadVersion: {248    readonly messageHash: Option<U8aFixed>;249  } & Struct;250  readonly isBadFormat: boolean;251  readonly asBadFormat: {252    readonly messageHash: Option<U8aFixed>;253  } & Struct;254  readonly isXcmpMessageSent: boolean;255  readonly asXcmpMessageSent: {256    readonly messageHash: Option<U8aFixed>;257  } & Struct;258  readonly isOverweightEnqueued: boolean;259  readonly asOverweightEnqueued: {260    readonly sender: u32;261    readonly sentAt: u32;262    readonly index: u64;263    readonly required: SpWeightsWeightV2Weight;264  } & Struct;265  readonly isOverweightServiced: boolean;266  readonly asOverweightServiced: {267    readonly index: u64;268    readonly used: SpWeightsWeightV2Weight;269  } & Struct;270  readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';271}272273/** @name CumulusPalletXcmpQueueInboundChannelDetails */274export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {275  readonly sender: u32;276  readonly state: CumulusPalletXcmpQueueInboundState;277  readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;278}279280/** @name CumulusPalletXcmpQueueInboundState */281export interface CumulusPalletXcmpQueueInboundState extends Enum {282  readonly isOk: boolean;283  readonly isSuspended: boolean;284  readonly type: 'Ok' | 'Suspended';285}286287/** @name CumulusPalletXcmpQueueOutboundChannelDetails */288export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {289  readonly recipient: u32;290  readonly state: CumulusPalletXcmpQueueOutboundState;291  readonly signalsExist: bool;292  readonly firstIndex: u16;293  readonly lastIndex: u16;294}295296/** @name CumulusPalletXcmpQueueOutboundState */297export interface CumulusPalletXcmpQueueOutboundState extends Enum {298  readonly isOk: boolean;299  readonly isSuspended: boolean;300  readonly type: 'Ok' | 'Suspended';301}302303/** @name CumulusPalletXcmpQueueQueueConfigData */304export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {305  readonly suspendThreshold: u32;306  readonly dropThreshold: u32;307  readonly resumeThreshold: u32;308  readonly thresholdWeight: SpWeightsWeightV2Weight;309  readonly weightRestrictDecay: SpWeightsWeightV2Weight;310  readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;311}312313/** @name CumulusPrimitivesParachainInherentParachainInherentData */314export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {315  readonly validationData: PolkadotPrimitivesV4PersistedValidationData;316  readonly relayChainState: SpTrieStorageProof;317  readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;318  readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;319}320321/** @name EthbloomBloom */322export interface EthbloomBloom extends U8aFixed {}323324/** @name EthereumBlock */325export interface EthereumBlock extends Struct {326  readonly header: EthereumHeader;327  readonly transactions: Vec<EthereumTransactionTransactionV2>;328  readonly ommers: Vec<EthereumHeader>;329}330331/** @name EthereumHeader */332export interface EthereumHeader extends Struct {333  readonly parentHash: H256;334  readonly ommersHash: H256;335  readonly beneficiary: H160;336  readonly stateRoot: H256;337  readonly transactionsRoot: H256;338  readonly receiptsRoot: H256;339  readonly logsBloom: EthbloomBloom;340  readonly difficulty: U256;341  readonly number: U256;342  readonly gasLimit: U256;343  readonly gasUsed: U256;344  readonly timestamp: u64;345  readonly extraData: Bytes;346  readonly mixHash: H256;347  readonly nonce: EthereumTypesHashH64;348}349350/** @name EthereumLog */351export interface EthereumLog extends Struct {352  readonly address: H160;353  readonly topics: Vec<H256>;354  readonly data: Bytes;355}356357/** @name EthereumReceiptEip658ReceiptData */358export interface EthereumReceiptEip658ReceiptData extends Struct {359  readonly statusCode: u8;360  readonly usedGas: U256;361  readonly logsBloom: EthbloomBloom;362  readonly logs: Vec<EthereumLog>;363}364365/** @name EthereumReceiptReceiptV3 */366export interface EthereumReceiptReceiptV3 extends Enum {367  readonly isLegacy: boolean;368  readonly asLegacy: EthereumReceiptEip658ReceiptData;369  readonly isEip2930: boolean;370  readonly asEip2930: EthereumReceiptEip658ReceiptData;371  readonly isEip1559: boolean;372  readonly asEip1559: EthereumReceiptEip658ReceiptData;373  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';374}375376/** @name EthereumTransactionAccessListItem */377export interface EthereumTransactionAccessListItem extends Struct {378  readonly address: H160;379  readonly storageKeys: Vec<H256>;380}381382/** @name EthereumTransactionEip1559Transaction */383export interface EthereumTransactionEip1559Transaction extends Struct {384  readonly chainId: u64;385  readonly nonce: U256;386  readonly maxPriorityFeePerGas: U256;387  readonly maxFeePerGas: U256;388  readonly gasLimit: U256;389  readonly action: EthereumTransactionTransactionAction;390  readonly value: U256;391  readonly input: Bytes;392  readonly accessList: Vec<EthereumTransactionAccessListItem>;393  readonly oddYParity: bool;394  readonly r: H256;395  readonly s: H256;396}397398/** @name EthereumTransactionEip2930Transaction */399export interface EthereumTransactionEip2930Transaction extends Struct {400  readonly chainId: u64;401  readonly nonce: U256;402  readonly gasPrice: U256;403  readonly gasLimit: U256;404  readonly action: EthereumTransactionTransactionAction;405  readonly value: U256;406  readonly input: Bytes;407  readonly accessList: Vec<EthereumTransactionAccessListItem>;408  readonly oddYParity: bool;409  readonly r: H256;410  readonly s: H256;411}412413/** @name EthereumTransactionLegacyTransaction */414export interface EthereumTransactionLegacyTransaction extends Struct {415  readonly nonce: U256;416  readonly gasPrice: U256;417  readonly gasLimit: U256;418  readonly action: EthereumTransactionTransactionAction;419  readonly value: U256;420  readonly input: Bytes;421  readonly signature: EthereumTransactionTransactionSignature;422}423424/** @name EthereumTransactionTransactionAction */425export interface EthereumTransactionTransactionAction extends Enum {426  readonly isCall: boolean;427  readonly asCall: H160;428  readonly isCreate: boolean;429  readonly type: 'Call' | 'Create';430}431432/** @name EthereumTransactionTransactionSignature */433export interface EthereumTransactionTransactionSignature extends Struct {434  readonly v: u64;435  readonly r: H256;436  readonly s: H256;437}438439/** @name EthereumTransactionTransactionV2 */440export interface EthereumTransactionTransactionV2 extends Enum {441  readonly isLegacy: boolean;442  readonly asLegacy: EthereumTransactionLegacyTransaction;443  readonly isEip2930: boolean;444  readonly asEip2930: EthereumTransactionEip2930Transaction;445  readonly isEip1559: boolean;446  readonly asEip1559: EthereumTransactionEip1559Transaction;447  readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';448}449450/** @name EthereumTypesHashH64 */451export interface EthereumTypesHashH64 extends U8aFixed {}452453/** @name EvmCoreErrorExitError */454export interface EvmCoreErrorExitError extends Enum {455  readonly isStackUnderflow: boolean;456  readonly isStackOverflow: boolean;457  readonly isInvalidJump: boolean;458  readonly isInvalidRange: boolean;459  readonly isDesignatedInvalid: boolean;460  readonly isCallTooDeep: boolean;461  readonly isCreateCollision: boolean;462  readonly isCreateContractLimit: boolean;463  readonly isOutOfOffset: boolean;464  readonly isOutOfGas: boolean;465  readonly isOutOfFund: boolean;466  readonly isPcUnderflow: boolean;467  readonly isCreateEmpty: boolean;468  readonly isOther: boolean;469  readonly asOther: Text;470  readonly isMaxNonce: boolean;471  readonly isInvalidCode: boolean;472  readonly asInvalidCode: u8;473  readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'MaxNonce' | 'InvalidCode';474}475476/** @name EvmCoreErrorExitFatal */477export interface EvmCoreErrorExitFatal extends Enum {478  readonly isNotSupported: boolean;479  readonly isUnhandledInterrupt: boolean;480  readonly isCallErrorAsFatal: boolean;481  readonly asCallErrorAsFatal: EvmCoreErrorExitError;482  readonly isOther: boolean;483  readonly asOther: Text;484  readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';485}486487/** @name EvmCoreErrorExitReason */488export interface EvmCoreErrorExitReason extends Enum {489  readonly isSucceed: boolean;490  readonly asSucceed: EvmCoreErrorExitSucceed;491  readonly isError: boolean;492  readonly asError: EvmCoreErrorExitError;493  readonly isRevert: boolean;494  readonly asRevert: EvmCoreErrorExitRevert;495  readonly isFatal: boolean;496  readonly asFatal: EvmCoreErrorExitFatal;497  readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';498}499500/** @name EvmCoreErrorExitRevert */501export interface EvmCoreErrorExitRevert extends Enum {502  readonly isReverted: boolean;503  readonly type: 'Reverted';504}505506/** @name EvmCoreErrorExitSucceed */507export interface EvmCoreErrorExitSucceed extends Enum {508  readonly isStopped: boolean;509  readonly isReturned: boolean;510  readonly isSuicided: boolean;511  readonly type: 'Stopped' | 'Returned' | 'Suicided';512}513514/** @name FpRpcTransactionStatus */515export interface FpRpcTransactionStatus extends Struct {516  readonly transactionHash: H256;517  readonly transactionIndex: u32;518  readonly from: H160;519  readonly to: Option<H160>;520  readonly contractAddress: Option<H160>;521  readonly logs: Vec<EthereumLog>;522  readonly logsBloom: EthbloomBloom;523}524525/** @name FrameSupportDispatchDispatchClass */526export interface FrameSupportDispatchDispatchClass extends Enum {527  readonly isNormal: boolean;528  readonly isOperational: boolean;529  readonly isMandatory: boolean;530  readonly type: 'Normal' | 'Operational' | 'Mandatory';531}532533/** @name FrameSupportDispatchDispatchInfo */534export interface FrameSupportDispatchDispatchInfo extends Struct {535  readonly weight: SpWeightsWeightV2Weight;536  readonly class: FrameSupportDispatchDispatchClass;537  readonly paysFee: FrameSupportDispatchPays;538}539540/** @name FrameSupportDispatchPays */541export interface FrameSupportDispatchPays extends Enum {542  readonly isYes: boolean;543  readonly isNo: boolean;544  readonly type: 'Yes' | 'No';545}546547/** @name FrameSupportDispatchPerDispatchClassU32 */548export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {549  readonly normal: u32;550  readonly operational: u32;551  readonly mandatory: u32;552}553554/** @name FrameSupportDispatchPerDispatchClassWeight */555export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {556  readonly normal: SpWeightsWeightV2Weight;557  readonly operational: SpWeightsWeightV2Weight;558  readonly mandatory: SpWeightsWeightV2Weight;559}560561/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */562export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {563  readonly normal: FrameSystemLimitsWeightsPerClass;564  readonly operational: FrameSystemLimitsWeightsPerClass;565  readonly mandatory: FrameSystemLimitsWeightsPerClass;566}567568/** @name FrameSupportDispatchRawOrigin */569export interface FrameSupportDispatchRawOrigin extends Enum {570  readonly isRoot: boolean;571  readonly isSigned: boolean;572  readonly asSigned: AccountId32;573  readonly isNone: boolean;574  readonly type: 'Root' | 'Signed' | 'None';575}576577/** @name FrameSupportPalletId */578export interface FrameSupportPalletId extends U8aFixed {}579580/** @name FrameSupportPreimagesBounded */581export interface FrameSupportPreimagesBounded extends Enum {582  readonly isLegacy: boolean;583  readonly asLegacy: {584    readonly hash_: H256;585  } & Struct;586  readonly isInline: boolean;587  readonly asInline: Bytes;588  readonly isLookup: boolean;589  readonly asLookup: {590    readonly hash_: H256;591    readonly len: u32;592  } & Struct;593  readonly type: 'Legacy' | 'Inline' | 'Lookup';594}595596/** @name FrameSupportScheduleDispatchTime */597export interface FrameSupportScheduleDispatchTime extends Enum {598  readonly isAt: boolean;599  readonly asAt: u32;600  readonly isAfter: boolean;601  readonly asAfter: u32;602  readonly type: 'At' | 'After';603}604605/** @name FrameSupportTokensMiscBalanceStatus */606export interface FrameSupportTokensMiscBalanceStatus extends Enum {607  readonly isFree: boolean;608  readonly isReserved: boolean;609  readonly type: 'Free' | 'Reserved';610}611612/** @name FrameSystemAccountInfo */613export interface FrameSystemAccountInfo extends Struct {614  readonly nonce: u32;615  readonly consumers: u32;616  readonly providers: u32;617  readonly sufficients: u32;618  readonly data: PalletBalancesAccountData;619}620621/** @name FrameSystemCall */622export interface FrameSystemCall extends Enum {623  readonly isRemark: boolean;624  readonly asRemark: {625    readonly remark: Bytes;626  } & Struct;627  readonly isSetHeapPages: boolean;628  readonly asSetHeapPages: {629    readonly pages: u64;630  } & Struct;631  readonly isSetCode: boolean;632  readonly asSetCode: {633    readonly code: Bytes;634  } & Struct;635  readonly isSetCodeWithoutChecks: boolean;636  readonly asSetCodeWithoutChecks: {637    readonly code: Bytes;638  } & Struct;639  readonly isSetStorage: boolean;640  readonly asSetStorage: {641    readonly items: Vec<ITuple<[Bytes, Bytes]>>;642  } & Struct;643  readonly isKillStorage: boolean;644  readonly asKillStorage: {645    readonly keys_: Vec<Bytes>;646  } & Struct;647  readonly isKillPrefix: boolean;648  readonly asKillPrefix: {649    readonly prefix: Bytes;650    readonly subkeys: u32;651  } & Struct;652  readonly isRemarkWithEvent: boolean;653  readonly asRemarkWithEvent: {654    readonly remark: Bytes;655  } & Struct;656  readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';657}658659/** @name FrameSystemError */660export interface FrameSystemError extends Enum {661  readonly isInvalidSpecName: boolean;662  readonly isSpecVersionNeedsToIncrease: boolean;663  readonly isFailedToExtractRuntimeVersion: boolean;664  readonly isNonDefaultComposite: boolean;665  readonly isNonZeroRefCount: boolean;666  readonly isCallFiltered: boolean;667  readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';668}669670/** @name FrameSystemEvent */671export interface FrameSystemEvent extends Enum {672  readonly isExtrinsicSuccess: boolean;673  readonly asExtrinsicSuccess: {674    readonly dispatchInfo: FrameSupportDispatchDispatchInfo;675  } & Struct;676  readonly isExtrinsicFailed: boolean;677  readonly asExtrinsicFailed: {678    readonly dispatchError: SpRuntimeDispatchError;679    readonly dispatchInfo: FrameSupportDispatchDispatchInfo;680  } & Struct;681  readonly isCodeUpdated: boolean;682  readonly isNewAccount: boolean;683  readonly asNewAccount: {684    readonly account: AccountId32;685  } & Struct;686  readonly isKilledAccount: boolean;687  readonly asKilledAccount: {688    readonly account: AccountId32;689  } & Struct;690  readonly isRemarked: boolean;691  readonly asRemarked: {692    readonly sender: AccountId32;693    readonly hash_: H256;694  } & Struct;695  readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';696}697698/** @name FrameSystemEventRecord */699export interface FrameSystemEventRecord extends Struct {700  readonly phase: FrameSystemPhase;701  readonly event: Event;702  readonly topics: Vec<H256>;703}704705/** @name FrameSystemExtensionsCheckGenesis */706export interface FrameSystemExtensionsCheckGenesis extends Null {}707708/** @name FrameSystemExtensionsCheckNonce */709export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}710711/** @name FrameSystemExtensionsCheckSpecVersion */712export interface FrameSystemExtensionsCheckSpecVersion extends Null {}713714/** @name FrameSystemExtensionsCheckTxVersion */715export interface FrameSystemExtensionsCheckTxVersion extends Null {}716717/** @name FrameSystemExtensionsCheckWeight */718export interface FrameSystemExtensionsCheckWeight extends Null {}719720/** @name FrameSystemLastRuntimeUpgradeInfo */721export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {722  readonly specVersion: Compact<u32>;723  readonly specName: Text;724}725726/** @name FrameSystemLimitsBlockLength */727export interface FrameSystemLimitsBlockLength extends Struct {728  readonly max: FrameSupportDispatchPerDispatchClassU32;729}730731/** @name FrameSystemLimitsBlockWeights */732export interface FrameSystemLimitsBlockWeights extends Struct {733  readonly baseBlock: SpWeightsWeightV2Weight;734  readonly maxBlock: SpWeightsWeightV2Weight;735  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;736}737738/** @name FrameSystemLimitsWeightsPerClass */739export interface FrameSystemLimitsWeightsPerClass extends Struct {740  readonly baseExtrinsic: SpWeightsWeightV2Weight;741  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;742  readonly maxTotal: Option<SpWeightsWeightV2Weight>;743  readonly reserved: Option<SpWeightsWeightV2Weight>;744}745746/** @name FrameSystemPhase */747export interface FrameSystemPhase extends Enum {748  readonly isApplyExtrinsic: boolean;749  readonly asApplyExtrinsic: u32;750  readonly isFinalization: boolean;751  readonly isInitialization: boolean;752  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';753}754755/** @name OrmlTokensAccountData */756export interface OrmlTokensAccountData extends Struct {757  readonly free: u128;758  readonly reserved: u128;759  readonly frozen: u128;760}761762/** @name OrmlTokensBalanceLock */763export interface OrmlTokensBalanceLock extends Struct {764  readonly id: U8aFixed;765  readonly amount: u128;766}767768/** @name OrmlTokensModuleCall */769export interface OrmlTokensModuleCall extends Enum {770  readonly isTransfer: boolean;771  readonly asTransfer: {772    readonly dest: MultiAddress;773    readonly currencyId: PalletForeignAssetsAssetIds;774    readonly amount: Compact<u128>;775  } & Struct;776  readonly isTransferAll: boolean;777  readonly asTransferAll: {778    readonly dest: MultiAddress;779    readonly currencyId: PalletForeignAssetsAssetIds;780    readonly keepAlive: bool;781  } & Struct;782  readonly isTransferKeepAlive: boolean;783  readonly asTransferKeepAlive: {784    readonly dest: MultiAddress;785    readonly currencyId: PalletForeignAssetsAssetIds;786    readonly amount: Compact<u128>;787  } & Struct;788  readonly isForceTransfer: boolean;789  readonly asForceTransfer: {790    readonly source: MultiAddress;791    readonly dest: MultiAddress;792    readonly currencyId: PalletForeignAssetsAssetIds;793    readonly amount: Compact<u128>;794  } & Struct;795  readonly isSetBalance: boolean;796  readonly asSetBalance: {797    readonly who: MultiAddress;798    readonly currencyId: PalletForeignAssetsAssetIds;799    readonly newFree: Compact<u128>;800    readonly newReserved: Compact<u128>;801  } & Struct;802  readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';803}804805/** @name OrmlTokensModuleError */806export interface OrmlTokensModuleError extends Enum {807  readonly isBalanceTooLow: boolean;808  readonly isAmountIntoBalanceFailed: boolean;809  readonly isLiquidityRestrictions: boolean;810  readonly isMaxLocksExceeded: boolean;811  readonly isKeepAlive: boolean;812  readonly isExistentialDeposit: boolean;813  readonly isDeadAccount: boolean;814  readonly isTooManyReserves: boolean;815  readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';816}817818/** @name OrmlTokensModuleEvent */819export interface OrmlTokensModuleEvent extends Enum {820  readonly isEndowed: boolean;821  readonly asEndowed: {822    readonly currencyId: PalletForeignAssetsAssetIds;823    readonly who: AccountId32;824    readonly amount: u128;825  } & Struct;826  readonly isDustLost: boolean;827  readonly asDustLost: {828    readonly currencyId: PalletForeignAssetsAssetIds;829    readonly who: AccountId32;830    readonly amount: u128;831  } & Struct;832  readonly isTransfer: boolean;833  readonly asTransfer: {834    readonly currencyId: PalletForeignAssetsAssetIds;835    readonly from: AccountId32;836    readonly to: AccountId32;837    readonly amount: u128;838  } & Struct;839  readonly isReserved: boolean;840  readonly asReserved: {841    readonly currencyId: PalletForeignAssetsAssetIds;842    readonly who: AccountId32;843    readonly amount: u128;844  } & Struct;845  readonly isUnreserved: boolean;846  readonly asUnreserved: {847    readonly currencyId: PalletForeignAssetsAssetIds;848    readonly who: AccountId32;849    readonly amount: u128;850  } & Struct;851  readonly isReserveRepatriated: boolean;852  readonly asReserveRepatriated: {853    readonly currencyId: PalletForeignAssetsAssetIds;854    readonly from: AccountId32;855    readonly to: AccountId32;856    readonly amount: u128;857    readonly status: FrameSupportTokensMiscBalanceStatus;858  } & Struct;859  readonly isBalanceSet: boolean;860  readonly asBalanceSet: {861    readonly currencyId: PalletForeignAssetsAssetIds;862    readonly who: AccountId32;863    readonly free: u128;864    readonly reserved: u128;865  } & Struct;866  readonly isTotalIssuanceSet: boolean;867  readonly asTotalIssuanceSet: {868    readonly currencyId: PalletForeignAssetsAssetIds;869    readonly amount: u128;870  } & Struct;871  readonly isWithdrawn: boolean;872  readonly asWithdrawn: {873    readonly currencyId: PalletForeignAssetsAssetIds;874    readonly who: AccountId32;875    readonly amount: u128;876  } & Struct;877  readonly isSlashed: boolean;878  readonly asSlashed: {879    readonly currencyId: PalletForeignAssetsAssetIds;880    readonly who: AccountId32;881    readonly freeAmount: u128;882    readonly reservedAmount: u128;883  } & Struct;884  readonly isDeposited: boolean;885  readonly asDeposited: {886    readonly currencyId: PalletForeignAssetsAssetIds;887    readonly who: AccountId32;888    readonly amount: u128;889  } & Struct;890  readonly isLockSet: boolean;891  readonly asLockSet: {892    readonly lockId: U8aFixed;893    readonly currencyId: PalletForeignAssetsAssetIds;894    readonly who: AccountId32;895    readonly amount: u128;896  } & Struct;897  readonly isLockRemoved: boolean;898  readonly asLockRemoved: {899    readonly lockId: U8aFixed;900    readonly currencyId: PalletForeignAssetsAssetIds;901    readonly who: AccountId32;902  } & Struct;903  readonly isLocked: boolean;904  readonly asLocked: {905    readonly currencyId: PalletForeignAssetsAssetIds;906    readonly who: AccountId32;907    readonly amount: u128;908  } & Struct;909  readonly isUnlocked: boolean;910  readonly asUnlocked: {911    readonly currencyId: PalletForeignAssetsAssetIds;912    readonly who: AccountId32;913    readonly amount: u128;914  } & Struct;915  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';916}917918/** @name OrmlTokensReserveData */919export interface OrmlTokensReserveData extends Struct {920  readonly id: Null;921  readonly amount: u128;922}923924/** @name OrmlVestingModuleCall */925export interface OrmlVestingModuleCall extends Enum {926  readonly isClaim: boolean;927  readonly isVestedTransfer: boolean;928  readonly asVestedTransfer: {929    readonly dest: MultiAddress;930    readonly schedule: OrmlVestingVestingSchedule;931  } & Struct;932  readonly isUpdateVestingSchedules: boolean;933  readonly asUpdateVestingSchedules: {934    readonly who: MultiAddress;935    readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;936  } & Struct;937  readonly isClaimFor: boolean;938  readonly asClaimFor: {939    readonly dest: MultiAddress;940  } & Struct;941  readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';942}943944/** @name OrmlVestingModuleError */945export interface OrmlVestingModuleError extends Enum {946  readonly isZeroVestingPeriod: boolean;947  readonly isZeroVestingPeriodCount: boolean;948  readonly isInsufficientBalanceToLock: boolean;949  readonly isTooManyVestingSchedules: boolean;950  readonly isAmountLow: boolean;951  readonly isMaxVestingSchedulesExceeded: boolean;952  readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';953}954955/** @name OrmlVestingModuleEvent */956export interface OrmlVestingModuleEvent extends Enum {957  readonly isVestingScheduleAdded: boolean;958  readonly asVestingScheduleAdded: {959    readonly from: AccountId32;960    readonly to: AccountId32;961    readonly vestingSchedule: OrmlVestingVestingSchedule;962  } & Struct;963  readonly isClaimed: boolean;964  readonly asClaimed: {965    readonly who: AccountId32;966    readonly amount: u128;967  } & Struct;968  readonly isVestingSchedulesUpdated: boolean;969  readonly asVestingSchedulesUpdated: {970    readonly who: AccountId32;971  } & Struct;972  readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';973}974975/** @name OrmlVestingVestingSchedule */976export interface OrmlVestingVestingSchedule extends Struct {977  readonly start: u32;978  readonly period: u32;979  readonly periodCount: u32;980  readonly perPeriod: Compact<u128>;981}982983/** @name OrmlXtokensModuleCall */984export interface OrmlXtokensModuleCall extends Enum {985  readonly isTransfer: boolean;986  readonly asTransfer: {987    readonly currencyId: PalletForeignAssetsAssetIds;988    readonly amount: u128;989    readonly dest: XcmVersionedMultiLocation;990    readonly destWeightLimit: XcmV3WeightLimit;991  } & Struct;992  readonly isTransferMultiasset: boolean;993  readonly asTransferMultiasset: {994    readonly asset: XcmVersionedMultiAsset;995    readonly dest: XcmVersionedMultiLocation;996    readonly destWeightLimit: XcmV3WeightLimit;997  } & Struct;998  readonly isTransferWithFee: boolean;999  readonly asTransferWithFee: {1000    readonly currencyId: PalletForeignAssetsAssetIds;1001    readonly amount: u128;1002    readonly fee: u128;1003    readonly dest: XcmVersionedMultiLocation;1004    readonly destWeightLimit: XcmV3WeightLimit;1005  } & Struct;1006  readonly isTransferMultiassetWithFee: boolean;1007  readonly asTransferMultiassetWithFee: {1008    readonly asset: XcmVersionedMultiAsset;1009    readonly fee: XcmVersionedMultiAsset;1010    readonly dest: XcmVersionedMultiLocation;1011    readonly destWeightLimit: XcmV3WeightLimit;1012  } & Struct;1013  readonly isTransferMulticurrencies: boolean;1014  readonly asTransferMulticurrencies: {1015    readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1016    readonly feeItem: u32;1017    readonly dest: XcmVersionedMultiLocation;1018    readonly destWeightLimit: XcmV3WeightLimit;1019  } & Struct;1020  readonly isTransferMultiassets: boolean;1021  readonly asTransferMultiassets: {1022    readonly assets: XcmVersionedMultiAssets;1023    readonly feeItem: u32;1024    readonly dest: XcmVersionedMultiLocation;1025    readonly destWeightLimit: XcmV3WeightLimit;1026  } & Struct;1027  readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1028}10291030/** @name OrmlXtokensModuleError */1031export interface OrmlXtokensModuleError extends Enum {1032  readonly isAssetHasNoReserve: boolean;1033  readonly isNotCrossChainTransfer: boolean;1034  readonly isInvalidDest: boolean;1035  readonly isNotCrossChainTransferableCurrency: boolean;1036  readonly isUnweighableMessage: boolean;1037  readonly isXcmExecutionFailed: boolean;1038  readonly isCannotReanchor: boolean;1039  readonly isInvalidAncestry: boolean;1040  readonly isInvalidAsset: boolean;1041  readonly isDestinationNotInvertible: boolean;1042  readonly isBadVersion: boolean;1043  readonly isDistinctReserveForAssetAndFee: boolean;1044  readonly isZeroFee: boolean;1045  readonly isZeroAmount: boolean;1046  readonly isTooManyAssetsBeingSent: boolean;1047  readonly isAssetIndexNonExistent: boolean;1048  readonly isFeeNotEnough: boolean;1049  readonly isNotSupportedMultiLocation: boolean;1050  readonly isMinXcmFeeNotDefined: boolean;1051  readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';1052}10531054/** @name OrmlXtokensModuleEvent */1055export interface OrmlXtokensModuleEvent extends Enum {1056  readonly isTransferredMultiAssets: boolean;1057  readonly asTransferredMultiAssets: {1058    readonly sender: AccountId32;1059    readonly assets: XcmV3MultiassetMultiAssets;1060    readonly fee: XcmV3MultiAsset;1061    readonly dest: XcmV3MultiLocation;1062  } & Struct;1063  readonly type: 'TransferredMultiAssets';1064}10651066/** @name PalletAppPromotionCall */1067export interface PalletAppPromotionCall extends Enum {1068  readonly isSetAdminAddress: boolean;1069  readonly asSetAdminAddress: {1070    readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1071  } & Struct;1072  readonly isStake: boolean;1073  readonly asStake: {1074    readonly amount: u128;1075  } & Struct;1076  readonly isUnstakeAll: boolean;1077  readonly isSponsorCollection: boolean;1078  readonly asSponsorCollection: {1079    readonly collectionId: u32;1080  } & Struct;1081  readonly isStopSponsoringCollection: boolean;1082  readonly asStopSponsoringCollection: {1083    readonly collectionId: u32;1084  } & Struct;1085  readonly isSponsorContract: boolean;1086  readonly asSponsorContract: {1087    readonly contractId: H160;1088  } & Struct;1089  readonly isStopSponsoringContract: boolean;1090  readonly asStopSponsoringContract: {1091    readonly contractId: H160;1092  } & Struct;1093  readonly isPayoutStakers: boolean;1094  readonly asPayoutStakers: {1095    readonly stakersNumber: Option<u8>;1096  } & Struct;1097  readonly isUnstakePartial: boolean;1098  readonly asUnstakePartial: {1099    readonly amount: u128;1100  } & Struct;1101  readonly isForceUnstake: boolean;1102  readonly asForceUnstake: {1103    readonly pendingBlocks: Vec<u32>;1104  } & Struct;1105  readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial' | 'ForceUnstake';1106}11071108/** @name PalletAppPromotionError */1109export interface PalletAppPromotionError extends Enum {1110  readonly isAdminNotSet: boolean;1111  readonly isNoPermission: boolean;1112  readonly isNotSufficientFunds: boolean;1113  readonly isPendingForBlockOverflow: boolean;1114  readonly isSponsorNotSet: boolean;1115  readonly isInsufficientStakedBalance: boolean;1116  readonly isInconsistencyState: boolean;1117  readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'InsufficientStakedBalance' | 'InconsistencyState';1118}11191120/** @name PalletAppPromotionEvent */1121export interface PalletAppPromotionEvent extends Enum {1122  readonly isStakingRecalculation: boolean;1123  readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1124  readonly isStake: boolean;1125  readonly asStake: ITuple<[AccountId32, u128]>;1126  readonly isUnstake: boolean;1127  readonly asUnstake: ITuple<[AccountId32, u128]>;1128  readonly isSetAdmin: boolean;1129  readonly asSetAdmin: AccountId32;1130  readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1131}11321133/** @name PalletBalancesAccountData */1134export interface PalletBalancesAccountData extends Struct {1135  readonly free: u128;1136  readonly reserved: u128;1137  readonly frozen: u128;1138  readonly flags: u128;1139}11401141/** @name PalletBalancesBalanceLock */1142export interface PalletBalancesBalanceLock extends Struct {1143  readonly id: U8aFixed;1144  readonly amount: u128;1145  readonly reasons: PalletBalancesReasons;1146}11471148/** @name PalletBalancesCall */1149export interface PalletBalancesCall extends Enum {1150  readonly isTransferAllowDeath: boolean;1151  readonly asTransferAllowDeath: {1152    readonly dest: MultiAddress;1153    readonly value: Compact<u128>;1154  } & Struct;1155  readonly isSetBalanceDeprecated: boolean;1156  readonly asSetBalanceDeprecated: {1157    readonly who: MultiAddress;1158    readonly newFree: Compact<u128>;1159    readonly oldReserved: Compact<u128>;1160  } & Struct;1161  readonly isForceTransfer: boolean;1162  readonly asForceTransfer: {1163    readonly source: MultiAddress;1164    readonly dest: MultiAddress;1165    readonly value: Compact<u128>;1166  } & Struct;1167  readonly isTransferKeepAlive: boolean;1168  readonly asTransferKeepAlive: {1169    readonly dest: MultiAddress;1170    readonly value: Compact<u128>;1171  } & Struct;1172  readonly isTransferAll: boolean;1173  readonly asTransferAll: {1174    readonly dest: MultiAddress;1175    readonly keepAlive: bool;1176  } & Struct;1177  readonly isForceUnreserve: boolean;1178  readonly asForceUnreserve: {1179    readonly who: MultiAddress;1180    readonly amount: u128;1181  } & Struct;1182  readonly isUpgradeAccounts: boolean;1183  readonly asUpgradeAccounts: {1184    readonly who: Vec<AccountId32>;1185  } & Struct;1186  readonly isTransfer: boolean;1187  readonly asTransfer: {1188    readonly dest: MultiAddress;1189    readonly value: Compact<u128>;1190  } & Struct;1191  readonly isForceSetBalance: boolean;1192  readonly asForceSetBalance: {1193    readonly who: MultiAddress;1194    readonly newFree: Compact<u128>;1195  } & Struct;1196  readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';1197}11981199/** @name PalletBalancesError */1200export interface PalletBalancesError extends Enum {1201  readonly isVestingBalance: boolean;1202  readonly isLiquidityRestrictions: boolean;1203  readonly isInsufficientBalance: boolean;1204  readonly isExistentialDeposit: boolean;1205  readonly isExpendability: boolean;1206  readonly isExistingVestingSchedule: boolean;1207  readonly isDeadAccount: boolean;1208  readonly isTooManyReserves: boolean;1209  readonly isTooManyHolds: boolean;1210  readonly isTooManyFreezes: boolean;1211  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';1212}12131214/** @name PalletBalancesEvent */1215export interface PalletBalancesEvent extends Enum {1216  readonly isEndowed: boolean;1217  readonly asEndowed: {1218    readonly account: AccountId32;1219    readonly freeBalance: u128;1220  } & Struct;1221  readonly isDustLost: boolean;1222  readonly asDustLost: {1223    readonly account: AccountId32;1224    readonly amount: u128;1225  } & Struct;1226  readonly isTransfer: boolean;1227  readonly asTransfer: {1228    readonly from: AccountId32;1229    readonly to: AccountId32;1230    readonly amount: u128;1231  } & Struct;1232  readonly isBalanceSet: boolean;1233  readonly asBalanceSet: {1234    readonly who: AccountId32;1235    readonly free: u128;1236  } & Struct;1237  readonly isReserved: boolean;1238  readonly asReserved: {1239    readonly who: AccountId32;1240    readonly amount: u128;1241  } & Struct;1242  readonly isUnreserved: boolean;1243  readonly asUnreserved: {1244    readonly who: AccountId32;1245    readonly amount: u128;1246  } & Struct;1247  readonly isReserveRepatriated: boolean;1248  readonly asReserveRepatriated: {1249    readonly from: AccountId32;1250    readonly to: AccountId32;1251    readonly amount: u128;1252    readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1253  } & Struct;1254  readonly isDeposit: boolean;1255  readonly asDeposit: {1256    readonly who: AccountId32;1257    readonly amount: u128;1258  } & Struct;1259  readonly isWithdraw: boolean;1260  readonly asWithdraw: {1261    readonly who: AccountId32;1262    readonly amount: u128;1263  } & Struct;1264  readonly isSlashed: boolean;1265  readonly asSlashed: {1266    readonly who: AccountId32;1267    readonly amount: u128;1268  } & Struct;1269  readonly isMinted: boolean;1270  readonly asMinted: {1271    readonly who: AccountId32;1272    readonly amount: u128;1273  } & Struct;1274  readonly isBurned: boolean;1275  readonly asBurned: {1276    readonly who: AccountId32;1277    readonly amount: u128;1278  } & Struct;1279  readonly isSuspended: boolean;1280  readonly asSuspended: {1281    readonly who: AccountId32;1282    readonly amount: u128;1283  } & Struct;1284  readonly isRestored: boolean;1285  readonly asRestored: {1286    readonly who: AccountId32;1287    readonly amount: u128;1288  } & Struct;1289  readonly isUpgraded: boolean;1290  readonly asUpgraded: {1291    readonly who: AccountId32;1292  } & Struct;1293  readonly isIssued: boolean;1294  readonly asIssued: {1295    readonly amount: u128;1296  } & Struct;1297  readonly isRescinded: boolean;1298  readonly asRescinded: {1299    readonly amount: u128;1300  } & Struct;1301  readonly isLocked: boolean;1302  readonly asLocked: {1303    readonly who: AccountId32;1304    readonly amount: u128;1305  } & Struct;1306  readonly isUnlocked: boolean;1307  readonly asUnlocked: {1308    readonly who: AccountId32;1309    readonly amount: u128;1310  } & Struct;1311  readonly isFrozen: boolean;1312  readonly asFrozen: {1313    readonly who: AccountId32;1314    readonly amount: u128;1315  } & Struct;1316  readonly isThawed: boolean;1317  readonly asThawed: {1318    readonly who: AccountId32;1319    readonly amount: u128;1320  } & Struct;1321  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';1322}13231324/** @name PalletBalancesIdAmount */1325export interface PalletBalancesIdAmount extends Struct {1326  readonly id: U8aFixed;1327  readonly amount: u128;1328}13291330/** @name PalletBalancesReasons */1331export interface PalletBalancesReasons extends Enum {1332  readonly isFee: boolean;1333  readonly isMisc: boolean;1334  readonly isAll: boolean;1335  readonly type: 'Fee' | 'Misc' | 'All';1336}13371338/** @name PalletBalancesReserveData */1339export interface PalletBalancesReserveData extends Struct {1340  readonly id: U8aFixed;1341  readonly amount: u128;1342}13431344/** @name PalletCollatorSelectionCall */1345export interface PalletCollatorSelectionCall extends Enum {1346  readonly isAddInvulnerable: boolean;1347  readonly asAddInvulnerable: {1348    readonly new_: AccountId32;1349  } & Struct;1350  readonly isRemoveInvulnerable: boolean;1351  readonly asRemoveInvulnerable: {1352    readonly who: AccountId32;1353  } & Struct;1354  readonly isGetLicense: boolean;1355  readonly isOnboard: boolean;1356  readonly isOffboard: boolean;1357  readonly isReleaseLicense: boolean;1358  readonly isForceReleaseLicense: boolean;1359  readonly asForceReleaseLicense: {1360    readonly who: AccountId32;1361  } & Struct;1362  readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1363}13641365/** @name PalletCollatorSelectionError */1366export interface PalletCollatorSelectionError extends Enum {1367  readonly isTooManyCandidates: boolean;1368  readonly isUnknown: boolean;1369  readonly isPermission: boolean;1370  readonly isAlreadyHoldingLicense: boolean;1371  readonly isNoLicense: boolean;1372  readonly isAlreadyCandidate: boolean;1373  readonly isNotCandidate: boolean;1374  readonly isTooManyInvulnerables: boolean;1375  readonly isTooFewInvulnerables: boolean;1376  readonly isAlreadyInvulnerable: boolean;1377  readonly isNotInvulnerable: boolean;1378  readonly isNoAssociatedValidatorId: boolean;1379  readonly isValidatorNotRegistered: boolean;1380  readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1381}13821383/** @name PalletCollatorSelectionEvent */1384export interface PalletCollatorSelectionEvent extends Enum {1385  readonly isInvulnerableAdded: boolean;1386  readonly asInvulnerableAdded: {1387    readonly invulnerable: AccountId32;1388  } & Struct;1389  readonly isInvulnerableRemoved: boolean;1390  readonly asInvulnerableRemoved: {1391    readonly invulnerable: AccountId32;1392  } & Struct;1393  readonly isLicenseObtained: boolean;1394  readonly asLicenseObtained: {1395    readonly accountId: AccountId32;1396    readonly deposit: u128;1397  } & Struct;1398  readonly isLicenseReleased: boolean;1399  readonly asLicenseReleased: {1400    readonly accountId: AccountId32;1401    readonly depositReturned: u128;1402  } & Struct;1403  readonly isCandidateAdded: boolean;1404  readonly asCandidateAdded: {1405    readonly accountId: AccountId32;1406  } & Struct;1407  readonly isCandidateRemoved: boolean;1408  readonly asCandidateRemoved: {1409    readonly accountId: AccountId32;1410  } & Struct;1411  readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';1412}14131414/** @name PalletCollectiveCall */1415export interface PalletCollectiveCall extends Enum {1416  readonly isSetMembers: boolean;1417  readonly asSetMembers: {1418    readonly newMembers: Vec<AccountId32>;1419    readonly prime: Option<AccountId32>;1420    readonly oldCount: u32;1421  } & Struct;1422  readonly isExecute: boolean;1423  readonly asExecute: {1424    readonly proposal: Call;1425    readonly lengthBound: Compact<u32>;1426  } & Struct;1427  readonly isPropose: boolean;1428  readonly asPropose: {1429    readonly threshold: Compact<u32>;1430    readonly proposal: Call;1431    readonly lengthBound: Compact<u32>;1432  } & Struct;1433  readonly isVote: boolean;1434  readonly asVote: {1435    readonly proposal: H256;1436    readonly index: Compact<u32>;1437    readonly approve: bool;1438  } & Struct;1439  readonly isDisapproveProposal: boolean;1440  readonly asDisapproveProposal: {1441    readonly proposalHash: H256;1442  } & Struct;1443  readonly isClose: boolean;1444  readonly asClose: {1445    readonly proposalHash: H256;1446    readonly index: Compact<u32>;1447    readonly proposalWeightBound: SpWeightsWeightV2Weight;1448    readonly lengthBound: Compact<u32>;1449  } & Struct;1450  readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';1451}14521453/** @name PalletCollectiveError */1454export interface PalletCollectiveError extends Enum {1455  readonly isNotMember: boolean;1456  readonly isDuplicateProposal: boolean;1457  readonly isProposalMissing: boolean;1458  readonly isWrongIndex: boolean;1459  readonly isDuplicateVote: boolean;1460  readonly isAlreadyInitialized: boolean;1461  readonly isTooEarly: boolean;1462  readonly isTooManyProposals: boolean;1463  readonly isWrongProposalWeight: boolean;1464  readonly isWrongProposalLength: boolean;1465  readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength';1466}14671468/** @name PalletCollectiveEvent */1469export interface PalletCollectiveEvent extends Enum {1470  readonly isProposed: boolean;1471  readonly asProposed: {1472    readonly account: AccountId32;1473    readonly proposalIndex: u32;1474    readonly proposalHash: H256;1475    readonly threshold: u32;1476  } & Struct;1477  readonly isVoted: boolean;1478  readonly asVoted: {1479    readonly account: AccountId32;1480    readonly proposalHash: H256;1481    readonly voted: bool;1482    readonly yes: u32;1483    readonly no: u32;1484  } & Struct;1485  readonly isApproved: boolean;1486  readonly asApproved: {1487    readonly proposalHash: H256;1488  } & Struct;1489  readonly isDisapproved: boolean;1490  readonly asDisapproved: {1491    readonly proposalHash: H256;1492  } & Struct;1493  readonly isExecuted: boolean;1494  readonly asExecuted: {1495    readonly proposalHash: H256;1496    readonly result: Result<Null, SpRuntimeDispatchError>;1497  } & Struct;1498  readonly isMemberExecuted: boolean;1499  readonly asMemberExecuted: {1500    readonly proposalHash: H256;1501    readonly result: Result<Null, SpRuntimeDispatchError>;1502  } & Struct;1503  readonly isClosed: boolean;1504  readonly asClosed: {1505    readonly proposalHash: H256;1506    readonly yes: u32;1507    readonly no: u32;1508  } & Struct;1509  readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed';1510}15111512/** @name PalletCollectiveRawOrigin */1513export interface PalletCollectiveRawOrigin extends Enum {1514  readonly isMembers: boolean;1515  readonly asMembers: ITuple<[u32, u32]>;1516  readonly isMember: boolean;1517  readonly asMember: AccountId32;1518  readonly isPhantom: boolean;1519  readonly type: 'Members' | 'Member' | 'Phantom';1520}15211522/** @name PalletCollectiveVotes */1523export interface PalletCollectiveVotes extends Struct {1524  readonly index: u32;1525  readonly threshold: u32;1526  readonly ayes: Vec<AccountId32>;1527  readonly nays: Vec<AccountId32>;1528  readonly end: u32;1529}15301531/** @name PalletCommonError */1532export interface PalletCommonError extends Enum {1533  readonly isCollectionNotFound: boolean;1534  readonly isMustBeTokenOwner: boolean;1535  readonly isNoPermission: boolean;1536  readonly isCantDestroyNotEmptyCollection: boolean;1537  readonly isPublicMintingNotAllowed: boolean;1538  readonly isAddressNotInAllowlist: boolean;1539  readonly isCollectionNameLimitExceeded: boolean;1540  readonly isCollectionDescriptionLimitExceeded: boolean;1541  readonly isCollectionTokenPrefixLimitExceeded: boolean;1542  readonly isTotalCollectionsLimitExceeded: boolean;1543  readonly isCollectionAdminCountExceeded: boolean;1544  readonly isCollectionLimitBoundsExceeded: boolean;1545  readonly isOwnerPermissionsCantBeReverted: boolean;1546  readonly isTransferNotAllowed: boolean;1547  readonly isAccountTokenLimitExceeded: boolean;1548  readonly isCollectionTokenLimitExceeded: boolean;1549  readonly isMetadataFlagFrozen: boolean;1550  readonly isTokenNotFound: boolean;1551  readonly isTokenValueTooLow: boolean;1552  readonly isApprovedValueTooLow: boolean;1553  readonly isCantApproveMoreThanOwned: boolean;1554  readonly isAddressIsNotEthMirror: boolean;1555  readonly isAddressIsZero: boolean;1556  readonly isUnsupportedOperation: boolean;1557  readonly isNotSufficientFounds: boolean;1558  readonly isUserIsNotAllowedToNest: boolean;1559  readonly isSourceCollectionIsNotAllowedToNest: boolean;1560  readonly isCollectionFieldSizeExceeded: boolean;1561  readonly isNoSpaceForProperty: boolean;1562  readonly isPropertyLimitReached: boolean;1563  readonly isPropertyKeyIsTooLong: boolean;1564  readonly isInvalidCharacterInPropertyKey: boolean;1565  readonly isEmptyPropertyKey: boolean;1566  readonly isCollectionIsExternal: boolean;1567  readonly isCollectionIsInternal: boolean;1568  readonly isConfirmSponsorshipFail: boolean;1569  readonly isUserIsNotCollectionAdmin: boolean;1570  readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';1571}15721573/** @name PalletCommonEvent */1574export interface PalletCommonEvent extends Enum {1575  readonly isCollectionCreated: boolean;1576  readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1577  readonly isCollectionDestroyed: boolean;1578  readonly asCollectionDestroyed: u32;1579  readonly isItemCreated: boolean;1580  readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1581  readonly isItemDestroyed: boolean;1582  readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1583  readonly isTransfer: boolean;1584  readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1585  readonly isApproved: boolean;1586  readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1587  readonly isApprovedForAll: boolean;1588  readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1589  readonly isCollectionPropertySet: boolean;1590  readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1591  readonly isCollectionPropertyDeleted: boolean;1592  readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1593  readonly isTokenPropertySet: boolean;1594  readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1595  readonly isTokenPropertyDeleted: boolean;1596  readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1597  readonly isPropertyPermissionSet: boolean;1598  readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1599  readonly isAllowListAddressAdded: boolean;1600  readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1601  readonly isAllowListAddressRemoved: boolean;1602  readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1603  readonly isCollectionAdminAdded: boolean;1604  readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1605  readonly isCollectionAdminRemoved: boolean;1606  readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1607  readonly isCollectionLimitSet: boolean;1608  readonly asCollectionLimitSet: u32;1609  readonly isCollectionOwnerChanged: boolean;1610  readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1611  readonly isCollectionPermissionSet: boolean;1612  readonly asCollectionPermissionSet: u32;1613  readonly isCollectionSponsorSet: boolean;1614  readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1615  readonly isSponsorshipConfirmed: boolean;1616  readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1617  readonly isCollectionSponsorRemoved: boolean;1618  readonly asCollectionSponsorRemoved: u32;1619  readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1620}16211622/** @name PalletConfigurationAppPromotionConfiguration */1623export interface PalletConfigurationAppPromotionConfiguration extends Struct {1624  readonly recalculationInterval: Option<u32>;1625  readonly pendingInterval: Option<u32>;1626  readonly intervalIncome: Option<Perbill>;1627  readonly maxStakersPerCalculation: Option<u8>;1628}16291630/** @name PalletConfigurationCall */1631export interface PalletConfigurationCall extends Enum {1632  readonly isSetWeightToFeeCoefficientOverride: boolean;1633  readonly asSetWeightToFeeCoefficientOverride: {1634    readonly coeff: Option<u64>;1635  } & Struct;1636  readonly isSetMinGasPriceOverride: boolean;1637  readonly asSetMinGasPriceOverride: {1638    readonly coeff: Option<u64>;1639  } & Struct;1640  readonly isSetAppPromotionConfigurationOverride: boolean;1641  readonly asSetAppPromotionConfigurationOverride: {1642    readonly configuration: PalletConfigurationAppPromotionConfiguration;1643  } & Struct;1644  readonly isSetCollatorSelectionDesiredCollators: boolean;1645  readonly asSetCollatorSelectionDesiredCollators: {1646    readonly max: Option<u32>;1647  } & Struct;1648  readonly isSetCollatorSelectionLicenseBond: boolean;1649  readonly asSetCollatorSelectionLicenseBond: {1650    readonly amount: Option<u128>;1651  } & Struct;1652  readonly isSetCollatorSelectionKickThreshold: boolean;1653  readonly asSetCollatorSelectionKickThreshold: {1654    readonly threshold: Option<u32>;1655  } & Struct;1656  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';1657}16581659/** @name PalletConfigurationError */1660export interface PalletConfigurationError extends Enum {1661  readonly isInconsistentConfiguration: boolean;1662  readonly type: 'InconsistentConfiguration';1663}16641665/** @name PalletConfigurationEvent */1666export interface PalletConfigurationEvent extends Enum {1667  readonly isNewDesiredCollators: boolean;1668  readonly asNewDesiredCollators: {1669    readonly desiredCollators: Option<u32>;1670  } & Struct;1671  readonly isNewCollatorLicenseBond: boolean;1672  readonly asNewCollatorLicenseBond: {1673    readonly bondCost: Option<u128>;1674  } & Struct;1675  readonly isNewCollatorKickThreshold: boolean;1676  readonly asNewCollatorKickThreshold: {1677    readonly lengthInBlocks: Option<u32>;1678  } & Struct;1679  readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1680}16811682/** @name PalletDemocracyCall */1683export interface PalletDemocracyCall extends Enum {1684  readonly isPropose: boolean;1685  readonly asPropose: {1686    readonly proposal: FrameSupportPreimagesBounded;1687    readonly value: Compact<u128>;1688  } & Struct;1689  readonly isSecond: boolean;1690  readonly asSecond: {1691    readonly proposal: Compact<u32>;1692  } & Struct;1693  readonly isVote: boolean;1694  readonly asVote: {1695    readonly refIndex: Compact<u32>;1696    readonly vote: PalletDemocracyVoteAccountVote;1697  } & Struct;1698  readonly isEmergencyCancel: boolean;1699  readonly asEmergencyCancel: {1700    readonly refIndex: u32;1701  } & Struct;1702  readonly isExternalPropose: boolean;1703  readonly asExternalPropose: {1704    readonly proposal: FrameSupportPreimagesBounded;1705  } & Struct;1706  readonly isExternalProposeMajority: boolean;1707  readonly asExternalProposeMajority: {1708    readonly proposal: FrameSupportPreimagesBounded;1709  } & Struct;1710  readonly isExternalProposeDefault: boolean;1711  readonly asExternalProposeDefault: {1712    readonly proposal: FrameSupportPreimagesBounded;1713  } & Struct;1714  readonly isFastTrack: boolean;1715  readonly asFastTrack: {1716    readonly proposalHash: H256;1717    readonly votingPeriod: u32;1718    readonly delay: u32;1719  } & Struct;1720  readonly isVetoExternal: boolean;1721  readonly asVetoExternal: {1722    readonly proposalHash: H256;1723  } & Struct;1724  readonly isCancelReferendum: boolean;1725  readonly asCancelReferendum: {1726    readonly refIndex: Compact<u32>;1727  } & Struct;1728  readonly isDelegate: boolean;1729  readonly asDelegate: {1730    readonly to: MultiAddress;1731    readonly conviction: PalletDemocracyConviction;1732    readonly balance: u128;1733  } & Struct;1734  readonly isUndelegate: boolean;1735  readonly isClearPublicProposals: boolean;1736  readonly isUnlock: boolean;1737  readonly asUnlock: {1738    readonly target: MultiAddress;1739  } & Struct;1740  readonly isRemoveVote: boolean;1741  readonly asRemoveVote: {1742    readonly index: u32;1743  } & Struct;1744  readonly isRemoveOtherVote: boolean;1745  readonly asRemoveOtherVote: {1746    readonly target: MultiAddress;1747    readonly index: u32;1748  } & Struct;1749  readonly isBlacklist: boolean;1750  readonly asBlacklist: {1751    readonly proposalHash: H256;1752    readonly maybeRefIndex: Option<u32>;1753  } & Struct;1754  readonly isCancelProposal: boolean;1755  readonly asCancelProposal: {1756    readonly propIndex: Compact<u32>;1757  } & Struct;1758  readonly isSetMetadata: boolean;1759  readonly asSetMetadata: {1760    readonly owner: PalletDemocracyMetadataOwner;1761    readonly maybeHash: Option<H256>;1762  } & Struct;1763  readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';1764}17651766/** @name PalletDemocracyConviction */1767export interface PalletDemocracyConviction extends Enum {1768  readonly isNone: boolean;1769  readonly isLocked1x: boolean;1770  readonly isLocked2x: boolean;1771  readonly isLocked3x: boolean;1772  readonly isLocked4x: boolean;1773  readonly isLocked5x: boolean;1774  readonly isLocked6x: boolean;1775  readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';1776}17771778/** @name PalletDemocracyDelegations */1779export interface PalletDemocracyDelegations extends Struct {1780  readonly votes: u128;1781  readonly capital: u128;1782}17831784/** @name PalletDemocracyError */1785export interface PalletDemocracyError extends Enum {1786  readonly isValueLow: boolean;1787  readonly isProposalMissing: boolean;1788  readonly isAlreadyCanceled: boolean;1789  readonly isDuplicateProposal: boolean;1790  readonly isProposalBlacklisted: boolean;1791  readonly isNotSimpleMajority: boolean;1792  readonly isInvalidHash: boolean;1793  readonly isNoProposal: boolean;1794  readonly isAlreadyVetoed: boolean;1795  readonly isReferendumInvalid: boolean;1796  readonly isNoneWaiting: boolean;1797  readonly isNotVoter: boolean;1798  readonly isNoPermission: boolean;1799  readonly isAlreadyDelegating: boolean;1800  readonly isInsufficientFunds: boolean;1801  readonly isNotDelegating: boolean;1802  readonly isVotesExist: boolean;1803  readonly isInstantNotAllowed: boolean;1804  readonly isNonsense: boolean;1805  readonly isWrongUpperBound: boolean;1806  readonly isMaxVotesReached: boolean;1807  readonly isTooMany: boolean;1808  readonly isVotingPeriodLow: boolean;1809  readonly isPreimageNotExist: boolean;1810  readonly type: 'ValueLow' | 'ProposalMissing' | 'AlreadyCanceled' | 'DuplicateProposal' | 'ProposalBlacklisted' | 'NotSimpleMajority' | 'InvalidHash' | 'NoProposal' | 'AlreadyVetoed' | 'ReferendumInvalid' | 'NoneWaiting' | 'NotVoter' | 'NoPermission' | 'AlreadyDelegating' | 'InsufficientFunds' | 'NotDelegating' | 'VotesExist' | 'InstantNotAllowed' | 'Nonsense' | 'WrongUpperBound' | 'MaxVotesReached' | 'TooMany' | 'VotingPeriodLow' | 'PreimageNotExist';1811}18121813/** @name PalletDemocracyEvent */1814export interface PalletDemocracyEvent extends Enum {1815  readonly isProposed: boolean;1816  readonly asProposed: {1817    readonly proposalIndex: u32;1818    readonly deposit: u128;1819  } & Struct;1820  readonly isTabled: boolean;1821  readonly asTabled: {1822    readonly proposalIndex: u32;1823    readonly deposit: u128;1824  } & Struct;1825  readonly isExternalTabled: boolean;1826  readonly isStarted: boolean;1827  readonly asStarted: {1828    readonly refIndex: u32;1829    readonly threshold: PalletDemocracyVoteThreshold;1830  } & Struct;1831  readonly isPassed: boolean;1832  readonly asPassed: {1833    readonly refIndex: u32;1834  } & Struct;1835  readonly isNotPassed: boolean;1836  readonly asNotPassed: {1837    readonly refIndex: u32;1838  } & Struct;1839  readonly isCancelled: boolean;1840  readonly asCancelled: {1841    readonly refIndex: u32;1842  } & Struct;1843  readonly isDelegated: boolean;1844  readonly asDelegated: {1845    readonly who: AccountId32;1846    readonly target: AccountId32;1847  } & Struct;1848  readonly isUndelegated: boolean;1849  readonly asUndelegated: {1850    readonly account: AccountId32;1851  } & Struct;1852  readonly isVetoed: boolean;1853  readonly asVetoed: {1854    readonly who: AccountId32;1855    readonly proposalHash: H256;1856    readonly until: u32;1857  } & Struct;1858  readonly isBlacklisted: boolean;1859  readonly asBlacklisted: {1860    readonly proposalHash: H256;1861  } & Struct;1862  readonly isVoted: boolean;1863  readonly asVoted: {1864    readonly voter: AccountId32;1865    readonly refIndex: u32;1866    readonly vote: PalletDemocracyVoteAccountVote;1867  } & Struct;1868  readonly isSeconded: boolean;1869  readonly asSeconded: {1870    readonly seconder: AccountId32;1871    readonly propIndex: u32;1872  } & Struct;1873  readonly isProposalCanceled: boolean;1874  readonly asProposalCanceled: {1875    readonly propIndex: u32;1876  } & Struct;1877  readonly isMetadataSet: boolean;1878  readonly asMetadataSet: {1879    readonly owner: PalletDemocracyMetadataOwner;1880    readonly hash_: H256;1881  } & Struct;1882  readonly isMetadataCleared: boolean;1883  readonly asMetadataCleared: {1884    readonly owner: PalletDemocracyMetadataOwner;1885    readonly hash_: H256;1886  } & Struct;1887  readonly isMetadataTransferred: boolean;1888  readonly asMetadataTransferred: {1889    readonly prevOwner: PalletDemocracyMetadataOwner;1890    readonly owner: PalletDemocracyMetadataOwner;1891    readonly hash_: H256;1892  } & Struct;1893  readonly type: 'Proposed' | 'Tabled' | 'ExternalTabled' | 'Started' | 'Passed' | 'NotPassed' | 'Cancelled' | 'Delegated' | 'Undelegated' | 'Vetoed' | 'Blacklisted' | 'Voted' | 'Seconded' | 'ProposalCanceled' | 'MetadataSet' | 'MetadataCleared' | 'MetadataTransferred';1894}18951896/** @name PalletDemocracyMetadataOwner */1897export interface PalletDemocracyMetadataOwner extends Enum {1898  readonly isExternal: boolean;1899  readonly isProposal: boolean;1900  readonly asProposal: u32;1901  readonly isReferendum: boolean;1902  readonly asReferendum: u32;1903  readonly type: 'External' | 'Proposal' | 'Referendum';1904}19051906/** @name PalletDemocracyReferendumInfo */1907export interface PalletDemocracyReferendumInfo extends Enum {1908  readonly isOngoing: boolean;1909  readonly asOngoing: PalletDemocracyReferendumStatus;1910  readonly isFinished: boolean;1911  readonly asFinished: {1912    readonly approved: bool;1913    readonly end: u32;1914  } & Struct;1915  readonly type: 'Ongoing' | 'Finished';1916}19171918/** @name PalletDemocracyReferendumStatus */1919export interface PalletDemocracyReferendumStatus extends Struct {1920  readonly end: u32;1921  readonly proposal: FrameSupportPreimagesBounded;1922  readonly threshold: PalletDemocracyVoteThreshold;1923  readonly delay: u32;1924  readonly tally: PalletDemocracyTally;1925}19261927/** @name PalletDemocracyTally */1928export interface PalletDemocracyTally extends Struct {1929  readonly ayes: u128;1930  readonly nays: u128;1931  readonly turnout: u128;1932}19331934/** @name PalletDemocracyVoteAccountVote */1935export interface PalletDemocracyVoteAccountVote extends Enum {1936  readonly isStandard: boolean;1937  readonly asStandard: {1938    readonly vote: Vote;1939    readonly balance: u128;1940  } & Struct;1941  readonly isSplit: boolean;1942  readonly asSplit: {1943    readonly aye: u128;1944    readonly nay: u128;1945  } & Struct;1946  readonly type: 'Standard' | 'Split';1947}19481949/** @name PalletDemocracyVotePriorLock */1950export interface PalletDemocracyVotePriorLock extends ITuple<[u32, u128]> {}19511952/** @name PalletDemocracyVoteThreshold */1953export interface PalletDemocracyVoteThreshold extends Enum {1954  readonly isSuperMajorityApprove: boolean;1955  readonly isSuperMajorityAgainst: boolean;1956  readonly isSimpleMajority: boolean;1957  readonly type: 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority';1958}19591960/** @name PalletDemocracyVoteVoting */1961export interface PalletDemocracyVoteVoting extends Enum {1962  readonly isDirect: boolean;1963  readonly asDirect: {1964    readonly votes: Vec<ITuple<[u32, PalletDemocracyVoteAccountVote]>>;1965    readonly delegations: PalletDemocracyDelegations;1966    readonly prior: PalletDemocracyVotePriorLock;1967  } & Struct;1968  readonly isDelegating: boolean;1969  readonly asDelegating: {1970    readonly balance: u128;1971    readonly target: AccountId32;1972    readonly conviction: PalletDemocracyConviction;1973    readonly delegations: PalletDemocracyDelegations;1974    readonly prior: PalletDemocracyVotePriorLock;1975  } & Struct;1976  readonly type: 'Direct' | 'Delegating';1977}19781979/** @name PalletEthereumCall */1980export interface PalletEthereumCall extends Enum {1981  readonly isTransact: boolean;1982  readonly asTransact: {1983    readonly transaction: EthereumTransactionTransactionV2;1984  } & Struct;1985  readonly type: 'Transact';1986}19871988/** @name PalletEthereumError */1989export interface PalletEthereumError extends Enum {1990  readonly isInvalidSignature: boolean;1991  readonly isPreLogExists: boolean;1992  readonly type: 'InvalidSignature' | 'PreLogExists';1993}19941995/** @name PalletEthereumEvent */1996export interface PalletEthereumEvent extends Enum {1997  readonly isExecuted: boolean;1998  readonly asExecuted: {1999    readonly from: H160;2000    readonly to: H160;2001    readonly transactionHash: H256;2002    readonly exitReason: EvmCoreErrorExitReason;2003    readonly extraData: Bytes;2004  } & Struct;2005  readonly type: 'Executed';2006}20072008/** @name PalletEthereumFakeTransactionFinalizer */2009export interface PalletEthereumFakeTransactionFinalizer extends Null {}20102011/** @name PalletEthereumRawOrigin */2012export interface PalletEthereumRawOrigin extends Enum {2013  readonly isEthereumTransaction: boolean;2014  readonly asEthereumTransaction: H160;2015  readonly type: 'EthereumTransaction';2016}20172018/** @name PalletEvmAccountBasicCrossAccountIdRepr */2019export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {2020  readonly isSubstrate: boolean;2021  readonly asSubstrate: AccountId32;2022  readonly isEthereum: boolean;2023  readonly asEthereum: H160;2024  readonly type: 'Substrate' | 'Ethereum';2025}20262027/** @name PalletEvmCall */2028export interface PalletEvmCall extends Enum {2029  readonly isWithdraw: boolean;2030  readonly asWithdraw: {2031    readonly address: H160;2032    readonly value: u128;2033  } & Struct;2034  readonly isCall: boolean;2035  readonly asCall: {2036    readonly source: H160;2037    readonly target: H160;2038    readonly input: Bytes;2039    readonly value: U256;2040    readonly gasLimit: u64;2041    readonly maxFeePerGas: U256;2042    readonly maxPriorityFeePerGas: Option<U256>;2043    readonly nonce: Option<U256>;2044    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2045  } & Struct;2046  readonly isCreate: boolean;2047  readonly asCreate: {2048    readonly source: H160;2049    readonly init: Bytes;2050    readonly value: U256;2051    readonly gasLimit: u64;2052    readonly maxFeePerGas: U256;2053    readonly maxPriorityFeePerGas: Option<U256>;2054    readonly nonce: Option<U256>;2055    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2056  } & Struct;2057  readonly isCreate2: boolean;2058  readonly asCreate2: {2059    readonly source: H160;2060    readonly init: Bytes;2061    readonly salt: H256;2062    readonly value: U256;2063    readonly gasLimit: u64;2064    readonly maxFeePerGas: U256;2065    readonly maxPriorityFeePerGas: Option<U256>;2066    readonly nonce: Option<U256>;2067    readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2068  } & Struct;2069  readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2070}20712072/** @name PalletEvmCodeMetadata */2073export interface PalletEvmCodeMetadata extends Struct {2074  readonly size_: u64;2075  readonly hash_: H256;2076}20772078/** @name PalletEvmCoderSubstrateError */2079export interface PalletEvmCoderSubstrateError extends Enum {2080  readonly isOutOfGas: boolean;2081  readonly isOutOfFund: boolean;2082  readonly type: 'OutOfGas' | 'OutOfFund';2083}20842085/** @name PalletEvmContractHelpersCall */2086export interface PalletEvmContractHelpersCall extends Enum {2087  readonly isMigrateFromSelfSponsoring: boolean;2088  readonly asMigrateFromSelfSponsoring: {2089    readonly addresses: Vec<H160>;2090  } & Struct;2091  readonly type: 'MigrateFromSelfSponsoring';2092}20932094/** @name PalletEvmContractHelpersError */2095export interface PalletEvmContractHelpersError extends Enum {2096  readonly isNoPermission: boolean;2097  readonly isNoPendingSponsor: boolean;2098  readonly isTooManyMethodsHaveSponsoredLimit: boolean;2099  readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';2100}21012102/** @name PalletEvmContractHelpersEvent */2103export interface PalletEvmContractHelpersEvent extends Enum {2104  readonly isContractSponsorSet: boolean;2105  readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;2106  readonly isContractSponsorshipConfirmed: boolean;2107  readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;2108  readonly isContractSponsorRemoved: boolean;2109  readonly asContractSponsorRemoved: H160;2110  readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';2111}21122113/** @name PalletEvmContractHelpersSponsoringModeT */2114export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2115  readonly isDisabled: boolean;2116  readonly isAllowlisted: boolean;2117  readonly isGenerous: boolean;2118  readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2119}21202121/** @name PalletEvmError */2122export interface PalletEvmError extends Enum {2123  readonly isBalanceLow: boolean;2124  readonly isFeeOverflow: boolean;2125  readonly isPaymentOverflow: boolean;2126  readonly isWithdrawFailed: boolean;2127  readonly isGasPriceTooLow: boolean;2128  readonly isInvalidNonce: boolean;2129  readonly isGasLimitTooLow: boolean;2130  readonly isGasLimitTooHigh: boolean;2131  readonly isUndefined: boolean;2132  readonly isReentrancy: boolean;2133  readonly isTransactionMustComeFromEOA: boolean;2134  readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';2135}21362137/** @name PalletEvmEvent */2138export interface PalletEvmEvent extends Enum {2139  readonly isLog: boolean;2140  readonly asLog: {2141    readonly log: EthereumLog;2142  } & Struct;2143  readonly isCreated: boolean;2144  readonly asCreated: {2145    readonly address: H160;2146  } & Struct;2147  readonly isCreatedFailed: boolean;2148  readonly asCreatedFailed: {2149    readonly address: H160;2150  } & Struct;2151  readonly isExecuted: boolean;2152  readonly asExecuted: {2153    readonly address: H160;2154  } & Struct;2155  readonly isExecutedFailed: boolean;2156  readonly asExecutedFailed: {2157    readonly address: H160;2158  } & Struct;2159  readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';2160}21612162/** @name PalletEvmMigrationCall */2163export interface PalletEvmMigrationCall extends Enum {2164  readonly isBegin: boolean;2165  readonly asBegin: {2166    readonly address: H160;2167  } & Struct;2168  readonly isSetData: boolean;2169  readonly asSetData: {2170    readonly address: H160;2171    readonly data: Vec<ITuple<[H256, H256]>>;2172  } & Struct;2173  readonly isFinish: boolean;2174  readonly asFinish: {2175    readonly address: H160;2176    readonly code: Bytes;2177  } & Struct;2178  readonly isInsertEthLogs: boolean;2179  readonly asInsertEthLogs: {2180    readonly logs: Vec<EthereumLog>;2181  } & Struct;2182  readonly isInsertEvents: boolean;2183  readonly asInsertEvents: {2184    readonly events: Vec<Bytes>;2185  } & Struct;2186  readonly isRemoveRmrkData: boolean;2187  readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';2188}21892190/** @name PalletEvmMigrationError */2191export interface PalletEvmMigrationError extends Enum {2192  readonly isAccountNotEmpty: boolean;2193  readonly isAccountIsNotMigrating: boolean;2194  readonly isBadEvent: boolean;2195  readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';2196}21972198/** @name PalletEvmMigrationEvent */2199export interface PalletEvmMigrationEvent extends Enum {2200  readonly isTestEvent: boolean;2201  readonly type: 'TestEvent';2202}22032204/** @name PalletForeignAssetsAssetIds */2205export interface PalletForeignAssetsAssetIds extends Enum {2206  readonly isForeignAssetId: boolean;2207  readonly asForeignAssetId: u32;2208  readonly isNativeAssetId: boolean;2209  readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;2210  readonly type: 'ForeignAssetId' | 'NativeAssetId';2211}22122213/** @name PalletForeignAssetsModuleAssetMetadata */2214export interface PalletForeignAssetsModuleAssetMetadata extends Struct {2215  readonly name: Bytes;2216  readonly symbol: Bytes;2217  readonly decimals: u8;2218  readonly minimalBalance: u128;2219}22202221/** @name PalletForeignAssetsModuleCall */2222export interface PalletForeignAssetsModuleCall extends Enum {2223  readonly isRegisterForeignAsset: boolean;2224  readonly asRegisterForeignAsset: {2225    readonly owner: AccountId32;2226    readonly location: XcmVersionedMultiLocation;2227    readonly metadata: PalletForeignAssetsModuleAssetMetadata;2228  } & Struct;2229  readonly isUpdateForeignAsset: boolean;2230  readonly asUpdateForeignAsset: {2231    readonly foreignAssetId: u32;2232    readonly location: XcmVersionedMultiLocation;2233    readonly metadata: PalletForeignAssetsModuleAssetMetadata;2234  } & Struct;2235  readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2236}22372238/** @name PalletForeignAssetsModuleError */2239export interface PalletForeignAssetsModuleError extends Enum {2240  readonly isBadLocation: boolean;2241  readonly isMultiLocationExisted: boolean;2242  readonly isAssetIdNotExists: boolean;2243  readonly isAssetIdExisted: boolean;2244  readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';2245}22462247/** @name PalletForeignAssetsModuleEvent */2248export interface PalletForeignAssetsModuleEvent extends Enum {2249  readonly isForeignAssetRegistered: boolean;2250  readonly asForeignAssetRegistered: {2251    readonly assetId: u32;2252    readonly assetAddress: XcmV3MultiLocation;2253    readonly metadata: PalletForeignAssetsModuleAssetMetadata;2254  } & Struct;2255  readonly isForeignAssetUpdated: boolean;2256  readonly asForeignAssetUpdated: {2257    readonly assetId: u32;2258    readonly assetAddress: XcmV3MultiLocation;2259    readonly metadata: PalletForeignAssetsModuleAssetMetadata;2260  } & Struct;2261  readonly isAssetRegistered: boolean;2262  readonly asAssetRegistered: {2263    readonly assetId: PalletForeignAssetsAssetIds;2264    readonly metadata: PalletForeignAssetsModuleAssetMetadata;2265  } & Struct;2266  readonly isAssetUpdated: boolean;2267  readonly asAssetUpdated: {2268    readonly assetId: PalletForeignAssetsAssetIds;2269    readonly metadata: PalletForeignAssetsModuleAssetMetadata;2270  } & Struct;2271  readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';2272}22732274/** @name PalletForeignAssetsNativeCurrency */2275export interface PalletForeignAssetsNativeCurrency extends Enum {2276  readonly isHere: boolean;2277  readonly isParent: boolean;2278  readonly type: 'Here' | 'Parent';2279}22802281/** @name PalletFungibleError */2282export interface PalletFungibleError extends Enum {2283  readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2284  readonly isFungibleItemsHaveNoId: boolean;2285  readonly isFungibleItemsDontHaveData: boolean;2286  readonly isFungibleDisallowsNesting: boolean;2287  readonly isSettingPropertiesNotAllowed: boolean;2288  readonly isSettingAllowanceForAllNotAllowed: boolean;2289  readonly isFungibleTokensAreAlwaysValid: boolean;2290  readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';2291}22922293/** @name PalletGovOriginsOrigin */2294export interface PalletGovOriginsOrigin extends Enum {2295  readonly isFellowshipProposition: boolean;2296  readonly type: 'FellowshipProposition';2297}22982299/** @name PalletIdentityBitFlags */2300export interface PalletIdentityBitFlags extends Struct {2301  readonly _bitLength: 64;2302  readonly Display: 1;2303  readonly Legal: 2;2304  readonly Web: 4;2305  readonly Riot: 8;2306  readonly Email: 16;2307  readonly PgpFingerprint: 32;2308  readonly Image: 64;2309  readonly Twitter: 128;2310}23112312/** @name PalletIdentityCall */2313export interface PalletIdentityCall extends Enum {2314  readonly isAddRegistrar: boolean;2315  readonly asAddRegistrar: {2316    readonly account: MultiAddress;2317  } & Struct;2318  readonly isSetIdentity: boolean;2319  readonly asSetIdentity: {2320    readonly info: PalletIdentityIdentityInfo;2321  } & Struct;2322  readonly isSetSubs: boolean;2323  readonly asSetSubs: {2324    readonly subs: Vec<ITuple<[AccountId32, Data]>>;2325  } & Struct;2326  readonly isClearIdentity: boolean;2327  readonly isRequestJudgement: boolean;2328  readonly asRequestJudgement: {2329    readonly regIndex: Compact<u32>;2330    readonly maxFee: Compact<u128>;2331  } & Struct;2332  readonly isCancelRequest: boolean;2333  readonly asCancelRequest: {2334    readonly regIndex: u32;2335  } & Struct;2336  readonly isSetFee: boolean;2337  readonly asSetFee: {2338    readonly index: Compact<u32>;2339    readonly fee: Compact<u128>;2340  } & Struct;2341  readonly isSetAccountId: boolean;2342  readonly asSetAccountId: {2343    readonly index: Compact<u32>;2344    readonly new_: MultiAddress;2345  } & Struct;2346  readonly isSetFields: boolean;2347  readonly asSetFields: {2348    readonly index: Compact<u32>;2349    readonly fields: PalletIdentityBitFlags;2350  } & Struct;2351  readonly isProvideJudgement: boolean;2352  readonly asProvideJudgement: {2353    readonly regIndex: Compact<u32>;2354    readonly target: MultiAddress;2355    readonly judgement: PalletIdentityJudgement;2356    readonly identity: H256;2357  } & Struct;2358  readonly isKillIdentity: boolean;2359  readonly asKillIdentity: {2360    readonly target: MultiAddress;2361  } & Struct;2362  readonly isAddSub: boolean;2363  readonly asAddSub: {2364    readonly sub: MultiAddress;2365    readonly data: Data;2366  } & Struct;2367  readonly isRenameSub: boolean;2368  readonly asRenameSub: {2369    readonly sub: MultiAddress;2370    readonly data: Data;2371  } & Struct;2372  readonly isRemoveSub: boolean;2373  readonly asRemoveSub: {2374    readonly sub: MultiAddress;2375  } & Struct;2376  readonly isQuitSub: boolean;2377  readonly isForceInsertIdentities: boolean;2378  readonly asForceInsertIdentities: {2379    readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;2380  } & Struct;2381  readonly isForceRemoveIdentities: boolean;2382  readonly asForceRemoveIdentities: {2383    readonly identities: Vec<AccountId32>;2384  } & Struct;2385  readonly isForceSetSubs: boolean;2386  readonly asForceSetSubs: {2387    readonly subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>;2388  } & Struct;2389  readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';2390}23912392/** @name PalletIdentityError */2393export interface PalletIdentityError extends Enum {2394  readonly isTooManySubAccounts: boolean;2395  readonly isNotFound: boolean;2396  readonly isNotNamed: boolean;2397  readonly isEmptyIndex: boolean;2398  readonly isFeeChanged: boolean;2399  readonly isNoIdentity: boolean;2400  readonly isStickyJudgement: boolean;2401  readonly isJudgementGiven: boolean;2402  readonly isInvalidJudgement: boolean;2403  readonly isInvalidIndex: boolean;2404  readonly isInvalidTarget: boolean;2405  readonly isTooManyFields: boolean;2406  readonly isTooManyRegistrars: boolean;2407  readonly isAlreadyClaimed: boolean;2408  readonly isNotSub: boolean;2409  readonly isNotOwned: boolean;2410  readonly isJudgementForDifferentIdentity: boolean;2411  readonly isJudgementPaymentFailed: boolean;2412  readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';2413}24142415/** @name PalletIdentityEvent */2416export interface PalletIdentityEvent extends Enum {2417  readonly isIdentitySet: boolean;2418  readonly asIdentitySet: {2419    readonly who: AccountId32;2420  } & Struct;2421  readonly isIdentityCleared: boolean;2422  readonly asIdentityCleared: {2423    readonly who: AccountId32;2424    readonly deposit: u128;2425  } & Struct;2426  readonly isIdentityKilled: boolean;2427  readonly asIdentityKilled: {2428    readonly who: AccountId32;2429    readonly deposit: u128;2430  } & Struct;2431  readonly isIdentitiesInserted: boolean;2432  readonly asIdentitiesInserted: {2433    readonly amount: u32;2434  } & Struct;2435  readonly isIdentitiesRemoved: boolean;2436  readonly asIdentitiesRemoved: {2437    readonly amount: u32;2438  } & Struct;2439  readonly isJudgementRequested: boolean;2440  readonly asJudgementRequested: {2441    readonly who: AccountId32;2442    readonly registrarIndex: u32;2443  } & Struct;2444  readonly isJudgementUnrequested: boolean;2445  readonly asJudgementUnrequested: {2446    readonly who: AccountId32;2447    readonly registrarIndex: u32;2448  } & Struct;2449  readonly isJudgementGiven: boolean;2450  readonly asJudgementGiven: {2451    readonly target: AccountId32;2452    readonly registrarIndex: u32;2453  } & Struct;2454  readonly isRegistrarAdded: boolean;2455  readonly asRegistrarAdded: {2456    readonly registrarIndex: u32;2457  } & Struct;2458  readonly isSubIdentityAdded: boolean;2459  readonly asSubIdentityAdded: {2460    readonly sub: AccountId32;2461    readonly main: AccountId32;2462    readonly deposit: u128;2463  } & Struct;2464  readonly isSubIdentityRemoved: boolean;2465  readonly asSubIdentityRemoved: {2466    readonly sub: AccountId32;2467    readonly main: AccountId32;2468    readonly deposit: u128;2469  } & Struct;2470  readonly isSubIdentityRevoked: boolean;2471  readonly asSubIdentityRevoked: {2472    readonly sub: AccountId32;2473    readonly main: AccountId32;2474    readonly deposit: u128;2475  } & Struct;2476  readonly isSubIdentitiesInserted: boolean;2477  readonly asSubIdentitiesInserted: {2478    readonly amount: u32;2479  } & Struct;2480  readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';2481}24822483/** @name PalletIdentityIdentityField */2484export interface PalletIdentityIdentityField extends Enum {2485  readonly isDisplay: boolean;2486  readonly isLegal: boolean;2487  readonly isWeb: boolean;2488  readonly isRiot: boolean;2489  readonly isEmail: boolean;2490  readonly isPgpFingerprint: boolean;2491  readonly isImage: boolean;2492  readonly isTwitter: boolean;2493  readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2494}24952496/** @name PalletIdentityIdentityInfo */2497export interface PalletIdentityIdentityInfo extends Struct {2498  readonly additional: Vec<ITuple<[Data, Data]>>;2499  readonly display: Data;2500  readonly legal: Data;2501  readonly web: Data;2502  readonly riot: Data;2503  readonly email: Data;2504  readonly pgpFingerprint: Option<U8aFixed>;2505  readonly image: Data;2506  readonly twitter: Data;2507}25082509/** @name PalletIdentityJudgement */2510export interface PalletIdentityJudgement extends Enum {2511  readonly isUnknown: boolean;2512  readonly isFeePaid: boolean;2513  readonly asFeePaid: u128;2514  readonly isReasonable: boolean;2515  readonly isKnownGood: boolean;2516  readonly isOutOfDate: boolean;2517  readonly isLowQuality: boolean;2518  readonly isErroneous: boolean;2519  readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';2520}25212522/** @name PalletIdentityRegistrarInfo */2523export interface PalletIdentityRegistrarInfo extends Struct {2524  readonly account: AccountId32;2525  readonly fee: u128;2526  readonly fields: PalletIdentityBitFlags;2527}25282529/** @name PalletIdentityRegistration */2530export interface PalletIdentityRegistration extends Struct {2531  readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;2532  readonly deposit: u128;2533  readonly info: PalletIdentityIdentityInfo;2534}25352536/** @name PalletInflationCall */2537export interface PalletInflationCall extends Enum {2538  readonly isStartInflation: boolean;2539  readonly asStartInflation: {2540    readonly inflationStartRelayBlock: u32;2541  } & Struct;2542  readonly type: 'StartInflation';2543}25442545/** @name PalletMaintenanceCall */2546export interface PalletMaintenanceCall extends Enum {2547  readonly isEnable: boolean;2548  readonly isDisable: boolean;2549  readonly isExecutePreimage: boolean;2550  readonly asExecutePreimage: {2551    readonly hash_: H256;2552    readonly weightBound: SpWeightsWeightV2Weight;2553  } & Struct;2554  readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';2555}25562557/** @name PalletMaintenanceError */2558export interface PalletMaintenanceError extends Null {}25592560/** @name PalletMaintenanceEvent */2561export interface PalletMaintenanceEvent extends Enum {2562  readonly isMaintenanceEnabled: boolean;2563  readonly isMaintenanceDisabled: boolean;2564  readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';2565}25662567/** @name PalletMembershipCall */2568export interface PalletMembershipCall extends Enum {2569  readonly isAddMember: boolean;2570  readonly asAddMember: {2571    readonly who: MultiAddress;2572  } & Struct;2573  readonly isRemoveMember: boolean;2574  readonly asRemoveMember: {2575    readonly who: MultiAddress;2576  } & Struct;2577  readonly isSwapMember: boolean;2578  readonly asSwapMember: {2579    readonly remove: MultiAddress;2580    readonly add: MultiAddress;2581  } & Struct;2582  readonly isResetMembers: boolean;2583  readonly asResetMembers: {2584    readonly members: Vec<AccountId32>;2585  } & Struct;2586  readonly isChangeKey: boolean;2587  readonly asChangeKey: {2588    readonly new_: MultiAddress;2589  } & Struct;2590  readonly isSetPrime: boolean;2591  readonly asSetPrime: {2592    readonly who: MultiAddress;2593  } & Struct;2594  readonly isClearPrime: boolean;2595  readonly type: 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'ChangeKey' | 'SetPrime' | 'ClearPrime';2596}25972598/** @name PalletMembershipError */2599export interface PalletMembershipError extends Enum {2600  readonly isAlreadyMember: boolean;2601  readonly isNotMember: boolean;2602  readonly isTooManyMembers: boolean;2603  readonly type: 'AlreadyMember' | 'NotMember' | 'TooManyMembers';2604}26052606/** @name PalletMembershipEvent */2607export interface PalletMembershipEvent extends Enum {2608  readonly isMemberAdded: boolean;2609  readonly isMemberRemoved: boolean;2610  readonly isMembersSwapped: boolean;2611  readonly isMembersReset: boolean;2612  readonly isKeyChanged: boolean;2613  readonly isDummy: boolean;2614  readonly type: 'MemberAdded' | 'MemberRemoved' | 'MembersSwapped' | 'MembersReset' | 'KeyChanged' | 'Dummy';2615}26162617/** @name PalletNonfungibleError */2618export interface PalletNonfungibleError extends Enum {2619  readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2620  readonly isNonfungibleItemsHaveNoAmount: boolean;2621  readonly isCantBurnNftWithChildren: boolean;2622  readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';2623}26242625/** @name PalletNonfungibleItemData */2626export interface PalletNonfungibleItemData extends Struct {2627  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2628}26292630/** @name PalletPreimageCall */2631export interface PalletPreimageCall extends Enum {2632  readonly isNotePreimage: boolean;2633  readonly asNotePreimage: {2634    readonly bytes: Bytes;2635  } & Struct;2636  readonly isUnnotePreimage: boolean;2637  readonly asUnnotePreimage: {2638    readonly hash_: H256;2639  } & Struct;2640  readonly isRequestPreimage: boolean;2641  readonly asRequestPreimage: {2642    readonly hash_: H256;2643  } & Struct;2644  readonly isUnrequestPreimage: boolean;2645  readonly asUnrequestPreimage: {2646    readonly hash_: H256;2647  } & Struct;2648  readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2649}26502651/** @name PalletPreimageError */2652export interface PalletPreimageError extends Enum {2653  readonly isTooBig: boolean;2654  readonly isAlreadyNoted: boolean;2655  readonly isNotAuthorized: boolean;2656  readonly isNotNoted: boolean;2657  readonly isRequested: boolean;2658  readonly isNotRequested: boolean;2659  readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';2660}26612662/** @name PalletPreimageEvent */2663export interface PalletPreimageEvent extends Enum {2664  readonly isNoted: boolean;2665  readonly asNoted: {2666    readonly hash_: H256;2667  } & Struct;2668  readonly isRequested: boolean;2669  readonly asRequested: {2670    readonly hash_: H256;2671  } & Struct;2672  readonly isCleared: boolean;2673  readonly asCleared: {2674    readonly hash_: H256;2675  } & Struct;2676  readonly type: 'Noted' | 'Requested' | 'Cleared';2677}26782679/** @name PalletPreimageRequestStatus */2680export interface PalletPreimageRequestStatus extends Enum {2681  readonly isUnrequested: boolean;2682  readonly asUnrequested: {2683    readonly deposit: ITuple<[AccountId32, u128]>;2684    readonly len: u32;2685  } & Struct;2686  readonly isRequested: boolean;2687  readonly asRequested: {2688    readonly deposit: Option<ITuple<[AccountId32, u128]>>;2689    readonly count: u32;2690    readonly len: Option<u32>;2691  } & Struct;2692  readonly type: 'Unrequested' | 'Requested';2693}26942695/** @name PalletRankedCollectiveCall */2696export interface PalletRankedCollectiveCall extends Enum {2697  readonly isAddMember: boolean;2698  readonly asAddMember: {2699    readonly who: MultiAddress;2700  } & Struct;2701  readonly isPromoteMember: boolean;2702  readonly asPromoteMember: {2703    readonly who: MultiAddress;2704  } & Struct;2705  readonly isDemoteMember: boolean;2706  readonly asDemoteMember: {2707    readonly who: MultiAddress;2708  } & Struct;2709  readonly isRemoveMember: boolean;2710  readonly asRemoveMember: {2711    readonly who: MultiAddress;2712    readonly minRank: u16;2713  } & Struct;2714  readonly isVote: boolean;2715  readonly asVote: {2716    readonly poll: u32;2717    readonly aye: bool;2718  } & Struct;2719  readonly isCleanupPoll: boolean;2720  readonly asCleanupPoll: {2721    readonly pollIndex: u32;2722    readonly max: u32;2723  } & Struct;2724  readonly type: 'AddMember' | 'PromoteMember' | 'DemoteMember' | 'RemoveMember' | 'Vote' | 'CleanupPoll';2725}27262727/** @name PalletRankedCollectiveError */2728export interface PalletRankedCollectiveError extends Enum {2729  readonly isAlreadyMember: boolean;2730  readonly isNotMember: boolean;2731  readonly isNotPolling: boolean;2732  readonly isOngoing: boolean;2733  readonly isNoneRemaining: boolean;2734  readonly isCorruption: boolean;2735  readonly isRankTooLow: boolean;2736  readonly isInvalidWitness: boolean;2737  readonly isNoPermission: boolean;2738  readonly type: 'AlreadyMember' | 'NotMember' | 'NotPolling' | 'Ongoing' | 'NoneRemaining' | 'Corruption' | 'RankTooLow' | 'InvalidWitness' | 'NoPermission';2739}27402741/** @name PalletRankedCollectiveEvent */2742export interface PalletRankedCollectiveEvent extends Enum {2743  readonly isMemberAdded: boolean;2744  readonly asMemberAdded: {2745    readonly who: AccountId32;2746  } & Struct;2747  readonly isRankChanged: boolean;2748  readonly asRankChanged: {2749    readonly who: AccountId32;2750    readonly rank: u16;2751  } & Struct;2752  readonly isMemberRemoved: boolean;2753  readonly asMemberRemoved: {2754    readonly who: AccountId32;2755    readonly rank: u16;2756  } & Struct;2757  readonly isVoted: boolean;2758  readonly asVoted: {2759    readonly who: AccountId32;2760    readonly poll: u32;2761    readonly vote: PalletRankedCollectiveVoteRecord;2762    readonly tally: PalletRankedCollectiveTally;2763  } & Struct;2764  readonly type: 'MemberAdded' | 'RankChanged' | 'MemberRemoved' | 'Voted';2765}27662767/** @name PalletRankedCollectiveMemberRecord */2768export interface PalletRankedCollectiveMemberRecord extends Struct {2769  readonly rank: u16;2770}27712772/** @name PalletRankedCollectiveTally */2773export interface PalletRankedCollectiveTally extends Struct {2774  readonly bareAyes: u32;2775  readonly ayes: u32;2776  readonly nays: u32;2777}27782779/** @name PalletRankedCollectiveVoteRecord */2780export interface PalletRankedCollectiveVoteRecord extends Enum {2781  readonly isAye: boolean;2782  readonly asAye: u32;2783  readonly isNay: boolean;2784  readonly asNay: u32;2785  readonly type: 'Aye' | 'Nay';2786}27872788/** @name PalletReferendaCall */2789export interface PalletReferendaCall extends Enum {2790  readonly isSubmit: boolean;2791  readonly asSubmit: {2792    readonly proposalOrigin: QuartzRuntimeOriginCaller;2793    readonly proposal: FrameSupportPreimagesBounded;2794    readonly enactmentMoment: FrameSupportScheduleDispatchTime;2795  } & Struct;2796  readonly isPlaceDecisionDeposit: boolean;2797  readonly asPlaceDecisionDeposit: {2798    readonly index: u32;2799  } & Struct;2800  readonly isRefundDecisionDeposit: boolean;2801  readonly asRefundDecisionDeposit: {2802    readonly index: u32;2803  } & Struct;2804  readonly isCancel: boolean;2805  readonly asCancel: {2806    readonly index: u32;2807  } & Struct;2808  readonly isKill: boolean;2809  readonly asKill: {2810    readonly index: u32;2811  } & Struct;2812  readonly isNudgeReferendum: boolean;2813  readonly asNudgeReferendum: {2814    readonly index: u32;2815  } & Struct;2816  readonly isOneFewerDeciding: boolean;2817  readonly asOneFewerDeciding: {2818    readonly track: u16;2819  } & Struct;2820  readonly isRefundSubmissionDeposit: boolean;2821  readonly asRefundSubmissionDeposit: {2822    readonly index: u32;2823  } & Struct;2824  readonly isSetMetadata: boolean;2825  readonly asSetMetadata: {2826    readonly index: u32;2827    readonly maybeHash: Option<H256>;2828  } & Struct;2829  readonly type: 'Submit' | 'PlaceDecisionDeposit' | 'RefundDecisionDeposit' | 'Cancel' | 'Kill' | 'NudgeReferendum' | 'OneFewerDeciding' | 'RefundSubmissionDeposit' | 'SetMetadata';2830}28312832/** @name PalletReferendaCurve */2833export interface PalletReferendaCurve extends Enum {2834  readonly isLinearDecreasing: boolean;2835  readonly asLinearDecreasing: {2836    readonly length: Perbill;2837    readonly floor: Perbill;2838    readonly ceil: Perbill;2839  } & Struct;2840  readonly isSteppedDecreasing: boolean;2841  readonly asSteppedDecreasing: {2842    readonly begin: Perbill;2843    readonly end: Perbill;2844    readonly step: Perbill;2845    readonly period: Perbill;2846  } & Struct;2847  readonly isReciprocal: boolean;2848  readonly asReciprocal: {2849    readonly factor: i64;2850    readonly xOffset: i64;2851    readonly yOffset: i64;2852  } & Struct;2853  readonly type: 'LinearDecreasing' | 'SteppedDecreasing' | 'Reciprocal';2854}28552856/** @name PalletReferendaDecidingStatus */2857export interface PalletReferendaDecidingStatus extends Struct {2858  readonly since: u32;2859  readonly confirming: Option<u32>;2860}28612862/** @name PalletReferendaDeposit */2863export interface PalletReferendaDeposit extends Struct {2864  readonly who: AccountId32;2865  readonly amount: u128;2866}28672868/** @name PalletReferendaError */2869export interface PalletReferendaError extends Enum {2870  readonly isNotOngoing: boolean;2871  readonly isHasDeposit: boolean;2872  readonly isBadTrack: boolean;2873  readonly isFull: boolean;2874  readonly isQueueEmpty: boolean;2875  readonly isBadReferendum: boolean;2876  readonly isNothingToDo: boolean;2877  readonly isNoTrack: boolean;2878  readonly isUnfinished: boolean;2879  readonly isNoPermission: boolean;2880  readonly isNoDeposit: boolean;2881  readonly isBadStatus: boolean;2882  readonly isPreimageNotExist: boolean;2883  readonly type: 'NotOngoing' | 'HasDeposit' | 'BadTrack' | 'Full' | 'QueueEmpty' | 'BadReferendum' | 'NothingToDo' | 'NoTrack' | 'Unfinished' | 'NoPermission' | 'NoDeposit' | 'BadStatus' | 'PreimageNotExist';2884}28852886/** @name PalletReferendaEvent */2887export interface PalletReferendaEvent extends Enum {2888  readonly isSubmitted: boolean;2889  readonly asSubmitted: {2890    readonly index: u32;2891    readonly track: u16;2892    readonly proposal: FrameSupportPreimagesBounded;2893  } & Struct;2894  readonly isDecisionDepositPlaced: boolean;2895  readonly asDecisionDepositPlaced: {2896    readonly index: u32;2897    readonly who: AccountId32;2898    readonly amount: u128;2899  } & Struct;2900  readonly isDecisionDepositRefunded: boolean;2901  readonly asDecisionDepositRefunded: {2902    readonly index: u32;2903    readonly who: AccountId32;2904    readonly amount: u128;2905  } & Struct;2906  readonly isDepositSlashed: boolean;2907  readonly asDepositSlashed: {2908    readonly who: AccountId32;2909    readonly amount: u128;2910  } & Struct;2911  readonly isDecisionStarted: boolean;2912  readonly asDecisionStarted: {2913    readonly index: u32;2914    readonly track: u16;2915    readonly proposal: FrameSupportPreimagesBounded;2916    readonly tally: PalletRankedCollectiveTally;2917  } & Struct;2918  readonly isConfirmStarted: boolean;2919  readonly asConfirmStarted: {2920    readonly index: u32;2921  } & Struct;2922  readonly isConfirmAborted: boolean;2923  readonly asConfirmAborted: {2924    readonly index: u32;2925  } & Struct;2926  readonly isConfirmed: boolean;2927  readonly asConfirmed: {2928    readonly index: u32;2929    readonly tally: PalletRankedCollectiveTally;2930  } & Struct;2931  readonly isApproved: boolean;2932  readonly asApproved: {2933    readonly index: u32;2934  } & Struct;2935  readonly isRejected: boolean;2936  readonly asRejected: {2937    readonly index: u32;2938    readonly tally: PalletRankedCollectiveTally;2939  } & Struct;2940  readonly isTimedOut: boolean;2941  readonly asTimedOut: {2942    readonly index: u32;2943    readonly tally: PalletRankedCollectiveTally;2944  } & Struct;2945  readonly isCancelled: boolean;2946  readonly asCancelled: {2947    readonly index: u32;2948    readonly tally: PalletRankedCollectiveTally;2949  } & Struct;2950  readonly isKilled: boolean;2951  readonly asKilled: {2952    readonly index: u32;2953    readonly tally: PalletRankedCollectiveTally;2954  } & Struct;2955  readonly isSubmissionDepositRefunded: boolean;2956  readonly asSubmissionDepositRefunded: {2957    readonly index: u32;2958    readonly who: AccountId32;2959    readonly amount: u128;2960  } & Struct;2961  readonly isMetadataSet: boolean;2962  readonly asMetadataSet: {2963    readonly index: u32;2964    readonly hash_: H256;2965  } & Struct;2966  readonly isMetadataCleared: boolean;2967  readonly asMetadataCleared: {2968    readonly index: u32;2969    readonly hash_: H256;2970  } & Struct;2971  readonly type: 'Submitted' | 'DecisionDepositPlaced' | 'DecisionDepositRefunded' | 'DepositSlashed' | 'DecisionStarted' | 'ConfirmStarted' | 'ConfirmAborted' | 'Confirmed' | 'Approved' | 'Rejected' | 'TimedOut' | 'Cancelled' | 'Killed' | 'SubmissionDepositRefunded' | 'MetadataSet' | 'MetadataCleared';2972}29732974/** @name PalletReferendaReferendumInfo */2975export interface PalletReferendaReferendumInfo extends Enum {2976  readonly isOngoing: boolean;2977  readonly asOngoing: PalletReferendaReferendumStatus;2978  readonly isApproved: boolean;2979  readonly asApproved: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;2980  readonly isRejected: boolean;2981  readonly asRejected: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;2982  readonly isCancelled: boolean;2983  readonly asCancelled: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;2984  readonly isTimedOut: boolean;2985  readonly asTimedOut: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;2986  readonly isKilled: boolean;2987  readonly asKilled: u32;2988  readonly type: 'Ongoing' | 'Approved' | 'Rejected' | 'Cancelled' | 'TimedOut' | 'Killed';2989}29902991/** @name PalletReferendaReferendumStatus */2992export interface PalletReferendaReferendumStatus extends Struct {2993  readonly track: u16;2994  readonly origin: QuartzRuntimeOriginCaller;2995  readonly proposal: FrameSupportPreimagesBounded;2996  readonly enactment: FrameSupportScheduleDispatchTime;2997  readonly submitted: u32;2998  readonly submissionDeposit: PalletReferendaDeposit;2999  readonly decisionDeposit: Option<PalletReferendaDeposit>;3000  readonly deciding: Option<PalletReferendaDecidingStatus>;3001  readonly tally: PalletRankedCollectiveTally;3002  readonly inQueue: bool;3003  readonly alarm: Option<ITuple<[u32, ITuple<[u32, u32]>]>>;3004}30053006/** @name PalletReferendaTrackInfo */3007export interface PalletReferendaTrackInfo extends Struct {3008  readonly name: Text;3009  readonly maxDeciding: u32;3010  readonly decisionDeposit: u128;3011  readonly preparePeriod: u32;3012  readonly decisionPeriod: u32;3013  readonly confirmPeriod: u32;3014  readonly minEnactmentPeriod: u32;3015  readonly minApproval: PalletReferendaCurve;3016  readonly minSupport: PalletReferendaCurve;3017}30183019/** @name PalletRefungibleError */3020export interface PalletRefungibleError extends Enum {3021  readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3022  readonly isWrongRefungiblePieces: boolean;3023  readonly isRepartitionWhileNotOwningAllPieces: boolean;3024  readonly isRefungibleDisallowsNesting: boolean;3025  readonly isSettingPropertiesNotAllowed: boolean;3026  readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3027}30283029/** @name PalletSchedulerCall */3030export interface PalletSchedulerCall extends Enum {3031  readonly isSchedule: boolean;3032  readonly asSchedule: {3033    readonly when: u32;3034    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3035    readonly priority: u8;3036    readonly call: Call;3037  } & Struct;3038  readonly isCancel: boolean;3039  readonly asCancel: {3040    readonly when: u32;3041    readonly index: u32;3042  } & Struct;3043  readonly isScheduleNamed: boolean;3044  readonly asScheduleNamed: {3045    readonly id: U8aFixed;3046    readonly when: u32;3047    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3048    readonly priority: u8;3049    readonly call: Call;3050  } & Struct;3051  readonly isCancelNamed: boolean;3052  readonly asCancelNamed: {3053    readonly id: U8aFixed;3054  } & Struct;3055  readonly isScheduleAfter: boolean;3056  readonly asScheduleAfter: {3057    readonly after: u32;3058    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3059    readonly priority: u8;3060    readonly call: Call;3061  } & Struct;3062  readonly isScheduleNamedAfter: boolean;3063  readonly asScheduleNamedAfter: {3064    readonly id: U8aFixed;3065    readonly after: u32;3066    readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3067    readonly priority: u8;3068    readonly call: Call;3069  } & Struct;3070  readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';3071}30723073/** @name PalletSchedulerError */3074export interface PalletSchedulerError extends Enum {3075  readonly isFailedToSchedule: boolean;3076  readonly isNotFound: boolean;3077  readonly isTargetBlockNumberInPast: boolean;3078  readonly isRescheduleNoChange: boolean;3079  readonly isNamed: boolean;3080  readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';3081}30823083/** @name PalletSchedulerEvent */3084export interface PalletSchedulerEvent extends Enum {3085  readonly isScheduled: boolean;3086  readonly asScheduled: {3087    readonly when: u32;3088    readonly index: u32;3089  } & Struct;3090  readonly isCanceled: boolean;3091  readonly asCanceled: {3092    readonly when: u32;3093    readonly index: u32;3094  } & Struct;3095  readonly isDispatched: boolean;3096  readonly asDispatched: {3097    readonly task: ITuple<[u32, u32]>;3098    readonly id: Option<U8aFixed>;3099    readonly result: Result<Null, SpRuntimeDispatchError>;3100  } & Struct;3101  readonly isCallUnavailable: boolean;3102  readonly asCallUnavailable: {3103    readonly task: ITuple<[u32, u32]>;3104    readonly id: Option<U8aFixed>;3105  } & Struct;3106  readonly isPeriodicFailed: boolean;3107  readonly asPeriodicFailed: {3108    readonly task: ITuple<[u32, u32]>;3109    readonly id: Option<U8aFixed>;3110  } & Struct;3111  readonly isPermanentlyOverweight: boolean;3112  readonly asPermanentlyOverweight: {3113    readonly task: ITuple<[u32, u32]>;3114    readonly id: Option<U8aFixed>;3115  } & Struct;3116  readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';3117}31183119/** @name PalletSchedulerScheduled */3120export interface PalletSchedulerScheduled extends Struct {3121  readonly maybeId: Option<U8aFixed>;3122  readonly priority: u8;3123  readonly call: FrameSupportPreimagesBounded;3124  readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3125  readonly origin: QuartzRuntimeOriginCaller;3126}31273128/** @name PalletSessionCall */3129export interface PalletSessionCall extends Enum {3130  readonly isSetKeys: boolean;3131  readonly asSetKeys: {3132    readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;3133    readonly proof: Bytes;3134  } & Struct;3135  readonly isPurgeKeys: boolean;3136  readonly type: 'SetKeys' | 'PurgeKeys';3137}31383139/** @name PalletSessionError */3140export interface PalletSessionError extends Enum {3141  readonly isInvalidProof: boolean;3142  readonly isNoAssociatedValidatorId: boolean;3143  readonly isDuplicatedKey: boolean;3144  readonly isNoKeys: boolean;3145  readonly isNoAccount: boolean;3146  readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';3147}31483149/** @name PalletSessionEvent */3150export interface PalletSessionEvent extends Enum {3151  readonly isNewSession: boolean;3152  readonly asNewSession: {3153    readonly sessionIndex: u32;3154  } & Struct;3155  readonly type: 'NewSession';3156}31573158/** @name PalletStateTrieMigrationCall */3159export interface PalletStateTrieMigrationCall extends Enum {3160  readonly isControlAutoMigration: boolean;3161  readonly asControlAutoMigration: {3162    readonly maybeConfig: Option<PalletStateTrieMigrationMigrationLimits>;3163  } & Struct;3164  readonly isContinueMigrate: boolean;3165  readonly asContinueMigrate: {3166    readonly limits: PalletStateTrieMigrationMigrationLimits;3167    readonly realSizeUpper: u32;3168    readonly witnessTask: PalletStateTrieMigrationMigrationTask;3169  } & Struct;3170  readonly isMigrateCustomTop: boolean;3171  readonly asMigrateCustomTop: {3172    readonly keys_: Vec<Bytes>;3173    readonly witnessSize: u32;3174  } & Struct;3175  readonly isMigrateCustomChild: boolean;3176  readonly asMigrateCustomChild: {3177    readonly root: Bytes;3178    readonly childKeys: Vec<Bytes>;3179    readonly totalSize: u32;3180  } & Struct;3181  readonly isSetSignedMaxLimits: boolean;3182  readonly asSetSignedMaxLimits: {3183    readonly limits: PalletStateTrieMigrationMigrationLimits;3184  } & Struct;3185  readonly isForceSetProgress: boolean;3186  readonly asForceSetProgress: {3187    readonly progressTop: PalletStateTrieMigrationProgress;3188    readonly progressChild: PalletStateTrieMigrationProgress;3189  } & Struct;3190  readonly type: 'ControlAutoMigration' | 'ContinueMigrate' | 'MigrateCustomTop' | 'MigrateCustomChild' | 'SetSignedMaxLimits' | 'ForceSetProgress';3191}31923193/** @name PalletStateTrieMigrationError */3194export interface PalletStateTrieMigrationError extends Enum {3195  readonly isMaxSignedLimits: boolean;3196  readonly isKeyTooLong: boolean;3197  readonly isNotEnoughFunds: boolean;3198  readonly isBadWitness: boolean;3199  readonly isSignedMigrationNotAllowed: boolean;3200  readonly isBadChildRoot: boolean;3201  readonly type: 'MaxSignedLimits' | 'KeyTooLong' | 'NotEnoughFunds' | 'BadWitness' | 'SignedMigrationNotAllowed' | 'BadChildRoot';3202}32033204/** @name PalletStateTrieMigrationEvent */3205export interface PalletStateTrieMigrationEvent extends Enum {3206  readonly isMigrated: boolean;3207  readonly asMigrated: {3208    readonly top: u32;3209    readonly child: u32;3210    readonly compute: PalletStateTrieMigrationMigrationCompute;3211  } & Struct;3212  readonly isSlashed: boolean;3213  readonly asSlashed: {3214    readonly who: AccountId32;3215    readonly amount: u128;3216  } & Struct;3217  readonly isAutoMigrationFinished: boolean;3218  readonly isHalted: boolean;3219  readonly asHalted: {3220    readonly error: PalletStateTrieMigrationError;3221  } & Struct;3222  readonly type: 'Migrated' | 'Slashed' | 'AutoMigrationFinished' | 'Halted';3223}32243225/** @name PalletStateTrieMigrationMigrationCompute */3226export interface PalletStateTrieMigrationMigrationCompute extends Enum {3227  readonly isSigned: boolean;3228  readonly isAuto: boolean;3229  readonly type: 'Signed' | 'Auto';3230}32313232/** @name PalletStateTrieMigrationMigrationLimits */3233export interface PalletStateTrieMigrationMigrationLimits extends Struct {3234  readonly size_: u32;3235  readonly item: u32;3236}32373238/** @name PalletStateTrieMigrationMigrationTask */3239export interface PalletStateTrieMigrationMigrationTask extends Struct {3240  readonly progressTop: PalletStateTrieMigrationProgress;3241  readonly progressChild: PalletStateTrieMigrationProgress;3242  readonly size_: u32;3243  readonly topItems: u32;3244  readonly childItems: u32;3245}32463247/** @name PalletStateTrieMigrationProgress */3248export interface PalletStateTrieMigrationProgress extends Enum {3249  readonly isToStart: boolean;3250  readonly isLastKey: boolean;3251  readonly asLastKey: Bytes;3252  readonly isComplete: boolean;3253  readonly type: 'ToStart' | 'LastKey' | 'Complete';3254}32553256/** @name PalletStructureCall */3257export interface PalletStructureCall extends Null {}32583259/** @name PalletStructureError */3260export interface PalletStructureError extends Enum {3261  readonly isOuroborosDetected: boolean;3262  readonly isDepthLimit: boolean;3263  readonly isBreadthLimit: boolean;3264  readonly isTokenNotFound: boolean;3265  readonly isCantNestTokenUnderCollection: boolean;3266  readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';3267}32683269/** @name PalletStructureEvent */3270export interface PalletStructureEvent extends Enum {3271  readonly isExecuted: boolean;3272  readonly asExecuted: Result<Null, SpRuntimeDispatchError>;3273  readonly type: 'Executed';3274}32753276/** @name PalletSudoCall */3277export interface PalletSudoCall extends Enum {3278  readonly isSudo: boolean;3279  readonly asSudo: {3280    readonly call: Call;3281  } & Struct;3282  readonly isSudoUncheckedWeight: boolean;3283  readonly asSudoUncheckedWeight: {3284    readonly call: Call;3285    readonly weight: SpWeightsWeightV2Weight;3286  } & Struct;3287  readonly isSetKey: boolean;3288  readonly asSetKey: {3289    readonly new_: MultiAddress;3290  } & Struct;3291  readonly isSudoAs: boolean;3292  readonly asSudoAs: {3293    readonly who: MultiAddress;3294    readonly call: Call;3295  } & Struct;3296  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';3297}32983299/** @name PalletSudoError */3300export interface PalletSudoError extends Enum {3301  readonly isRequireSudo: boolean;3302  readonly type: 'RequireSudo';3303}33043305/** @name PalletSudoEvent */3306export interface PalletSudoEvent extends Enum {3307  readonly isSudid: boolean;3308  readonly asSudid: {3309    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;3310  } & Struct;3311  readonly isKeyChanged: boolean;3312  readonly asKeyChanged: {3313    readonly oldSudoer: Option<AccountId32>;3314  } & Struct;3315  readonly isSudoAsDone: boolean;3316  readonly asSudoAsDone: {3317    readonly sudoResult: Result<Null, SpRuntimeDispatchError>;3318  } & Struct;3319  readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';3320}33213322/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */3323export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}33243325/** @name PalletTestUtilsCall */3326export interface PalletTestUtilsCall extends Enum {3327  readonly isEnable: boolean;3328  readonly isSetTestValue: boolean;3329  readonly asSetTestValue: {3330    readonly value: u32;3331  } & Struct;3332  readonly isSetTestValueAndRollback: boolean;3333  readonly asSetTestValueAndRollback: {3334    readonly value: u32;3335  } & Struct;3336  readonly isIncTestValue: boolean;3337  readonly isJustTakeFee: boolean;3338  readonly isBatchAll: boolean;3339  readonly asBatchAll: {3340    readonly calls: Vec<Call>;3341  } & Struct;3342  readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3343}33443345/** @name PalletTestUtilsError */3346export interface PalletTestUtilsError extends Enum {3347  readonly isTestPalletDisabled: boolean;3348  readonly isTriggerRollback: boolean;3349  readonly type: 'TestPalletDisabled' | 'TriggerRollback';3350}33513352/** @name PalletTestUtilsEvent */3353export interface PalletTestUtilsEvent extends Enum {3354  readonly isValueIsSet: boolean;3355  readonly isShouldRollback: boolean;3356  readonly isBatchCompleted: boolean;3357  readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';3358}33593360/** @name PalletTimestampCall */3361export interface PalletTimestampCall extends Enum {3362  readonly isSet: boolean;3363  readonly asSet: {3364    readonly now: Compact<u64>;3365  } & Struct;3366  readonly type: 'Set';3367}33683369/** @name PalletTransactionPaymentEvent */3370export interface PalletTransactionPaymentEvent extends Enum {3371  readonly isTransactionFeePaid: boolean;3372  readonly asTransactionFeePaid: {3373    readonly who: AccountId32;3374    readonly actualFee: u128;3375    readonly tip: u128;3376  } & Struct;3377  readonly type: 'TransactionFeePaid';3378}33793380/** @name PalletTransactionPaymentReleases */3381export interface PalletTransactionPaymentReleases extends Enum {3382  readonly isV1Ancient: boolean;3383  readonly isV2: boolean;3384  readonly type: 'V1Ancient' | 'V2';3385}33863387/** @name PalletTreasuryCall */3388export interface PalletTreasuryCall extends Enum {3389  readonly isProposeSpend: boolean;3390  readonly asProposeSpend: {3391    readonly value: Compact<u128>;3392    readonly beneficiary: MultiAddress;3393  } & Struct;3394  readonly isRejectProposal: boolean;3395  readonly asRejectProposal: {3396    readonly proposalId: Compact<u32>;3397  } & Struct;3398  readonly isApproveProposal: boolean;3399  readonly asApproveProposal: {3400    readonly proposalId: Compact<u32>;3401  } & Struct;3402  readonly isSpend: boolean;3403  readonly asSpend: {3404    readonly amount: Compact<u128>;3405    readonly beneficiary: MultiAddress;3406  } & Struct;3407  readonly isRemoveApproval: boolean;3408  readonly asRemoveApproval: {3409    readonly proposalId: Compact<u32>;3410  } & Struct;3411  readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';3412}34133414/** @name PalletTreasuryError */3415export interface PalletTreasuryError extends Enum {3416  readonly isInsufficientProposersBalance: boolean;3417  readonly isInvalidIndex: boolean;3418  readonly isTooManyApprovals: boolean;3419  readonly isInsufficientPermission: boolean;3420  readonly isProposalNotApproved: boolean;3421  readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';3422}34233424/** @name PalletTreasuryEvent */3425export interface PalletTreasuryEvent extends Enum {3426  readonly isProposed: boolean;3427  readonly asProposed: {3428    readonly proposalIndex: u32;3429  } & Struct;3430  readonly isSpending: boolean;3431  readonly asSpending: {3432    readonly budgetRemaining: u128;3433  } & Struct;3434  readonly isAwarded: boolean;3435  readonly asAwarded: {3436    readonly proposalIndex: u32;3437    readonly award: u128;3438    readonly account: AccountId32;3439  } & Struct;3440  readonly isRejected: boolean;3441  readonly asRejected: {3442    readonly proposalIndex: u32;3443    readonly slashed: u128;3444  } & Struct;3445  readonly isBurnt: boolean;3446  readonly asBurnt: {3447    readonly burntFunds: u128;3448  } & Struct;3449  readonly isRollover: boolean;3450  readonly asRollover: {3451    readonly rolloverBalance: u128;3452  } & Struct;3453  readonly isDeposit: boolean;3454  readonly asDeposit: {3455    readonly value: u128;3456  } & Struct;3457  readonly isSpendApproved: boolean;3458  readonly asSpendApproved: {3459    readonly proposalIndex: u32;3460    readonly amount: u128;3461    readonly beneficiary: AccountId32;3462  } & Struct;3463  readonly isUpdatedInactive: boolean;3464  readonly asUpdatedInactive: {3465    readonly reactivated: u128;3466    readonly deactivated: u128;3467  } & Struct;3468  readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';3469}34703471/** @name PalletTreasuryProposal */3472export interface PalletTreasuryProposal extends Struct {3473  readonly proposer: AccountId32;3474  readonly value: u128;3475  readonly beneficiary: AccountId32;3476  readonly bond: u128;3477}34783479/** @name PalletUniqueCall */3480export interface PalletUniqueCall extends Enum {3481  readonly isCreateCollection: boolean;3482  readonly asCreateCollection: {3483    readonly collectionName: Vec<u16>;3484    readonly collectionDescription: Vec<u16>;3485    readonly tokenPrefix: Bytes;3486    readonly mode: UpDataStructsCollectionMode;3487  } & Struct;3488  readonly isCreateCollectionEx: boolean;3489  readonly asCreateCollectionEx: {3490    readonly data: UpDataStructsCreateCollectionData;3491  } & Struct;3492  readonly isDestroyCollection: boolean;3493  readonly asDestroyCollection: {3494    readonly collectionId: u32;3495  } & Struct;3496  readonly isAddToAllowList: boolean;3497  readonly asAddToAllowList: {3498    readonly collectionId: u32;3499    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;3500  } & Struct;3501  readonly isRemoveFromAllowList: boolean;3502  readonly asRemoveFromAllowList: {3503    readonly collectionId: u32;3504    readonly address: PalletEvmAccountBasicCrossAccountIdRepr;3505  } & Struct;3506  readonly isChangeCollectionOwner: boolean;3507  readonly asChangeCollectionOwner: {3508    readonly collectionId: u32;3509    readonly newOwner: AccountId32;3510  } & Struct;3511  readonly isAddCollectionAdmin: boolean;3512  readonly asAddCollectionAdmin: {3513    readonly collectionId: u32;3514    readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;3515  } & Struct;3516  readonly isRemoveCollectionAdmin: boolean;3517  readonly asRemoveCollectionAdmin: {3518    readonly collectionId: u32;3519    readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;3520  } & Struct;3521  readonly isSetCollectionSponsor: boolean;3522  readonly asSetCollectionSponsor: {3523    readonly collectionId: u32;3524    readonly newSponsor: AccountId32;3525  } & Struct;3526  readonly isConfirmSponsorship: boolean;3527  readonly asConfirmSponsorship: {3528    readonly collectionId: u32;3529  } & Struct;3530  readonly isRemoveCollectionSponsor: boolean;3531  readonly asRemoveCollectionSponsor: {3532    readonly collectionId: u32;3533  } & Struct;3534  readonly isCreateItem: boolean;3535  readonly asCreateItem: {3536    readonly collectionId: u32;3537    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3538    readonly data: UpDataStructsCreateItemData;3539  } & Struct;3540  readonly isCreateMultipleItems: boolean;3541  readonly asCreateMultipleItems: {3542    readonly collectionId: u32;3543    readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3544    readonly itemsData: Vec<UpDataStructsCreateItemData>;3545  } & Struct;3546  readonly isSetCollectionProperties: boolean;3547  readonly asSetCollectionProperties: {3548    readonly collectionId: u32;3549    readonly properties: Vec<UpDataStructsProperty>;3550  } & Struct;3551  readonly isDeleteCollectionProperties: boolean;3552  readonly asDeleteCollectionProperties: {3553    readonly collectionId: u32;3554    readonly propertyKeys: Vec<Bytes>;3555  } & Struct;3556  readonly isSetTokenProperties: boolean;3557  readonly asSetTokenProperties: {3558    readonly collectionId: u32;3559    readonly tokenId: u32;3560    readonly properties: Vec<UpDataStructsProperty>;3561  } & Struct;3562  readonly isDeleteTokenProperties: boolean;3563  readonly asDeleteTokenProperties: {3564    readonly collectionId: u32;3565    readonly tokenId: u32;3566    readonly propertyKeys: Vec<Bytes>;3567  } & Struct;3568  readonly isSetTokenPropertyPermissions: boolean;3569  readonly asSetTokenPropertyPermissions: {3570    readonly collectionId: u32;3571    readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3572  } & Struct;3573  readonly isCreateMultipleItemsEx: boolean;3574  readonly asCreateMultipleItemsEx: {3575    readonly collectionId: u32;3576    readonly data: UpDataStructsCreateItemExData;3577  } & Struct;3578  readonly isSetTransfersEnabledFlag: boolean;3579  readonly asSetTransfersEnabledFlag: {3580    readonly collectionId: u32;3581    readonly value: bool;3582  } & Struct;3583  readonly isBurnItem: boolean;3584  readonly asBurnItem: {3585    readonly collectionId: u32;3586    readonly itemId: u32;3587    readonly value: u128;3588  } & Struct;3589  readonly isBurnFrom: boolean;3590  readonly asBurnFrom: {3591    readonly collectionId: u32;3592    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;3593    readonly itemId: u32;3594    readonly value: u128;3595  } & Struct;3596  readonly isTransfer: boolean;3597  readonly asTransfer: {3598    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;3599    readonly collectionId: u32;3600    readonly itemId: u32;3601    readonly value: u128;3602  } & Struct;3603  readonly isApprove: boolean;3604  readonly asApprove: {3605    readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;3606    readonly collectionId: u32;3607    readonly itemId: u32;3608    readonly amount: u128;3609  } & Struct;3610  readonly isApproveFrom: boolean;3611  readonly asApproveFrom: {3612    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;3613    readonly to: PalletEvmAccountBasicCrossAccountIdRepr;3614    readonly collectionId: u32;3615    readonly itemId: u32;3616    readonly amount: u128;3617  } & Struct;3618  readonly isTransferFrom: boolean;3619  readonly asTransferFrom: {3620    readonly from: PalletEvmAccountBasicCrossAccountIdRepr;3621    readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;3622    readonly collectionId: u32;3623    readonly itemId: u32;3624    readonly value: u128;3625  } & Struct;3626  readonly isSetCollectionLimits: boolean;3627  readonly asSetCollectionLimits: {3628    readonly collectionId: u32;3629    readonly newLimit: UpDataStructsCollectionLimits;3630  } & Struct;3631  readonly isSetCollectionPermissions: boolean;3632  readonly asSetCollectionPermissions: {3633    readonly collectionId: u32;3634    readonly newPermission: UpDataStructsCollectionPermissions;3635  } & Struct;3636  readonly isRepartition: boolean;3637  readonly asRepartition: {3638    readonly collectionId: u32;3639    readonly tokenId: u32;3640    readonly amount: u128;3641  } & Struct;3642  readonly isSetAllowanceForAll: boolean;3643  readonly asSetAllowanceForAll: {3644    readonly collectionId: u32;3645    readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;3646    readonly approve: bool;3647  } & Struct;3648  readonly isForceRepairCollection: boolean;3649  readonly asForceRepairCollection: {3650    readonly collectionId: u32;3651  } & Struct;3652  readonly isForceRepairItem: boolean;3653  readonly asForceRepairItem: {3654    readonly collectionId: u32;3655    readonly itemId: u32;3656  } & Struct;3657  readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';3658}36593660/** @name PalletUniqueError */3661export interface PalletUniqueError extends Enum {3662  readonly isCollectionDecimalPointLimitExceeded: boolean;3663  readonly isEmptyArgument: boolean;3664  readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3665  readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3666}36673668/** @name PalletXcmCall */3669export interface PalletXcmCall extends Enum {3670  readonly isSend: boolean;3671  readonly asSend: {3672    readonly dest: XcmVersionedMultiLocation;3673    readonly message: XcmVersionedXcm;3674  } & Struct;3675  readonly isTeleportAssets: boolean;3676  readonly asTeleportAssets: {3677    readonly dest: XcmVersionedMultiLocation;3678    readonly beneficiary: XcmVersionedMultiLocation;3679    readonly assets: XcmVersionedMultiAssets;3680    readonly feeAssetItem: u32;3681  } & Struct;3682  readonly isReserveTransferAssets: boolean;3683  readonly asReserveTransferAssets: {3684    readonly dest: XcmVersionedMultiLocation;3685    readonly beneficiary: XcmVersionedMultiLocation;3686    readonly assets: XcmVersionedMultiAssets;3687    readonly feeAssetItem: u32;3688  } & Struct;3689  readonly isExecute: boolean;3690  readonly asExecute: {3691    readonly message: XcmVersionedXcm;3692    readonly maxWeight: SpWeightsWeightV2Weight;3693  } & Struct;3694  readonly isForceXcmVersion: boolean;3695  readonly asForceXcmVersion: {3696    readonly location: XcmV3MultiLocation;3697    readonly xcmVersion: u32;3698  } & Struct;3699  readonly isForceDefaultXcmVersion: boolean;3700  readonly asForceDefaultXcmVersion: {3701    readonly maybeXcmVersion: Option<u32>;3702  } & Struct;3703  readonly isForceSubscribeVersionNotify: boolean;3704  readonly asForceSubscribeVersionNotify: {3705    readonly location: XcmVersionedMultiLocation;3706  } & Struct;3707  readonly isForceUnsubscribeVersionNotify: boolean;3708  readonly asForceUnsubscribeVersionNotify: {3709    readonly location: XcmVersionedMultiLocation;3710  } & Struct;3711  readonly isLimitedReserveTransferAssets: boolean;3712  readonly asLimitedReserveTransferAssets: {3713    readonly dest: XcmVersionedMultiLocation;3714    readonly beneficiary: XcmVersionedMultiLocation;3715    readonly assets: XcmVersionedMultiAssets;3716    readonly feeAssetItem: u32;3717    readonly weightLimit: XcmV3WeightLimit;3718  } & Struct;3719  readonly isLimitedTeleportAssets: boolean;3720  readonly asLimitedTeleportAssets: {3721    readonly dest: XcmVersionedMultiLocation;3722    readonly beneficiary: XcmVersionedMultiLocation;3723    readonly assets: XcmVersionedMultiAssets;3724    readonly feeAssetItem: u32;3725    readonly weightLimit: XcmV3WeightLimit;3726  } & Struct;3727  readonly isForceSuspension: boolean;3728  readonly asForceSuspension: {3729    readonly suspended: bool;3730  } & Struct;3731  readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';3732}37333734/** @name PalletXcmError */3735export interface PalletXcmError extends Enum {3736  readonly isUnreachable: boolean;3737  readonly isSendFailure: boolean;3738  readonly isFiltered: boolean;3739  readonly isUnweighableMessage: boolean;3740  readonly isDestinationNotInvertible: boolean;3741  readonly isEmpty: boolean;3742  readonly isCannotReanchor: boolean;3743  readonly isTooManyAssets: boolean;3744  readonly isInvalidOrigin: boolean;3745  readonly isBadVersion: boolean;3746  readonly isBadLocation: boolean;3747  readonly isNoSubscription: boolean;3748  readonly isAlreadySubscribed: boolean;3749  readonly isInvalidAsset: boolean;3750  readonly isLowBalance: boolean;3751  readonly isTooManyLocks: boolean;3752  readonly isAccountNotSovereign: boolean;3753  readonly isFeesNotMet: boolean;3754  readonly isLockNotFound: boolean;3755  readonly isInUse: boolean;3756  readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';3757}37583759/** @name PalletXcmEvent */3760export interface PalletXcmEvent extends Enum {3761  readonly isAttempted: boolean;3762  readonly asAttempted: XcmV3TraitsOutcome;3763  readonly isSent: boolean;3764  readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;3765  readonly isUnexpectedResponse: boolean;3766  readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;3767  readonly isResponseReady: boolean;3768  readonly asResponseReady: ITuple<[u64, XcmV3Response]>;3769  readonly isNotified: boolean;3770  readonly asNotified: ITuple<[u64, u8, u8]>;3771  readonly isNotifyOverweight: boolean;3772  readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;3773  readonly isNotifyDispatchError: boolean;3774  readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;3775  readonly isNotifyDecodeFailed: boolean;3776  readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;3777  readonly isInvalidResponder: boolean;3778  readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;3779  readonly isInvalidResponderVersion: boolean;3780  readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;3781  readonly isResponseTaken: boolean;3782  readonly asResponseTaken: u64;3783  readonly isAssetsTrapped: boolean;3784  readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;3785  readonly isVersionChangeNotified: boolean;3786  readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;3787  readonly isSupportedVersionChanged: boolean;3788  readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;3789  readonly isNotifyTargetSendFail: boolean;3790  readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;3791  readonly isNotifyTargetMigrationFail: boolean;3792  readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;3793  readonly isInvalidQuerierVersion: boolean;3794  readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;3795  readonly isInvalidQuerier: boolean;3796  readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;3797  readonly isVersionNotifyStarted: boolean;3798  readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3799  readonly isVersionNotifyRequested: boolean;3800  readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3801  readonly isVersionNotifyUnrequested: boolean;3802  readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3803  readonly isFeesPaid: boolean;3804  readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3805  readonly isAssetsClaimed: boolean;3806  readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;3807  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';3808}38093810/** @name PalletXcmOrigin */3811export interface PalletXcmOrigin extends Enum {3812  readonly isXcm: boolean;3813  readonly asXcm: XcmV3MultiLocation;3814  readonly isResponse: boolean;3815  readonly asResponse: XcmV3MultiLocation;3816  readonly type: 'Xcm' | 'Response';3817}38183819/** @name PalletXcmQueryStatus */3820export interface PalletXcmQueryStatus extends Enum {3821  readonly isPending: boolean;3822  readonly asPending: {3823    readonly responder: XcmVersionedMultiLocation;3824    readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;3825    readonly maybeNotify: Option<ITuple<[u8, u8]>>;3826    readonly timeout: u32;3827  } & Struct;3828  readonly isVersionNotifier: boolean;3829  readonly asVersionNotifier: {3830    readonly origin: XcmVersionedMultiLocation;3831    readonly isActive: bool;3832  } & Struct;3833  readonly isReady: boolean;3834  readonly asReady: {3835    readonly response: XcmVersionedResponse;3836    readonly at: u32;3837  } & Struct;3838  readonly type: 'Pending' | 'VersionNotifier' | 'Ready';3839}38403841/** @name PalletXcmRemoteLockedFungibleRecord */3842export interface PalletXcmRemoteLockedFungibleRecord extends Struct {3843  readonly amount: u128;3844  readonly owner: XcmVersionedMultiLocation;3845  readonly locker: XcmVersionedMultiLocation;3846  readonly consumers: Vec<ITuple<[Null, u128]>>;3847}38483849/** @name PalletXcmVersionMigrationStage */3850export interface PalletXcmVersionMigrationStage extends Enum {3851  readonly isMigrateSupportedVersion: boolean;3852  readonly isMigrateVersionNotifiers: boolean;3853  readonly isNotifyCurrentTargets: boolean;3854  readonly asNotifyCurrentTargets: Option<Bytes>;3855  readonly isMigrateAndNotifyOldTargets: boolean;3856  readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';3857}38583859/** @name ParachainInfoCall */3860export interface ParachainInfoCall extends Null {}38613862/** @name PhantomTypeUpDataStructs */3863export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}38643865/** @name PolkadotCorePrimitivesInboundDownwardMessage */3866export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {3867  readonly sentAt: u32;3868  readonly msg: Bytes;3869}38703871/** @name PolkadotCorePrimitivesInboundHrmpMessage */3872export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {3873  readonly sentAt: u32;3874  readonly data: Bytes;3875}38763877/** @name PolkadotCorePrimitivesOutboundHrmpMessage */3878export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {3879  readonly recipient: u32;3880  readonly data: Bytes;3881}38823883/** @name PolkadotParachainPrimitivesXcmpMessageFormat */3884export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3885  readonly isConcatenatedVersionedXcm: boolean;3886  readonly isConcatenatedEncodedBlob: boolean;3887  readonly isSignals: boolean;3888  readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3889}38903891/** @name PolkadotPrimitivesV4AbridgedHostConfiguration */3892export interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {3893  readonly maxCodeSize: u32;3894  readonly maxHeadDataSize: u32;3895  readonly maxUpwardQueueCount: u32;3896  readonly maxUpwardQueueSize: u32;3897  readonly maxUpwardMessageSize: u32;3898  readonly maxUpwardMessageNumPerCandidate: u32;3899  readonly hrmpMaxMessageNumPerCandidate: u32;3900  readonly validationUpgradeCooldown: u32;3901  readonly validationUpgradeDelay: u32;3902}39033904/** @name PolkadotPrimitivesV4AbridgedHrmpChannel */3905export interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {3906  readonly maxCapacity: u32;3907  readonly maxTotalSize: u32;3908  readonly maxMessageSize: u32;3909  readonly msgCount: u32;3910  readonly totalSize: u32;3911  readonly mqcHead: Option<H256>;3912}39133914/** @name PolkadotPrimitivesV4PersistedValidationData */3915export interface PolkadotPrimitivesV4PersistedValidationData extends Struct {3916  readonly parentHead: Bytes;3917  readonly relayParentNumber: u32;3918  readonly relayParentStorageRoot: H256;3919  readonly maxPovSize: u32;3920}39213922/** @name PolkadotPrimitivesV4UpgradeRestriction */3923export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {3924  readonly isPresent: boolean;3925  readonly type: 'Present';3926}39273928/** @name QuartzRuntimeOriginCaller */3929export interface QuartzRuntimeOriginCaller extends Enum {3930  readonly isSystem: boolean;3931  readonly asSystem: FrameSupportDispatchRawOrigin;3932  readonly isVoid: boolean;3933  readonly asVoid: SpCoreVoid;3934  readonly isCouncil: boolean;3935  readonly asCouncil: PalletCollectiveRawOrigin;3936  readonly isTechnicalCommittee: boolean;3937  readonly asTechnicalCommittee: PalletCollectiveRawOrigin;3938  readonly isPolkadotXcm: boolean;3939  readonly asPolkadotXcm: PalletXcmOrigin;3940  readonly isCumulusXcm: boolean;3941  readonly asCumulusXcm: CumulusPalletXcmOrigin;3942  readonly isOrigins: boolean;3943  readonly asOrigins: PalletGovOriginsOrigin;3944  readonly isEthereum: boolean;3945  readonly asEthereum: PalletEthereumRawOrigin;3946  readonly type: 'System' | 'Void' | 'Council' | 'TechnicalCommittee' | 'PolkadotXcm' | 'CumulusXcm' | 'Origins' | 'Ethereum';3947}39483949/** @name QuartzRuntimeRuntime */3950export interface QuartzRuntimeRuntime extends Null {}39513952/** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls */3953export interface QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}39543955/** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance */3956export interface QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}39573958/** @name QuartzRuntimeRuntimeCommonSessionKeys */3959export interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {3960  readonly aura: SpConsensusAuraSr25519AppSr25519Public;3961}39623963/** @name SpArithmeticArithmeticError */3964export interface SpArithmeticArithmeticError extends Enum {3965  readonly isUnderflow: boolean;3966  readonly isOverflow: boolean;3967  readonly isDivisionByZero: boolean;3968  readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';3969}39703971/** @name SpConsensusAuraSr25519AppSr25519Public */3972export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}39733974/** @name SpCoreCryptoKeyTypeId */3975export interface SpCoreCryptoKeyTypeId extends U8aFixed {}39763977/** @name SpCoreEcdsaSignature */3978export interface SpCoreEcdsaSignature extends U8aFixed {}39793980/** @name SpCoreEd25519Signature */3981export interface SpCoreEd25519Signature extends U8aFixed {}39823983/** @name SpCoreSr25519Public */3984export interface SpCoreSr25519Public extends U8aFixed {}39853986/** @name SpCoreSr25519Signature */3987export interface SpCoreSr25519Signature extends U8aFixed {}39883989/** @name SpCoreVoid */3990export interface SpCoreVoid extends Null {}39913992/** @name SpRuntimeDigest */3993export interface SpRuntimeDigest extends Struct {3994  readonly logs: Vec<SpRuntimeDigestDigestItem>;3995}39963997/** @name SpRuntimeDigestDigestItem */3998export interface SpRuntimeDigestDigestItem extends Enum {3999  readonly isOther: boolean;4000  readonly asOther: Bytes;4001  readonly isConsensus: boolean;4002  readonly asConsensus: ITuple<[U8aFixed, Bytes]>;4003  readonly isSeal: boolean;4004  readonly asSeal: ITuple<[U8aFixed, Bytes]>;4005  readonly isPreRuntime: boolean;4006  readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;4007  readonly isRuntimeEnvironmentUpdated: boolean;4008  readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';4009}40104011/** @name SpRuntimeDispatchError */4012export interface SpRuntimeDispatchError extends Enum {4013  readonly isOther: boolean;4014  readonly isCannotLookup: boolean;4015  readonly isBadOrigin: boolean;4016  readonly isModule: boolean;4017  readonly asModule: SpRuntimeModuleError;4018  readonly isConsumerRemaining: boolean;4019  readonly isNoProviders: boolean;4020  readonly isTooManyConsumers: boolean;4021  readonly isToken: boolean;4022  readonly asToken: SpRuntimeTokenError;4023  readonly isArithmetic: boolean;4024  readonly asArithmetic: SpArithmeticArithmeticError;4025  readonly isTransactional: boolean;4026  readonly asTransactional: SpRuntimeTransactionalError;4027  readonly isExhausted: boolean;4028  readonly isCorruption: boolean;4029  readonly isUnavailable: boolean;4030  readonly isRootNotAllowed: boolean;4031  readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable' | 'RootNotAllowed';4032}40334034/** @name SpRuntimeModuleError */4035export interface SpRuntimeModuleError extends Struct {4036  readonly index: u8;4037  readonly error: U8aFixed;4038}40394040/** @name SpRuntimeMultiSignature */4041export interface SpRuntimeMultiSignature extends Enum {4042  readonly isEd25519: boolean;4043  readonly asEd25519: SpCoreEd25519Signature;4044  readonly isSr25519: boolean;4045  readonly asSr25519: SpCoreSr25519Signature;4046  readonly isEcdsa: boolean;4047  readonly asEcdsa: SpCoreEcdsaSignature;4048  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';4049}40504051/** @name SpRuntimeTokenError */4052export interface SpRuntimeTokenError extends Enum {4053  readonly isFundsUnavailable: boolean;4054  readonly isOnlyProvider: boolean;4055  readonly isBelowMinimum: boolean;4056  readonly isCannotCreate: boolean;4057  readonly isUnknownAsset: boolean;4058  readonly isFrozen: boolean;4059  readonly isUnsupported: boolean;4060  readonly isCannotCreateHold: boolean;4061  readonly isNotExpendable: boolean;4062  readonly isBlocked: boolean;4063  readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable' | 'Blocked';4064}40654066/** @name SpRuntimeTransactionalError */4067export interface SpRuntimeTransactionalError extends Enum {4068  readonly isLimitReached: boolean;4069  readonly isNoLayer: boolean;4070  readonly type: 'LimitReached' | 'NoLayer';4071}40724073/** @name SpRuntimeTransactionValidityInvalidTransaction */4074export interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {4075  readonly isCall: boolean;4076  readonly isPayment: boolean;4077  readonly isFuture: boolean;4078  readonly isStale: boolean;4079  readonly isBadProof: boolean;4080  readonly isAncientBirthBlock: boolean;4081  readonly isExhaustsResources: boolean;4082  readonly isCustom: boolean;4083  readonly asCustom: u8;4084  readonly isBadMandatory: boolean;4085  readonly isMandatoryValidation: boolean;4086  readonly isBadSigner: boolean;4087  readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';4088}40894090/** @name SpRuntimeTransactionValidityTransactionValidityError */4091export interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {4092  readonly isInvalid: boolean;4093  readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;4094  readonly isUnknown: boolean;4095  readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;4096  readonly type: 'Invalid' | 'Unknown';4097}40984099/** @name SpRuntimeTransactionValidityUnknownTransaction */4100export interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {4101  readonly isCannotLookup: boolean;4102  readonly isNoUnsignedValidator: boolean;4103  readonly isCustom: boolean;4104  readonly asCustom: u8;4105  readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';4106}41074108/** @name SpTrieStorageProof */4109export interface SpTrieStorageProof extends Struct {4110  readonly trieNodes: BTreeSet<Bytes>;4111}41124113/** @name SpVersionRuntimeVersion */4114export interface SpVersionRuntimeVersion extends Struct {4115  readonly specName: Text;4116  readonly implName: Text;4117  readonly authoringVersion: u32;4118  readonly specVersion: u32;4119  readonly implVersion: u32;4120  readonly apis: Vec<ITuple<[U8aFixed, u32]>>;4121  readonly transactionVersion: u32;4122  readonly stateVersion: u8;4123}41244125/** @name SpWeightsRuntimeDbWeight */4126export interface SpWeightsRuntimeDbWeight extends Struct {4127  readonly read: u64;4128  readonly write: u64;4129}41304131/** @name SpWeightsWeightV2Weight */4132export interface SpWeightsWeightV2Weight extends Struct {4133  readonly refTime: Compact<u64>;4134  readonly proofSize: Compact<u64>;4135}41364137/** @name UpDataStructsAccessMode */4138export interface UpDataStructsAccessMode extends Enum {4139  readonly isNormal: boolean;4140  readonly isAllowList: boolean;4141  readonly type: 'Normal' | 'AllowList';4142}41434144/** @name UpDataStructsCollection */4145export interface UpDataStructsCollection extends Struct {4146  readonly owner: AccountId32;4147  readonly mode: UpDataStructsCollectionMode;4148  readonly name: Vec<u16>;4149  readonly description: Vec<u16>;4150  readonly tokenPrefix: Bytes;4151  readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;4152  readonly limits: UpDataStructsCollectionLimits;4153  readonly permissions: UpDataStructsCollectionPermissions;4154  readonly flags: U8aFixed;4155}41564157/** @name UpDataStructsCollectionLimits */4158export interface UpDataStructsCollectionLimits extends Struct {4159  readonly accountTokenOwnershipLimit: Option<u32>;4160  readonly sponsoredDataSize: Option<u32>;4161  readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;4162  readonly tokenLimit: Option<u32>;4163  readonly sponsorTransferTimeout: Option<u32>;4164  readonly sponsorApproveTimeout: Option<u32>;4165  readonly ownerCanTransfer: Option<bool>;4166  readonly ownerCanDestroy: Option<bool>;4167  readonly transfersEnabled: Option<bool>;4168}41694170/** @name UpDataStructsCollectionMode */4171export interface UpDataStructsCollectionMode extends Enum {4172  readonly isNft: boolean;4173  readonly isFungible: boolean;4174  readonly asFungible: u8;4175  readonly isReFungible: boolean;4176  readonly type: 'Nft' | 'Fungible' | 'ReFungible';4177}41784179/** @name UpDataStructsCollectionPermissions */4180export interface UpDataStructsCollectionPermissions extends Struct {4181  readonly access: Option<UpDataStructsAccessMode>;4182  readonly mintMode: Option<bool>;4183  readonly nesting: Option<UpDataStructsNestingPermissions>;4184}41854186/** @name UpDataStructsCollectionStats */4187export interface UpDataStructsCollectionStats extends Struct {4188  readonly created: u32;4189  readonly destroyed: u32;4190  readonly alive: u32;4191}41924193/** @name UpDataStructsCreateCollectionData */4194export interface UpDataStructsCreateCollectionData extends Struct {4195  readonly mode: UpDataStructsCollectionMode;4196  readonly access: Option<UpDataStructsAccessMode>;4197  readonly name: Vec<u16>;4198  readonly description: Vec<u16>;4199  readonly tokenPrefix: Bytes;4200  readonly limits: Option<UpDataStructsCollectionLimits>;4201  readonly permissions: Option<UpDataStructsCollectionPermissions>;4202  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;4203  readonly properties: Vec<UpDataStructsProperty>;4204  readonly adminList: Vec<PalletEvmAccountBasicCrossAccountIdRepr>;4205  readonly pendingSponsor: Option<PalletEvmAccountBasicCrossAccountIdRepr>;4206  readonly flags: U8aFixed;4207}42084209/** @name UpDataStructsCreateFungibleData */4210export interface UpDataStructsCreateFungibleData extends Struct {4211  readonly value: u128;4212}42134214/** @name UpDataStructsCreateItemData */4215export interface UpDataStructsCreateItemData extends Enum {4216  readonly isNft: boolean;4217  readonly asNft: UpDataStructsCreateNftData;4218  readonly isFungible: boolean;4219  readonly asFungible: UpDataStructsCreateFungibleData;4220  readonly isReFungible: boolean;4221  readonly asReFungible: UpDataStructsCreateReFungibleData;4222  readonly type: 'Nft' | 'Fungible' | 'ReFungible';4223}42244225/** @name UpDataStructsCreateItemExData */4226export interface UpDataStructsCreateItemExData extends Enum {4227  readonly isNft: boolean;4228  readonly asNft: Vec<UpDataStructsCreateNftExData>;4229  readonly isFungible: boolean;4230  readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;4231  readonly isRefungibleMultipleItems: boolean;4232  readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;4233  readonly isRefungibleMultipleOwners: boolean;4234  readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;4235  readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';4236}42374238/** @name UpDataStructsCreateNftData */4239export interface UpDataStructsCreateNftData extends Struct {4240  readonly properties: Vec<UpDataStructsProperty>;4241}42424243/** @name UpDataStructsCreateNftExData */4244export interface UpDataStructsCreateNftExData extends Struct {4245  readonly properties: Vec<UpDataStructsProperty>;4246  readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;4247}42484249/** @name UpDataStructsCreateReFungibleData */4250export interface UpDataStructsCreateReFungibleData extends Struct {4251  readonly pieces: u128;4252  readonly properties: Vec<UpDataStructsProperty>;4253}42544255/** @name UpDataStructsCreateRefungibleExMultipleOwners */4256export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {4257  readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;4258  readonly properties: Vec<UpDataStructsProperty>;4259}42604261/** @name UpDataStructsCreateRefungibleExSingleOwner */4262export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {4263  readonly user: PalletEvmAccountBasicCrossAccountIdRepr;4264  readonly pieces: u128;4265  readonly properties: Vec<UpDataStructsProperty>;4266}42674268/** @name UpDataStructsNestingPermissions */4269export interface UpDataStructsNestingPermissions extends Struct {4270  readonly tokenOwner: bool;4271  readonly collectionAdmin: bool;4272  readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;4273}42744275/** @name UpDataStructsOwnerRestrictedSet */4276export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}42774278/** @name UpDataStructsProperties */4279export interface UpDataStructsProperties extends Struct {4280  readonly map: UpDataStructsPropertiesMapBoundedVec;4281  readonly consumedSpace: u32;4282  readonly reserved: u32;4283}42844285/** @name UpDataStructsPropertiesMapBoundedVec */4286export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}42874288/** @name UpDataStructsPropertiesMapPropertyPermission */4289export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}42904291/** @name UpDataStructsProperty */4292export interface UpDataStructsProperty extends Struct {4293  readonly key: Bytes;4294  readonly value: Bytes;4295}42964297/** @name UpDataStructsPropertyKeyPermission */4298export interface UpDataStructsPropertyKeyPermission extends Struct {4299  readonly key: Bytes;4300  readonly permission: UpDataStructsPropertyPermission;4301}43024303/** @name UpDataStructsPropertyPermission */4304export interface UpDataStructsPropertyPermission extends Struct {4305  readonly mutable: bool;4306  readonly collectionAdmin: bool;4307  readonly tokenOwner: bool;4308}43094310/** @name UpDataStructsPropertyScope */4311export interface UpDataStructsPropertyScope extends Enum {4312  readonly isNone: boolean;4313  readonly isRmrk: boolean;4314  readonly type: 'None' | 'Rmrk';4315}43164317/** @name UpDataStructsRpcCollection */4318export interface UpDataStructsRpcCollection extends Struct {4319  readonly owner: AccountId32;4320  readonly mode: UpDataStructsCollectionMode;4321  readonly name: Vec<u16>;4322  readonly description: Vec<u16>;4323  readonly tokenPrefix: Bytes;4324  readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;4325  readonly limits: UpDataStructsCollectionLimits;4326  readonly permissions: UpDataStructsCollectionPermissions;4327  readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;4328  readonly properties: Vec<UpDataStructsProperty>;4329  readonly readOnly: bool;4330  readonly flags: UpDataStructsRpcCollectionFlags;4331}43324333/** @name UpDataStructsRpcCollectionFlags */4334export interface UpDataStructsRpcCollectionFlags extends Struct {4335  readonly foreign: bool;4336  readonly erc721metadata: bool;4337}43384339/** @name UpDataStructsSponsoringRateLimit */4340export interface UpDataStructsSponsoringRateLimit extends Enum {4341  readonly isSponsoringDisabled: boolean;4342  readonly isBlocks: boolean;4343  readonly asBlocks: u32;4344  readonly type: 'SponsoringDisabled' | 'Blocks';4345}43464347/** @name UpDataStructsSponsorshipStateAccountId32 */4348export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {4349  readonly isDisabled: boolean;4350  readonly isUnconfirmed: boolean;4351  readonly asUnconfirmed: AccountId32;4352  readonly isConfirmed: boolean;4353  readonly asConfirmed: AccountId32;4354  readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4355}43564357/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */4358export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {4359  readonly isDisabled: boolean;4360  readonly isUnconfirmed: boolean;4361  readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;4362  readonly isConfirmed: boolean;4363  readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;4364  readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4365}43664367/** @name UpDataStructsTokenChild */4368export interface UpDataStructsTokenChild extends Struct {4369  readonly token: u32;4370  readonly collection: u32;4371}43724373/** @name UpDataStructsTokenData */4374export interface UpDataStructsTokenData extends Struct {4375  readonly properties: Vec<UpDataStructsProperty>;4376  readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;4377  readonly pieces: u128;4378}43794380/** @name UpPovEstimateRpcPovInfo */4381export interface UpPovEstimateRpcPovInfo extends Struct {4382  readonly proofSize: u64;4383  readonly compactProofSize: u64;4384  readonly compressedProofSize: u64;4385  readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;4386  readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;4387}43884389/** @name UpPovEstimateRpcTrieKeyValue */4390export interface UpPovEstimateRpcTrieKeyValue extends Struct {4391  readonly key: Bytes;4392  readonly value: Bytes;4393}43944395/** @name XcmDoubleEncoded */4396export interface XcmDoubleEncoded extends Struct {4397  readonly encoded: Bytes;4398}43994400/** @name XcmV2BodyId */4401export interface XcmV2BodyId extends Enum {4402  readonly isUnit: boolean;4403  readonly isNamed: boolean;4404  readonly asNamed: Bytes;4405  readonly isIndex: boolean;4406  readonly asIndex: Compact<u32>;4407  readonly isExecutive: boolean;4408  readonly isTechnical: boolean;4409  readonly isLegislative: boolean;4410  readonly isJudicial: boolean;4411  readonly isDefense: boolean;4412  readonly isAdministration: boolean;4413  readonly isTreasury: boolean;4414  readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';4415}44164417/** @name XcmV2BodyPart */4418export interface XcmV2BodyPart extends Enum {4419  readonly isVoice: boolean;4420  readonly isMembers: boolean;4421  readonly asMembers: {4422    readonly count: Compact<u32>;4423  } & Struct;4424  readonly isFraction: boolean;4425  readonly asFraction: {4426    readonly nom: Compact<u32>;4427    readonly denom: Compact<u32>;4428  } & Struct;4429  readonly isAtLeastProportion: boolean;4430  readonly asAtLeastProportion: {4431    readonly nom: Compact<u32>;4432    readonly denom: Compact<u32>;4433  } & Struct;4434  readonly isMoreThanProportion: boolean;4435  readonly asMoreThanProportion: {4436    readonly nom: Compact<u32>;4437    readonly denom: Compact<u32>;4438  } & Struct;4439  readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';4440}44414442/** @name XcmV2Instruction */4443export interface XcmV2Instruction extends Enum {4444  readonly isWithdrawAsset: boolean;4445  readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;4446  readonly isReserveAssetDeposited: boolean;4447  readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;4448  readonly isReceiveTeleportedAsset: boolean;4449  readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;4450  readonly isQueryResponse: boolean;4451  readonly asQueryResponse: {4452    readonly queryId: Compact<u64>;4453    readonly response: XcmV2Response;4454    readonly maxWeight: Compact<u64>;4455  } & Struct;4456  readonly isTransferAsset: boolean;4457  readonly asTransferAsset: {4458    readonly assets: XcmV2MultiassetMultiAssets;4459    readonly beneficiary: XcmV2MultiLocation;4460  } & Struct;4461  readonly isTransferReserveAsset: boolean;4462  readonly asTransferReserveAsset: {4463    readonly assets: XcmV2MultiassetMultiAssets;4464    readonly dest: XcmV2MultiLocation;4465    readonly xcm: XcmV2Xcm;4466  } & Struct;4467  readonly isTransact: boolean;4468  readonly asTransact: {4469    readonly originType: XcmV2OriginKind;4470    readonly requireWeightAtMost: Compact<u64>;4471    readonly call: XcmDoubleEncoded;4472  } & Struct;4473  readonly isHrmpNewChannelOpenRequest: boolean;4474  readonly asHrmpNewChannelOpenRequest: {4475    readonly sender: Compact<u32>;4476    readonly maxMessageSize: Compact<u32>;4477    readonly maxCapacity: Compact<u32>;4478  } & Struct;4479  readonly isHrmpChannelAccepted: boolean;4480  readonly asHrmpChannelAccepted: {4481    readonly recipient: Compact<u32>;4482  } & Struct;4483  readonly isHrmpChannelClosing: boolean;4484  readonly asHrmpChannelClosing: {4485    readonly initiator: Compact<u32>;4486    readonly sender: Compact<u32>;4487    readonly recipient: Compact<u32>;4488  } & Struct;4489  readonly isClearOrigin: boolean;4490  readonly isDescendOrigin: boolean;4491  readonly asDescendOrigin: XcmV2MultilocationJunctions;4492  readonly isReportError: boolean;4493  readonly asReportError: {4494    readonly queryId: Compact<u64>;4495    readonly dest: XcmV2MultiLocation;4496    readonly maxResponseWeight: Compact<u64>;4497  } & Struct;4498  readonly isDepositAsset: boolean;4499  readonly asDepositAsset: {4500    readonly assets: XcmV2MultiassetMultiAssetFilter;4501    readonly maxAssets: Compact<u32>;4502    readonly beneficiary: XcmV2MultiLocation;4503  } & Struct;4504  readonly isDepositReserveAsset: boolean;4505  readonly asDepositReserveAsset: {4506    readonly assets: XcmV2MultiassetMultiAssetFilter;4507    readonly maxAssets: Compact<u32>;4508    readonly dest: XcmV2MultiLocation;4509    readonly xcm: XcmV2Xcm;4510  } & Struct;4511  readonly isExchangeAsset: boolean;4512  readonly asExchangeAsset: {4513    readonly give: XcmV2MultiassetMultiAssetFilter;4514    readonly receive: XcmV2MultiassetMultiAssets;4515  } & Struct;4516  readonly isInitiateReserveWithdraw: boolean;4517  readonly asInitiateReserveWithdraw: {4518    readonly assets: XcmV2MultiassetMultiAssetFilter;4519    readonly reserve: XcmV2MultiLocation;4520    readonly xcm: XcmV2Xcm;4521  } & Struct;4522  readonly isInitiateTeleport: boolean;4523  readonly asInitiateTeleport: {4524    readonly assets: XcmV2MultiassetMultiAssetFilter;4525    readonly dest: XcmV2MultiLocation;4526    readonly xcm: XcmV2Xcm;4527  } & Struct;4528  readonly isQueryHolding: boolean;4529  readonly asQueryHolding: {4530    readonly queryId: Compact<u64>;4531    readonly dest: XcmV2MultiLocation;4532    readonly assets: XcmV2MultiassetMultiAssetFilter;4533    readonly maxResponseWeight: Compact<u64>;4534  } & Struct;4535  readonly isBuyExecution: boolean;4536  readonly asBuyExecution: {4537    readonly fees: XcmV2MultiAsset;4538    readonly weightLimit: XcmV2WeightLimit;4539  } & Struct;4540  readonly isRefundSurplus: boolean;4541  readonly isSetErrorHandler: boolean;4542  readonly asSetErrorHandler: XcmV2Xcm;4543  readonly isSetAppendix: boolean;4544  readonly asSetAppendix: XcmV2Xcm;4545  readonly isClearError: boolean;4546  readonly isClaimAsset: boolean;4547  readonly asClaimAsset: {4548    readonly assets: XcmV2MultiassetMultiAssets;4549    readonly ticket: XcmV2MultiLocation;4550  } & Struct;4551  readonly isTrap: boolean;4552  readonly asTrap: Compact<u64>;4553  readonly isSubscribeVersion: boolean;4554  readonly asSubscribeVersion: {4555    readonly queryId: Compact<u64>;4556    readonly maxResponseWeight: Compact<u64>;4557  } & Struct;4558  readonly isUnsubscribeVersion: boolean;4559  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';4560}45614562/** @name XcmV2Junction */4563export interface XcmV2Junction extends Enum {4564  readonly isParachain: boolean;4565  readonly asParachain: Compact<u32>;4566  readonly isAccountId32: boolean;4567  readonly asAccountId32: {4568    readonly network: XcmV2NetworkId;4569    readonly id: U8aFixed;4570  } & Struct;4571  readonly isAccountIndex64: boolean;4572  readonly asAccountIndex64: {4573    readonly network: XcmV2NetworkId;4574    readonly index: Compact<u64>;4575  } & Struct;4576  readonly isAccountKey20: boolean;4577  readonly asAccountKey20: {4578    readonly network: XcmV2NetworkId;4579    readonly key: U8aFixed;4580  } & Struct;4581  readonly isPalletInstance: boolean;4582  readonly asPalletInstance: u8;4583  readonly isGeneralIndex: boolean;4584  readonly asGeneralIndex: Compact<u128>;4585  readonly isGeneralKey: boolean;4586  readonly asGeneralKey: Bytes;4587  readonly isOnlyChild: boolean;4588  readonly isPlurality: boolean;4589  readonly asPlurality: {4590    readonly id: XcmV2BodyId;4591    readonly part: XcmV2BodyPart;4592  } & Struct;4593  readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';4594}45954596/** @name XcmV2MultiAsset */4597export interface XcmV2MultiAsset extends Struct {4598  readonly id: XcmV2MultiassetAssetId;4599  readonly fun: XcmV2MultiassetFungibility;4600}46014602/** @name XcmV2MultiassetAssetId */4603export interface XcmV2MultiassetAssetId extends Enum {4604  readonly isConcrete: boolean;4605  readonly asConcrete: XcmV2MultiLocation;4606  readonly isAbstract: boolean;4607  readonly asAbstract: Bytes;4608  readonly type: 'Concrete' | 'Abstract';4609}46104611/** @name XcmV2MultiassetAssetInstance */4612export interface XcmV2MultiassetAssetInstance extends Enum {4613  readonly isUndefined: boolean;4614  readonly isIndex: boolean;4615  readonly asIndex: Compact<u128>;4616  readonly isArray4: boolean;4617  readonly asArray4: U8aFixed;4618  readonly isArray8: boolean;4619  readonly asArray8: U8aFixed;4620  readonly isArray16: boolean;4621  readonly asArray16: U8aFixed;4622  readonly isArray32: boolean;4623  readonly asArray32: U8aFixed;4624  readonly isBlob: boolean;4625  readonly asBlob: Bytes;4626  readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';4627}46284629/** @name XcmV2MultiassetFungibility */4630export interface XcmV2MultiassetFungibility extends Enum {4631  readonly isFungible: boolean;4632  readonly asFungible: Compact<u128>;4633  readonly isNonFungible: boolean;4634  readonly asNonFungible: XcmV2MultiassetAssetInstance;4635  readonly type: 'Fungible' | 'NonFungible';4636}46374638/** @name XcmV2MultiassetMultiAssetFilter */4639export interface XcmV2MultiassetMultiAssetFilter extends Enum {4640  readonly isDefinite: boolean;4641  readonly asDefinite: XcmV2MultiassetMultiAssets;4642  readonly isWild: boolean;4643  readonly asWild: XcmV2MultiassetWildMultiAsset;4644  readonly type: 'Definite' | 'Wild';4645}46464647/** @name XcmV2MultiassetMultiAssets */4648export interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}46494650/** @name XcmV2MultiassetWildFungibility */4651export interface XcmV2MultiassetWildFungibility extends Enum {4652  readonly isFungible: boolean;4653  readonly isNonFungible: boolean;4654  readonly type: 'Fungible' | 'NonFungible';4655}46564657/** @name XcmV2MultiassetWildMultiAsset */4658export interface XcmV2MultiassetWildMultiAsset extends Enum {4659  readonly isAll: boolean;4660  readonly isAllOf: boolean;4661  readonly asAllOf: {4662    readonly id: XcmV2MultiassetAssetId;4663    readonly fun: XcmV2MultiassetWildFungibility;4664  } & Struct;4665  readonly type: 'All' | 'AllOf';4666}46674668/** @name XcmV2MultiLocation */4669export interface XcmV2MultiLocation extends Struct {4670  readonly parents: u8;4671  readonly interior: XcmV2MultilocationJunctions;4672}46734674/** @name XcmV2MultilocationJunctions */4675export interface XcmV2MultilocationJunctions extends Enum {4676  readonly isHere: boolean;4677  readonly isX1: boolean;4678  readonly asX1: XcmV2Junction;4679  readonly isX2: boolean;4680  readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;4681  readonly isX3: boolean;4682  readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4683  readonly isX4: boolean;4684  readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4685  readonly isX5: boolean;4686  readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4687  readonly isX6: boolean;4688  readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4689  readonly isX7: boolean;4690  readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4691  readonly isX8: boolean;4692  readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4693  readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';4694}46954696/** @name XcmV2NetworkId */4697export interface XcmV2NetworkId extends Enum {4698  readonly isAny: boolean;4699  readonly isNamed: boolean;4700  readonly asNamed: Bytes;4701  readonly isPolkadot: boolean;4702  readonly isKusama: boolean;4703  readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';4704}47054706/** @name XcmV2OriginKind */4707export interface XcmV2OriginKind extends Enum {4708  readonly isNative: boolean;4709  readonly isSovereignAccount: boolean;4710  readonly isSuperuser: boolean;4711  readonly isXcm: boolean;4712  readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';4713}47144715/** @name XcmV2Response */4716export interface XcmV2Response extends Enum {4717  readonly isNull: boolean;4718  readonly isAssets: boolean;4719  readonly asAssets: XcmV2MultiassetMultiAssets;4720  readonly isExecutionResult: boolean;4721  readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;4722  readonly isVersion: boolean;4723  readonly asVersion: u32;4724  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';4725}47264727/** @name XcmV2TraitsError */4728export interface XcmV2TraitsError extends Enum {4729  readonly isOverflow: boolean;4730  readonly isUnimplemented: boolean;4731  readonly isUntrustedReserveLocation: boolean;4732  readonly isUntrustedTeleportLocation: boolean;4733  readonly isMultiLocationFull: boolean;4734  readonly isMultiLocationNotInvertible: boolean;4735  readonly isBadOrigin: boolean;4736  readonly isInvalidLocation: boolean;4737  readonly isAssetNotFound: boolean;4738  readonly isFailedToTransactAsset: boolean;4739  readonly isNotWithdrawable: boolean;4740  readonly isLocationCannotHold: boolean;4741  readonly isExceedsMaxMessageSize: boolean;4742  readonly isDestinationUnsupported: boolean;4743  readonly isTransport: boolean;4744  readonly isUnroutable: boolean;4745  readonly isUnknownClaim: boolean;4746  readonly isFailedToDecode: boolean;4747  readonly isMaxWeightInvalid: boolean;4748  readonly isNotHoldingFees: boolean;4749  readonly isTooExpensive: boolean;4750  readonly isTrap: boolean;4751  readonly asTrap: u64;4752  readonly isUnhandledXcmVersion: boolean;4753  readonly isWeightLimitReached: boolean;4754  readonly asWeightLimitReached: u64;4755  readonly isBarrier: boolean;4756  readonly isWeightNotComputable: boolean;4757  readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';4758}47594760/** @name XcmV2WeightLimit */4761export interface XcmV2WeightLimit extends Enum {4762  readonly isUnlimited: boolean;4763  readonly isLimited: boolean;4764  readonly asLimited: Compact<u64>;4765  readonly type: 'Unlimited' | 'Limited';4766}47674768/** @name XcmV2Xcm */4769export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}47704771/** @name XcmV3Instruction */4772export interface XcmV3Instruction extends Enum {4773  readonly isWithdrawAsset: boolean;4774  readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;4775  readonly isReserveAssetDeposited: boolean;4776  readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;4777  readonly isReceiveTeleportedAsset: boolean;4778  readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;4779  readonly isQueryResponse: boolean;4780  readonly asQueryResponse: {4781    readonly queryId: Compact<u64>;4782    readonly response: XcmV3Response;4783    readonly maxWeight: SpWeightsWeightV2Weight;4784    readonly querier: Option<XcmV3MultiLocation>;4785  } & Struct;4786  readonly isTransferAsset: boolean;4787  readonly asTransferAsset: {4788    readonly assets: XcmV3MultiassetMultiAssets;4789    readonly beneficiary: XcmV3MultiLocation;4790  } & Struct;4791  readonly isTransferReserveAsset: boolean;4792  readonly asTransferReserveAsset: {4793    readonly assets: XcmV3MultiassetMultiAssets;4794    readonly dest: XcmV3MultiLocation;4795    readonly xcm: XcmV3Xcm;4796  } & Struct;4797  readonly isTransact: boolean;4798  readonly asTransact: {4799    readonly originKind: XcmV2OriginKind;4800    readonly requireWeightAtMost: SpWeightsWeightV2Weight;4801    readonly call: XcmDoubleEncoded;4802  } & Struct;4803  readonly isHrmpNewChannelOpenRequest: boolean;4804  readonly asHrmpNewChannelOpenRequest: {4805    readonly sender: Compact<u32>;4806    readonly maxMessageSize: Compact<u32>;4807    readonly maxCapacity: Compact<u32>;4808  } & Struct;4809  readonly isHrmpChannelAccepted: boolean;4810  readonly asHrmpChannelAccepted: {4811    readonly recipient: Compact<u32>;4812  } & Struct;4813  readonly isHrmpChannelClosing: boolean;4814  readonly asHrmpChannelClosing: {4815    readonly initiator: Compact<u32>;4816    readonly sender: Compact<u32>;4817    readonly recipient: Compact<u32>;4818  } & Struct;4819  readonly isClearOrigin: boolean;4820  readonly isDescendOrigin: boolean;4821  readonly asDescendOrigin: XcmV3Junctions;4822  readonly isReportError: boolean;4823  readonly asReportError: XcmV3QueryResponseInfo;4824  readonly isDepositAsset: boolean;4825  readonly asDepositAsset: {4826    readonly assets: XcmV3MultiassetMultiAssetFilter;4827    readonly beneficiary: XcmV3MultiLocation;4828  } & Struct;4829  readonly isDepositReserveAsset: boolean;4830  readonly asDepositReserveAsset: {4831    readonly assets: XcmV3MultiassetMultiAssetFilter;4832    readonly dest: XcmV3MultiLocation;4833    readonly xcm: XcmV3Xcm;4834  } & Struct;4835  readonly isExchangeAsset: boolean;4836  readonly asExchangeAsset: {4837    readonly give: XcmV3MultiassetMultiAssetFilter;4838    readonly want: XcmV3MultiassetMultiAssets;4839    readonly maximal: bool;4840  } & Struct;4841  readonly isInitiateReserveWithdraw: boolean;4842  readonly asInitiateReserveWithdraw: {4843    readonly assets: XcmV3MultiassetMultiAssetFilter;4844    readonly reserve: XcmV3MultiLocation;4845    readonly xcm: XcmV3Xcm;4846  } & Struct;4847  readonly isInitiateTeleport: boolean;4848  readonly asInitiateTeleport: {4849    readonly assets: XcmV3MultiassetMultiAssetFilter;4850    readonly dest: XcmV3MultiLocation;4851    readonly xcm: XcmV3Xcm;4852  } & Struct;4853  readonly isReportHolding: boolean;4854  readonly asReportHolding: {4855    readonly responseInfo: XcmV3QueryResponseInfo;4856    readonly assets: XcmV3MultiassetMultiAssetFilter;4857  } & Struct;4858  readonly isBuyExecution: boolean;4859  readonly asBuyExecution: {4860    readonly fees: XcmV3MultiAsset;4861    readonly weightLimit: XcmV3WeightLimit;4862  } & Struct;4863  readonly isRefundSurplus: boolean;4864  readonly isSetErrorHandler: boolean;4865  readonly asSetErrorHandler: XcmV3Xcm;4866  readonly isSetAppendix: boolean;4867  readonly asSetAppendix: XcmV3Xcm;4868  readonly isClearError: boolean;4869  readonly isClaimAsset: boolean;4870  readonly asClaimAsset: {4871    readonly assets: XcmV3MultiassetMultiAssets;4872    readonly ticket: XcmV3MultiLocation;4873  } & Struct;4874  readonly isTrap: boolean;4875  readonly asTrap: Compact<u64>;4876  readonly isSubscribeVersion: boolean;4877  readonly asSubscribeVersion: {4878    readonly queryId: Compact<u64>;4879    readonly maxResponseWeight: SpWeightsWeightV2Weight;4880  } & Struct;4881  readonly isUnsubscribeVersion: boolean;4882  readonly isBurnAsset: boolean;4883  readonly asBurnAsset: XcmV3MultiassetMultiAssets;4884  readonly isExpectAsset: boolean;4885  readonly asExpectAsset: XcmV3MultiassetMultiAssets;4886  readonly isExpectOrigin: boolean;4887  readonly asExpectOrigin: Option<XcmV3MultiLocation>;4888  readonly isExpectError: boolean;4889  readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;4890  readonly isExpectTransactStatus: boolean;4891  readonly asExpectTransactStatus: XcmV3MaybeErrorCode;4892  readonly isQueryPallet: boolean;4893  readonly asQueryPallet: {4894    readonly moduleName: Bytes;4895    readonly responseInfo: XcmV3QueryResponseInfo;4896  } & Struct;4897  readonly isExpectPallet: boolean;4898  readonly asExpectPallet: {4899    readonly index: Compact<u32>;4900    readonly name: Bytes;4901    readonly moduleName: Bytes;4902    readonly crateMajor: Compact<u32>;4903    readonly minCrateMinor: Compact<u32>;4904  } & Struct;4905  readonly isReportTransactStatus: boolean;4906  readonly asReportTransactStatus: XcmV3QueryResponseInfo;4907  readonly isClearTransactStatus: boolean;4908  readonly isUniversalOrigin: boolean;4909  readonly asUniversalOrigin: XcmV3Junction;4910  readonly isExportMessage: boolean;4911  readonly asExportMessage: {4912    readonly network: XcmV3JunctionNetworkId;4913    readonly destination: XcmV3Junctions;4914    readonly xcm: XcmV3Xcm;4915  } & Struct;4916  readonly isLockAsset: boolean;4917  readonly asLockAsset: {4918    readonly asset: XcmV3MultiAsset;4919    readonly unlocker: XcmV3MultiLocation;4920  } & Struct;4921  readonly isUnlockAsset: boolean;4922  readonly asUnlockAsset: {4923    readonly asset: XcmV3MultiAsset;4924    readonly target: XcmV3MultiLocation;4925  } & Struct;4926  readonly isNoteUnlockable: boolean;4927  readonly asNoteUnlockable: {4928    readonly asset: XcmV3MultiAsset;4929    readonly owner: XcmV3MultiLocation;4930  } & Struct;4931  readonly isRequestUnlock: boolean;4932  readonly asRequestUnlock: {4933    readonly asset: XcmV3MultiAsset;4934    readonly locker: XcmV3MultiLocation;4935  } & Struct;4936  readonly isSetFeesMode: boolean;4937  readonly asSetFeesMode: {4938    readonly jitWithdraw: bool;4939  } & Struct;4940  readonly isSetTopic: boolean;4941  readonly asSetTopic: U8aFixed;4942  readonly isClearTopic: boolean;4943  readonly isAliasOrigin: boolean;4944  readonly asAliasOrigin: XcmV3MultiLocation;4945  readonly isUnpaidExecution: boolean;4946  readonly asUnpaidExecution: {4947    readonly weightLimit: XcmV3WeightLimit;4948    readonly checkOrigin: Option<XcmV3MultiLocation>;4949  } & Struct;4950  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';4951}49524953/** @name XcmV3Junction */4954export interface XcmV3Junction extends Enum {4955  readonly isParachain: boolean;4956  readonly asParachain: Compact<u32>;4957  readonly isAccountId32: boolean;4958  readonly asAccountId32: {4959    readonly network: Option<XcmV3JunctionNetworkId>;4960    readonly id: U8aFixed;4961  } & Struct;4962  readonly isAccountIndex64: boolean;4963  readonly asAccountIndex64: {4964    readonly network: Option<XcmV3JunctionNetworkId>;4965    readonly index: Compact<u64>;4966  } & Struct;4967  readonly isAccountKey20: boolean;4968  readonly asAccountKey20: {4969    readonly network: Option<XcmV3JunctionNetworkId>;4970    readonly key: U8aFixed;4971  } & Struct;4972  readonly isPalletInstance: boolean;4973  readonly asPalletInstance: u8;4974  readonly isGeneralIndex: boolean;4975  readonly asGeneralIndex: Compact<u128>;4976  readonly isGeneralKey: boolean;4977  readonly asGeneralKey: {4978    readonly length: u8;4979    readonly data: U8aFixed;4980  } & Struct;4981  readonly isOnlyChild: boolean;4982  readonly isPlurality: boolean;4983  readonly asPlurality: {4984    readonly id: XcmV3JunctionBodyId;4985    readonly part: XcmV3JunctionBodyPart;4986  } & Struct;4987  readonly isGlobalConsensus: boolean;4988  readonly asGlobalConsensus: XcmV3JunctionNetworkId;4989  readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';4990}49914992/** @name XcmV3JunctionBodyId */4993export interface XcmV3JunctionBodyId extends Enum {4994  readonly isUnit: boolean;4995  readonly isMoniker: boolean;4996  readonly asMoniker: U8aFixed;4997  readonly isIndex: boolean;4998  readonly asIndex: Compact<u32>;4999  readonly isExecutive: boolean;5000  readonly isTechnical: boolean;5001  readonly isLegislative: boolean;5002  readonly isJudicial: boolean;5003  readonly isDefense: boolean;5004  readonly isAdministration: boolean;5005  readonly isTreasury: boolean;5006  readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';5007}50085009/** @name XcmV3JunctionBodyPart */5010export interface XcmV3JunctionBodyPart extends Enum {5011  readonly isVoice: boolean;5012  readonly isMembers: boolean;5013  readonly asMembers: {5014    readonly count: Compact<u32>;5015  } & Struct;5016  readonly isFraction: boolean;5017  readonly asFraction: {5018    readonly nom: Compact<u32>;5019    readonly denom: Compact<u32>;5020  } & Struct;5021  readonly isAtLeastProportion: boolean;5022  readonly asAtLeastProportion: {5023    readonly nom: Compact<u32>;5024    readonly denom: Compact<u32>;5025  } & Struct;5026  readonly isMoreThanProportion: boolean;5027  readonly asMoreThanProportion: {5028    readonly nom: Compact<u32>;5029    readonly denom: Compact<u32>;5030  } & Struct;5031  readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';5032}50335034/** @name XcmV3JunctionNetworkId */5035export interface XcmV3JunctionNetworkId extends Enum {5036  readonly isByGenesis: boolean;5037  readonly asByGenesis: U8aFixed;5038  readonly isByFork: boolean;5039  readonly asByFork: {5040    readonly blockNumber: u64;5041    readonly blockHash: U8aFixed;5042  } & Struct;5043  readonly isPolkadot: boolean;5044  readonly isKusama: boolean;5045  readonly isWestend: boolean;5046  readonly isRococo: boolean;5047  readonly isWococo: boolean;5048  readonly isEthereum: boolean;5049  readonly asEthereum: {5050    readonly chainId: Compact<u64>;5051  } & Struct;5052  readonly isBitcoinCore: boolean;5053  readonly isBitcoinCash: boolean;5054  readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';5055}50565057/** @name XcmV3Junctions */5058export interface XcmV3Junctions extends Enum {5059  readonly isHere: boolean;5060  readonly isX1: boolean;5061  readonly asX1: XcmV3Junction;5062  readonly isX2: boolean;5063  readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;5064  readonly isX3: boolean;5065  readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5066  readonly isX4: boolean;5067  readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5068  readonly isX5: boolean;5069  readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5070  readonly isX6: boolean;5071  readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5072  readonly isX7: boolean;5073  readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5074  readonly isX8: boolean;5075  readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5076  readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';5077}50785079/** @name XcmV3MaybeErrorCode */5080export interface XcmV3MaybeErrorCode extends Enum {5081  readonly isSuccess: boolean;5082  readonly isError: boolean;5083  readonly asError: Bytes;5084  readonly isTruncatedError: boolean;5085  readonly asTruncatedError: Bytes;5086  readonly type: 'Success' | 'Error' | 'TruncatedError';5087}50885089/** @name XcmV3MultiAsset */5090export interface XcmV3MultiAsset extends Struct {5091  readonly id: XcmV3MultiassetAssetId;5092  readonly fun: XcmV3MultiassetFungibility;5093}50945095/** @name XcmV3MultiassetAssetId */5096export interface XcmV3MultiassetAssetId extends Enum {5097  readonly isConcrete: boolean;5098  readonly asConcrete: XcmV3MultiLocation;5099  readonly isAbstract: boolean;5100  readonly asAbstract: U8aFixed;5101  readonly type: 'Concrete' | 'Abstract';5102}51035104/** @name XcmV3MultiassetAssetInstance */5105export interface XcmV3MultiassetAssetInstance extends Enum {5106  readonly isUndefined: boolean;5107  readonly isIndex: boolean;5108  readonly asIndex: Compact<u128>;5109  readonly isArray4: boolean;5110  readonly asArray4: U8aFixed;5111  readonly isArray8: boolean;5112  readonly asArray8: U8aFixed;5113  readonly isArray16: boolean;5114  readonly asArray16: U8aFixed;5115  readonly isArray32: boolean;5116  readonly asArray32: U8aFixed;5117  readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';5118}51195120/** @name XcmV3MultiassetFungibility */5121export interface XcmV3MultiassetFungibility extends Enum {5122  readonly isFungible: boolean;5123  readonly asFungible: Compact<u128>;5124  readonly isNonFungible: boolean;5125  readonly asNonFungible: XcmV3MultiassetAssetInstance;5126  readonly type: 'Fungible' | 'NonFungible';5127}51285129/** @name XcmV3MultiassetMultiAssetFilter */5130export interface XcmV3MultiassetMultiAssetFilter extends Enum {5131  readonly isDefinite: boolean;5132  readonly asDefinite: XcmV3MultiassetMultiAssets;5133  readonly isWild: boolean;5134  readonly asWild: XcmV3MultiassetWildMultiAsset;5135  readonly type: 'Definite' | 'Wild';5136}51375138/** @name XcmV3MultiassetMultiAssets */5139export interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}51405141/** @name XcmV3MultiassetWildFungibility */5142export interface XcmV3MultiassetWildFungibility extends Enum {5143  readonly isFungible: boolean;5144  readonly isNonFungible: boolean;5145  readonly type: 'Fungible' | 'NonFungible';5146}51475148/** @name XcmV3MultiassetWildMultiAsset */5149export interface XcmV3MultiassetWildMultiAsset extends Enum {5150  readonly isAll: boolean;5151  readonly isAllOf: boolean;5152  readonly asAllOf: {5153    readonly id: XcmV3MultiassetAssetId;5154    readonly fun: XcmV3MultiassetWildFungibility;5155  } & Struct;5156  readonly isAllCounted: boolean;5157  readonly asAllCounted: Compact<u32>;5158  readonly isAllOfCounted: boolean;5159  readonly asAllOfCounted: {5160    readonly id: XcmV3MultiassetAssetId;5161    readonly fun: XcmV3MultiassetWildFungibility;5162    readonly count: Compact<u32>;5163  } & Struct;5164  readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';5165}51665167/** @name XcmV3MultiLocation */5168export interface XcmV3MultiLocation extends Struct {5169  readonly parents: u8;5170  readonly interior: XcmV3Junctions;5171}51725173/** @name XcmV3PalletInfo */5174export interface XcmV3PalletInfo extends Struct {5175  readonly index: Compact<u32>;5176  readonly name: Bytes;5177  readonly moduleName: Bytes;5178  readonly major: Compact<u32>;5179  readonly minor: Compact<u32>;5180  readonly patch: Compact<u32>;5181}51825183/** @name XcmV3QueryResponseInfo */5184export interface XcmV3QueryResponseInfo extends Struct {5185  readonly destination: XcmV3MultiLocation;5186  readonly queryId: Compact<u64>;5187  readonly maxWeight: SpWeightsWeightV2Weight;5188}51895190/** @name XcmV3Response */5191export interface XcmV3Response extends Enum {5192  readonly isNull: boolean;5193  readonly isAssets: boolean;5194  readonly asAssets: XcmV3MultiassetMultiAssets;5195  readonly isExecutionResult: boolean;5196  readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;5197  readonly isVersion: boolean;5198  readonly asVersion: u32;5199  readonly isPalletsInfo: boolean;5200  readonly asPalletsInfo: Vec<XcmV3PalletInfo>;5201  readonly isDispatchResult: boolean;5202  readonly asDispatchResult: XcmV3MaybeErrorCode;5203  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';5204}52055206/** @name XcmV3TraitsError */5207export interface XcmV3TraitsError extends Enum {5208  readonly isOverflow: boolean;5209  readonly isUnimplemented: boolean;5210  readonly isUntrustedReserveLocation: boolean;5211  readonly isUntrustedTeleportLocation: boolean;5212  readonly isLocationFull: boolean;5213  readonly isLocationNotInvertible: boolean;5214  readonly isBadOrigin: boolean;5215  readonly isInvalidLocation: boolean;5216  readonly isAssetNotFound: boolean;5217  readonly isFailedToTransactAsset: boolean;5218  readonly isNotWithdrawable: boolean;5219  readonly isLocationCannotHold: boolean;5220  readonly isExceedsMaxMessageSize: boolean;5221  readonly isDestinationUnsupported: boolean;5222  readonly isTransport: boolean;5223  readonly isUnroutable: boolean;5224  readonly isUnknownClaim: boolean;5225  readonly isFailedToDecode: boolean;5226  readonly isMaxWeightInvalid: boolean;5227  readonly isNotHoldingFees: boolean;5228  readonly isTooExpensive: boolean;5229  readonly isTrap: boolean;5230  readonly asTrap: u64;5231  readonly isExpectationFalse: boolean;5232  readonly isPalletNotFound: boolean;5233  readonly isNameMismatch: boolean;5234  readonly isVersionIncompatible: boolean;5235  readonly isHoldingWouldOverflow: boolean;5236  readonly isExportError: boolean;5237  readonly isReanchorFailed: boolean;5238  readonly isNoDeal: boolean;5239  readonly isFeesNotMet: boolean;5240  readonly isLockError: boolean;5241  readonly isNoPermission: boolean;5242  readonly isUnanchored: boolean;5243  readonly isNotDepositable: boolean;5244  readonly isUnhandledXcmVersion: boolean;5245  readonly isWeightLimitReached: boolean;5246  readonly asWeightLimitReached: SpWeightsWeightV2Weight;5247  readonly isBarrier: boolean;5248  readonly isWeightNotComputable: boolean;5249  readonly isExceedsStackLimit: boolean;5250  readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';5251}52525253/** @name XcmV3TraitsOutcome */5254export interface XcmV3TraitsOutcome extends Enum {5255  readonly isComplete: boolean;5256  readonly asComplete: SpWeightsWeightV2Weight;5257  readonly isIncomplete: boolean;5258  readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;5259  readonly isError: boolean;5260  readonly asError: XcmV3TraitsError;5261  readonly type: 'Complete' | 'Incomplete' | 'Error';5262}52635264/** @name XcmV3WeightLimit */5265export interface XcmV3WeightLimit extends Enum {5266  readonly isUnlimited: boolean;5267  readonly isLimited: boolean;5268  readonly asLimited: SpWeightsWeightV2Weight;5269  readonly type: 'Unlimited' | 'Limited';5270}52715272/** @name XcmV3Xcm */5273export interface XcmV3Xcm extends Vec<XcmV3Instruction> {}52745275/** @name XcmVersionedAssetId */5276export interface XcmVersionedAssetId extends Enum {5277  readonly isV3: boolean;5278  readonly asV3: XcmV3MultiassetAssetId;5279  readonly type: 'V3';5280}52815282/** @name XcmVersionedMultiAsset */5283export interface XcmVersionedMultiAsset extends Enum {5284  readonly isV2: boolean;5285  readonly asV2: XcmV2MultiAsset;5286  readonly isV3: boolean;5287  readonly asV3: XcmV3MultiAsset;5288  readonly type: 'V2' | 'V3';5289}52905291/** @name XcmVersionedMultiAssets */5292export interface XcmVersionedMultiAssets extends Enum {5293  readonly isV2: boolean;5294  readonly asV2: XcmV2MultiassetMultiAssets;5295  readonly isV3: boolean;5296  readonly asV3: XcmV3MultiassetMultiAssets;5297  readonly type: 'V2' | 'V3';5298}52995300/** @name XcmVersionedMultiLocation */5301export interface XcmVersionedMultiLocation extends Enum {5302  readonly isV2: boolean;5303  readonly asV2: XcmV2MultiLocation;5304  readonly isV3: boolean;5305  readonly asV3: XcmV3MultiLocation;5306  readonly type: 'V2' | 'V3';5307}53085309/** @name XcmVersionedResponse */5310export interface XcmVersionedResponse extends Enum {5311  readonly isV2: boolean;5312  readonly asV2: XcmV2Response;5313  readonly isV3: boolean;5314  readonly asV3: XcmV3Response;5315  readonly type: 'V2' | 'V3';5316}53175318/** @name XcmVersionedXcm */5319export interface XcmVersionedXcm extends Enum {5320  readonly isV2: boolean;5321  readonly asV2: XcmV2Xcm;5322  readonly isV3: boolean;5323  readonly asV3: XcmV3Xcm;5324  readonly type: 'V2' | 'V3';5325}53265327export type PHANTOM_DEFAULT = 'default';
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
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, 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';
+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 '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   interface InterfaceTypes {
@@ -79,6 +79,11 @@
     FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
     FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
     FrameSystemPhase: FrameSystemPhase;
+    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
+    OpalRuntimeRuntime: OpalRuntimeRuntime;
+    OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
+    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+    OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
     OrmlTokensAccountData: OrmlTokensAccountData;
     OrmlTokensBalanceLock: OrmlTokensBalanceLock;
     OrmlTokensModuleCall: OrmlTokensModuleCall;
@@ -244,11 +249,6 @@
     PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
     PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
     PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
-    QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
-    QuartzRuntimeRuntime: QuartzRuntimeRuntime;
-    QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
-    QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
-    QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
     SpArithmeticArithmeticError: SpArithmeticArithmeticError;
     SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
     SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
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;