difftreelog
test regenerate types
in: master
10 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -233,24 +233,6 @@
**/
[key: string]: Codec;
};
- govScheduler: {
- /**
- * The maximum weight that may be scheduled per block for any dispatchables.
- **/
- maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
- /**
- * The maximum number of scheduled calls in the queue for a single block.
- *
- * NOTE:
- * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
- * higher limit under `runtime-benchmarks` feature.
- **/
- maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
- /**
- * Generic const
- **/
- [key: string]: Codec;
- };
identity: {
/**
* The amount held on deposit for a registered identity
@@ -295,6 +277,24 @@
**/
[key: string]: Codec;
};
+ scheduler: {
+ /**
+ * The maximum weight that may be scheduled per block for any dispatchables.
+ **/
+ maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
+ /**
+ * The maximum number of scheduled calls in the queue for a single block.
+ *
+ * NOTE:
+ * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
+ * higher limit under `runtime-benchmarks` feature.
+ **/
+ maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
+ /**
+ * Generic const
+ **/
+ [key: string]: Codec;
+ };
stateTrieMigration: {
/**
* Maximal number of bytes that a key can have.
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -762,32 +762,6 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- govScheduler: {
- /**
- * Failed to schedule a call
- **/
- FailedToSchedule: AugmentedError<ApiType>;
- /**
- * Attempt to use a non-named function on a named task.
- **/
- Named: AugmentedError<ApiType>;
- /**
- * Cannot find the scheduled call.
- **/
- NotFound: AugmentedError<ApiType>;
- /**
- * Reschedule failed because it does not change scheduled time.
- **/
- RescheduleNoChange: AugmentedError<ApiType>;
- /**
- * Given target block number is in the past.
- **/
- TargetBlockNumberInPast: AugmentedError<ApiType>;
- /**
- * Generic error
- **/
- [key: string]: AugmentedError<ApiType>;
- };
identity: {
/**
* Account ID is already named.
@@ -1074,6 +1048,32 @@
**/
[key: string]: AugmentedError<ApiType>;
};
+ scheduler: {
+ /**
+ * Failed to schedule a call
+ **/
+ FailedToSchedule: AugmentedError<ApiType>;
+ /**
+ * Attempt to use a non-named function on a named task.
+ **/
+ Named: AugmentedError<ApiType>;
+ /**
+ * Cannot find the scheduled call.
+ **/
+ NotFound: AugmentedError<ApiType>;
+ /**
+ * Reschedule failed because it does not change scheduled time.
+ **/
+ RescheduleNoChange: AugmentedError<ApiType>;
+ /**
+ * Given target block number is in the past.
+ **/
+ TargetBlockNumberInPast: AugmentedError<ApiType>;
+ /**
+ * Generic error
+ **/
+ [key: string]: AugmentedError<ApiType>;
+ };
session: {
/**
* Registered duplicate key.
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -628,36 +628,6 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
- govScheduler: {
- /**
- * The call for the provided hash was not found so the task has been aborted.
- **/
- CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Canceled some task.
- **/
- Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Dispatched some task.
- **/
- Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
- /**
- * The given task was unable to be renewed since the agenda is full at that block.
- **/
- PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * The given task can never be executed since it is overweight.
- **/
- PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Scheduled some task.
- **/
- Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
identity: {
/**
* A number of identities and associated info were forcibly inserted.
@@ -952,6 +922,36 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
+ scheduler: {
+ /**
+ * The call for the provided hash was not found so the task has been aborted.
+ **/
+ CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+ /**
+ * Canceled some task.
+ **/
+ Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
+ /**
+ * Dispatched some task.
+ **/
+ Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
+ /**
+ * The given task was unable to be renewed since the agenda is full at that block.
+ **/
+ PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+ /**
+ * The given task can never be executed since it is overweight.
+ **/
+ PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+ /**
+ * Scheduled some task.
+ **/
+ Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
session: {
/**
* New session has happened. Note that the argument is the session index, not the
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -10,7 +10,7 @@
import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletCollectiveVotes, PalletConfigurationAppPromotionConfiguration, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCodeMetadata, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletReferendaReferendumInfo, PalletSchedulerScheduled, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeRuntimeCommonSessionKeys, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletCollectiveVotes, PalletConfigurationAppPromotionConfiguration, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCodeMetadata, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletReferendaReferendumInfo, PalletSchedulerScheduled, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -611,24 +611,6 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
- govScheduler: {
- /**
- * Items to be executed, indexed by the block number that they should be executed on.
- **/
- agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
- incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Lookup from a name to the block number and index of the task.
- *
- * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
- * identities.
- **/
- lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
identity: {
/**
* Information that is pertinent to identify the entity behind an account.
@@ -1011,6 +993,24 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
+ scheduler: {
+ /**
+ * Items to be executed, indexed by the block number that they should be executed on.
+ **/
+ agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+ incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
+ * Lookup from a name to the block number and index of the task.
+ *
+ * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
+ * identities.
+ **/
+ lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
+ /**
+ * Generic query
+ **/
+ [key: string]: QueryableStorageEntry<ApiType>;
+ };
session: {
/**
* Current index of the session.
@@ -1031,7 +1031,7 @@
/**
* The next session keys for a validator.
**/
- nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<QuartzRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+ nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<OpalRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
/**
* True if the underlying economic identities or weighting behind the validators
* has changed in the queued validator set.
@@ -1041,7 +1041,7 @@
* The queued keys for the next session. When the next session begins, these keys
* will be used to determine the validator's session keys.
**/
- queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, QuartzRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
+ queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, OpalRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* The current set of validators.
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -10,7 +10,7 @@
import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, QuartzRuntimeOriginCaller, QuartzRuntimeRuntimeCommonSessionKeys, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, OpalRuntimeOriginCaller, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -987,7 +987,7 @@
*
* Emits `Submitted`.
**/
- submit: AugmentedSubmittable<(proposalOrigin: QuartzRuntimeOriginCaller | { system: any } | { Void: any } | { Council: any } | { TechnicalCommittee: any } | { PolkadotXcm: any } | { CumulusXcm: any } | { Origins: any } | { Ethereum: any } | string | Uint8Array, proposal: FrameSupportPreimagesBounded | { Legacy: any } | { Inline: any } | { Lookup: any } | string | Uint8Array, enactmentMoment: FrameSupportScheduleDispatchTime | { At: any } | { After: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [QuartzRuntimeOriginCaller, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime]>;
+ submit: AugmentedSubmittable<(proposalOrigin: OpalRuntimeOriginCaller | { system: any } | { Void: any } | { Council: any } | { TechnicalCommittee: any } | { PolkadotXcm: any } | { CumulusXcm: any } | { Origins: any } | { Ethereum: any } | string | Uint8Array, proposal: FrameSupportPreimagesBounded | { Legacy: any } | { Inline: any } | { Lookup: any } | string | Uint8Array, enactmentMoment: FrameSupportScheduleDispatchTime | { At: any } | { After: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeOriginCaller, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime]>;
/**
* Generic tx
**/
@@ -996,36 +996,6 @@
foreignAssets: {
registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- govScheduler: {
- /**
- * Cancel an anonymously scheduled task.
- **/
- cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
- /**
- * Cancel a named scheduled task.
- **/
- cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
- /**
- * Anonymously schedule a task.
- **/
- schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
- /**
- * Anonymously schedule a task after a delay.
- **/
- scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
- /**
- * Schedule a named task.
- **/
- scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
- /**
- * Schedule a named task after a delay.
- **/
- scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
/**
* Generic tx
**/
@@ -1580,6 +1550,36 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
+ scheduler: {
+ /**
+ * Cancel an anonymously scheduled task.
+ **/
+ cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+ /**
+ * Cancel a named scheduled task.
+ **/
+ cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
+ /**
+ * Anonymously schedule a task.
+ **/
+ schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Anonymously schedule a task after a delay.
+ **/
+ scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Schedule a named task.
+ **/
+ scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Schedule a named task after a delay.
+ **/
+ scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Generic tx
+ **/
+ [key: string]: SubmittableExtrinsicFunction<ApiType>;
+ };
session: {
/**
* Removes any session key(s) of the function caller.
@@ -1607,7 +1607,7 @@
* - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
* fixed.
**/
- setKeys: AugmentedSubmittable<(keys: QuartzRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [QuartzRuntimeRuntimeCommonSessionKeys, Bytes]>;
+ setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeOriginCaller, QuartzRuntimeRuntime, QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls, QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance, QuartzRuntimeRuntimeCommonSessionKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyEquivocationProof, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, BeefyVoteMessage, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractConstructorSpecV4, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEnvironmentV4, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMessageSpecV3, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { FungiblesAccessError } from '@polkadot/types/interfaces/fungibles';39import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';40import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';41import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';42import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';43import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';44import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';45import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV15, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletMetadataV15, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, RuntimeApiMetadataLatest, RuntimeApiMetadataV15, RuntimeApiMethodMetadataV15, RuntimeApiMethodParamMetadataV15, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';46import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';47import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';48import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';49import type { StorageKind } from '@polkadot/types/interfaces/offchain';50import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';51import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExecutorParam, ExecutorParams, ExecutorParamsHash, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, PvfExecTimeoutKind, PvfPrepTimeoutKind, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';52import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';53import type { Approvals } from '@polkadot/types/interfaces/poll';54import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';55import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';56import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';57import type { RpcMethods } from '@polkadot/types/interfaces/rpc';58import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeCall, RuntimeDbWeight, RuntimeEvent, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV0, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';59import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';60import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';61import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';62import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';63import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';64import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';65import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';66import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';67import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';68import type { Multiplier } from '@polkadot/types/interfaces/txpayment';69import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';70import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';71import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';72import type { VestingInfo } from '@polkadot/types/interfaces/vesting';73import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7475declare module '@polkadot/types/types/registry' {76 interface InterfaceTypes {77 AbridgedCandidateReceipt: AbridgedCandidateReceipt;78 AbridgedHostConfiguration: AbridgedHostConfiguration;79 AbridgedHrmpChannel: AbridgedHrmpChannel;80 AccountData: AccountData;81 AccountId: AccountId;82 AccountId20: AccountId20;83 AccountId32: AccountId32;84 AccountId33: AccountId33;85 AccountIdOf: AccountIdOf;86 AccountIndex: AccountIndex;87 AccountInfo: AccountInfo;88 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;89 AccountInfoWithProviders: AccountInfoWithProviders;90 AccountInfoWithRefCount: AccountInfoWithRefCount;91 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;92 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;93 AccountStatus: AccountStatus;94 AccountValidity: AccountValidity;95 AccountVote: AccountVote;96 AccountVoteSplit: AccountVoteSplit;97 AccountVoteStandard: AccountVoteStandard;98 ActiveEraInfo: ActiveEraInfo;99 ActiveGilt: ActiveGilt;100 ActiveGiltsTotal: ActiveGiltsTotal;101 ActiveIndex: ActiveIndex;102 ActiveRecovery: ActiveRecovery;103 Address: Address;104 AliveContractInfo: AliveContractInfo;105 AllowedSlots: AllowedSlots;106 AnySignature: AnySignature;107 ApiId: ApiId;108 ApplyExtrinsicResult: ApplyExtrinsicResult;109 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;110 ApprovalFlag: ApprovalFlag;111 Approvals: Approvals;112 ArithmeticError: ArithmeticError;113 AssetApproval: AssetApproval;114 AssetApprovalKey: AssetApprovalKey;115 AssetBalance: AssetBalance;116 AssetDestroyWitness: AssetDestroyWitness;117 AssetDetails: AssetDetails;118 AssetId: AssetId;119 AssetInstance: AssetInstance;120 AssetInstanceV0: AssetInstanceV0;121 AssetInstanceV1: AssetInstanceV1;122 AssetInstanceV2: AssetInstanceV2;123 AssetMetadata: AssetMetadata;124 AssetOptions: AssetOptions;125 AssignmentId: AssignmentId;126 AssignmentKind: AssignmentKind;127 AttestedCandidate: AttestedCandidate;128 AuctionIndex: AuctionIndex;129 AuthIndex: AuthIndex;130 AuthorityDiscoveryId: AuthorityDiscoveryId;131 AuthorityId: AuthorityId;132 AuthorityIndex: AuthorityIndex;133 AuthorityList: AuthorityList;134 AuthoritySet: AuthoritySet;135 AuthoritySetChange: AuthoritySetChange;136 AuthoritySetChanges: AuthoritySetChanges;137 AuthoritySignature: AuthoritySignature;138 AuthorityWeight: AuthorityWeight;139 AvailabilityBitfield: AvailabilityBitfield;140 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;141 BabeAuthorityWeight: BabeAuthorityWeight;142 BabeBlockWeight: BabeBlockWeight;143 BabeEpochConfiguration: BabeEpochConfiguration;144 BabeEquivocationProof: BabeEquivocationProof;145 BabeGenesisConfiguration: BabeGenesisConfiguration;146 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;147 BabeWeight: BabeWeight;148 BackedCandidate: BackedCandidate;149 Balance: Balance;150 BalanceLock: BalanceLock;151 BalanceLockTo212: BalanceLockTo212;152 BalanceOf: BalanceOf;153 BalanceStatus: BalanceStatus;154 BeefyAuthoritySet: BeefyAuthoritySet;155 BeefyCommitment: BeefyCommitment;156 BeefyEquivocationProof: BeefyEquivocationProof;157 BeefyId: BeefyId;158 BeefyKey: BeefyKey;159 BeefyNextAuthoritySet: BeefyNextAuthoritySet;160 BeefyPayload: BeefyPayload;161 BeefyPayloadId: BeefyPayloadId;162 BeefySignedCommitment: BeefySignedCommitment;163 BeefyVoteMessage: BeefyVoteMessage;164 BenchmarkBatch: BenchmarkBatch;165 BenchmarkConfig: BenchmarkConfig;166 BenchmarkList: BenchmarkList;167 BenchmarkMetadata: BenchmarkMetadata;168 BenchmarkParameter: BenchmarkParameter;169 BenchmarkResult: BenchmarkResult;170 Bid: Bid;171 Bidder: Bidder;172 BidKind: BidKind;173 BitVec: BitVec;174 Block: Block;175 BlockAttestations: BlockAttestations;176 BlockHash: BlockHash;177 BlockLength: BlockLength;178 BlockNumber: BlockNumber;179 BlockNumberFor: BlockNumberFor;180 BlockNumberOf: BlockNumberOf;181 BlockStats: BlockStats;182 BlockTrace: BlockTrace;183 BlockTraceEvent: BlockTraceEvent;184 BlockTraceEventData: BlockTraceEventData;185 BlockTraceSpan: BlockTraceSpan;186 BlockV0: BlockV0;187 BlockV1: BlockV1;188 BlockV2: BlockV2;189 BlockWeights: BlockWeights;190 BodyId: BodyId;191 BodyPart: BodyPart;192 bool: bool;193 Bool: Bool;194 Bounty: Bounty;195 BountyIndex: BountyIndex;196 BountyStatus: BountyStatus;197 BountyStatusActive: BountyStatusActive;198 BountyStatusCuratorProposed: BountyStatusCuratorProposed;199 BountyStatusPendingPayout: BountyStatusPendingPayout;200 BridgedBlockHash: BridgedBlockHash;201 BridgedBlockNumber: BridgedBlockNumber;202 BridgedHeader: BridgedHeader;203 BridgeMessageId: BridgeMessageId;204 BufferedSessionChange: BufferedSessionChange;205 Bytes: Bytes;206 Call: Call;207 CallHash: CallHash;208 CallHashOf: CallHashOf;209 CallIndex: CallIndex;210 CallOrigin: CallOrigin;211 CandidateCommitments: CandidateCommitments;212 CandidateDescriptor: CandidateDescriptor;213 CandidateEvent: CandidateEvent;214 CandidateHash: CandidateHash;215 CandidateInfo: CandidateInfo;216 CandidatePendingAvailability: CandidatePendingAvailability;217 CandidateReceipt: CandidateReceipt;218 ChainId: ChainId;219 ChainProperties: ChainProperties;220 ChainType: ChainType;221 ChangesTrieConfiguration: ChangesTrieConfiguration;222 ChangesTrieSignal: ChangesTrieSignal;223 CheckInherentsResult: CheckInherentsResult;224 ClassDetails: ClassDetails;225 ClassId: ClassId;226 ClassMetadata: ClassMetadata;227 CodecHash: CodecHash;228 CodeHash: CodeHash;229 CodeSource: CodeSource;230 CodeUploadRequest: CodeUploadRequest;231 CodeUploadResult: CodeUploadResult;232 CodeUploadResultValue: CodeUploadResultValue;233 CollationInfo: CollationInfo;234 CollationInfoV1: CollationInfoV1;235 CollatorId: CollatorId;236 CollatorSignature: CollatorSignature;237 CollectiveOrigin: CollectiveOrigin;238 CommittedCandidateReceipt: CommittedCandidateReceipt;239 CompactAssignments: CompactAssignments;240 CompactAssignmentsTo257: CompactAssignmentsTo257;241 CompactAssignmentsTo265: CompactAssignmentsTo265;242 CompactAssignmentsWith16: CompactAssignmentsWith16;243 CompactAssignmentsWith24: CompactAssignmentsWith24;244 CompactScore: CompactScore;245 CompactScoreCompact: CompactScoreCompact;246 ConfigData: ConfigData;247 Consensus: Consensus;248 ConsensusEngineId: ConsensusEngineId;249 ConsumedWeight: ConsumedWeight;250 ContractCallFlags: ContractCallFlags;251 ContractCallRequest: ContractCallRequest;252 ContractConstructorSpecLatest: ContractConstructorSpecLatest;253 ContractConstructorSpecV0: ContractConstructorSpecV0;254 ContractConstructorSpecV1: ContractConstructorSpecV1;255 ContractConstructorSpecV2: ContractConstructorSpecV2;256 ContractConstructorSpecV3: ContractConstructorSpecV3;257 ContractConstructorSpecV4: ContractConstructorSpecV4;258 ContractContractSpecV0: ContractContractSpecV0;259 ContractContractSpecV1: ContractContractSpecV1;260 ContractContractSpecV2: ContractContractSpecV2;261 ContractContractSpecV3: ContractContractSpecV3;262 ContractContractSpecV4: ContractContractSpecV4;263 ContractCryptoHasher: ContractCryptoHasher;264 ContractDiscriminant: ContractDiscriminant;265 ContractDisplayName: ContractDisplayName;266 ContractEnvironmentV4: ContractEnvironmentV4;267 ContractEventParamSpecLatest: ContractEventParamSpecLatest;268 ContractEventParamSpecV0: ContractEventParamSpecV0;269 ContractEventParamSpecV2: ContractEventParamSpecV2;270 ContractEventSpecLatest: ContractEventSpecLatest;271 ContractEventSpecV0: ContractEventSpecV0;272 ContractEventSpecV1: ContractEventSpecV1;273 ContractEventSpecV2: ContractEventSpecV2;274 ContractExecResult: ContractExecResult;275 ContractExecResultOk: ContractExecResultOk;276 ContractExecResultResult: ContractExecResultResult;277 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;278 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;279 ContractExecResultTo255: ContractExecResultTo255;280 ContractExecResultTo260: ContractExecResultTo260;281 ContractExecResultTo267: ContractExecResultTo267;282 ContractExecResultU64: ContractExecResultU64;283 ContractInfo: ContractInfo;284 ContractInstantiateResult: ContractInstantiateResult;285 ContractInstantiateResultTo267: ContractInstantiateResultTo267;286 ContractInstantiateResultTo299: ContractInstantiateResultTo299;287 ContractInstantiateResultU64: ContractInstantiateResultU64;288 ContractLayoutArray: ContractLayoutArray;289 ContractLayoutCell: ContractLayoutCell;290 ContractLayoutEnum: ContractLayoutEnum;291 ContractLayoutHash: ContractLayoutHash;292 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;293 ContractLayoutKey: ContractLayoutKey;294 ContractLayoutStruct: ContractLayoutStruct;295 ContractLayoutStructField: ContractLayoutStructField;296 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;297 ContractMessageParamSpecV0: ContractMessageParamSpecV0;298 ContractMessageParamSpecV2: ContractMessageParamSpecV2;299 ContractMessageSpecLatest: ContractMessageSpecLatest;300 ContractMessageSpecV0: ContractMessageSpecV0;301 ContractMessageSpecV1: ContractMessageSpecV1;302 ContractMessageSpecV2: ContractMessageSpecV2;303 ContractMessageSpecV3: ContractMessageSpecV3;304 ContractMetadata: ContractMetadata;305 ContractMetadataLatest: ContractMetadataLatest;306 ContractMetadataV0: ContractMetadataV0;307 ContractMetadataV1: ContractMetadataV1;308 ContractMetadataV2: ContractMetadataV2;309 ContractMetadataV3: ContractMetadataV3;310 ContractMetadataV4: ContractMetadataV4;311 ContractProject: ContractProject;312 ContractProjectContract: ContractProjectContract;313 ContractProjectInfo: ContractProjectInfo;314 ContractProjectSource: ContractProjectSource;315 ContractProjectV0: ContractProjectV0;316 ContractReturnFlags: ContractReturnFlags;317 ContractSelector: ContractSelector;318 ContractStorageKey: ContractStorageKey;319 ContractStorageLayout: ContractStorageLayout;320 ContractTypeSpec: ContractTypeSpec;321 Conviction: Conviction;322 CoreAssignment: CoreAssignment;323 CoreIndex: CoreIndex;324 CoreOccupied: CoreOccupied;325 CoreState: CoreState;326 CrateVersion: CrateVersion;327 CreatedBlock: CreatedBlock;328 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;329 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;330 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;331 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;332 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;333 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;334 CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;335 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;336 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;337 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;338 CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize: CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize;339 CumulusPalletXcmCall: CumulusPalletXcmCall;340 CumulusPalletXcmError: CumulusPalletXcmError;341 CumulusPalletXcmEvent: CumulusPalletXcmEvent;342 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;343 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;344 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;345 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;346 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;347 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;348 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;349 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;350 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;351 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;352 Data: Data;353 DeferredOffenceOf: DeferredOffenceOf;354 DefunctVoter: DefunctVoter;355 DelayKind: DelayKind;356 DelayKindBest: DelayKindBest;357 Delegations: Delegations;358 DeletedContract: DeletedContract;359 DeliveredMessages: DeliveredMessages;360 DepositBalance: DepositBalance;361 DepositBalanceOf: DepositBalanceOf;362 DestroyWitness: DestroyWitness;363 Digest: Digest;364 DigestItem: DigestItem;365 DigestOf: DigestOf;366 DispatchClass: DispatchClass;367 DispatchError: DispatchError;368 DispatchErrorModule: DispatchErrorModule;369 DispatchErrorModulePre6: DispatchErrorModulePre6;370 DispatchErrorModuleU8: DispatchErrorModuleU8;371 DispatchErrorModuleU8a: DispatchErrorModuleU8a;372 DispatchErrorPre6: DispatchErrorPre6;373 DispatchErrorPre6First: DispatchErrorPre6First;374 DispatchErrorTo198: DispatchErrorTo198;375 DispatchFeePayment: DispatchFeePayment;376 DispatchInfo: DispatchInfo;377 DispatchInfoTo190: DispatchInfoTo190;378 DispatchInfoTo244: DispatchInfoTo244;379 DispatchOutcome: DispatchOutcome;380 DispatchOutcomePre6: DispatchOutcomePre6;381 DispatchResult: DispatchResult;382 DispatchResultOf: DispatchResultOf;383 DispatchResultTo198: DispatchResultTo198;384 DisputeLocation: DisputeLocation;385 DisputeResult: DisputeResult;386 DisputeState: DisputeState;387 DisputeStatement: DisputeStatement;388 DisputeStatementSet: DisputeStatementSet;389 DoubleEncodedCall: DoubleEncodedCall;390 DoubleVoteReport: DoubleVoteReport;391 DownwardMessage: DownwardMessage;392 EcdsaSignature: EcdsaSignature;393 Ed25519Signature: Ed25519Signature;394 EIP1559Transaction: EIP1559Transaction;395 EIP2930Transaction: EIP2930Transaction;396 ElectionCompute: ElectionCompute;397 ElectionPhase: ElectionPhase;398 ElectionResult: ElectionResult;399 ElectionScore: ElectionScore;400 ElectionSize: ElectionSize;401 ElectionStatus: ElectionStatus;402 EncodedFinalityProofs: EncodedFinalityProofs;403 EncodedJustification: EncodedJustification;404 Epoch: Epoch;405 EpochAuthorship: EpochAuthorship;406 Era: Era;407 EraIndex: EraIndex;408 EraPoints: EraPoints;409 EraRewardPoints: EraRewardPoints;410 EraRewards: EraRewards;411 ErrorMetadataLatest: ErrorMetadataLatest;412 ErrorMetadataV10: ErrorMetadataV10;413 ErrorMetadataV11: ErrorMetadataV11;414 ErrorMetadataV12: ErrorMetadataV12;415 ErrorMetadataV13: ErrorMetadataV13;416 ErrorMetadataV14: ErrorMetadataV14;417 ErrorMetadataV9: ErrorMetadataV9;418 EthAccessList: EthAccessList;419 EthAccessListItem: EthAccessListItem;420 EthAccount: EthAccount;421 EthAddress: EthAddress;422 EthBlock: EthBlock;423 EthBloom: EthBloom;424 EthbloomBloom: EthbloomBloom;425 EthCallRequest: EthCallRequest;426 EthereumAccountId: EthereumAccountId;427 EthereumAddress: EthereumAddress;428 EthereumBlock: EthereumBlock;429 EthereumHeader: EthereumHeader;430 EthereumLog: EthereumLog;431 EthereumLookupSource: EthereumLookupSource;432 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;433 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;434 EthereumSignature: EthereumSignature;435 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;436 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;437 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;438 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;439 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;440 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;441 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;442 EthereumTypesHashH64: EthereumTypesHashH64;443 EthFeeHistory: EthFeeHistory;444 EthFilter: EthFilter;445 EthFilterAddress: EthFilterAddress;446 EthFilterChanges: EthFilterChanges;447 EthFilterTopic: EthFilterTopic;448 EthFilterTopicEntry: EthFilterTopicEntry;449 EthFilterTopicInner: EthFilterTopicInner;450 EthHeader: EthHeader;451 EthLog: EthLog;452 EthReceipt: EthReceipt;453 EthReceiptV0: EthReceiptV0;454 EthReceiptV3: EthReceiptV3;455 EthRichBlock: EthRichBlock;456 EthRichHeader: EthRichHeader;457 EthStorageProof: EthStorageProof;458 EthSubKind: EthSubKind;459 EthSubParams: EthSubParams;460 EthSubResult: EthSubResult;461 EthSyncInfo: EthSyncInfo;462 EthSyncStatus: EthSyncStatus;463 EthTransaction: EthTransaction;464 EthTransactionAction: EthTransactionAction;465 EthTransactionCondition: EthTransactionCondition;466 EthTransactionRequest: EthTransactionRequest;467 EthTransactionSignature: EthTransactionSignature;468 EthTransactionStatus: EthTransactionStatus;469 EthWork: EthWork;470 Event: Event;471 EventId: EventId;472 EventIndex: EventIndex;473 EventMetadataLatest: EventMetadataLatest;474 EventMetadataV10: EventMetadataV10;475 EventMetadataV11: EventMetadataV11;476 EventMetadataV12: EventMetadataV12;477 EventMetadataV13: EventMetadataV13;478 EventMetadataV14: EventMetadataV14;479 EventMetadataV9: EventMetadataV9;480 EventRecord: EventRecord;481 EvmAccount: EvmAccount;482 EvmCallInfo: EvmCallInfo;483 EvmCoreErrorExitError: EvmCoreErrorExitError;484 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;485 EvmCoreErrorExitReason: EvmCoreErrorExitReason;486 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;487 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;488 EvmCreateInfo: EvmCreateInfo;489 EvmLog: EvmLog;490 EvmVicinity: EvmVicinity;491 ExecReturnValue: ExecReturnValue;492 ExecutorParam: ExecutorParam;493 ExecutorParams: ExecutorParams;494 ExecutorParamsHash: ExecutorParamsHash;495 ExitError: ExitError;496 ExitFatal: ExitFatal;497 ExitReason: ExitReason;498 ExitRevert: ExitRevert;499 ExitSucceed: ExitSucceed;500 ExplicitDisputeStatement: ExplicitDisputeStatement;501 Exposure: Exposure;502 ExtendedBalance: ExtendedBalance;503 Extrinsic: Extrinsic;504 ExtrinsicEra: ExtrinsicEra;505 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;506 ExtrinsicMetadataV11: ExtrinsicMetadataV11;507 ExtrinsicMetadataV12: ExtrinsicMetadataV12;508 ExtrinsicMetadataV13: ExtrinsicMetadataV13;509 ExtrinsicMetadataV14: ExtrinsicMetadataV14;510 ExtrinsicOrHash: ExtrinsicOrHash;511 ExtrinsicPayload: ExtrinsicPayload;512 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;513 ExtrinsicPayloadV4: ExtrinsicPayloadV4;514 ExtrinsicSignature: ExtrinsicSignature;515 ExtrinsicSignatureV4: ExtrinsicSignatureV4;516 ExtrinsicStatus: ExtrinsicStatus;517 ExtrinsicsWeight: ExtrinsicsWeight;518 ExtrinsicUnknown: ExtrinsicUnknown;519 ExtrinsicV4: ExtrinsicV4;520 f32: f32;521 F32: F32;522 f64: f64;523 F64: F64;524 FeeDetails: FeeDetails;525 Fixed128: Fixed128;526 Fixed64: Fixed64;527 FixedI128: FixedI128;528 FixedI64: FixedI64;529 FixedU128: FixedU128;530 FixedU64: FixedU64;531 Forcing: Forcing;532 ForkTreePendingChange: ForkTreePendingChange;533 ForkTreePendingChangeNode: ForkTreePendingChangeNode;534 FpRpcTransactionStatus: FpRpcTransactionStatus;535 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;536 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;537 FrameSupportDispatchPays: FrameSupportDispatchPays;538 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;539 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;540 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;541 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;542 FrameSupportPalletId: FrameSupportPalletId;543 FrameSupportPreimagesBounded: FrameSupportPreimagesBounded;544 FrameSupportScheduleDispatchTime: FrameSupportScheduleDispatchTime;545 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;546 FrameSystemAccountInfo: FrameSystemAccountInfo;547 FrameSystemCall: FrameSystemCall;548 FrameSystemError: FrameSystemError;549 FrameSystemEvent: FrameSystemEvent;550 FrameSystemEventRecord: FrameSystemEventRecord;551 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;552 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;553 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;554 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;555 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;556 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;557 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;558 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;559 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;560 FrameSystemPhase: FrameSystemPhase;561 FullIdentification: FullIdentification;562 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;563 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;564 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;565 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;566 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;567 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;568 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;569 FunctionMetadataLatest: FunctionMetadataLatest;570 FunctionMetadataV10: FunctionMetadataV10;571 FunctionMetadataV11: FunctionMetadataV11;572 FunctionMetadataV12: FunctionMetadataV12;573 FunctionMetadataV13: FunctionMetadataV13;574 FunctionMetadataV14: FunctionMetadataV14;575 FunctionMetadataV9: FunctionMetadataV9;576 FundIndex: FundIndex;577 FundInfo: FundInfo;578 Fungibility: Fungibility;579 FungibilityV0: FungibilityV0;580 FungibilityV1: FungibilityV1;581 FungibilityV2: FungibilityV2;582 FungiblesAccessError: FungiblesAccessError;583 Gas: Gas;584 GiltBid: GiltBid;585 GlobalValidationData: GlobalValidationData;586 GlobalValidationSchedule: GlobalValidationSchedule;587 GrandpaCommit: GrandpaCommit;588 GrandpaEquivocation: GrandpaEquivocation;589 GrandpaEquivocationProof: GrandpaEquivocationProof;590 GrandpaEquivocationValue: GrandpaEquivocationValue;591 GrandpaJustification: GrandpaJustification;592 GrandpaPrecommit: GrandpaPrecommit;593 GrandpaPrevote: GrandpaPrevote;594 GrandpaSignedPrecommit: GrandpaSignedPrecommit;595 GroupIndex: GroupIndex;596 GroupRotationInfo: GroupRotationInfo;597 H1024: H1024;598 H128: H128;599 H160: H160;600 H2048: H2048;601 H256: H256;602 H32: H32;603 H512: H512;604 H64: H64;605 Hash: Hash;606 HeadData: HeadData;607 Header: Header;608 HeaderPartial: HeaderPartial;609 Health: Health;610 Heartbeat: Heartbeat;611 HeartbeatTo244: HeartbeatTo244;612 HostConfiguration: HostConfiguration;613 HostFnWeights: HostFnWeights;614 HostFnWeightsTo264: HostFnWeightsTo264;615 HrmpChannel: HrmpChannel;616 HrmpChannelId: HrmpChannelId;617 HrmpOpenChannelRequest: HrmpOpenChannelRequest;618 i128: i128;619 I128: I128;620 i16: i16;621 I16: I16;622 i256: i256;623 I256: I256;624 i32: i32;625 I32: I32;626 I32F32: I32F32;627 i64: i64;628 I64: I64;629 i8: i8;630 I8: I8;631 IdentificationTuple: IdentificationTuple;632 IdentityFields: IdentityFields;633 IdentityInfo: IdentityInfo;634 IdentityInfoAdditional: IdentityInfoAdditional;635 IdentityInfoTo198: IdentityInfoTo198;636 IdentityJudgement: IdentityJudgement;637 ImmortalEra: ImmortalEra;638 ImportedAux: ImportedAux;639 InboundDownwardMessage: InboundDownwardMessage;640 InboundHrmpMessage: InboundHrmpMessage;641 InboundHrmpMessages: InboundHrmpMessages;642 InboundLaneData: InboundLaneData;643 InboundRelayer: InboundRelayer;644 InboundStatus: InboundStatus;645 IncludedBlocks: IncludedBlocks;646 InclusionFee: InclusionFee;647 IncomingParachain: IncomingParachain;648 IncomingParachainDeploy: IncomingParachainDeploy;649 IncomingParachainFixed: IncomingParachainFixed;650 Index: Index;651 IndicesLookupSource: IndicesLookupSource;652 IndividualExposure: IndividualExposure;653 InherentData: InherentData;654 InherentIdentifier: InherentIdentifier;655 InitializationData: InitializationData;656 InstanceDetails: InstanceDetails;657 InstanceId: InstanceId;658 InstanceMetadata: InstanceMetadata;659 InstantiateRequest: InstantiateRequest;660 InstantiateRequestV1: InstantiateRequestV1;661 InstantiateRequestV2: InstantiateRequestV2;662 InstantiateReturnValue: InstantiateReturnValue;663 InstantiateReturnValueOk: InstantiateReturnValueOk;664 InstantiateReturnValueTo267: InstantiateReturnValueTo267;665 InstructionV2: InstructionV2;666 InstructionWeights: InstructionWeights;667 InteriorMultiLocation: InteriorMultiLocation;668 InvalidDisputeStatementKind: InvalidDisputeStatementKind;669 InvalidTransaction: InvalidTransaction;670 isize: isize;671 ISize: ISize;672 Json: Json;673 Junction: Junction;674 Junctions: Junctions;675 JunctionsV1: JunctionsV1;676 JunctionsV2: JunctionsV2;677 JunctionV0: JunctionV0;678 JunctionV1: JunctionV1;679 JunctionV2: JunctionV2;680 Justification: Justification;681 JustificationNotification: JustificationNotification;682 Justifications: Justifications;683 Key: Key;684 KeyOwnerProof: KeyOwnerProof;685 Keys: Keys;686 KeyType: KeyType;687 KeyTypeId: KeyTypeId;688 KeyValue: KeyValue;689 KeyValueOption: KeyValueOption;690 Kind: Kind;691 LaneId: LaneId;692 LastContribution: LastContribution;693 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;694 LeasePeriod: LeasePeriod;695 LeasePeriodOf: LeasePeriodOf;696 LegacyTransaction: LegacyTransaction;697 Limits: Limits;698 LimitsTo264: LimitsTo264;699 LocalValidationData: LocalValidationData;700 LockIdentifier: LockIdentifier;701 LookupSource: LookupSource;702 LookupTarget: LookupTarget;703 LotteryConfig: LotteryConfig;704 MaybeRandomness: MaybeRandomness;705 MaybeVrf: MaybeVrf;706 MemberCount: MemberCount;707 MembershipProof: MembershipProof;708 MessageData: MessageData;709 MessageId: MessageId;710 MessageIngestionType: MessageIngestionType;711 MessageKey: MessageKey;712 MessageNonce: MessageNonce;713 MessageQueueChain: MessageQueueChain;714 MessagesDeliveryProofOf: MessagesDeliveryProofOf;715 MessagesProofOf: MessagesProofOf;716 MessagingStateSnapshot: MessagingStateSnapshot;717 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;718 MetadataAll: MetadataAll;719 MetadataLatest: MetadataLatest;720 MetadataV10: MetadataV10;721 MetadataV11: MetadataV11;722 MetadataV12: MetadataV12;723 MetadataV13: MetadataV13;724 MetadataV14: MetadataV14;725 MetadataV15: MetadataV15;726 MetadataV9: MetadataV9;727 MigrationStatusResult: MigrationStatusResult;728 MmrBatchProof: MmrBatchProof;729 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;730 MmrError: MmrError;731 MmrHash: MmrHash;732 MmrLeafBatchProof: MmrLeafBatchProof;733 MmrLeafIndex: MmrLeafIndex;734 MmrLeafProof: MmrLeafProof;735 MmrNodeIndex: MmrNodeIndex;736 MmrProof: MmrProof;737 MmrRootHash: MmrRootHash;738 ModuleConstantMetadataV10: ModuleConstantMetadataV10;739 ModuleConstantMetadataV11: ModuleConstantMetadataV11;740 ModuleConstantMetadataV12: ModuleConstantMetadataV12;741 ModuleConstantMetadataV13: ModuleConstantMetadataV13;742 ModuleConstantMetadataV9: ModuleConstantMetadataV9;743 ModuleId: ModuleId;744 ModuleMetadataV10: ModuleMetadataV10;745 ModuleMetadataV11: ModuleMetadataV11;746 ModuleMetadataV12: ModuleMetadataV12;747 ModuleMetadataV13: ModuleMetadataV13;748 ModuleMetadataV9: ModuleMetadataV9;749 Moment: Moment;750 MomentOf: MomentOf;751 MoreAttestations: MoreAttestations;752 MortalEra: MortalEra;753 MultiAddress: MultiAddress;754 MultiAsset: MultiAsset;755 MultiAssetFilter: MultiAssetFilter;756 MultiAssetFilterV1: MultiAssetFilterV1;757 MultiAssetFilterV2: MultiAssetFilterV2;758 MultiAssets: MultiAssets;759 MultiAssetsV1: MultiAssetsV1;760 MultiAssetsV2: MultiAssetsV2;761 MultiAssetV0: MultiAssetV0;762 MultiAssetV1: MultiAssetV1;763 MultiAssetV2: MultiAssetV2;764 MultiDisputeStatementSet: MultiDisputeStatementSet;765 MultiLocation: MultiLocation;766 MultiLocationV0: MultiLocationV0;767 MultiLocationV1: MultiLocationV1;768 MultiLocationV2: MultiLocationV2;769 Multiplier: Multiplier;770 Multisig: Multisig;771 MultiSignature: MultiSignature;772 MultiSigner: MultiSigner;773 NetworkId: NetworkId;774 NetworkState: NetworkState;775 NetworkStatePeerset: NetworkStatePeerset;776 NetworkStatePeersetInfo: NetworkStatePeersetInfo;777 NewBidder: NewBidder;778 NextAuthority: NextAuthority;779 NextConfigDescriptor: NextConfigDescriptor;780 NextConfigDescriptorV1: NextConfigDescriptorV1;781 NftCollectionId: NftCollectionId;782 NftItemId: NftItemId;783 NodeRole: NodeRole;784 Nominations: Nominations;785 NominatorIndex: NominatorIndex;786 NominatorIndexCompact: NominatorIndexCompact;787 NotConnectedPeer: NotConnectedPeer;788 NpApiError: NpApiError;789 NpPoolId: NpPoolId;790 Null: Null;791 OccupiedCore: OccupiedCore;792 OccupiedCoreAssumption: OccupiedCoreAssumption;793 OffchainAccuracy: OffchainAccuracy;794 OffchainAccuracyCompact: OffchainAccuracyCompact;795 OffenceDetails: OffenceDetails;796 Offender: Offender;797 OldV1SessionInfo: OldV1SessionInfo;798 OpaqueCall: OpaqueCall;799 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;800 OpaqueMetadata: OpaqueMetadata;801 OpaqueMultiaddr: OpaqueMultiaddr;802 OpaqueNetworkState: OpaqueNetworkState;803 OpaquePeerId: OpaquePeerId;804 OpaqueTimeSlot: OpaqueTimeSlot;805 OpenTip: OpenTip;806 OpenTipFinderTo225: OpenTipFinderTo225;807 OpenTipTip: OpenTipTip;808 OpenTipTo225: OpenTipTo225;809 OperatingMode: OperatingMode;810 OptionBool: OptionBool;811 Origin: Origin;812 OriginCaller: OriginCaller;813 OriginKindV0: OriginKindV0;814 OriginKindV1: OriginKindV1;815 OriginKindV2: OriginKindV2;816 OrmlTokensAccountData: OrmlTokensAccountData;817 OrmlTokensBalanceLock: OrmlTokensBalanceLock;818 OrmlTokensModuleCall: OrmlTokensModuleCall;819 OrmlTokensModuleError: OrmlTokensModuleError;820 OrmlTokensModuleEvent: OrmlTokensModuleEvent;821 OrmlTokensReserveData: OrmlTokensReserveData;822 OrmlVestingModuleCall: OrmlVestingModuleCall;823 OrmlVestingModuleError: OrmlVestingModuleError;824 OrmlVestingModuleEvent: OrmlVestingModuleEvent;825 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;826 OrmlXtokensModuleCall: OrmlXtokensModuleCall;827 OrmlXtokensModuleError: OrmlXtokensModuleError;828 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;829 OutboundHrmpMessage: OutboundHrmpMessage;830 OutboundLaneData: OutboundLaneData;831 OutboundMessageFee: OutboundMessageFee;832 OutboundPayload: OutboundPayload;833 OutboundStatus: OutboundStatus;834 Outcome: Outcome;835 OverweightIndex: OverweightIndex;836 Owner: Owner;837 PageCounter: PageCounter;838 PageIndexData: PageIndexData;839 PalletAppPromotionCall: PalletAppPromotionCall;840 PalletAppPromotionError: PalletAppPromotionError;841 PalletAppPromotionEvent: PalletAppPromotionEvent;842 PalletBalancesAccountData: PalletBalancesAccountData;843 PalletBalancesBalanceLock: PalletBalancesBalanceLock;844 PalletBalancesCall: PalletBalancesCall;845 PalletBalancesError: PalletBalancesError;846 PalletBalancesEvent: PalletBalancesEvent;847 PalletBalancesIdAmount: PalletBalancesIdAmount;848 PalletBalancesReasons: PalletBalancesReasons;849 PalletBalancesReserveData: PalletBalancesReserveData;850 PalletCallMetadataLatest: PalletCallMetadataLatest;851 PalletCallMetadataV14: PalletCallMetadataV14;852 PalletCollatorSelectionCall: PalletCollatorSelectionCall;853 PalletCollatorSelectionError: PalletCollatorSelectionError;854 PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;855 PalletCollectiveCall: PalletCollectiveCall;856 PalletCollectiveError: PalletCollectiveError;857 PalletCollectiveEvent: PalletCollectiveEvent;858 PalletCollectiveRawOrigin: PalletCollectiveRawOrigin;859 PalletCollectiveVotes: PalletCollectiveVotes;860 PalletCommonError: PalletCommonError;861 PalletCommonEvent: PalletCommonEvent;862 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;863 PalletConfigurationCall: PalletConfigurationCall;864 PalletConfigurationError: PalletConfigurationError;865 PalletConfigurationEvent: PalletConfigurationEvent;866 PalletConstantMetadataLatest: PalletConstantMetadataLatest;867 PalletConstantMetadataV14: PalletConstantMetadataV14;868 PalletDemocracyCall: PalletDemocracyCall;869 PalletDemocracyConviction: PalletDemocracyConviction;870 PalletDemocracyDelegations: PalletDemocracyDelegations;871 PalletDemocracyError: PalletDemocracyError;872 PalletDemocracyEvent: PalletDemocracyEvent;873 PalletDemocracyMetadataOwner: PalletDemocracyMetadataOwner;874 PalletDemocracyReferendumInfo: PalletDemocracyReferendumInfo;875 PalletDemocracyReferendumStatus: PalletDemocracyReferendumStatus;876 PalletDemocracyTally: PalletDemocracyTally;877 PalletDemocracyVoteAccountVote: PalletDemocracyVoteAccountVote;878 PalletDemocracyVotePriorLock: PalletDemocracyVotePriorLock;879 PalletDemocracyVoteThreshold: PalletDemocracyVoteThreshold;880 PalletDemocracyVoteVoting: PalletDemocracyVoteVoting;881 PalletErrorMetadataLatest: PalletErrorMetadataLatest;882 PalletErrorMetadataV14: PalletErrorMetadataV14;883 PalletEthereumCall: PalletEthereumCall;884 PalletEthereumError: PalletEthereumError;885 PalletEthereumEvent: PalletEthereumEvent;886 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;887 PalletEthereumRawOrigin: PalletEthereumRawOrigin;888 PalletEventMetadataLatest: PalletEventMetadataLatest;889 PalletEventMetadataV14: PalletEventMetadataV14;890 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;891 PalletEvmCall: PalletEvmCall;892 PalletEvmCodeMetadata: PalletEvmCodeMetadata;893 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;894 PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;895 PalletEvmContractHelpersError: PalletEvmContractHelpersError;896 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;897 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;898 PalletEvmError: PalletEvmError;899 PalletEvmEvent: PalletEvmEvent;900 PalletEvmMigrationCall: PalletEvmMigrationCall;901 PalletEvmMigrationError: PalletEvmMigrationError;902 PalletEvmMigrationEvent: PalletEvmMigrationEvent;903 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;904 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;905 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;906 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;907 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;908 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;909 PalletFungibleError: PalletFungibleError;910 PalletGovOriginsOrigin: PalletGovOriginsOrigin;911 PalletId: PalletId;912 PalletIdentityBitFlags: PalletIdentityBitFlags;913 PalletIdentityCall: PalletIdentityCall;914 PalletIdentityError: PalletIdentityError;915 PalletIdentityEvent: PalletIdentityEvent;916 PalletIdentityIdentityField: PalletIdentityIdentityField;917 PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;918 PalletIdentityJudgement: PalletIdentityJudgement;919 PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;920 PalletIdentityRegistration: PalletIdentityRegistration;921 PalletInflationCall: PalletInflationCall;922 PalletMaintenanceCall: PalletMaintenanceCall;923 PalletMaintenanceError: PalletMaintenanceError;924 PalletMaintenanceEvent: PalletMaintenanceEvent;925 PalletMembershipCall: PalletMembershipCall;926 PalletMembershipError: PalletMembershipError;927 PalletMembershipEvent: PalletMembershipEvent;928 PalletMetadataLatest: PalletMetadataLatest;929 PalletMetadataV14: PalletMetadataV14;930 PalletMetadataV15: PalletMetadataV15;931 PalletNonfungibleError: PalletNonfungibleError;932 PalletNonfungibleItemData: PalletNonfungibleItemData;933 PalletPreimageCall: PalletPreimageCall;934 PalletPreimageError: PalletPreimageError;935 PalletPreimageEvent: PalletPreimageEvent;936 PalletPreimageRequestStatus: PalletPreimageRequestStatus;937 PalletRankedCollectiveCall: PalletRankedCollectiveCall;938 PalletRankedCollectiveError: PalletRankedCollectiveError;939 PalletRankedCollectiveEvent: PalletRankedCollectiveEvent;940 PalletRankedCollectiveMemberRecord: PalletRankedCollectiveMemberRecord;941 PalletRankedCollectiveTally: PalletRankedCollectiveTally;942 PalletRankedCollectiveVoteRecord: PalletRankedCollectiveVoteRecord;943 PalletReferendaCall: PalletReferendaCall;944 PalletReferendaCurve: PalletReferendaCurve;945 PalletReferendaDecidingStatus: PalletReferendaDecidingStatus;946 PalletReferendaDeposit: PalletReferendaDeposit;947 PalletReferendaError: PalletReferendaError;948 PalletReferendaEvent: PalletReferendaEvent;949 PalletReferendaReferendumInfo: PalletReferendaReferendumInfo;950 PalletReferendaReferendumStatus: PalletReferendaReferendumStatus;951 PalletReferendaTrackInfo: PalletReferendaTrackInfo;952 PalletRefungibleError: PalletRefungibleError;953 PalletSchedulerCall: PalletSchedulerCall;954 PalletSchedulerError: PalletSchedulerError;955 PalletSchedulerEvent: PalletSchedulerEvent;956 PalletSchedulerScheduled: PalletSchedulerScheduled;957 PalletSessionCall: PalletSessionCall;958 PalletSessionError: PalletSessionError;959 PalletSessionEvent: PalletSessionEvent;960 PalletsOrigin: PalletsOrigin;961 PalletStateTrieMigrationCall: PalletStateTrieMigrationCall;962 PalletStateTrieMigrationError: PalletStateTrieMigrationError;963 PalletStateTrieMigrationEvent: PalletStateTrieMigrationEvent;964 PalletStateTrieMigrationMigrationCompute: PalletStateTrieMigrationMigrationCompute;965 PalletStateTrieMigrationMigrationLimits: PalletStateTrieMigrationMigrationLimits;966 PalletStateTrieMigrationMigrationTask: PalletStateTrieMigrationMigrationTask;967 PalletStateTrieMigrationProgress: PalletStateTrieMigrationProgress;968 PalletStorageMetadataLatest: PalletStorageMetadataLatest;969 PalletStorageMetadataV14: PalletStorageMetadataV14;970 PalletStructureCall: PalletStructureCall;971 PalletStructureError: PalletStructureError;972 PalletStructureEvent: PalletStructureEvent;973 PalletSudoCall: PalletSudoCall;974 PalletSudoError: PalletSudoError;975 PalletSudoEvent: PalletSudoEvent;976 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;977 PalletTestUtilsCall: PalletTestUtilsCall;978 PalletTestUtilsError: PalletTestUtilsError;979 PalletTestUtilsEvent: PalletTestUtilsEvent;980 PalletTimestampCall: PalletTimestampCall;981 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;982 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;983 PalletTreasuryCall: PalletTreasuryCall;984 PalletTreasuryError: PalletTreasuryError;985 PalletTreasuryEvent: PalletTreasuryEvent;986 PalletTreasuryProposal: PalletTreasuryProposal;987 PalletUniqueCall: PalletUniqueCall;988 PalletUniqueError: PalletUniqueError;989 PalletVersion: PalletVersion;990 PalletXcmCall: PalletXcmCall;991 PalletXcmError: PalletXcmError;992 PalletXcmEvent: PalletXcmEvent;993 PalletXcmOrigin: PalletXcmOrigin;994 PalletXcmQueryStatus: PalletXcmQueryStatus;995 PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;996 PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;997 ParachainDispatchOrigin: ParachainDispatchOrigin;998 ParachainInfoCall: ParachainInfoCall;999 ParachainInherentData: ParachainInherentData;1000 ParachainProposal: ParachainProposal;1001 ParachainsInherentData: ParachainsInherentData;1002 ParaGenesisArgs: ParaGenesisArgs;1003 ParaId: ParaId;1004 ParaInfo: ParaInfo;1005 ParaLifecycle: ParaLifecycle;1006 Parameter: Parameter;1007 ParaPastCodeMeta: ParaPastCodeMeta;1008 ParaScheduling: ParaScheduling;1009 ParathreadClaim: ParathreadClaim;1010 ParathreadClaimQueue: ParathreadClaimQueue;1011 ParathreadEntry: ParathreadEntry;1012 ParaValidatorIndex: ParaValidatorIndex;1013 Pays: Pays;1014 Peer: Peer;1015 PeerEndpoint: PeerEndpoint;1016 PeerEndpointAddr: PeerEndpointAddr;1017 PeerInfo: PeerInfo;1018 PeerPing: PeerPing;1019 PendingChange: PendingChange;1020 PendingPause: PendingPause;1021 PendingResume: PendingResume;1022 Perbill: Perbill;1023 Percent: Percent;1024 PerDispatchClassU32: PerDispatchClassU32;1025 PerDispatchClassWeight: PerDispatchClassWeight;1026 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;1027 Period: Period;1028 Permill: Permill;1029 PermissionLatest: PermissionLatest;1030 PermissionsV1: PermissionsV1;1031 PermissionVersions: PermissionVersions;1032 Perquintill: Perquintill;1033 PersistedValidationData: PersistedValidationData;1034 PerU16: PerU16;1035 Phantom: Phantom;1036 PhantomData: PhantomData;1037 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;1038 Phase: Phase;1039 PhragmenScore: PhragmenScore;1040 Points: Points;1041 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;1042 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;1043 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;1044 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;1045 PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;1046 PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;1047 PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;1048 PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;1049 PortableType: PortableType;1050 PortableTypeV14: PortableTypeV14;1051 Precommits: Precommits;1052 PrefabWasmModule: PrefabWasmModule;1053 PrefixedStorageKey: PrefixedStorageKey;1054 PreimageStatus: PreimageStatus;1055 PreimageStatusAvailable: PreimageStatusAvailable;1056 PreRuntime: PreRuntime;1057 Prevotes: Prevotes;1058 Priority: Priority;1059 PriorLock: PriorLock;1060 PropIndex: PropIndex;1061 Proposal: Proposal;1062 ProposalIndex: ProposalIndex;1063 ProxyAnnouncement: ProxyAnnouncement;1064 ProxyDefinition: ProxyDefinition;1065 ProxyState: ProxyState;1066 ProxyType: ProxyType;1067 PvfCheckStatement: PvfCheckStatement;1068 PvfExecTimeoutKind: PvfExecTimeoutKind;1069 PvfPrepTimeoutKind: PvfPrepTimeoutKind;1070 QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;1071 QuartzRuntimeRuntime: QuartzRuntimeRuntime;1072 QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;1073 QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;1074 QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;1075 QueryId: QueryId;1076 QueryStatus: QueryStatus;1077 QueueConfigData: QueueConfigData;1078 QueuedParathread: QueuedParathread;1079 Randomness: Randomness;1080 Raw: Raw;1081 RawAuraPreDigest: RawAuraPreDigest;1082 RawBabePreDigest: RawBabePreDigest;1083 RawBabePreDigestCompat: RawBabePreDigestCompat;1084 RawBabePreDigestPrimary: RawBabePreDigestPrimary;1085 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;1086 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;1087 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;1088 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;1089 RawBabePreDigestTo159: RawBabePreDigestTo159;1090 RawOrigin: RawOrigin;1091 RawSolution: RawSolution;1092 RawSolutionTo265: RawSolutionTo265;1093 RawSolutionWith16: RawSolutionWith16;1094 RawSolutionWith24: RawSolutionWith24;1095 RawVRFOutput: RawVRFOutput;1096 ReadProof: ReadProof;1097 ReadySolution: ReadySolution;1098 Reasons: Reasons;1099 RecoveryConfig: RecoveryConfig;1100 RefCount: RefCount;1101 RefCountTo259: RefCountTo259;1102 ReferendumIndex: ReferendumIndex;1103 ReferendumInfo: ReferendumInfo;1104 ReferendumInfoFinished: ReferendumInfoFinished;1105 ReferendumInfoTo239: ReferendumInfoTo239;1106 ReferendumStatus: ReferendumStatus;1107 RegisteredParachainInfo: RegisteredParachainInfo;1108 RegistrarIndex: RegistrarIndex;1109 RegistrarInfo: RegistrarInfo;1110 Registration: Registration;1111 RegistrationJudgement: RegistrationJudgement;1112 RegistrationTo198: RegistrationTo198;1113 RelayBlockNumber: RelayBlockNumber;1114 RelayChainBlockNumber: RelayChainBlockNumber;1115 RelayChainHash: RelayChainHash;1116 RelayerId: RelayerId;1117 RelayHash: RelayHash;1118 Releases: Releases;1119 Remark: Remark;1120 Renouncing: Renouncing;1121 RentProjection: RentProjection;1122 ReplacementTimes: ReplacementTimes;1123 ReportedRoundStates: ReportedRoundStates;1124 Reporter: Reporter;1125 ReportIdOf: ReportIdOf;1126 ReserveData: ReserveData;1127 ReserveIdentifier: ReserveIdentifier;1128 Response: Response;1129 ResponseV0: ResponseV0;1130 ResponseV1: ResponseV1;1131 ResponseV2: ResponseV2;1132 ResponseV2Error: ResponseV2Error;1133 ResponseV2Result: ResponseV2Result;1134 Retriable: Retriable;1135 RewardDestination: RewardDestination;1136 RewardPoint: RewardPoint;1137 RoundSnapshot: RoundSnapshot;1138 RoundState: RoundState;1139 RpcMethods: RpcMethods;1140 RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;1141 RuntimeApiMetadataV15: RuntimeApiMetadataV15;1142 RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;1143 RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;1144 RuntimeCall: RuntimeCall;1145 RuntimeDbWeight: RuntimeDbWeight;1146 RuntimeDispatchInfo: RuntimeDispatchInfo;1147 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1148 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1149 RuntimeEvent: RuntimeEvent;1150 RuntimeVersion: RuntimeVersion;1151 RuntimeVersionApi: RuntimeVersionApi;1152 RuntimeVersionPartial: RuntimeVersionPartial;1153 RuntimeVersionPre3: RuntimeVersionPre3;1154 RuntimeVersionPre4: RuntimeVersionPre4;1155 Schedule: Schedule;1156 Scheduled: Scheduled;1157 ScheduledCore: ScheduledCore;1158 ScheduledTo254: ScheduledTo254;1159 SchedulePeriod: SchedulePeriod;1160 SchedulePriority: SchedulePriority;1161 ScheduleTo212: ScheduleTo212;1162 ScheduleTo258: ScheduleTo258;1163 ScheduleTo264: ScheduleTo264;1164 Scheduling: Scheduling;1165 ScrapedOnChainVotes: ScrapedOnChainVotes;1166 Seal: Seal;1167 SealV0: SealV0;1168 SeatHolder: SeatHolder;1169 SeedOf: SeedOf;1170 ServiceQuality: ServiceQuality;1171 SessionIndex: SessionIndex;1172 SessionInfo: SessionInfo;1173 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1174 SessionKeys1: SessionKeys1;1175 SessionKeys10: SessionKeys10;1176 SessionKeys10B: SessionKeys10B;1177 SessionKeys2: SessionKeys2;1178 SessionKeys3: SessionKeys3;1179 SessionKeys4: SessionKeys4;1180 SessionKeys5: SessionKeys5;1181 SessionKeys6: SessionKeys6;1182 SessionKeys6B: SessionKeys6B;1183 SessionKeys7: SessionKeys7;1184 SessionKeys7B: SessionKeys7B;1185 SessionKeys8: SessionKeys8;1186 SessionKeys8B: SessionKeys8B;1187 SessionKeys9: SessionKeys9;1188 SessionKeys9B: SessionKeys9B;1189 SetId: SetId;1190 SetIndex: SetIndex;1191 Si0Field: Si0Field;1192 Si0LookupTypeId: Si0LookupTypeId;1193 Si0Path: Si0Path;1194 Si0Type: Si0Type;1195 Si0TypeDef: Si0TypeDef;1196 Si0TypeDefArray: Si0TypeDefArray;1197 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1198 Si0TypeDefCompact: Si0TypeDefCompact;1199 Si0TypeDefComposite: Si0TypeDefComposite;1200 Si0TypeDefPhantom: Si0TypeDefPhantom;1201 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1202 Si0TypeDefSequence: Si0TypeDefSequence;1203 Si0TypeDefTuple: Si0TypeDefTuple;1204 Si0TypeDefVariant: Si0TypeDefVariant;1205 Si0TypeParameter: Si0TypeParameter;1206 Si0Variant: Si0Variant;1207 Si1Field: Si1Field;1208 Si1LookupTypeId: Si1LookupTypeId;1209 Si1Path: Si1Path;1210 Si1Type: Si1Type;1211 Si1TypeDef: Si1TypeDef;1212 Si1TypeDefArray: Si1TypeDefArray;1213 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1214 Si1TypeDefCompact: Si1TypeDefCompact;1215 Si1TypeDefComposite: Si1TypeDefComposite;1216 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1217 Si1TypeDefSequence: Si1TypeDefSequence;1218 Si1TypeDefTuple: Si1TypeDefTuple;1219 Si1TypeDefVariant: Si1TypeDefVariant;1220 Si1TypeParameter: Si1TypeParameter;1221 Si1Variant: Si1Variant;1222 SiField: SiField;1223 Signature: Signature;1224 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1225 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1226 SignedBlock: SignedBlock;1227 SignedBlockWithJustification: SignedBlockWithJustification;1228 SignedBlockWithJustifications: SignedBlockWithJustifications;1229 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1230 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1231 SignedSubmission: SignedSubmission;1232 SignedSubmissionOf: SignedSubmissionOf;1233 SignedSubmissionTo276: SignedSubmissionTo276;1234 SignerPayload: SignerPayload;1235 SigningContext: SigningContext;1236 SiLookupTypeId: SiLookupTypeId;1237 SiPath: SiPath;1238 SiType: SiType;1239 SiTypeDef: SiTypeDef;1240 SiTypeDefArray: SiTypeDefArray;1241 SiTypeDefBitSequence: SiTypeDefBitSequence;1242 SiTypeDefCompact: SiTypeDefCompact;1243 SiTypeDefComposite: SiTypeDefComposite;1244 SiTypeDefPrimitive: SiTypeDefPrimitive;1245 SiTypeDefSequence: SiTypeDefSequence;1246 SiTypeDefTuple: SiTypeDefTuple;1247 SiTypeDefVariant: SiTypeDefVariant;1248 SiTypeParameter: SiTypeParameter;1249 SiVariant: SiVariant;1250 SlashingSpans: SlashingSpans;1251 SlashingSpansTo204: SlashingSpansTo204;1252 SlashJournalEntry: SlashJournalEntry;1253 Slot: Slot;1254 SlotDuration: SlotDuration;1255 SlotNumber: SlotNumber;1256 SlotRange: SlotRange;1257 SlotRange10: SlotRange10;1258 SocietyJudgement: SocietyJudgement;1259 SocietyVote: SocietyVote;1260 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1261 SolutionSupport: SolutionSupport;1262 SolutionSupports: SolutionSupports;1263 SpanIndex: SpanIndex;1264 SpanRecord: SpanRecord;1265 SpArithmeticArithmeticError: SpArithmeticArithmeticError;1266 SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;1267 SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;1268 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1269 SpCoreEd25519Signature: SpCoreEd25519Signature;1270 SpCoreSr25519Public: SpCoreSr25519Public;1271 SpCoreSr25519Signature: SpCoreSr25519Signature;1272 SpCoreVoid: SpCoreVoid;1273 SpecVersion: SpecVersion;1274 SpRuntimeDigest: SpRuntimeDigest;1275 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1276 SpRuntimeDispatchError: SpRuntimeDispatchError;1277 SpRuntimeModuleError: SpRuntimeModuleError;1278 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1279 SpRuntimeTokenError: SpRuntimeTokenError;1280 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1281 SpRuntimeTransactionValidityInvalidTransaction: SpRuntimeTransactionValidityInvalidTransaction;1282 SpRuntimeTransactionValidityTransactionValidityError: SpRuntimeTransactionValidityTransactionValidityError;1283 SpRuntimeTransactionValidityUnknownTransaction: SpRuntimeTransactionValidityUnknownTransaction;1284 SpTrieStorageProof: SpTrieStorageProof;1285 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1286 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1287 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1288 Sr25519Signature: Sr25519Signature;1289 StakingLedger: StakingLedger;1290 StakingLedgerTo223: StakingLedgerTo223;1291 StakingLedgerTo240: StakingLedgerTo240;1292 Statement: Statement;1293 StatementKind: StatementKind;1294 StorageChangeSet: StorageChangeSet;1295 StorageData: StorageData;1296 StorageDeposit: StorageDeposit;1297 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1298 StorageEntryMetadataV10: StorageEntryMetadataV10;1299 StorageEntryMetadataV11: StorageEntryMetadataV11;1300 StorageEntryMetadataV12: StorageEntryMetadataV12;1301 StorageEntryMetadataV13: StorageEntryMetadataV13;1302 StorageEntryMetadataV14: StorageEntryMetadataV14;1303 StorageEntryMetadataV9: StorageEntryMetadataV9;1304 StorageEntryModifierLatest: StorageEntryModifierLatest;1305 StorageEntryModifierV10: StorageEntryModifierV10;1306 StorageEntryModifierV11: StorageEntryModifierV11;1307 StorageEntryModifierV12: StorageEntryModifierV12;1308 StorageEntryModifierV13: StorageEntryModifierV13;1309 StorageEntryModifierV14: StorageEntryModifierV14;1310 StorageEntryModifierV9: StorageEntryModifierV9;1311 StorageEntryTypeLatest: StorageEntryTypeLatest;1312 StorageEntryTypeV10: StorageEntryTypeV10;1313 StorageEntryTypeV11: StorageEntryTypeV11;1314 StorageEntryTypeV12: StorageEntryTypeV12;1315 StorageEntryTypeV13: StorageEntryTypeV13;1316 StorageEntryTypeV14: StorageEntryTypeV14;1317 StorageEntryTypeV9: StorageEntryTypeV9;1318 StorageHasher: StorageHasher;1319 StorageHasherV10: StorageHasherV10;1320 StorageHasherV11: StorageHasherV11;1321 StorageHasherV12: StorageHasherV12;1322 StorageHasherV13: StorageHasherV13;1323 StorageHasherV14: StorageHasherV14;1324 StorageHasherV9: StorageHasherV9;1325 StorageInfo: StorageInfo;1326 StorageKey: StorageKey;1327 StorageKind: StorageKind;1328 StorageMetadataV10: StorageMetadataV10;1329 StorageMetadataV11: StorageMetadataV11;1330 StorageMetadataV12: StorageMetadataV12;1331 StorageMetadataV13: StorageMetadataV13;1332 StorageMetadataV9: StorageMetadataV9;1333 StorageProof: StorageProof;1334 StoredPendingChange: StoredPendingChange;1335 StoredState: StoredState;1336 StrikeCount: StrikeCount;1337 SubId: SubId;1338 SubmissionIndicesOf: SubmissionIndicesOf;1339 Supports: Supports;1340 SyncState: SyncState;1341 SystemInherentData: SystemInherentData;1342 SystemOrigin: SystemOrigin;1343 Tally: Tally;1344 TaskAddress: TaskAddress;1345 TAssetBalance: TAssetBalance;1346 TAssetDepositBalance: TAssetDepositBalance;1347 Text: Text;1348 Timepoint: Timepoint;1349 TokenError: TokenError;1350 TombstoneContractInfo: TombstoneContractInfo;1351 TraceBlockResponse: TraceBlockResponse;1352 TraceError: TraceError;1353 TransactionalError: TransactionalError;1354 TransactionInfo: TransactionInfo;1355 TransactionLongevity: TransactionLongevity;1356 TransactionPriority: TransactionPriority;1357 TransactionSource: TransactionSource;1358 TransactionStorageProof: TransactionStorageProof;1359 TransactionTag: TransactionTag;1360 TransactionV0: TransactionV0;1361 TransactionV1: TransactionV1;1362 TransactionV2: TransactionV2;1363 TransactionValidity: TransactionValidity;1364 TransactionValidityError: TransactionValidityError;1365 TransientValidationData: TransientValidationData;1366 TreasuryProposal: TreasuryProposal;1367 TrieId: TrieId;1368 TrieIndex: TrieIndex;1369 Type: Type;1370 u128: u128;1371 U128: U128;1372 u16: u16;1373 U16: U16;1374 u256: u256;1375 U256: U256;1376 u32: u32;1377 U32: U32;1378 U32F32: U32F32;1379 u64: u64;1380 U64: U64;1381 u8: u8;1382 U8: U8;1383 UnappliedSlash: UnappliedSlash;1384 UnappliedSlashOther: UnappliedSlashOther;1385 UncleEntryItem: UncleEntryItem;1386 UnknownTransaction: UnknownTransaction;1387 UnlockChunk: UnlockChunk;1388 UnrewardedRelayer: UnrewardedRelayer;1389 UnrewardedRelayersState: UnrewardedRelayersState;1390 UpDataStructsAccessMode: UpDataStructsAccessMode;1391 UpDataStructsCollection: UpDataStructsCollection;1392 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1393 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1394 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1395 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1396 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1397 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1398 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1399 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1400 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1401 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1402 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1403 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1404 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1405 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1406 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1407 UpDataStructsProperties: UpDataStructsProperties;1408 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1409 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1410 UpDataStructsProperty: UpDataStructsProperty;1411 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1412 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1413 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1414 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1415 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1416 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1417 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1418 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1419 UpDataStructsTokenChild: UpDataStructsTokenChild;1420 UpDataStructsTokenData: UpDataStructsTokenData;1421 UpgradeGoAhead: UpgradeGoAhead;1422 UpgradeRestriction: UpgradeRestriction;1423 UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;1424 UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;1425 UpwardMessage: UpwardMessage;1426 usize: usize;1427 USize: USize;1428 ValidationCode: ValidationCode;1429 ValidationCodeHash: ValidationCodeHash;1430 ValidationData: ValidationData;1431 ValidationDataType: ValidationDataType;1432 ValidationFunctionParams: ValidationFunctionParams;1433 ValidatorCount: ValidatorCount;1434 ValidatorId: ValidatorId;1435 ValidatorIdOf: ValidatorIdOf;1436 ValidatorIndex: ValidatorIndex;1437 ValidatorIndexCompact: ValidatorIndexCompact;1438 ValidatorPrefs: ValidatorPrefs;1439 ValidatorPrefsTo145: ValidatorPrefsTo145;1440 ValidatorPrefsTo196: ValidatorPrefsTo196;1441 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1442 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1443 ValidatorSet: ValidatorSet;1444 ValidatorSetId: ValidatorSetId;1445 ValidatorSignature: ValidatorSignature;1446 ValidDisputeStatementKind: ValidDisputeStatementKind;1447 ValidityAttestation: ValidityAttestation;1448 ValidTransaction: ValidTransaction;1449 VecInboundHrmpMessage: VecInboundHrmpMessage;1450 VersionedMultiAsset: VersionedMultiAsset;1451 VersionedMultiAssets: VersionedMultiAssets;1452 VersionedMultiLocation: VersionedMultiLocation;1453 VersionedResponse: VersionedResponse;1454 VersionedXcm: VersionedXcm;1455 VersionMigrationStage: VersionMigrationStage;1456 VestingInfo: VestingInfo;1457 VestingSchedule: VestingSchedule;1458 Vote: Vote;1459 VoteIndex: VoteIndex;1460 Voter: Voter;1461 VoterInfo: VoterInfo;1462 Votes: Votes;1463 VotesTo230: VotesTo230;1464 VoteThreshold: VoteThreshold;1465 VoteWeight: VoteWeight;1466 Voting: Voting;1467 VotingDelegating: VotingDelegating;1468 VotingDirect: VotingDirect;1469 VotingDirectVote: VotingDirectVote;1470 VouchingStatus: VouchingStatus;1471 VrfData: VrfData;1472 VrfOutput: VrfOutput;1473 VrfProof: VrfProof;1474 Weight: Weight;1475 WeightLimitV2: WeightLimitV2;1476 WeightMultiplier: WeightMultiplier;1477 WeightPerClass: WeightPerClass;1478 WeightToFeeCoefficient: WeightToFeeCoefficient;1479 WeightV0: WeightV0;1480 WeightV1: WeightV1;1481 WeightV2: WeightV2;1482 WildFungibility: WildFungibility;1483 WildFungibilityV0: WildFungibilityV0;1484 WildFungibilityV1: WildFungibilityV1;1485 WildFungibilityV2: WildFungibilityV2;1486 WildMultiAsset: WildMultiAsset;1487 WildMultiAssetV1: WildMultiAssetV1;1488 WildMultiAssetV2: WildMultiAssetV2;1489 WinnersData: WinnersData;1490 WinnersData10: WinnersData10;1491 WinnersDataTuple: WinnersDataTuple;1492 WinnersDataTuple10: WinnersDataTuple10;1493 WinningData: WinningData;1494 WinningData10: WinningData10;1495 WinningDataEntry: WinningDataEntry;1496 WithdrawReasons: WithdrawReasons;1497 Xcm: Xcm;1498 XcmAssetId: XcmAssetId;1499 XcmDoubleEncoded: XcmDoubleEncoded;1500 XcmError: XcmError;1501 XcmErrorV0: XcmErrorV0;1502 XcmErrorV1: XcmErrorV1;1503 XcmErrorV2: XcmErrorV2;1504 XcmOrder: XcmOrder;1505 XcmOrderV0: XcmOrderV0;1506 XcmOrderV1: XcmOrderV1;1507 XcmOrderV2: XcmOrderV2;1508 XcmOrigin: XcmOrigin;1509 XcmOriginKind: XcmOriginKind;1510 XcmpMessageFormat: XcmpMessageFormat;1511 XcmV0: XcmV0;1512 XcmV1: XcmV1;1513 XcmV2: XcmV2;1514 XcmV2BodyId: XcmV2BodyId;1515 XcmV2BodyPart: XcmV2BodyPart;1516 XcmV2Instruction: XcmV2Instruction;1517 XcmV2Junction: XcmV2Junction;1518 XcmV2MultiAsset: XcmV2MultiAsset;1519 XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;1520 XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;1521 XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;1522 XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;1523 XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;1524 XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;1525 XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;1526 XcmV2MultiLocation: XcmV2MultiLocation;1527 XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;1528 XcmV2NetworkId: XcmV2NetworkId;1529 XcmV2OriginKind: XcmV2OriginKind;1530 XcmV2Response: XcmV2Response;1531 XcmV2TraitsError: XcmV2TraitsError;1532 XcmV2WeightLimit: XcmV2WeightLimit;1533 XcmV2Xcm: XcmV2Xcm;1534 XcmV3Instruction: XcmV3Instruction;1535 XcmV3Junction: XcmV3Junction;1536 XcmV3JunctionBodyId: XcmV3JunctionBodyId;1537 XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;1538 XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;1539 XcmV3Junctions: XcmV3Junctions;1540 XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;1541 XcmV3MultiAsset: XcmV3MultiAsset;1542 XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;1543 XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;1544 XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;1545 XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;1546 XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;1547 XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;1548 XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;1549 XcmV3MultiLocation: XcmV3MultiLocation;1550 XcmV3PalletInfo: XcmV3PalletInfo;1551 XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;1552 XcmV3Response: XcmV3Response;1553 XcmV3TraitsError: XcmV3TraitsError;1554 XcmV3TraitsOutcome: XcmV3TraitsOutcome;1555 XcmV3WeightLimit: XcmV3WeightLimit;1556 XcmV3Xcm: XcmV3Xcm;1557 XcmVersion: XcmVersion;1558 XcmVersionedAssetId: XcmVersionedAssetId;1559 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1560 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1561 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1562 XcmVersionedResponse: XcmVersionedResponse;1563 XcmVersionedXcm: XcmVersionedXcm;1564 } // InterfaceTypes1565} // declare moduletests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -752,6 +752,41 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
+/** @name OpalRuntimeOriginCaller */
+export interface OpalRuntimeOriginCaller extends Enum {
+ readonly isSystem: boolean;
+ readonly asSystem: FrameSupportDispatchRawOrigin;
+ readonly isVoid: boolean;
+ readonly asVoid: SpCoreVoid;
+ readonly isCouncil: boolean;
+ readonly asCouncil: PalletCollectiveRawOrigin;
+ readonly isTechnicalCommittee: boolean;
+ readonly asTechnicalCommittee: PalletCollectiveRawOrigin;
+ readonly isPolkadotXcm: boolean;
+ readonly asPolkadotXcm: PalletXcmOrigin;
+ readonly isCumulusXcm: boolean;
+ readonly asCumulusXcm: CumulusPalletXcmOrigin;
+ readonly isOrigins: boolean;
+ readonly asOrigins: PalletGovOriginsOrigin;
+ readonly isEthereum: boolean;
+ readonly asEthereum: PalletEthereumRawOrigin;
+ readonly type: 'System' | 'Void' | 'Council' | 'TechnicalCommittee' | 'PolkadotXcm' | 'CumulusXcm' | 'Origins' | 'Ethereum';
+}
+
+/** @name OpalRuntimeRuntime */
+export interface OpalRuntimeRuntime extends Null {}
+
+/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */
+export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
+
+/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
+export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
+
+/** @name OpalRuntimeRuntimeCommonSessionKeys */
+export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
+ readonly aura: SpConsensusAuraSr25519AppSr25519Public;
+}
+
/** @name OrmlTokensAccountData */
export interface OrmlTokensAccountData extends Struct {
readonly free: u128;
@@ -2789,7 +2824,7 @@
export interface PalletReferendaCall extends Enum {
readonly isSubmit: boolean;
readonly asSubmit: {
- readonly proposalOrigin: QuartzRuntimeOriginCaller;
+ readonly proposalOrigin: OpalRuntimeOriginCaller;
readonly proposal: FrameSupportPreimagesBounded;
readonly enactmentMoment: FrameSupportScheduleDispatchTime;
} & Struct;
@@ -2991,7 +3026,7 @@
/** @name PalletReferendaReferendumStatus */
export interface PalletReferendaReferendumStatus extends Struct {
readonly track: u16;
- readonly origin: QuartzRuntimeOriginCaller;
+ readonly origin: OpalRuntimeOriginCaller;
readonly proposal: FrameSupportPreimagesBounded;
readonly enactment: FrameSupportScheduleDispatchTime;
readonly submitted: u32;
@@ -3122,14 +3157,14 @@
readonly priority: u8;
readonly call: FrameSupportPreimagesBounded;
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: QuartzRuntimeOriginCaller;
+ readonly origin: OpalRuntimeOriginCaller;
}
/** @name PalletSessionCall */
export interface PalletSessionCall extends Enum {
readonly isSetKeys: boolean;
readonly asSetKeys: {
- readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;
+ readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
readonly proof: Bytes;
} & Struct;
readonly isPurgeKeys: boolean;
@@ -3923,41 +3958,6 @@
export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
-}
-
-/** @name QuartzRuntimeOriginCaller */
-export interface QuartzRuntimeOriginCaller extends Enum {
- readonly isSystem: boolean;
- readonly asSystem: FrameSupportDispatchRawOrigin;
- readonly isVoid: boolean;
- readonly asVoid: SpCoreVoid;
- readonly isCouncil: boolean;
- readonly asCouncil: PalletCollectiveRawOrigin;
- readonly isTechnicalCommittee: boolean;
- readonly asTechnicalCommittee: PalletCollectiveRawOrigin;
- readonly isPolkadotXcm: boolean;
- readonly asPolkadotXcm: PalletXcmOrigin;
- readonly isCumulusXcm: boolean;
- readonly asCumulusXcm: CumulusPalletXcmOrigin;
- readonly isOrigins: boolean;
- readonly asOrigins: PalletGovOriginsOrigin;
- readonly isEthereum: boolean;
- readonly asEthereum: PalletEthereumRawOrigin;
- readonly type: 'System' | 'Void' | 'Council' | 'TechnicalCommittee' | 'PolkadotXcm' | 'CumulusXcm' | 'Origins' | 'Ethereum';
-}
-
-/** @name QuartzRuntimeRuntime */
-export interface QuartzRuntimeRuntime extends Null {}
-
-/** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls */
-export interface QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
-
-/** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance */
-export interface QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
-
-/** @name QuartzRuntimeRuntimeCommonSessionKeys */
-export interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {
- readonly aura: SpConsensusAuraSr25519AppSr25519Public;
}
/** @name SpArithmeticArithmeticError */
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -61,7 +61,7 @@
}
},
/**
- * Lookup19: frame_system::EventRecord<quartz_runtime::RuntimeEvent, primitive_types::H256>
+ * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -1081,7 +1081,7 @@
}
},
/**
- * Lookup86: frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>
+ * Lookup86: frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>
**/
FrameSupportPreimagesBounded: {
_enum: {
@@ -1297,16 +1297,16 @@
_alias: {
keys_: 'keys',
},
- keys_: 'QuartzRuntimeRuntimeCommonSessionKeys',
+ keys_: 'OpalRuntimeRuntimeCommonSessionKeys',
proof: 'Bytes',
},
purge_keys: 'Null'
}
},
/**
- * Lookup115: quartz_runtime::runtime_common::SessionKeys
+ * Lookup115: opal_runtime::runtime_common::SessionKeys
**/
- QuartzRuntimeRuntimeCommonSessionKeys: {
+ OpalRuntimeRuntimeCommonSessionKeys: {
aura: 'SpConsensusAuraSr25519AppSr25519Public'
},
/**
@@ -2030,7 +2030,7 @@
PalletReferendaCall: {
_enum: {
submit: {
- proposalOrigin: 'QuartzRuntimeOriginCaller',
+ proposalOrigin: 'OpalRuntimeOriginCaller',
proposal: 'FrameSupportPreimagesBounded',
enactmentMoment: 'FrameSupportScheduleDispatchTime',
},
@@ -2062,9 +2062,9 @@
}
},
/**
- * Lookup209: quartz_runtime::OriginCaller
+ * Lookup209: opal_runtime::OriginCaller
**/
- QuartzRuntimeOriginCaller: {
+ OpalRuntimeOriginCaller: {
_enum: {
system: 'FrameSupportDispatchRawOrigin',
__Unused1: 'Null',
@@ -4177,7 +4177,7 @@
_enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
},
/**
- * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>
+ * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
**/
PalletDemocracyReferendumInfo: {
_enum: {
@@ -4189,7 +4189,7 @@
}
},
/**
- * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>
+ * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
**/
PalletDemocracyReferendumStatus: {
end: 'u32',
@@ -4277,7 +4277,7 @@
_enum: ['AlreadyMember', 'NotMember', 'NotPolling', 'Ongoing', 'NoneRemaining', 'Corruption', 'RankTooLow', 'InvalidWitness', 'NoPermission']
},
/**
- * Lookup508: pallet_referenda::types::ReferendumInfo<TrackId, quartz_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
+ * Lookup508: pallet_referenda::types::ReferendumInfo<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumInfo: {
_enum: {
@@ -4290,11 +4290,11 @@
}
},
/**
- * Lookup509: pallet_referenda::types::ReferendumStatus<TrackId, quartz_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
+ * Lookup509: pallet_referenda::types::ReferendumStatus<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumStatus: {
track: 'u16',
- origin: 'QuartzRuntimeOriginCaller',
+ origin: 'OpalRuntimeOriginCaller',
proposal: 'FrameSupportPreimagesBounded',
enactment: 'FrameSupportScheduleDispatchTime',
submitted: 'u32',
@@ -4363,14 +4363,14 @@
_enum: ['NotOngoing', 'HasDeposit', 'BadTrack', 'Full', 'QueueEmpty', 'BadReferendum', 'NothingToDo', 'NoTrack', 'Unfinished', 'NoPermission', 'NoDeposit', 'BadStatus', 'PreimageNotExist']
},
/**
- * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, BlockNumber, quartz_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletSchedulerScheduled: {
maybeId: 'Option<[u8;32]>',
priority: 'u8',
call: 'FrameSupportPreimagesBounded',
maybePeriodic: 'Option<(u32,u32)>',
- origin: 'QuartzRuntimeOriginCaller'
+ origin: 'OpalRuntimeOriginCaller'
},
/**
* Lookup528: pallet_scheduler::pallet::Error<T>
@@ -4912,23 +4912,23 @@
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup674: quartz_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup674: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
- QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
+ OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup675: quartz_runtime::runtime_common::identity::DisableIdentityCalls
+ * Lookup675: opal_runtime::runtime_common::identity::DisableIdentityCalls
**/
- QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
/**
- * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<quartz_runtime::Runtime>
+ * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup677: quartz_runtime::Runtime
+ * Lookup677: opal_runtime::Runtime
**/
- QuartzRuntimeRuntime: 'Null',
+ OpalRuntimeRuntime: 'Null',
/**
- * Lookup678: pallet_ethereum::FakeTransactionFinalizer<quartz_runtime::Runtime>
+ * Lookup678: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeOriginCaller, QuartzRuntimeRuntime, QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls, QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance, QuartzRuntimeRuntimeCommonSessionKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -79,6 +79,11 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
+ OpalRuntimeRuntime: OpalRuntimeRuntime;
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
+ OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+ OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OrmlTokensAccountData: OrmlTokensAccountData;
OrmlTokensBalanceLock: OrmlTokensBalanceLock;
OrmlTokensModuleCall: OrmlTokensModuleCall;
@@ -244,11 +249,6 @@
PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
- QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
- QuartzRuntimeRuntime: QuartzRuntimeRuntime;
- QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
- QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
- QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
SpArithmeticArithmeticError: SpArithmeticArithmeticError;
SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1390,15 +1390,15 @@
interface PalletSessionCall extends Enum {
readonly isSetKeys: boolean;
readonly asSetKeys: {
- readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;
+ readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
readonly proof: Bytes;
} & Struct;
readonly isPurgeKeys: boolean;
readonly type: 'SetKeys' | 'PurgeKeys';
}
- /** @name QuartzRuntimeRuntimeCommonSessionKeys (115) */
- interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {
+ /** @name OpalRuntimeRuntimeCommonSessionKeys (115) */
+ interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
readonly aura: SpConsensusAuraSr25519AppSr25519Public;
}
@@ -2177,7 +2177,7 @@
interface PalletReferendaCall extends Enum {
readonly isSubmit: boolean;
readonly asSubmit: {
- readonly proposalOrigin: QuartzRuntimeOriginCaller;
+ readonly proposalOrigin: OpalRuntimeOriginCaller;
readonly proposal: FrameSupportPreimagesBounded;
readonly enactmentMoment: FrameSupportScheduleDispatchTime;
} & Struct;
@@ -2217,8 +2217,8 @@
readonly type: 'Submit' | 'PlaceDecisionDeposit' | 'RefundDecisionDeposit' | 'Cancel' | 'Kill' | 'NudgeReferendum' | 'OneFewerDeciding' | 'RefundSubmissionDeposit' | 'SetMetadata';
}
- /** @name QuartzRuntimeOriginCaller (209) */
- interface QuartzRuntimeOriginCaller extends Enum {
+ /** @name OpalRuntimeOriginCaller (209) */
+ interface OpalRuntimeOriginCaller extends Enum {
readonly isSystem: boolean;
readonly asSystem: FrameSupportDispatchRawOrigin;
readonly isVoid: boolean;
@@ -4616,7 +4616,7 @@
/** @name PalletReferendaReferendumStatus (509) */
interface PalletReferendaReferendumStatus extends Struct {
readonly track: u16;
- readonly origin: QuartzRuntimeOriginCaller;
+ readonly origin: OpalRuntimeOriginCaller;
readonly proposal: FrameSupportPreimagesBounded;
readonly enactment: FrameSupportScheduleDispatchTime;
readonly submitted: u32;
@@ -4701,7 +4701,7 @@
readonly priority: u8;
readonly call: FrameSupportPreimagesBounded;
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: QuartzRuntimeOriginCaller;
+ readonly origin: OpalRuntimeOriginCaller;
}
/** @name PalletSchedulerError (528) */
@@ -5312,17 +5312,17 @@
/** @name FrameSystemExtensionsCheckWeight (673) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */
- type QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */
+ type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */
- type QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
+ /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */
+ type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
/** @name PalletTemplateTransactionPaymentChargeTransactionPayment (676) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name QuartzRuntimeRuntime (677) */
- type QuartzRuntimeRuntime = Null;
+ /** @name OpalRuntimeRuntime (677) */
+ type OpalRuntimeRuntime = Null;
/** @name PalletEthereumFakeTransactionFinalizer (678) */
type PalletEthereumFakeTransactionFinalizer = Null;