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
233 **/233 **/
234 [key: string]: Codec;234 [key: string]: Codec;
235 };235 };
236 govScheduler: {
237 /**
238 * The maximum weight that may be scheduled per block for any dispatchables.
239 **/
240 maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
241 /**
242 * The maximum number of scheduled calls in the queue for a single block.
243 *
244 * NOTE:
245 * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
246 * higher limit under `runtime-benchmarks` feature.
247 **/
248 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
249 /**
250 * Generic const
251 **/
252 [key: string]: Codec;
253 };
254 identity: {236 identity: {
255 /**237 /**
256 * The amount held on deposit for a registered identity238 * The amount held on deposit for a registered identity
295 **/277 **/
296 [key: string]: Codec;278 [key: string]: Codec;
297 };279 };
280 scheduler: {
281 /**
282 * The maximum weight that may be scheduled per block for any dispatchables.
283 **/
284 maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
285 /**
286 * The maximum number of scheduled calls in the queue for a single block.
287 *
288 * NOTE:
289 * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
290 * higher limit under `runtime-benchmarks` feature.
291 **/
292 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
293 /**
294 * Generic const
295 **/
296 [key: string]: Codec;
297 };
298 stateTrieMigration: {298 stateTrieMigration: {
299 /**299 /**
300 * Maximal number of bytes that a key can have.300 * Maximal number of bytes that a key can have.
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
762 **/762 **/
763 [key: string]: AugmentedError<ApiType>;763 [key: string]: AugmentedError<ApiType>;
764 };764 };
765 govScheduler: {
766 /**
767 * Failed to schedule a call
768 **/
769 FailedToSchedule: AugmentedError<ApiType>;
770 /**
771 * Attempt to use a non-named function on a named task.
772 **/
773 Named: AugmentedError<ApiType>;
774 /**
775 * Cannot find the scheduled call.
776 **/
777 NotFound: AugmentedError<ApiType>;
778 /**
779 * Reschedule failed because it does not change scheduled time.
780 **/
781 RescheduleNoChange: AugmentedError<ApiType>;
782 /**
783 * Given target block number is in the past.
784 **/
785 TargetBlockNumberInPast: AugmentedError<ApiType>;
786 /**
787 * Generic error
788 **/
789 [key: string]: AugmentedError<ApiType>;
790 };
791 identity: {765 identity: {
792 /**766 /**
793 * Account ID is already named.767 * Account ID is already named.
1074 **/1048 **/
1075 [key: string]: AugmentedError<ApiType>;1049 [key: string]: AugmentedError<ApiType>;
1076 };1050 };
1051 scheduler: {
1052 /**
1053 * Failed to schedule a call
1054 **/
1055 FailedToSchedule: AugmentedError<ApiType>;
1056 /**
1057 * Attempt to use a non-named function on a named task.
1058 **/
1059 Named: AugmentedError<ApiType>;
1060 /**
1061 * Cannot find the scheduled call.
1062 **/
1063 NotFound: AugmentedError<ApiType>;
1064 /**
1065 * Reschedule failed because it does not change scheduled time.
1066 **/
1067 RescheduleNoChange: AugmentedError<ApiType>;
1068 /**
1069 * Given target block number is in the past.
1070 **/
1071 TargetBlockNumberInPast: AugmentedError<ApiType>;
1072 /**
1073 * Generic error
1074 **/
1075 [key: string]: AugmentedError<ApiType>;
1076 };
1077 session: {1077 session: {
1078 /**1078 /**
1079 * Registered duplicate key.1079 * Registered duplicate key.
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
628 **/628 **/
629 [key: string]: AugmentedEvent<ApiType>;629 [key: string]: AugmentedEvent<ApiType>;
630 };630 };
631 govScheduler: {
632 /**
633 * The call for the provided hash was not found so the task has been aborted.
634 **/
635 CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
636 /**
637 * Canceled some task.
638 **/
639 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
640 /**
641 * Dispatched some task.
642 **/
643 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> }>;
644 /**
645 * The given task was unable to be renewed since the agenda is full at that block.
646 **/
647 PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
648 /**
649 * The given task can never be executed since it is overweight.
650 **/
651 PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
652 /**
653 * Scheduled some task.
654 **/
655 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
656 /**
657 * Generic event
658 **/
659 [key: string]: AugmentedEvent<ApiType>;
660 };
661 identity: {631 identity: {
662 /**632 /**
663 * A number of identities and associated info were forcibly inserted.633 * A number of identities and associated info were forcibly inserted.
952 **/922 **/
953 [key: string]: AugmentedEvent<ApiType>;923 [key: string]: AugmentedEvent<ApiType>;
954 };924 };
925 scheduler: {
926 /**
927 * The call for the provided hash was not found so the task has been aborted.
928 **/
929 CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
930 /**
931 * Canceled some task.
932 **/
933 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
934 /**
935 * Dispatched some task.
936 **/
937 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> }>;
938 /**
939 * The given task was unable to be renewed since the agenda is full at that block.
940 **/
941 PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
942 /**
943 * The given task can never be executed since it is overweight.
944 **/
945 PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
946 /**
947 * Scheduled some task.
948 **/
949 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
950 /**
951 * Generic event
952 **/
953 [key: string]: AugmentedEvent<ApiType>;
954 };
955 session: {955 session: {
956 /**956 /**
957 * New session has happened. Note that the argument is the session index, not the957 * New session has happened. Note that the argument is the session index, not the
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
10import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
11import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';11import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, Call, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { AccountId32, Call, H160, H256 } from '@polkadot/types/interfaces/runtime';
13import 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';13import 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';
14import type { Observable } from '@polkadot/types/types';14import type { Observable } from '@polkadot/types/types';
1515
16export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;16export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
611 **/611 **/
612 [key: string]: QueryableStorageEntry<ApiType>;612 [key: string]: QueryableStorageEntry<ApiType>;
613 };613 };
614 govScheduler: {
615 /**
616 * Items to be executed, indexed by the block number that they should be executed on.
617 **/
618 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
619 incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
620 /**
621 * Lookup from a name to the block number and index of the task.
622 *
623 * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
624 * identities.
625 **/
626 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
627 /**
628 * Generic query
629 **/
630 [key: string]: QueryableStorageEntry<ApiType>;
631 };
632 identity: {614 identity: {
633 /**615 /**
634 * Information that is pertinent to identify the entity behind an account.616 * Information that is pertinent to identify the entity behind an account.
1011 **/993 **/
1012 [key: string]: QueryableStorageEntry<ApiType>;994 [key: string]: QueryableStorageEntry<ApiType>;
1013 };995 };
996 scheduler: {
997 /**
998 * Items to be executed, indexed by the block number that they should be executed on.
999 **/
1000 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
1001 incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
1002 /**
1003 * Lookup from a name to the block number and index of the task.
1004 *
1005 * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
1006 * identities.
1007 **/
1008 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
1009 /**
1010 * Generic query
1011 **/
1012 [key: string]: QueryableStorageEntry<ApiType>;
1013 };
1014 session: {1014 session: {
1015 /**1015 /**
1016 * Current index of the session.1016 * Current index of the session.
1031 /**1031 /**
1032 * The next session keys for a validator.1032 * The next session keys for a validator.
1033 **/1033 **/
1034 nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<QuartzRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;1034 nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<OpalRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
1035 /**1035 /**
1036 * True if the underlying economic identities or weighting behind the validators1036 * True if the underlying economic identities or weighting behind the validators
1037 * has changed in the queued validator set.1037 * has changed in the queued validator set.
1041 * The queued keys for the next session. When the next session begins, these keys1041 * The queued keys for the next session. When the next session begins, these keys
1042 * will be used to determine the validator's session keys.1042 * will be used to determine the validator's session keys.
1043 **/1043 **/
1044 queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, QuartzRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;1044 queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, OpalRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
1045 /**1045 /**
1046 * The current set of validators.1046 * The current set of validators.
1047 **/1047 **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
10import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
11import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';11import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';12import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
13import 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';13import 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';
1414
15export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;15export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
16export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;16export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
987 * 987 *
988 * Emits `Submitted`.988 * Emits `Submitted`.
989 **/989 **/
990 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]>;990 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]>;
991 /**991 /**
992 * Generic tx992 * Generic tx
993 **/993 **/
1001 **/1001 **/
1002 [key: string]: SubmittableExtrinsicFunction<ApiType>;1002 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1003 };1003 };
1004 govScheduler: {
1005 /**
1006 * Cancel an anonymously scheduled task.
1007 **/
1008 cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
1009 /**
1010 * Cancel a named scheduled task.
1011 **/
1012 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
1013 /**
1014 * Anonymously schedule a task.
1015 **/
1016 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]>;
1017 /**
1018 * Anonymously schedule a task after a delay.
1019 **/
1020 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]>;
1021 /**
1022 * Schedule a named task.
1023 **/
1024 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]>;
1025 /**
1026 * Schedule a named task after a delay.
1027 **/
1028 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]>;
1029 /**
1030 * Generic tx
1031 **/
1032 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1033 };
1034 identity: {1004 identity: {
1035 /**1005 /**
1036 * Add a registrar to the system.1006 * Add a registrar to the system.
1580 **/1550 **/
1581 [key: string]: SubmittableExtrinsicFunction<ApiType>;1551 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1582 };1552 };
1553 scheduler: {
1554 /**
1555 * Cancel an anonymously scheduled task.
1556 **/
1557 cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
1558 /**
1559 * Cancel a named scheduled task.
1560 **/
1561 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
1562 /**
1563 * Anonymously schedule a task.
1564 **/
1565 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]>;
1566 /**
1567 * Anonymously schedule a task after a delay.
1568 **/
1569 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]>;
1570 /**
1571 * Schedule a named task.
1572 **/
1573 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]>;
1574 /**
1575 * Schedule a named task after a delay.
1576 **/
1577 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]>;
1578 /**
1579 * Generic tx
1580 **/
1581 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1582 };
1583 session: {1583 session: {
1584 /**1584 /**
1585 * Removes any session key(s) of the function caller.1585 * Removes any session key(s) of the function caller.
1607 * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is1607 * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
1608 * fixed.1608 * fixed.
1609 **/1609 **/
1610 setKeys: AugmentedSubmittable<(keys: QuartzRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [QuartzRuntimeRuntimeCommonSessionKeys, Bytes]>;1610 setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
1611 /**1611 /**
1612 * Generic tx1612 * Generic tx
1613 **/1613 **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import 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';8import 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';
9import type { Data, StorageKey } from '@polkadot/types';9import type { Data, StorageKey } from '@polkadot/types';
10import 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';10import 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';
11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
795 OffenceDetails: OffenceDetails;795 OffenceDetails: OffenceDetails;
796 Offender: Offender;796 Offender: Offender;
797 OldV1SessionInfo: OldV1SessionInfo;797 OldV1SessionInfo: OldV1SessionInfo;
798 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
799 OpalRuntimeRuntime: OpalRuntimeRuntime;
800 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
801 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
802 OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
798 OpaqueCall: OpaqueCall;803 OpaqueCall: OpaqueCall;
799 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;804 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
800 OpaqueMetadata: OpaqueMetadata;805 OpaqueMetadata: OpaqueMetadata;
1067 PvfCheckStatement: PvfCheckStatement;1072 PvfCheckStatement: PvfCheckStatement;
1068 PvfExecTimeoutKind: PvfExecTimeoutKind;1073 PvfExecTimeoutKind: PvfExecTimeoutKind;
1069 PvfPrepTimeoutKind: PvfPrepTimeoutKind;1074 PvfPrepTimeoutKind: PvfPrepTimeoutKind;
1070 QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
1071 QuartzRuntimeRuntime: QuartzRuntimeRuntime;
1072 QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
1073 QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
1074 QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
1075 QueryId: QueryId;1075 QueryId: QueryId;
1076 QueryStatus: QueryStatus;1076 QueryStatus: QueryStatus;
1077 QueueConfigData: QueueConfigData;1077 QueueConfigData: QueueConfigData;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
752 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';752 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
753}753}
754
755/** @name OpalRuntimeOriginCaller */
756export interface OpalRuntimeOriginCaller extends Enum {
757 readonly isSystem: boolean;
758 readonly asSystem: FrameSupportDispatchRawOrigin;
759 readonly isVoid: boolean;
760 readonly asVoid: SpCoreVoid;
761 readonly isCouncil: boolean;
762 readonly asCouncil: PalletCollectiveRawOrigin;
763 readonly isTechnicalCommittee: boolean;
764 readonly asTechnicalCommittee: PalletCollectiveRawOrigin;
765 readonly isPolkadotXcm: boolean;
766 readonly asPolkadotXcm: PalletXcmOrigin;
767 readonly isCumulusXcm: boolean;
768 readonly asCumulusXcm: CumulusPalletXcmOrigin;
769 readonly isOrigins: boolean;
770 readonly asOrigins: PalletGovOriginsOrigin;
771 readonly isEthereum: boolean;
772 readonly asEthereum: PalletEthereumRawOrigin;
773 readonly type: 'System' | 'Void' | 'Council' | 'TechnicalCommittee' | 'PolkadotXcm' | 'CumulusXcm' | 'Origins' | 'Ethereum';
774}
775
776/** @name OpalRuntimeRuntime */
777export interface OpalRuntimeRuntime extends Null {}
778
779/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */
780export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
781
782/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
783export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
784
785/** @name OpalRuntimeRuntimeCommonSessionKeys */
786export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
787 readonly aura: SpConsensusAuraSr25519AppSr25519Public;
788}
754789
755/** @name OrmlTokensAccountData */790/** @name OrmlTokensAccountData */
756export interface OrmlTokensAccountData extends Struct {791export interface OrmlTokensAccountData extends Struct {
2789export interface PalletReferendaCall extends Enum {2824export interface PalletReferendaCall extends Enum {
2790 readonly isSubmit: boolean;2825 readonly isSubmit: boolean;
2791 readonly asSubmit: {2826 readonly asSubmit: {
2792 readonly proposalOrigin: QuartzRuntimeOriginCaller;2827 readonly proposalOrigin: OpalRuntimeOriginCaller;
2793 readonly proposal: FrameSupportPreimagesBounded;2828 readonly proposal: FrameSupportPreimagesBounded;
2794 readonly enactmentMoment: FrameSupportScheduleDispatchTime;2829 readonly enactmentMoment: FrameSupportScheduleDispatchTime;
2795 } & Struct;2830 } & Struct;
2991/** @name PalletReferendaReferendumStatus */3026/** @name PalletReferendaReferendumStatus */
2992export interface PalletReferendaReferendumStatus extends Struct {3027export interface PalletReferendaReferendumStatus extends Struct {
2993 readonly track: u16;3028 readonly track: u16;
2994 readonly origin: QuartzRuntimeOriginCaller;3029 readonly origin: OpalRuntimeOriginCaller;
2995 readonly proposal: FrameSupportPreimagesBounded;3030 readonly proposal: FrameSupportPreimagesBounded;
2996 readonly enactment: FrameSupportScheduleDispatchTime;3031 readonly enactment: FrameSupportScheduleDispatchTime;
2997 readonly submitted: u32;3032 readonly submitted: u32;
3122 readonly priority: u8;3157 readonly priority: u8;
3123 readonly call: FrameSupportPreimagesBounded;3158 readonly call: FrameSupportPreimagesBounded;
3124 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3159 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
3125 readonly origin: QuartzRuntimeOriginCaller;3160 readonly origin: OpalRuntimeOriginCaller;
3126}3161}
31273162
3128/** @name PalletSessionCall */3163/** @name PalletSessionCall */
3129export interface PalletSessionCall extends Enum {3164export interface PalletSessionCall extends Enum {
3130 readonly isSetKeys: boolean;3165 readonly isSetKeys: boolean;
3131 readonly asSetKeys: {3166 readonly asSetKeys: {
3132 readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;3167 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
3133 readonly proof: Bytes;3168 readonly proof: Bytes;
3134 } & Struct;3169 } & Struct;
3135 readonly isPurgeKeys: boolean;3170 readonly isPurgeKeys: boolean;
3925 readonly type: 'Present';3960 readonly type: 'Present';
3926}3961}
3927
3928/** @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}
3948
3949/** @name QuartzRuntimeRuntime */
3950export interface QuartzRuntimeRuntime extends Null {}
3951
3952/** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls */
3953export interface QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
3954
3955/** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance */
3956export interface QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
3957
3958/** @name QuartzRuntimeRuntimeCommonSessionKeys */
3959export interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {
3960 readonly aura: SpConsensusAuraSr25519AppSr25519Public;
3961}
39623962
3963/** @name SpArithmeticArithmeticError */3963/** @name SpArithmeticArithmeticError */
3964export interface SpArithmeticArithmeticError extends Enum {3964export interface SpArithmeticArithmeticError extends Enum {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
60 RuntimeEnvironmentUpdated: 'Null'60 RuntimeEnvironmentUpdated: 'Null'
61 }61 }
62 },62 },
63 /**63 /**
64 * Lookup19: frame_system::EventRecord<quartz_runtime::RuntimeEvent, primitive_types::H256>64 * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
65 **/65 **/
66 FrameSystemEventRecord: {66 FrameSystemEventRecord: {
67 phase: 'FrameSystemPhase',67 phase: 'FrameSystemPhase',
68 event: 'Event',68 event: 'Event',
1080 }1080 }
1081 }1081 }
1082 },1082 },
1083 /**1083 /**
1084 * Lookup86: frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>1084 * Lookup86: frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>
1085 **/1085 **/
1086 FrameSupportPreimagesBounded: {1086 FrameSupportPreimagesBounded: {
1087 _enum: {1087 _enum: {
1088 Legacy: {1088 Legacy: {
1297 _alias: {1297 _alias: {
1298 keys_: 'keys',1298 keys_: 'keys',
1299 },1299 },
1300 keys_: 'QuartzRuntimeRuntimeCommonSessionKeys',1300 keys_: 'OpalRuntimeRuntimeCommonSessionKeys',
1301 proof: 'Bytes',1301 proof: 'Bytes',
1302 },1302 },
1303 purge_keys: 'Null'1303 purge_keys: 'Null'
1304 }1304 }
1305 },1305 },
1306 /**1306 /**
1307 * Lookup115: quartz_runtime::runtime_common::SessionKeys1307 * Lookup115: opal_runtime::runtime_common::SessionKeys
1308 **/1308 **/
1309 QuartzRuntimeRuntimeCommonSessionKeys: {1309 OpalRuntimeRuntimeCommonSessionKeys: {
1310 aura: 'SpConsensusAuraSr25519AppSr25519Public'1310 aura: 'SpConsensusAuraSr25519AppSr25519Public'
1311 },1311 },
1312 /**1312 /**
2030 PalletReferendaCall: {2030 PalletReferendaCall: {
2031 _enum: {2031 _enum: {
2032 submit: {2032 submit: {
2033 proposalOrigin: 'QuartzRuntimeOriginCaller',2033 proposalOrigin: 'OpalRuntimeOriginCaller',
2034 proposal: 'FrameSupportPreimagesBounded',2034 proposal: 'FrameSupportPreimagesBounded',
2035 enactmentMoment: 'FrameSupportScheduleDispatchTime',2035 enactmentMoment: 'FrameSupportScheduleDispatchTime',
2036 },2036 },
2061 }2061 }
2062 }2062 }
2063 },2063 },
2064 /**2064 /**
2065 * Lookup209: quartz_runtime::OriginCaller2065 * Lookup209: opal_runtime::OriginCaller
2066 **/2066 **/
2067 QuartzRuntimeOriginCaller: {2067 OpalRuntimeOriginCaller: {
2068 _enum: {2068 _enum: {
2069 system: 'FrameSupportDispatchRawOrigin',2069 system: 'FrameSupportDispatchRawOrigin',
2070 __Unused1: 'Null',2070 __Unused1: 'Null',
4176 PalletPreimageError: {4176 PalletPreimageError: {
4177 _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']4177 _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
4178 },4178 },
4179 /**4179 /**
4180 * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>4180 * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
4181 **/4181 **/
4182 PalletDemocracyReferendumInfo: {4182 PalletDemocracyReferendumInfo: {
4183 _enum: {4183 _enum: {
4184 Ongoing: 'PalletDemocracyReferendumStatus',4184 Ongoing: 'PalletDemocracyReferendumStatus',
4188 }4188 }
4189 }4189 }
4190 },4190 },
4191 /**4191 /**
4192 * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>4192 * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
4193 **/4193 **/
4194 PalletDemocracyReferendumStatus: {4194 PalletDemocracyReferendumStatus: {
4195 end: 'u32',4195 end: 'u32',
4196 proposal: 'FrameSupportPreimagesBounded',4196 proposal: 'FrameSupportPreimagesBounded',
4276 PalletRankedCollectiveError: {4276 PalletRankedCollectiveError: {
4277 _enum: ['AlreadyMember', 'NotMember', 'NotPolling', 'Ongoing', 'NoneRemaining', 'Corruption', 'RankTooLow', 'InvalidWitness', 'NoPermission']4277 _enum: ['AlreadyMember', 'NotMember', 'NotPolling', 'Ongoing', 'NoneRemaining', 'Corruption', 'RankTooLow', 'InvalidWitness', 'NoPermission']
4278 },4278 },
4279 /**4279 /**
4280 * 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>4280 * 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>
4281 **/4281 **/
4282 PalletReferendaReferendumInfo: {4282 PalletReferendaReferendumInfo: {
4283 _enum: {4283 _enum: {
4284 Ongoing: 'PalletReferendaReferendumStatus',4284 Ongoing: 'PalletReferendaReferendumStatus',
4289 Killed: 'u32'4289 Killed: 'u32'
4290 }4290 }
4291 },4291 },
4292 /**4292 /**
4293 * 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>4293 * 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>
4294 **/4294 **/
4295 PalletReferendaReferendumStatus: {4295 PalletReferendaReferendumStatus: {
4296 track: 'u16',4296 track: 'u16',
4297 origin: 'QuartzRuntimeOriginCaller',4297 origin: 'OpalRuntimeOriginCaller',
4298 proposal: 'FrameSupportPreimagesBounded',4298 proposal: 'FrameSupportPreimagesBounded',
4299 enactment: 'FrameSupportScheduleDispatchTime',4299 enactment: 'FrameSupportScheduleDispatchTime',
4300 submitted: 'u32',4300 submitted: 'u32',
4362 PalletReferendaError: {4362 PalletReferendaError: {
4363 _enum: ['NotOngoing', 'HasDeposit', 'BadTrack', 'Full', 'QueueEmpty', 'BadReferendum', 'NothingToDo', 'NoTrack', 'Unfinished', 'NoPermission', 'NoDeposit', 'BadStatus', 'PreimageNotExist']4363 _enum: ['NotOngoing', 'HasDeposit', 'BadTrack', 'Full', 'QueueEmpty', 'BadReferendum', 'NothingToDo', 'NoTrack', 'Unfinished', 'NoPermission', 'NoDeposit', 'BadStatus', 'PreimageNotExist']
4364 },4364 },
4365 /**4365 /**
4366 * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, BlockNumber, quartz_runtime::OriginCaller, sp_core::crypto::AccountId32>4366 * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
4367 **/4367 **/
4368 PalletSchedulerScheduled: {4368 PalletSchedulerScheduled: {
4369 maybeId: 'Option<[u8;32]>',4369 maybeId: 'Option<[u8;32]>',
4370 priority: 'u8',4370 priority: 'u8',
4371 call: 'FrameSupportPreimagesBounded',4371 call: 'FrameSupportPreimagesBounded',
4372 maybePeriodic: 'Option<(u32,u32)>',4372 maybePeriodic: 'Option<(u32,u32)>',
4373 origin: 'QuartzRuntimeOriginCaller'4373 origin: 'OpalRuntimeOriginCaller'
4374 },4374 },
4375 /**4375 /**
4376 * Lookup528: pallet_scheduler::pallet::Error<T>4376 * Lookup528: pallet_scheduler::pallet::Error<T>
4911 * Lookup673: frame_system::extensions::check_weight::CheckWeight<T>4911 * Lookup673: frame_system::extensions::check_weight::CheckWeight<T>
4912 **/4912 **/
4913 FrameSystemExtensionsCheckWeight: 'Null',4913 FrameSystemExtensionsCheckWeight: 'Null',
4914 /**4914 /**
4915 * Lookup674: quartz_runtime::runtime_common::maintenance::CheckMaintenance4915 * Lookup674: opal_runtime::runtime_common::maintenance::CheckMaintenance
4916 **/4916 **/
4917 QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',4917 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
4918 /**4918 /**
4919 * Lookup675: quartz_runtime::runtime_common::identity::DisableIdentityCalls4919 * Lookup675: opal_runtime::runtime_common::identity::DisableIdentityCalls
4920 **/4920 **/
4921 QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',4921 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
4922 /**4922 /**
4923 * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<quartz_runtime::Runtime>4923 * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
4924 **/4924 **/
4925 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',4925 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
4926 /**4926 /**
4927 * Lookup677: quartz_runtime::Runtime4927 * Lookup677: opal_runtime::Runtime
4928 **/4928 **/
4929 QuartzRuntimeRuntime: 'Null',4929 OpalRuntimeRuntime: 'Null',
4930 /**4930 /**
4931 * Lookup678: pallet_ethereum::FakeTransactionFinalizer<quartz_runtime::Runtime>4931 * Lookup678: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
4932 **/4932 **/
4933 PalletEthereumFakeTransactionFinalizer: 'Null'4933 PalletEthereumFakeTransactionFinalizer: 'Null'
4934};4934};
49354935
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import 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';8import 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';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
79 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;79 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
80 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;80 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
81 FrameSystemPhase: FrameSystemPhase;81 FrameSystemPhase: FrameSystemPhase;
82 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
83 OpalRuntimeRuntime: OpalRuntimeRuntime;
84 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
85 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
86 OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
82 OrmlTokensAccountData: OrmlTokensAccountData;87 OrmlTokensAccountData: OrmlTokensAccountData;
83 OrmlTokensBalanceLock: OrmlTokensBalanceLock;88 OrmlTokensBalanceLock: OrmlTokensBalanceLock;
84 OrmlTokensModuleCall: OrmlTokensModuleCall;89 OrmlTokensModuleCall: OrmlTokensModuleCall;
244 PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;249 PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
245 PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;250 PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
246 PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;251 PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
247 QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
248 QuartzRuntimeRuntime: QuartzRuntimeRuntime;
249 QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
250 QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
251 QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
252 SpArithmeticArithmeticError: SpArithmeticArithmeticError;252 SpArithmeticArithmeticError: SpArithmeticArithmeticError;
253 SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;253 SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
254 SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;254 SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
1390 interface PalletSessionCall extends Enum {1390 interface PalletSessionCall extends Enum {
1391 readonly isSetKeys: boolean;1391 readonly isSetKeys: boolean;
1392 readonly asSetKeys: {1392 readonly asSetKeys: {
1393 readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;1393 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
1394 readonly proof: Bytes;1394 readonly proof: Bytes;
1395 } & Struct;1395 } & Struct;
1396 readonly isPurgeKeys: boolean;1396 readonly isPurgeKeys: boolean;
1397 readonly type: 'SetKeys' | 'PurgeKeys';1397 readonly type: 'SetKeys' | 'PurgeKeys';
1398 }1398 }
13991399
1400 /** @name QuartzRuntimeRuntimeCommonSessionKeys (115) */1400 /** @name OpalRuntimeRuntimeCommonSessionKeys (115) */
1401 interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {1401 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
1402 readonly aura: SpConsensusAuraSr25519AppSr25519Public;1402 readonly aura: SpConsensusAuraSr25519AppSr25519Public;
1403 }1403 }
14041404
2177 interface PalletReferendaCall extends Enum {2177 interface PalletReferendaCall extends Enum {
2178 readonly isSubmit: boolean;2178 readonly isSubmit: boolean;
2179 readonly asSubmit: {2179 readonly asSubmit: {
2180 readonly proposalOrigin: QuartzRuntimeOriginCaller;2180 readonly proposalOrigin: OpalRuntimeOriginCaller;
2181 readonly proposal: FrameSupportPreimagesBounded;2181 readonly proposal: FrameSupportPreimagesBounded;
2182 readonly enactmentMoment: FrameSupportScheduleDispatchTime;2182 readonly enactmentMoment: FrameSupportScheduleDispatchTime;
2183 } & Struct;2183 } & Struct;
2217 readonly type: 'Submit' | 'PlaceDecisionDeposit' | 'RefundDecisionDeposit' | 'Cancel' | 'Kill' | 'NudgeReferendum' | 'OneFewerDeciding' | 'RefundSubmissionDeposit' | 'SetMetadata';2217 readonly type: 'Submit' | 'PlaceDecisionDeposit' | 'RefundDecisionDeposit' | 'Cancel' | 'Kill' | 'NudgeReferendum' | 'OneFewerDeciding' | 'RefundSubmissionDeposit' | 'SetMetadata';
2218 }2218 }
22192219
2220 /** @name QuartzRuntimeOriginCaller (209) */2220 /** @name OpalRuntimeOriginCaller (209) */
2221 interface QuartzRuntimeOriginCaller extends Enum {2221 interface OpalRuntimeOriginCaller extends Enum {
2222 readonly isSystem: boolean;2222 readonly isSystem: boolean;
2223 readonly asSystem: FrameSupportDispatchRawOrigin;2223 readonly asSystem: FrameSupportDispatchRawOrigin;
2224 readonly isVoid: boolean;2224 readonly isVoid: boolean;
4616 /** @name PalletReferendaReferendumStatus (509) */4616 /** @name PalletReferendaReferendumStatus (509) */
4617 interface PalletReferendaReferendumStatus extends Struct {4617 interface PalletReferendaReferendumStatus extends Struct {
4618 readonly track: u16;4618 readonly track: u16;
4619 readonly origin: QuartzRuntimeOriginCaller;4619 readonly origin: OpalRuntimeOriginCaller;
4620 readonly proposal: FrameSupportPreimagesBounded;4620 readonly proposal: FrameSupportPreimagesBounded;
4621 readonly enactment: FrameSupportScheduleDispatchTime;4621 readonly enactment: FrameSupportScheduleDispatchTime;
4622 readonly submitted: u32;4622 readonly submitted: u32;
4701 readonly priority: u8;4701 readonly priority: u8;
4702 readonly call: FrameSupportPreimagesBounded;4702 readonly call: FrameSupportPreimagesBounded;
4703 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;4703 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
4704 readonly origin: QuartzRuntimeOriginCaller;4704 readonly origin: OpalRuntimeOriginCaller;
4705 }4705 }
47064706
4707 /** @name PalletSchedulerError (528) */4707 /** @name PalletSchedulerError (528) */
5312 /** @name FrameSystemExtensionsCheckWeight (673) */5312 /** @name FrameSystemExtensionsCheckWeight (673) */
5313 type FrameSystemExtensionsCheckWeight = Null;5313 type FrameSystemExtensionsCheckWeight = Null;
53145314
5315 /** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */5315 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */
5316 type QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;5316 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
53175317
5318 /** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */5318 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */
5319 type QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;5319 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
53205320
5321 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (676) */5321 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (676) */
5322 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}5322 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
53235323
5324 /** @name QuartzRuntimeRuntime (677) */5324 /** @name OpalRuntimeRuntime (677) */
5325 type QuartzRuntimeRuntime = Null;5325 type OpalRuntimeRuntime = Null;
53265326
5327 /** @name PalletEthereumFakeTransactionFinalizer (678) */5327 /** @name PalletEthereumFakeTransactionFinalizer (678) */
5328 type PalletEthereumFakeTransactionFinalizer = Null;5328 type PalletEthereumFakeTransactionFinalizer = Null;