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.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeOriginCaller, QuartzRuntimeRuntime, QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls, QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance, QuartzRuntimeRuntimeCommonSessionKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -795,6 +795,11 @@
OffenceDetails: OffenceDetails;
Offender: Offender;
OldV1SessionInfo: OldV1SessionInfo;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
+ OpalRuntimeRuntime: OpalRuntimeRuntime;
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
+ OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+ OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OpaqueCall: OpaqueCall;
OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
OpaqueMetadata: OpaqueMetadata;
@@ -1067,11 +1072,6 @@
PvfCheckStatement: PvfCheckStatement;
PvfExecTimeoutKind: PvfExecTimeoutKind;
PvfPrepTimeoutKind: PvfPrepTimeoutKind;
- QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
- QuartzRuntimeRuntime: QuartzRuntimeRuntime;
- QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
- QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
- QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
QueryId: QueryId;
QueryStatus: QueryStatus;
QueueConfigData: QueueConfigData;
tests/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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>9 **/10 FrameSystemAccountInfo: {11 nonce: 'u32',12 consumers: 'u32',13 providers: 'u32',14 sufficients: 'u32',15 data: 'PalletBalancesAccountData'16 },17 /**18 * Lookup5: pallet_balances::types::AccountData<Balance>19 **/20 PalletBalancesAccountData: {21 free: 'u128',22 reserved: 'u128',23 frozen: 'u128',24 flags: 'u128'25 },26 /**27 * Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28 **/29 FrameSupportDispatchPerDispatchClassWeight: {30 normal: 'SpWeightsWeightV2Weight',31 operational: 'SpWeightsWeightV2Weight',32 mandatory: 'SpWeightsWeightV2Weight'33 },34 /**35 * Lookup9: sp_weights::weight_v2::Weight36 **/37 SpWeightsWeightV2Weight: {38 refTime: 'Compact<u64>',39 proofSize: 'Compact<u64>'40 },41 /**42 * Lookup14: sp_runtime::generic::digest::Digest43 **/44 SpRuntimeDigest: {45 logs: 'Vec<SpRuntimeDigestDigestItem>'46 },47 /**48 * Lookup16: sp_runtime::generic::digest::DigestItem49 **/50 SpRuntimeDigestDigestItem: {51 _enum: {52 Other: 'Bytes',53 __Unused1: 'Null',54 __Unused2: 'Null',55 __Unused3: 'Null',56 Consensus: '([u8;4],Bytes)',57 Seal: '([u8;4],Bytes)',58 PreRuntime: '([u8;4],Bytes)',59 __Unused7: 'Null',60 RuntimeEnvironmentUpdated: 'Null'61 }62 },63 /**64 * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65 **/66 FrameSystemEventRecord: {67 phase: 'FrameSystemPhase',68 event: 'Event',69 topics: 'Vec<H256>'70 },71 /**72 * Lookup21: frame_system::pallet::Event<T>73 **/74 FrameSystemEvent: {75 _enum: {76 ExtrinsicSuccess: {77 dispatchInfo: 'FrameSupportDispatchDispatchInfo',78 },79 ExtrinsicFailed: {80 dispatchError: 'SpRuntimeDispatchError',81 dispatchInfo: 'FrameSupportDispatchDispatchInfo',82 },83 CodeUpdated: 'Null',84 NewAccount: {85 account: 'AccountId32',86 },87 KilledAccount: {88 account: 'AccountId32',89 },90 Remarked: {91 _alias: {92 hash_: 'hash',93 },94 sender: 'AccountId32',95 hash_: 'H256'96 }97 }98 },99 /**100 * Lookup22: frame_support::dispatch::DispatchInfo101 **/102 FrameSupportDispatchDispatchInfo: {103 weight: 'SpWeightsWeightV2Weight',104 class: 'FrameSupportDispatchDispatchClass',105 paysFee: 'FrameSupportDispatchPays'106 },107 /**108 * Lookup23: frame_support::dispatch::DispatchClass109 **/110 FrameSupportDispatchDispatchClass: {111 _enum: ['Normal', 'Operational', 'Mandatory']112 },113 /**114 * Lookup24: frame_support::dispatch::Pays115 **/116 FrameSupportDispatchPays: {117 _enum: ['Yes', 'No']118 },119 /**120 * Lookup25: sp_runtime::DispatchError121 **/122 SpRuntimeDispatchError: {123 _enum: {124 Other: 'Null',125 CannotLookup: 'Null',126 BadOrigin: 'Null',127 Module: 'SpRuntimeModuleError',128 ConsumerRemaining: 'Null',129 NoProviders: 'Null',130 TooManyConsumers: 'Null',131 Token: 'SpRuntimeTokenError',132 Arithmetic: 'SpArithmeticArithmeticError',133 Transactional: 'SpRuntimeTransactionalError',134 Exhausted: 'Null',135 Corruption: 'Null',136 Unavailable: 'Null',137 RootNotAllowed: 'Null'138 }139 },140 /**141 * Lookup26: sp_runtime::ModuleError142 **/143 SpRuntimeModuleError: {144 index: 'u8',145 error: '[u8;4]'146 },147 /**148 * Lookup27: sp_runtime::TokenError149 **/150 SpRuntimeTokenError: {151 _enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable', 'Blocked']152 },153 /**154 * Lookup28: sp_arithmetic::ArithmeticError155 **/156 SpArithmeticArithmeticError: {157 _enum: ['Underflow', 'Overflow', 'DivisionByZero']158 },159 /**160 * Lookup29: sp_runtime::TransactionalError161 **/162 SpRuntimeTransactionalError: {163 _enum: ['LimitReached', 'NoLayer']164 },165 /**166 * Lookup30: pallet_state_trie_migration::pallet::Event<T>167 **/168 PalletStateTrieMigrationEvent: {169 _enum: {170 Migrated: {171 top: 'u32',172 child: 'u32',173 compute: 'PalletStateTrieMigrationMigrationCompute',174 },175 Slashed: {176 who: 'AccountId32',177 amount: 'u128',178 },179 AutoMigrationFinished: 'Null',180 Halted: {181 error: 'PalletStateTrieMigrationError'182 }183 }184 },185 /**186 * Lookup31: pallet_state_trie_migration::pallet::MigrationCompute187 **/188 PalletStateTrieMigrationMigrationCompute: {189 _enum: ['Signed', 'Auto']190 },191 /**192 * Lookup32: pallet_state_trie_migration::pallet::Error<T>193 **/194 PalletStateTrieMigrationError: {195 _enum: ['MaxSignedLimits', 'KeyTooLong', 'NotEnoughFunds', 'BadWitness', 'SignedMigrationNotAllowed', 'BadChildRoot']196 },197 /**198 * Lookup33: cumulus_pallet_parachain_system::pallet::Event<T>199 **/200 CumulusPalletParachainSystemEvent: {201 _enum: {202 ValidationFunctionStored: 'Null',203 ValidationFunctionApplied: {204 relayChainBlockNum: 'u32',205 },206 ValidationFunctionDiscarded: 'Null',207 UpgradeAuthorized: {208 codeHash: 'H256',209 },210 DownwardMessagesReceived: {211 count: 'u32',212 },213 DownwardMessagesProcessed: {214 weightUsed: 'SpWeightsWeightV2Weight',215 dmqHead: 'H256',216 },217 UpwardMessageSent: {218 messageHash: 'Option<[u8;32]>'219 }220 }221 },222 /**223 * Lookup35: pallet_collator_selection::pallet::Event<T>224 **/225 PalletCollatorSelectionEvent: {226 _enum: {227 InvulnerableAdded: {228 invulnerable: 'AccountId32',229 },230 InvulnerableRemoved: {231 invulnerable: 'AccountId32',232 },233 LicenseObtained: {234 accountId: 'AccountId32',235 deposit: 'u128',236 },237 LicenseReleased: {238 accountId: 'AccountId32',239 depositReturned: 'u128',240 },241 CandidateAdded: {242 accountId: 'AccountId32',243 },244 CandidateRemoved: {245 accountId: 'AccountId32'246 }247 }248 },249 /**250 * Lookup36: pallet_session::pallet::Event251 **/252 PalletSessionEvent: {253 _enum: {254 NewSession: {255 sessionIndex: 'u32'256 }257 }258 },259 /**260 * Lookup37: pallet_balances::pallet::Event<T, I>261 **/262 PalletBalancesEvent: {263 _enum: {264 Endowed: {265 account: 'AccountId32',266 freeBalance: 'u128',267 },268 DustLost: {269 account: 'AccountId32',270 amount: 'u128',271 },272 Transfer: {273 from: 'AccountId32',274 to: 'AccountId32',275 amount: 'u128',276 },277 BalanceSet: {278 who: 'AccountId32',279 free: 'u128',280 },281 Reserved: {282 who: 'AccountId32',283 amount: 'u128',284 },285 Unreserved: {286 who: 'AccountId32',287 amount: 'u128',288 },289 ReserveRepatriated: {290 from: 'AccountId32',291 to: 'AccountId32',292 amount: 'u128',293 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',294 },295 Deposit: {296 who: 'AccountId32',297 amount: 'u128',298 },299 Withdraw: {300 who: 'AccountId32',301 amount: 'u128',302 },303 Slashed: {304 who: 'AccountId32',305 amount: 'u128',306 },307 Minted: {308 who: 'AccountId32',309 amount: 'u128',310 },311 Burned: {312 who: 'AccountId32',313 amount: 'u128',314 },315 Suspended: {316 who: 'AccountId32',317 amount: 'u128',318 },319 Restored: {320 who: 'AccountId32',321 amount: 'u128',322 },323 Upgraded: {324 who: 'AccountId32',325 },326 Issued: {327 amount: 'u128',328 },329 Rescinded: {330 amount: 'u128',331 },332 Locked: {333 who: 'AccountId32',334 amount: 'u128',335 },336 Unlocked: {337 who: 'AccountId32',338 amount: 'u128',339 },340 Frozen: {341 who: 'AccountId32',342 amount: 'u128',343 },344 Thawed: {345 who: 'AccountId32',346 amount: 'u128'347 }348 }349 },350 /**351 * Lookup38: frame_support::traits::tokens::misc::BalanceStatus352 **/353 FrameSupportTokensMiscBalanceStatus: {354 _enum: ['Free', 'Reserved']355 },356 /**357 * Lookup39: pallet_transaction_payment::pallet::Event<T>358 **/359 PalletTransactionPaymentEvent: {360 _enum: {361 TransactionFeePaid: {362 who: 'AccountId32',363 actualFee: 'u128',364 tip: 'u128'365 }366 }367 },368 /**369 * Lookup40: pallet_treasury::pallet::Event<T, I>370 **/371 PalletTreasuryEvent: {372 _enum: {373 Proposed: {374 proposalIndex: 'u32',375 },376 Spending: {377 budgetRemaining: 'u128',378 },379 Awarded: {380 proposalIndex: 'u32',381 award: 'u128',382 account: 'AccountId32',383 },384 Rejected: {385 proposalIndex: 'u32',386 slashed: 'u128',387 },388 Burnt: {389 burntFunds: 'u128',390 },391 Rollover: {392 rolloverBalance: 'u128',393 },394 Deposit: {395 value: 'u128',396 },397 SpendApproved: {398 proposalIndex: 'u32',399 amount: 'u128',400 beneficiary: 'AccountId32',401 },402 UpdatedInactive: {403 reactivated: 'u128',404 deactivated: 'u128'405 }406 }407 },408 /**409 * Lookup41: pallet_sudo::pallet::Event<T>410 **/411 PalletSudoEvent: {412 _enum: {413 Sudid: {414 sudoResult: 'Result<Null, SpRuntimeDispatchError>',415 },416 KeyChanged: {417 oldSudoer: 'Option<AccountId32>',418 },419 SudoAsDone: {420 sudoResult: 'Result<Null, SpRuntimeDispatchError>'421 }422 }423 },424 /**425 * Lookup45: orml_vesting::module::Event<T>426 **/427 OrmlVestingModuleEvent: {428 _enum: {429 VestingScheduleAdded: {430 from: 'AccountId32',431 to: 'AccountId32',432 vestingSchedule: 'OrmlVestingVestingSchedule',433 },434 Claimed: {435 who: 'AccountId32',436 amount: 'u128',437 },438 VestingSchedulesUpdated: {439 who: 'AccountId32'440 }441 }442 },443 /**444 * Lookup46: orml_vesting::VestingSchedule<BlockNumber, Balance>445 **/446 OrmlVestingVestingSchedule: {447 start: 'u32',448 period: 'u32',449 periodCount: 'u32',450 perPeriod: 'Compact<u128>'451 },452 /**453 * Lookup48: orml_xtokens::module::Event<T>454 **/455 OrmlXtokensModuleEvent: {456 _enum: {457 TransferredMultiAssets: {458 sender: 'AccountId32',459 assets: 'XcmV3MultiassetMultiAssets',460 fee: 'XcmV3MultiAsset',461 dest: 'XcmV3MultiLocation'462 }463 }464 },465 /**466 * Lookup49: xcm::v3::multiasset::MultiAssets467 **/468 XcmV3MultiassetMultiAssets: 'Vec<XcmV3MultiAsset>',469 /**470 * Lookup51: xcm::v3::multiasset::MultiAsset471 **/472 XcmV3MultiAsset: {473 id: 'XcmV3MultiassetAssetId',474 fun: 'XcmV3MultiassetFungibility'475 },476 /**477 * Lookup52: xcm::v3::multiasset::AssetId478 **/479 XcmV3MultiassetAssetId: {480 _enum: {481 Concrete: 'XcmV3MultiLocation',482 Abstract: '[u8;32]'483 }484 },485 /**486 * Lookup53: xcm::v3::multilocation::MultiLocation487 **/488 XcmV3MultiLocation: {489 parents: 'u8',490 interior: 'XcmV3Junctions'491 },492 /**493 * Lookup54: xcm::v3::junctions::Junctions494 **/495 XcmV3Junctions: {496 _enum: {497 Here: 'Null',498 X1: 'XcmV3Junction',499 X2: '(XcmV3Junction,XcmV3Junction)',500 X3: '(XcmV3Junction,XcmV3Junction,XcmV3Junction)',501 X4: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',502 X5: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',503 X6: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',504 X7: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',505 X8: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)'506 }507 },508 /**509 * Lookup55: xcm::v3::junction::Junction510 **/511 XcmV3Junction: {512 _enum: {513 Parachain: 'Compact<u32>',514 AccountId32: {515 network: 'Option<XcmV3JunctionNetworkId>',516 id: '[u8;32]',517 },518 AccountIndex64: {519 network: 'Option<XcmV3JunctionNetworkId>',520 index: 'Compact<u64>',521 },522 AccountKey20: {523 network: 'Option<XcmV3JunctionNetworkId>',524 key: '[u8;20]',525 },526 PalletInstance: 'u8',527 GeneralIndex: 'Compact<u128>',528 GeneralKey: {529 length: 'u8',530 data: '[u8;32]',531 },532 OnlyChild: 'Null',533 Plurality: {534 id: 'XcmV3JunctionBodyId',535 part: 'XcmV3JunctionBodyPart',536 },537 GlobalConsensus: 'XcmV3JunctionNetworkId'538 }539 },540 /**541 * Lookup58: xcm::v3::junction::NetworkId542 **/543 XcmV3JunctionNetworkId: {544 _enum: {545 ByGenesis: '[u8;32]',546 ByFork: {547 blockNumber: 'u64',548 blockHash: '[u8;32]',549 },550 Polkadot: 'Null',551 Kusama: 'Null',552 Westend: 'Null',553 Rococo: 'Null',554 Wococo: 'Null',555 Ethereum: {556 chainId: 'Compact<u64>',557 },558 BitcoinCore: 'Null',559 BitcoinCash: 'Null'560 }561 },562 /**563 * Lookup60: xcm::v3::junction::BodyId564 **/565 XcmV3JunctionBodyId: {566 _enum: {567 Unit: 'Null',568 Moniker: '[u8;4]',569 Index: 'Compact<u32>',570 Executive: 'Null',571 Technical: 'Null',572 Legislative: 'Null',573 Judicial: 'Null',574 Defense: 'Null',575 Administration: 'Null',576 Treasury: 'Null'577 }578 },579 /**580 * Lookup61: xcm::v3::junction::BodyPart581 **/582 XcmV3JunctionBodyPart: {583 _enum: {584 Voice: 'Null',585 Members: {586 count: 'Compact<u32>',587 },588 Fraction: {589 nom: 'Compact<u32>',590 denom: 'Compact<u32>',591 },592 AtLeastProportion: {593 nom: 'Compact<u32>',594 denom: 'Compact<u32>',595 },596 MoreThanProportion: {597 nom: 'Compact<u32>',598 denom: 'Compact<u32>'599 }600 }601 },602 /**603 * Lookup62: xcm::v3::multiasset::Fungibility604 **/605 XcmV3MultiassetFungibility: {606 _enum: {607 Fungible: 'Compact<u128>',608 NonFungible: 'XcmV3MultiassetAssetInstance'609 }610 },611 /**612 * Lookup63: xcm::v3::multiasset::AssetInstance613 **/614 XcmV3MultiassetAssetInstance: {615 _enum: {616 Undefined: 'Null',617 Index: 'Compact<u128>',618 Array4: '[u8;4]',619 Array8: '[u8;8]',620 Array16: '[u8;16]',621 Array32: '[u8;32]'622 }623 },624 /**625 * Lookup66: orml_tokens::module::Event<T>626 **/627 OrmlTokensModuleEvent: {628 _enum: {629 Endowed: {630 currencyId: 'PalletForeignAssetsAssetIds',631 who: 'AccountId32',632 amount: 'u128',633 },634 DustLost: {635 currencyId: 'PalletForeignAssetsAssetIds',636 who: 'AccountId32',637 amount: 'u128',638 },639 Transfer: {640 currencyId: 'PalletForeignAssetsAssetIds',641 from: 'AccountId32',642 to: 'AccountId32',643 amount: 'u128',644 },645 Reserved: {646 currencyId: 'PalletForeignAssetsAssetIds',647 who: 'AccountId32',648 amount: 'u128',649 },650 Unreserved: {651 currencyId: 'PalletForeignAssetsAssetIds',652 who: 'AccountId32',653 amount: 'u128',654 },655 ReserveRepatriated: {656 currencyId: 'PalletForeignAssetsAssetIds',657 from: 'AccountId32',658 to: 'AccountId32',659 amount: 'u128',660 status: 'FrameSupportTokensMiscBalanceStatus',661 },662 BalanceSet: {663 currencyId: 'PalletForeignAssetsAssetIds',664 who: 'AccountId32',665 free: 'u128',666 reserved: 'u128',667 },668 TotalIssuanceSet: {669 currencyId: 'PalletForeignAssetsAssetIds',670 amount: 'u128',671 },672 Withdrawn: {673 currencyId: 'PalletForeignAssetsAssetIds',674 who: 'AccountId32',675 amount: 'u128',676 },677 Slashed: {678 currencyId: 'PalletForeignAssetsAssetIds',679 who: 'AccountId32',680 freeAmount: 'u128',681 reservedAmount: 'u128',682 },683 Deposited: {684 currencyId: 'PalletForeignAssetsAssetIds',685 who: 'AccountId32',686 amount: 'u128',687 },688 LockSet: {689 lockId: '[u8;8]',690 currencyId: 'PalletForeignAssetsAssetIds',691 who: 'AccountId32',692 amount: 'u128',693 },694 LockRemoved: {695 lockId: '[u8;8]',696 currencyId: 'PalletForeignAssetsAssetIds',697 who: 'AccountId32',698 },699 Locked: {700 currencyId: 'PalletForeignAssetsAssetIds',701 who: 'AccountId32',702 amount: 'u128',703 },704 Unlocked: {705 currencyId: 'PalletForeignAssetsAssetIds',706 who: 'AccountId32',707 amount: 'u128'708 }709 }710 },711 /**712 * Lookup67: pallet_foreign_assets::AssetIds713 **/714 PalletForeignAssetsAssetIds: {715 _enum: {716 ForeignAssetId: 'u32',717 NativeAssetId: 'PalletForeignAssetsNativeCurrency'718 }719 },720 /**721 * Lookup68: pallet_foreign_assets::NativeCurrency722 **/723 PalletForeignAssetsNativeCurrency: {724 _enum: ['Here', 'Parent']725 },726 /**727 * Lookup69: pallet_identity::pallet::Event<T>728 **/729 PalletIdentityEvent: {730 _enum: {731 IdentitySet: {732 who: 'AccountId32',733 },734 IdentityCleared: {735 who: 'AccountId32',736 deposit: 'u128',737 },738 IdentityKilled: {739 who: 'AccountId32',740 deposit: 'u128',741 },742 IdentitiesInserted: {743 amount: 'u32',744 },745 IdentitiesRemoved: {746 amount: 'u32',747 },748 JudgementRequested: {749 who: 'AccountId32',750 registrarIndex: 'u32',751 },752 JudgementUnrequested: {753 who: 'AccountId32',754 registrarIndex: 'u32',755 },756 JudgementGiven: {757 target: 'AccountId32',758 registrarIndex: 'u32',759 },760 RegistrarAdded: {761 registrarIndex: 'u32',762 },763 SubIdentityAdded: {764 sub: 'AccountId32',765 main: 'AccountId32',766 deposit: 'u128',767 },768 SubIdentityRemoved: {769 sub: 'AccountId32',770 main: 'AccountId32',771 deposit: 'u128',772 },773 SubIdentityRevoked: {774 sub: 'AccountId32',775 main: 'AccountId32',776 deposit: 'u128',777 },778 SubIdentitiesInserted: {779 amount: 'u32'780 }781 }782 },783 /**784 * Lookup70: pallet_preimage::pallet::Event<T>785 **/786 PalletPreimageEvent: {787 _enum: {788 Noted: {789 _alias: {790 hash_: 'hash',791 },792 hash_: 'H256',793 },794 Requested: {795 _alias: {796 hash_: 'hash',797 },798 hash_: 'H256',799 },800 Cleared: {801 _alias: {802 hash_: 'hash',803 },804 hash_: 'H256'805 }806 }807 },808 /**809 * Lookup71: pallet_democracy::pallet::Event<T>810 **/811 PalletDemocracyEvent: {812 _enum: {813 Proposed: {814 proposalIndex: 'u32',815 deposit: 'u128',816 },817 Tabled: {818 proposalIndex: 'u32',819 deposit: 'u128',820 },821 ExternalTabled: 'Null',822 Started: {823 refIndex: 'u32',824 threshold: 'PalletDemocracyVoteThreshold',825 },826 Passed: {827 refIndex: 'u32',828 },829 NotPassed: {830 refIndex: 'u32',831 },832 Cancelled: {833 refIndex: 'u32',834 },835 Delegated: {836 who: 'AccountId32',837 target: 'AccountId32',838 },839 Undelegated: {840 account: 'AccountId32',841 },842 Vetoed: {843 who: 'AccountId32',844 proposalHash: 'H256',845 until: 'u32',846 },847 Blacklisted: {848 proposalHash: 'H256',849 },850 Voted: {851 voter: 'AccountId32',852 refIndex: 'u32',853 vote: 'PalletDemocracyVoteAccountVote',854 },855 Seconded: {856 seconder: 'AccountId32',857 propIndex: 'u32',858 },859 ProposalCanceled: {860 propIndex: 'u32',861 },862 MetadataSet: {863 _alias: {864 hash_: 'hash',865 },866 owner: 'PalletDemocracyMetadataOwner',867 hash_: 'H256',868 },869 MetadataCleared: {870 _alias: {871 hash_: 'hash',872 },873 owner: 'PalletDemocracyMetadataOwner',874 hash_: 'H256',875 },876 MetadataTransferred: {877 _alias: {878 hash_: 'hash',879 },880 prevOwner: 'PalletDemocracyMetadataOwner',881 owner: 'PalletDemocracyMetadataOwner',882 hash_: 'H256'883 }884 }885 },886 /**887 * Lookup72: pallet_democracy::vote_threshold::VoteThreshold888 **/889 PalletDemocracyVoteThreshold: {890 _enum: ['SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority']891 },892 /**893 * Lookup73: pallet_democracy::vote::AccountVote<Balance>894 **/895 PalletDemocracyVoteAccountVote: {896 _enum: {897 Standard: {898 vote: 'Vote',899 balance: 'u128',900 },901 Split: {902 aye: 'u128',903 nay: 'u128'904 }905 }906 },907 /**908 * Lookup75: pallet_democracy::types::MetadataOwner909 **/910 PalletDemocracyMetadataOwner: {911 _enum: {912 External: 'Null',913 Proposal: 'u32',914 Referendum: 'u32'915 }916 },917 /**918 * Lookup76: pallet_collective::pallet::Event<T, I>919 **/920 PalletCollectiveEvent: {921 _enum: {922 Proposed: {923 account: 'AccountId32',924 proposalIndex: 'u32',925 proposalHash: 'H256',926 threshold: 'u32',927 },928 Voted: {929 account: 'AccountId32',930 proposalHash: 'H256',931 voted: 'bool',932 yes: 'u32',933 no: 'u32',934 },935 Approved: {936 proposalHash: 'H256',937 },938 Disapproved: {939 proposalHash: 'H256',940 },941 Executed: {942 proposalHash: 'H256',943 result: 'Result<Null, SpRuntimeDispatchError>',944 },945 MemberExecuted: {946 proposalHash: 'H256',947 result: 'Result<Null, SpRuntimeDispatchError>',948 },949 Closed: {950 proposalHash: 'H256',951 yes: 'u32',952 no: 'u32'953 }954 }955 },956 /**957 * Lookup79: pallet_membership::pallet::Event<T, I>958 **/959 PalletMembershipEvent: {960 _enum: ['MemberAdded', 'MemberRemoved', 'MembersSwapped', 'MembersReset', 'KeyChanged', 'Dummy']961 },962 /**963 * Lookup81: pallet_ranked_collective::pallet::Event<T, I>964 **/965 PalletRankedCollectiveEvent: {966 _enum: {967 MemberAdded: {968 who: 'AccountId32',969 },970 RankChanged: {971 who: 'AccountId32',972 rank: 'u16',973 },974 MemberRemoved: {975 who: 'AccountId32',976 rank: 'u16',977 },978 Voted: {979 who: 'AccountId32',980 poll: 'u32',981 vote: 'PalletRankedCollectiveVoteRecord',982 tally: 'PalletRankedCollectiveTally'983 }984 }985 },986 /**987 * Lookup83: pallet_ranked_collective::VoteRecord988 **/989 PalletRankedCollectiveVoteRecord: {990 _enum: {991 Aye: 'u32',992 Nay: 'u32'993 }994 },995 /**996 * Lookup84: pallet_ranked_collective::Tally<T, I, M>997 **/998 PalletRankedCollectiveTally: {999 bareAyes: 'u32',1000 ayes: 'u32',1001 nays: 'u32'1002 },1003 /**1004 * Lookup85: pallet_referenda::pallet::Event<T, I>1005 **/1006 PalletReferendaEvent: {1007 _enum: {1008 Submitted: {1009 index: 'u32',1010 track: 'u16',1011 proposal: 'FrameSupportPreimagesBounded',1012 },1013 DecisionDepositPlaced: {1014 index: 'u32',1015 who: 'AccountId32',1016 amount: 'u128',1017 },1018 DecisionDepositRefunded: {1019 index: 'u32',1020 who: 'AccountId32',1021 amount: 'u128',1022 },1023 DepositSlashed: {1024 who: 'AccountId32',1025 amount: 'u128',1026 },1027 DecisionStarted: {1028 index: 'u32',1029 track: 'u16',1030 proposal: 'FrameSupportPreimagesBounded',1031 tally: 'PalletRankedCollectiveTally',1032 },1033 ConfirmStarted: {1034 index: 'u32',1035 },1036 ConfirmAborted: {1037 index: 'u32',1038 },1039 Confirmed: {1040 index: 'u32',1041 tally: 'PalletRankedCollectiveTally',1042 },1043 Approved: {1044 index: 'u32',1045 },1046 Rejected: {1047 index: 'u32',1048 tally: 'PalletRankedCollectiveTally',1049 },1050 TimedOut: {1051 index: 'u32',1052 tally: 'PalletRankedCollectiveTally',1053 },1054 Cancelled: {1055 index: 'u32',1056 tally: 'PalletRankedCollectiveTally',1057 },1058 Killed: {1059 index: 'u32',1060 tally: 'PalletRankedCollectiveTally',1061 },1062 SubmissionDepositRefunded: {1063 index: 'u32',1064 who: 'AccountId32',1065 amount: 'u128',1066 },1067 MetadataSet: {1068 _alias: {1069 hash_: 'hash',1070 },1071 index: 'u32',1072 hash_: 'H256',1073 },1074 MetadataCleared: {1075 _alias: {1076 hash_: 'hash',1077 },1078 index: 'u32',1079 hash_: 'H256'1080 }1081 }1082 },1083 /**1084 * Lookup86: frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>1085 **/1086 FrameSupportPreimagesBounded: {1087 _enum: {1088 Legacy: {1089 _alias: {1090 hash_: 'hash',1091 },1092 hash_: 'H256',1093 },1094 Inline: 'Bytes',1095 Lookup: {1096 _alias: {1097 hash_: 'hash',1098 },1099 hash_: 'H256',1100 len: 'u32'1101 }1102 }1103 },1104 /**1105 * Lookup88: frame_system::pallet::Call<T>1106 **/1107 FrameSystemCall: {1108 _enum: {1109 remark: {1110 remark: 'Bytes',1111 },1112 set_heap_pages: {1113 pages: 'u64',1114 },1115 set_code: {1116 code: 'Bytes',1117 },1118 set_code_without_checks: {1119 code: 'Bytes',1120 },1121 set_storage: {1122 items: 'Vec<(Bytes,Bytes)>',1123 },1124 kill_storage: {1125 _alias: {1126 keys_: 'keys',1127 },1128 keys_: 'Vec<Bytes>',1129 },1130 kill_prefix: {1131 prefix: 'Bytes',1132 subkeys: 'u32',1133 },1134 remark_with_event: {1135 remark: 'Bytes'1136 }1137 }1138 },1139 /**1140 * Lookup92: pallet_state_trie_migration::pallet::Call<T>1141 **/1142 PalletStateTrieMigrationCall: {1143 _enum: {1144 control_auto_migration: {1145 maybeConfig: 'Option<PalletStateTrieMigrationMigrationLimits>',1146 },1147 continue_migrate: {1148 limits: 'PalletStateTrieMigrationMigrationLimits',1149 realSizeUpper: 'u32',1150 witnessTask: 'PalletStateTrieMigrationMigrationTask',1151 },1152 migrate_custom_top: {1153 _alias: {1154 keys_: 'keys',1155 },1156 keys_: 'Vec<Bytes>',1157 witnessSize: 'u32',1158 },1159 migrate_custom_child: {1160 root: 'Bytes',1161 childKeys: 'Vec<Bytes>',1162 totalSize: 'u32',1163 },1164 set_signed_max_limits: {1165 limits: 'PalletStateTrieMigrationMigrationLimits',1166 },1167 force_set_progress: {1168 progressTop: 'PalletStateTrieMigrationProgress',1169 progressChild: 'PalletStateTrieMigrationProgress'1170 }1171 }1172 },1173 /**1174 * Lookup94: pallet_state_trie_migration::pallet::MigrationLimits1175 **/1176 PalletStateTrieMigrationMigrationLimits: {1177 _alias: {1178 size_: 'size'1179 },1180 size_: 'u32',1181 item: 'u32'1182 },1183 /**1184 * Lookup95: pallet_state_trie_migration::pallet::MigrationTask<T>1185 **/1186 PalletStateTrieMigrationMigrationTask: {1187 _alias: {1188 size_: 'size'1189 },1190 progressTop: 'PalletStateTrieMigrationProgress',1191 progressChild: 'PalletStateTrieMigrationProgress',1192 size_: 'u32',1193 topItems: 'u32',1194 childItems: 'u32'1195 },1196 /**1197 * Lookup96: pallet_state_trie_migration::pallet::Progress<MaxKeyLen>1198 **/1199 PalletStateTrieMigrationProgress: {1200 _enum: {1201 ToStart: 'Null',1202 LastKey: 'Bytes',1203 Complete: 'Null'1204 }1205 },1206 /**1207 * Lookup98: cumulus_pallet_parachain_system::pallet::Call<T>1208 **/1209 CumulusPalletParachainSystemCall: {1210 _enum: {1211 set_validation_data: {1212 data: 'CumulusPrimitivesParachainInherentParachainInherentData',1213 },1214 sudo_send_upward_message: {1215 message: 'Bytes',1216 },1217 authorize_upgrade: {1218 codeHash: 'H256',1219 checkVersion: 'bool',1220 },1221 enact_authorized_upgrade: {1222 code: 'Bytes'1223 }1224 }1225 },1226 /**1227 * Lookup99: cumulus_primitives_parachain_inherent::ParachainInherentData1228 **/1229 CumulusPrimitivesParachainInherentParachainInherentData: {1230 validationData: 'PolkadotPrimitivesV4PersistedValidationData',1231 relayChainState: 'SpTrieStorageProof',1232 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1233 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1234 },1235 /**1236 * Lookup100: polkadot_primitives::v4::PersistedValidationData<primitive_types::H256, N>1237 **/1238 PolkadotPrimitivesV4PersistedValidationData: {1239 parentHead: 'Bytes',1240 relayParentNumber: 'u32',1241 relayParentStorageRoot: 'H256',1242 maxPovSize: 'u32'1243 },1244 /**1245 * Lookup102: sp_trie::storage_proof::StorageProof1246 **/1247 SpTrieStorageProof: {1248 trieNodes: 'BTreeSet<Bytes>'1249 },1250 /**1251 * Lookup105: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1252 **/1253 PolkadotCorePrimitivesInboundDownwardMessage: {1254 sentAt: 'u32',1255 msg: 'Bytes'1256 },1257 /**1258 * Lookup109: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1259 **/1260 PolkadotCorePrimitivesInboundHrmpMessage: {1261 sentAt: 'u32',1262 data: 'Bytes'1263 },1264 /**1265 * Lookup112: parachain_info::pallet::Call<T>1266 **/1267 ParachainInfoCall: 'Null',1268 /**1269 * Lookup113: pallet_collator_selection::pallet::Call<T>1270 **/1271 PalletCollatorSelectionCall: {1272 _enum: {1273 add_invulnerable: {1274 _alias: {1275 new_: 'new',1276 },1277 new_: 'AccountId32',1278 },1279 remove_invulnerable: {1280 who: 'AccountId32',1281 },1282 get_license: 'Null',1283 onboard: 'Null',1284 offboard: 'Null',1285 release_license: 'Null',1286 force_release_license: {1287 who: 'AccountId32'1288 }1289 }1290 },1291 /**1292 * Lookup114: pallet_session::pallet::Call<T>1293 **/1294 PalletSessionCall: {1295 _enum: {1296 set_keys: {1297 _alias: {1298 keys_: 'keys',1299 },1300 keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1301 proof: 'Bytes',1302 },1303 purge_keys: 'Null'1304 }1305 },1306 /**1307 * Lookup115: opal_runtime::runtime_common::SessionKeys1308 **/1309 OpalRuntimeRuntimeCommonSessionKeys: {1310 aura: 'SpConsensusAuraSr25519AppSr25519Public'1311 },1312 /**1313 * Lookup116: sp_consensus_aura::sr25519::app_sr25519::Public1314 **/1315 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1316 /**1317 * Lookup117: sp_core::sr25519::Public1318 **/1319 SpCoreSr25519Public: '[u8;32]',1320 /**1321 * Lookup118: pallet_balances::pallet::Call<T, I>1322 **/1323 PalletBalancesCall: {1324 _enum: {1325 transfer_allow_death: {1326 dest: 'MultiAddress',1327 value: 'Compact<u128>',1328 },1329 set_balance_deprecated: {1330 who: 'MultiAddress',1331 newFree: 'Compact<u128>',1332 oldReserved: 'Compact<u128>',1333 },1334 force_transfer: {1335 source: 'MultiAddress',1336 dest: 'MultiAddress',1337 value: 'Compact<u128>',1338 },1339 transfer_keep_alive: {1340 dest: 'MultiAddress',1341 value: 'Compact<u128>',1342 },1343 transfer_all: {1344 dest: 'MultiAddress',1345 keepAlive: 'bool',1346 },1347 force_unreserve: {1348 who: 'MultiAddress',1349 amount: 'u128',1350 },1351 upgrade_accounts: {1352 who: 'Vec<AccountId32>',1353 },1354 transfer: {1355 dest: 'MultiAddress',1356 value: 'Compact<u128>',1357 },1358 force_set_balance: {1359 who: 'MultiAddress',1360 newFree: 'Compact<u128>'1361 }1362 }1363 },1364 /**1365 * Lookup122: pallet_timestamp::pallet::Call<T>1366 **/1367 PalletTimestampCall: {1368 _enum: {1369 set: {1370 now: 'Compact<u64>'1371 }1372 }1373 },1374 /**1375 * Lookup123: pallet_treasury::pallet::Call<T, I>1376 **/1377 PalletTreasuryCall: {1378 _enum: {1379 propose_spend: {1380 value: 'Compact<u128>',1381 beneficiary: 'MultiAddress',1382 },1383 reject_proposal: {1384 proposalId: 'Compact<u32>',1385 },1386 approve_proposal: {1387 proposalId: 'Compact<u32>',1388 },1389 spend: {1390 amount: 'Compact<u128>',1391 beneficiary: 'MultiAddress',1392 },1393 remove_approval: {1394 proposalId: 'Compact<u32>'1395 }1396 }1397 },1398 /**1399 * Lookup124: pallet_sudo::pallet::Call<T>1400 **/1401 PalletSudoCall: {1402 _enum: {1403 sudo: {1404 call: 'Call',1405 },1406 sudo_unchecked_weight: {1407 call: 'Call',1408 weight: 'SpWeightsWeightV2Weight',1409 },1410 set_key: {1411 _alias: {1412 new_: 'new',1413 },1414 new_: 'MultiAddress',1415 },1416 sudo_as: {1417 who: 'MultiAddress',1418 call: 'Call'1419 }1420 }1421 },1422 /**1423 * Lookup125: orml_vesting::module::Call<T>1424 **/1425 OrmlVestingModuleCall: {1426 _enum: {1427 claim: 'Null',1428 vested_transfer: {1429 dest: 'MultiAddress',1430 schedule: 'OrmlVestingVestingSchedule',1431 },1432 update_vesting_schedules: {1433 who: 'MultiAddress',1434 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1435 },1436 claim_for: {1437 dest: 'MultiAddress'1438 }1439 }1440 },1441 /**1442 * Lookup127: orml_xtokens::module::Call<T>1443 **/1444 OrmlXtokensModuleCall: {1445 _enum: {1446 transfer: {1447 currencyId: 'PalletForeignAssetsAssetIds',1448 amount: 'u128',1449 dest: 'XcmVersionedMultiLocation',1450 destWeightLimit: 'XcmV3WeightLimit',1451 },1452 transfer_multiasset: {1453 asset: 'XcmVersionedMultiAsset',1454 dest: 'XcmVersionedMultiLocation',1455 destWeightLimit: 'XcmV3WeightLimit',1456 },1457 transfer_with_fee: {1458 currencyId: 'PalletForeignAssetsAssetIds',1459 amount: 'u128',1460 fee: 'u128',1461 dest: 'XcmVersionedMultiLocation',1462 destWeightLimit: 'XcmV3WeightLimit',1463 },1464 transfer_multiasset_with_fee: {1465 asset: 'XcmVersionedMultiAsset',1466 fee: 'XcmVersionedMultiAsset',1467 dest: 'XcmVersionedMultiLocation',1468 destWeightLimit: 'XcmV3WeightLimit',1469 },1470 transfer_multicurrencies: {1471 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1472 feeItem: 'u32',1473 dest: 'XcmVersionedMultiLocation',1474 destWeightLimit: 'XcmV3WeightLimit',1475 },1476 transfer_multiassets: {1477 assets: 'XcmVersionedMultiAssets',1478 feeItem: 'u32',1479 dest: 'XcmVersionedMultiLocation',1480 destWeightLimit: 'XcmV3WeightLimit'1481 }1482 }1483 },1484 /**1485 * Lookup128: xcm::VersionedMultiLocation1486 **/1487 XcmVersionedMultiLocation: {1488 _enum: {1489 __Unused0: 'Null',1490 V2: 'XcmV2MultiLocation',1491 __Unused2: 'Null',1492 V3: 'XcmV3MultiLocation'1493 }1494 },1495 /**1496 * Lookup129: xcm::v2::multilocation::MultiLocation1497 **/1498 XcmV2MultiLocation: {1499 parents: 'u8',1500 interior: 'XcmV2MultilocationJunctions'1501 },1502 /**1503 * Lookup130: xcm::v2::multilocation::Junctions1504 **/1505 XcmV2MultilocationJunctions: {1506 _enum: {1507 Here: 'Null',1508 X1: 'XcmV2Junction',1509 X2: '(XcmV2Junction,XcmV2Junction)',1510 X3: '(XcmV2Junction,XcmV2Junction,XcmV2Junction)',1511 X4: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1512 X5: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1513 X6: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1514 X7: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1515 X8: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)'1516 }1517 },1518 /**1519 * Lookup131: xcm::v2::junction::Junction1520 **/1521 XcmV2Junction: {1522 _enum: {1523 Parachain: 'Compact<u32>',1524 AccountId32: {1525 network: 'XcmV2NetworkId',1526 id: '[u8;32]',1527 },1528 AccountIndex64: {1529 network: 'XcmV2NetworkId',1530 index: 'Compact<u64>',1531 },1532 AccountKey20: {1533 network: 'XcmV2NetworkId',1534 key: '[u8;20]',1535 },1536 PalletInstance: 'u8',1537 GeneralIndex: 'Compact<u128>',1538 GeneralKey: 'Bytes',1539 OnlyChild: 'Null',1540 Plurality: {1541 id: 'XcmV2BodyId',1542 part: 'XcmV2BodyPart'1543 }1544 }1545 },1546 /**1547 * Lookup132: xcm::v2::NetworkId1548 **/1549 XcmV2NetworkId: {1550 _enum: {1551 Any: 'Null',1552 Named: 'Bytes',1553 Polkadot: 'Null',1554 Kusama: 'Null'1555 }1556 },1557 /**1558 * Lookup134: xcm::v2::BodyId1559 **/1560 XcmV2BodyId: {1561 _enum: {1562 Unit: 'Null',1563 Named: 'Bytes',1564 Index: 'Compact<u32>',1565 Executive: 'Null',1566 Technical: 'Null',1567 Legislative: 'Null',1568 Judicial: 'Null',1569 Defense: 'Null',1570 Administration: 'Null',1571 Treasury: 'Null'1572 }1573 },1574 /**1575 * Lookup135: xcm::v2::BodyPart1576 **/1577 XcmV2BodyPart: {1578 _enum: {1579 Voice: 'Null',1580 Members: {1581 count: 'Compact<u32>',1582 },1583 Fraction: {1584 nom: 'Compact<u32>',1585 denom: 'Compact<u32>',1586 },1587 AtLeastProportion: {1588 nom: 'Compact<u32>',1589 denom: 'Compact<u32>',1590 },1591 MoreThanProportion: {1592 nom: 'Compact<u32>',1593 denom: 'Compact<u32>'1594 }1595 }1596 },1597 /**1598 * Lookup136: xcm::v3::WeightLimit1599 **/1600 XcmV3WeightLimit: {1601 _enum: {1602 Unlimited: 'Null',1603 Limited: 'SpWeightsWeightV2Weight'1604 }1605 },1606 /**1607 * Lookup137: xcm::VersionedMultiAsset1608 **/1609 XcmVersionedMultiAsset: {1610 _enum: {1611 __Unused0: 'Null',1612 V2: 'XcmV2MultiAsset',1613 __Unused2: 'Null',1614 V3: 'XcmV3MultiAsset'1615 }1616 },1617 /**1618 * Lookup138: xcm::v2::multiasset::MultiAsset1619 **/1620 XcmV2MultiAsset: {1621 id: 'XcmV2MultiassetAssetId',1622 fun: 'XcmV2MultiassetFungibility'1623 },1624 /**1625 * Lookup139: xcm::v2::multiasset::AssetId1626 **/1627 XcmV2MultiassetAssetId: {1628 _enum: {1629 Concrete: 'XcmV2MultiLocation',1630 Abstract: 'Bytes'1631 }1632 },1633 /**1634 * Lookup140: xcm::v2::multiasset::Fungibility1635 **/1636 XcmV2MultiassetFungibility: {1637 _enum: {1638 Fungible: 'Compact<u128>',1639 NonFungible: 'XcmV2MultiassetAssetInstance'1640 }1641 },1642 /**1643 * Lookup141: xcm::v2::multiasset::AssetInstance1644 **/1645 XcmV2MultiassetAssetInstance: {1646 _enum: {1647 Undefined: 'Null',1648 Index: 'Compact<u128>',1649 Array4: '[u8;4]',1650 Array8: '[u8;8]',1651 Array16: '[u8;16]',1652 Array32: '[u8;32]',1653 Blob: 'Bytes'1654 }1655 },1656 /**1657 * Lookup144: xcm::VersionedMultiAssets1658 **/1659 XcmVersionedMultiAssets: {1660 _enum: {1661 __Unused0: 'Null',1662 V2: 'XcmV2MultiassetMultiAssets',1663 __Unused2: 'Null',1664 V3: 'XcmV3MultiassetMultiAssets'1665 }1666 },1667 /**1668 * Lookup145: xcm::v2::multiasset::MultiAssets1669 **/1670 XcmV2MultiassetMultiAssets: 'Vec<XcmV2MultiAsset>',1671 /**1672 * Lookup147: orml_tokens::module::Call<T>1673 **/1674 OrmlTokensModuleCall: {1675 _enum: {1676 transfer: {1677 dest: 'MultiAddress',1678 currencyId: 'PalletForeignAssetsAssetIds',1679 amount: 'Compact<u128>',1680 },1681 transfer_all: {1682 dest: 'MultiAddress',1683 currencyId: 'PalletForeignAssetsAssetIds',1684 keepAlive: 'bool',1685 },1686 transfer_keep_alive: {1687 dest: 'MultiAddress',1688 currencyId: 'PalletForeignAssetsAssetIds',1689 amount: 'Compact<u128>',1690 },1691 force_transfer: {1692 source: 'MultiAddress',1693 dest: 'MultiAddress',1694 currencyId: 'PalletForeignAssetsAssetIds',1695 amount: 'Compact<u128>',1696 },1697 set_balance: {1698 who: 'MultiAddress',1699 currencyId: 'PalletForeignAssetsAssetIds',1700 newFree: 'Compact<u128>',1701 newReserved: 'Compact<u128>'1702 }1703 }1704 },1705 /**1706 * Lookup148: pallet_identity::pallet::Call<T>1707 **/1708 PalletIdentityCall: {1709 _enum: {1710 add_registrar: {1711 account: 'MultiAddress',1712 },1713 set_identity: {1714 info: 'PalletIdentityIdentityInfo',1715 },1716 set_subs: {1717 subs: 'Vec<(AccountId32,Data)>',1718 },1719 clear_identity: 'Null',1720 request_judgement: {1721 regIndex: 'Compact<u32>',1722 maxFee: 'Compact<u128>',1723 },1724 cancel_request: {1725 regIndex: 'u32',1726 },1727 set_fee: {1728 index: 'Compact<u32>',1729 fee: 'Compact<u128>',1730 },1731 set_account_id: {1732 _alias: {1733 new_: 'new',1734 },1735 index: 'Compact<u32>',1736 new_: 'MultiAddress',1737 },1738 set_fields: {1739 index: 'Compact<u32>',1740 fields: 'PalletIdentityBitFlags',1741 },1742 provide_judgement: {1743 regIndex: 'Compact<u32>',1744 target: 'MultiAddress',1745 judgement: 'PalletIdentityJudgement',1746 identity: 'H256',1747 },1748 kill_identity: {1749 target: 'MultiAddress',1750 },1751 add_sub: {1752 sub: 'MultiAddress',1753 data: 'Data',1754 },1755 rename_sub: {1756 sub: 'MultiAddress',1757 data: 'Data',1758 },1759 remove_sub: {1760 sub: 'MultiAddress',1761 },1762 quit_sub: 'Null',1763 force_insert_identities: {1764 identities: 'Vec<(AccountId32,PalletIdentityRegistration)>',1765 },1766 force_remove_identities: {1767 identities: 'Vec<AccountId32>',1768 },1769 force_set_subs: {1770 subs: 'Vec<(AccountId32,(u128,Vec<(AccountId32,Data)>))>'1771 }1772 }1773 },1774 /**1775 * Lookup149: pallet_identity::types::IdentityInfo<FieldLimit>1776 **/1777 PalletIdentityIdentityInfo: {1778 additional: 'Vec<(Data,Data)>',1779 display: 'Data',1780 legal: 'Data',1781 web: 'Data',1782 riot: 'Data',1783 email: 'Data',1784 pgpFingerprint: 'Option<[u8;20]>',1785 image: 'Data',1786 twitter: 'Data'1787 },1788 /**1789 * Lookup185: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>1790 **/1791 PalletIdentityBitFlags: {1792 _bitLength: 64,1793 Display: 1,1794 Legal: 2,1795 Web: 4,1796 Riot: 8,1797 Email: 16,1798 PgpFingerprint: 32,1799 Image: 64,1800 Twitter: 1281801 },1802 /**1803 * Lookup186: pallet_identity::types::IdentityField1804 **/1805 PalletIdentityIdentityField: {1806 _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']1807 },1808 /**1809 * Lookup187: pallet_identity::types::Judgement<Balance>1810 **/1811 PalletIdentityJudgement: {1812 _enum: {1813 Unknown: 'Null',1814 FeePaid: 'u128',1815 Reasonable: 'Null',1816 KnownGood: 'Null',1817 OutOfDate: 'Null',1818 LowQuality: 'Null',1819 Erroneous: 'Null'1820 }1821 },1822 /**1823 * Lookup190: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>1824 **/1825 PalletIdentityRegistration: {1826 judgements: 'Vec<(u32,PalletIdentityJudgement)>',1827 deposit: 'u128',1828 info: 'PalletIdentityIdentityInfo'1829 },1830 /**1831 * Lookup198: pallet_preimage::pallet::Call<T>1832 **/1833 PalletPreimageCall: {1834 _enum: {1835 note_preimage: {1836 bytes: 'Bytes',1837 },1838 unnote_preimage: {1839 _alias: {1840 hash_: 'hash',1841 },1842 hash_: 'H256',1843 },1844 request_preimage: {1845 _alias: {1846 hash_: 'hash',1847 },1848 hash_: 'H256',1849 },1850 unrequest_preimage: {1851 _alias: {1852 hash_: 'hash',1853 },1854 hash_: 'H256'1855 }1856 }1857 },1858 /**1859 * Lookup199: pallet_democracy::pallet::Call<T>1860 **/1861 PalletDemocracyCall: {1862 _enum: {1863 propose: {1864 proposal: 'FrameSupportPreimagesBounded',1865 value: 'Compact<u128>',1866 },1867 second: {1868 proposal: 'Compact<u32>',1869 },1870 vote: {1871 refIndex: 'Compact<u32>',1872 vote: 'PalletDemocracyVoteAccountVote',1873 },1874 emergency_cancel: {1875 refIndex: 'u32',1876 },1877 external_propose: {1878 proposal: 'FrameSupportPreimagesBounded',1879 },1880 external_propose_majority: {1881 proposal: 'FrameSupportPreimagesBounded',1882 },1883 external_propose_default: {1884 proposal: 'FrameSupportPreimagesBounded',1885 },1886 fast_track: {1887 proposalHash: 'H256',1888 votingPeriod: 'u32',1889 delay: 'u32',1890 },1891 veto_external: {1892 proposalHash: 'H256',1893 },1894 cancel_referendum: {1895 refIndex: 'Compact<u32>',1896 },1897 delegate: {1898 to: 'MultiAddress',1899 conviction: 'PalletDemocracyConviction',1900 balance: 'u128',1901 },1902 undelegate: 'Null',1903 clear_public_proposals: 'Null',1904 unlock: {1905 target: 'MultiAddress',1906 },1907 remove_vote: {1908 index: 'u32',1909 },1910 remove_other_vote: {1911 target: 'MultiAddress',1912 index: 'u32',1913 },1914 blacklist: {1915 proposalHash: 'H256',1916 maybeRefIndex: 'Option<u32>',1917 },1918 cancel_proposal: {1919 propIndex: 'Compact<u32>',1920 },1921 set_metadata: {1922 owner: 'PalletDemocracyMetadataOwner',1923 maybeHash: 'Option<H256>'1924 }1925 }1926 },1927 /**1928 * Lookup200: pallet_democracy::conviction::Conviction1929 **/1930 PalletDemocracyConviction: {1931 _enum: ['None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x']1932 },1933 /**1934 * Lookup203: pallet_collective::pallet::Call<T, I>1935 **/1936 PalletCollectiveCall: {1937 _enum: {1938 set_members: {1939 newMembers: 'Vec<AccountId32>',1940 prime: 'Option<AccountId32>',1941 oldCount: 'u32',1942 },1943 execute: {1944 proposal: 'Call',1945 lengthBound: 'Compact<u32>',1946 },1947 propose: {1948 threshold: 'Compact<u32>',1949 proposal: 'Call',1950 lengthBound: 'Compact<u32>',1951 },1952 vote: {1953 proposal: 'H256',1954 index: 'Compact<u32>',1955 approve: 'bool',1956 },1957 __Unused4: 'Null',1958 disapprove_proposal: {1959 proposalHash: 'H256',1960 },1961 close: {1962 proposalHash: 'H256',1963 index: 'Compact<u32>',1964 proposalWeightBound: 'SpWeightsWeightV2Weight',1965 lengthBound: 'Compact<u32>'1966 }1967 }1968 },1969 /**1970 * Lookup205: pallet_membership::pallet::Call<T, I>1971 **/1972 PalletMembershipCall: {1973 _enum: {1974 add_member: {1975 who: 'MultiAddress',1976 },1977 remove_member: {1978 who: 'MultiAddress',1979 },1980 swap_member: {1981 remove: 'MultiAddress',1982 add: 'MultiAddress',1983 },1984 reset_members: {1985 members: 'Vec<AccountId32>',1986 },1987 change_key: {1988 _alias: {1989 new_: 'new',1990 },1991 new_: 'MultiAddress',1992 },1993 set_prime: {1994 who: 'MultiAddress',1995 },1996 clear_prime: 'Null'1997 }1998 },1999 /**2000 * Lookup207: pallet_ranked_collective::pallet::Call<T, I>2001 **/2002 PalletRankedCollectiveCall: {2003 _enum: {2004 add_member: {2005 who: 'MultiAddress',2006 },2007 promote_member: {2008 who: 'MultiAddress',2009 },2010 demote_member: {2011 who: 'MultiAddress',2012 },2013 remove_member: {2014 who: 'MultiAddress',2015 minRank: 'u16',2016 },2017 vote: {2018 poll: 'u32',2019 aye: 'bool',2020 },2021 cleanup_poll: {2022 pollIndex: 'u32',2023 max: 'u32'2024 }2025 }2026 },2027 /**2028 * Lookup208: pallet_referenda::pallet::Call<T, I>2029 **/2030 PalletReferendaCall: {2031 _enum: {2032 submit: {2033 proposalOrigin: 'OpalRuntimeOriginCaller',2034 proposal: 'FrameSupportPreimagesBounded',2035 enactmentMoment: 'FrameSupportScheduleDispatchTime',2036 },2037 place_decision_deposit: {2038 index: 'u32',2039 },2040 refund_decision_deposit: {2041 index: 'u32',2042 },2043 cancel: {2044 index: 'u32',2045 },2046 kill: {2047 index: 'u32',2048 },2049 nudge_referendum: {2050 index: 'u32',2051 },2052 one_fewer_deciding: {2053 track: 'u16',2054 },2055 refund_submission_deposit: {2056 index: 'u32',2057 },2058 set_metadata: {2059 index: 'u32',2060 maybeHash: 'Option<H256>'2061 }2062 }2063 },2064 /**2065 * Lookup209: opal_runtime::OriginCaller2066 **/2067 OpalRuntimeOriginCaller: {2068 _enum: {2069 system: 'FrameSupportDispatchRawOrigin',2070 __Unused1: 'Null',2071 __Unused2: 'Null',2072 __Unused3: 'Null',2073 __Unused4: 'Null',2074 __Unused5: 'Null',2075 __Unused6: 'Null',2076 Void: 'SpCoreVoid',2077 __Unused8: 'Null',2078 __Unused9: 'Null',2079 __Unused10: 'Null',2080 __Unused11: 'Null',2081 __Unused12: 'Null',2082 __Unused13: 'Null',2083 __Unused14: 'Null',2084 __Unused15: 'Null',2085 __Unused16: 'Null',2086 __Unused17: 'Null',2087 __Unused18: 'Null',2088 __Unused19: 'Null',2089 __Unused20: 'Null',2090 __Unused21: 'Null',2091 __Unused22: 'Null',2092 __Unused23: 'Null',2093 __Unused24: 'Null',2094 __Unused25: 'Null',2095 __Unused26: 'Null',2096 __Unused27: 'Null',2097 __Unused28: 'Null',2098 __Unused29: 'Null',2099 __Unused30: 'Null',2100 __Unused31: 'Null',2101 __Unused32: 'Null',2102 __Unused33: 'Null',2103 __Unused34: 'Null',2104 __Unused35: 'Null',2105 __Unused36: 'Null',2106 __Unused37: 'Null',2107 __Unused38: 'Null',2108 __Unused39: 'Null',2109 __Unused40: 'Null',2110 __Unused41: 'Null',2111 __Unused42: 'Null',2112 Council: 'PalletCollectiveRawOrigin',2113 TechnicalCommittee: 'PalletCollectiveRawOrigin',2114 __Unused45: 'Null',2115 __Unused46: 'Null',2116 __Unused47: 'Null',2117 __Unused48: 'Null',2118 __Unused49: 'Null',2119 __Unused50: 'Null',2120 PolkadotXcm: 'PalletXcmOrigin',2121 CumulusXcm: 'CumulusPalletXcmOrigin',2122 __Unused53: 'Null',2123 __Unused54: 'Null',2124 __Unused55: 'Null',2125 __Unused56: 'Null',2126 __Unused57: 'Null',2127 __Unused58: 'Null',2128 __Unused59: 'Null',2129 __Unused60: 'Null',2130 __Unused61: 'Null',2131 __Unused62: 'Null',2132 __Unused63: 'Null',2133 __Unused64: 'Null',2134 __Unused65: 'Null',2135 __Unused66: 'Null',2136 __Unused67: 'Null',2137 __Unused68: 'Null',2138 __Unused69: 'Null',2139 __Unused70: 'Null',2140 __Unused71: 'Null',2141 __Unused72: 'Null',2142 __Unused73: 'Null',2143 __Unused74: 'Null',2144 __Unused75: 'Null',2145 __Unused76: 'Null',2146 __Unused77: 'Null',2147 __Unused78: 'Null',2148 __Unused79: 'Null',2149 __Unused80: 'Null',2150 __Unused81: 'Null',2151 __Unused82: 'Null',2152 __Unused83: 'Null',2153 __Unused84: 'Null',2154 __Unused85: 'Null',2155 __Unused86: 'Null',2156 __Unused87: 'Null',2157 __Unused88: 'Null',2158 __Unused89: 'Null',2159 __Unused90: 'Null',2160 __Unused91: 'Null',2161 __Unused92: 'Null',2162 __Unused93: 'Null',2163 __Unused94: 'Null',2164 __Unused95: 'Null',2165 __Unused96: 'Null',2166 __Unused97: 'Null',2167 __Unused98: 'Null',2168 Origins: 'PalletGovOriginsOrigin',2169 __Unused100: 'Null',2170 Ethereum: 'PalletEthereumRawOrigin'2171 }2172 },2173 /**2174 * Lookup210: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>2175 **/2176 FrameSupportDispatchRawOrigin: {2177 _enum: {2178 Root: 'Null',2179 Signed: 'AccountId32',2180 None: 'Null'2181 }2182 },2183 /**2184 * Lookup211: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>2185 **/2186 PalletCollectiveRawOrigin: {2187 _enum: {2188 Members: '(u32,u32)',2189 Member: 'AccountId32',2190 _Phantom: 'Null'2191 }2192 },2193 /**2194 * Lookup213: pallet_gov_origins::pallet::Origin2195 **/2196 PalletGovOriginsOrigin: {2197 _enum: ['FellowshipProposition']2198 },2199 /**2200 * Lookup214: pallet_xcm::pallet::Origin2201 **/2202 PalletXcmOrigin: {2203 _enum: {2204 Xcm: 'XcmV3MultiLocation',2205 Response: 'XcmV3MultiLocation'2206 }2207 },2208 /**2209 * Lookup215: cumulus_pallet_xcm::pallet::Origin2210 **/2211 CumulusPalletXcmOrigin: {2212 _enum: {2213 Relay: 'Null',2214 SiblingParachain: 'u32'2215 }2216 },2217 /**2218 * Lookup216: pallet_ethereum::RawOrigin2219 **/2220 PalletEthereumRawOrigin: {2221 _enum: {2222 EthereumTransaction: 'H160'2223 }2224 },2225 /**2226 * Lookup218: sp_core::Void2227 **/2228 SpCoreVoid: 'Null',2229 /**2230 * Lookup219: frame_support::traits::schedule::DispatchTime<BlockNumber>2231 **/2232 FrameSupportScheduleDispatchTime: {2233 _enum: {2234 At: 'u32',2235 After: 'u32'2236 }2237 },2238 /**2239 * Lookup220: pallet_scheduler::pallet::Call<T>2240 **/2241 PalletSchedulerCall: {2242 _enum: {2243 schedule: {2244 when: 'u32',2245 maybePeriodic: 'Option<(u32,u32)>',2246 priority: 'u8',2247 call: 'Call',2248 },2249 cancel: {2250 when: 'u32',2251 index: 'u32',2252 },2253 schedule_named: {2254 id: '[u8;32]',2255 when: 'u32',2256 maybePeriodic: 'Option<(u32,u32)>',2257 priority: 'u8',2258 call: 'Call',2259 },2260 cancel_named: {2261 id: '[u8;32]',2262 },2263 schedule_after: {2264 after: 'u32',2265 maybePeriodic: 'Option<(u32,u32)>',2266 priority: 'u8',2267 call: 'Call',2268 },2269 schedule_named_after: {2270 id: '[u8;32]',2271 after: 'u32',2272 maybePeriodic: 'Option<(u32,u32)>',2273 priority: 'u8',2274 call: 'Call'2275 }2276 }2277 },2278 /**2279 * Lookup223: cumulus_pallet_xcmp_queue::pallet::Call<T>2280 **/2281 CumulusPalletXcmpQueueCall: {2282 _enum: {2283 service_overweight: {2284 index: 'u64',2285 weightLimit: 'SpWeightsWeightV2Weight',2286 },2287 suspend_xcm_execution: 'Null',2288 resume_xcm_execution: 'Null',2289 update_suspend_threshold: {2290 _alias: {2291 new_: 'new',2292 },2293 new_: 'u32',2294 },2295 update_drop_threshold: {2296 _alias: {2297 new_: 'new',2298 },2299 new_: 'u32',2300 },2301 update_resume_threshold: {2302 _alias: {2303 new_: 'new',2304 },2305 new_: 'u32',2306 },2307 update_threshold_weight: {2308 _alias: {2309 new_: 'new',2310 },2311 new_: 'SpWeightsWeightV2Weight',2312 },2313 update_weight_restrict_decay: {2314 _alias: {2315 new_: 'new',2316 },2317 new_: 'SpWeightsWeightV2Weight',2318 },2319 update_xcmp_max_individual_weight: {2320 _alias: {2321 new_: 'new',2322 },2323 new_: 'SpWeightsWeightV2Weight'2324 }2325 }2326 },2327 /**2328 * Lookup224: pallet_xcm::pallet::Call<T>2329 **/2330 PalletXcmCall: {2331 _enum: {2332 send: {2333 dest: 'XcmVersionedMultiLocation',2334 message: 'XcmVersionedXcm',2335 },2336 teleport_assets: {2337 dest: 'XcmVersionedMultiLocation',2338 beneficiary: 'XcmVersionedMultiLocation',2339 assets: 'XcmVersionedMultiAssets',2340 feeAssetItem: 'u32',2341 },2342 reserve_transfer_assets: {2343 dest: 'XcmVersionedMultiLocation',2344 beneficiary: 'XcmVersionedMultiLocation',2345 assets: 'XcmVersionedMultiAssets',2346 feeAssetItem: 'u32',2347 },2348 execute: {2349 message: 'XcmVersionedXcm',2350 maxWeight: 'SpWeightsWeightV2Weight',2351 },2352 force_xcm_version: {2353 location: 'XcmV3MultiLocation',2354 xcmVersion: 'u32',2355 },2356 force_default_xcm_version: {2357 maybeXcmVersion: 'Option<u32>',2358 },2359 force_subscribe_version_notify: {2360 location: 'XcmVersionedMultiLocation',2361 },2362 force_unsubscribe_version_notify: {2363 location: 'XcmVersionedMultiLocation',2364 },2365 limited_reserve_transfer_assets: {2366 dest: 'XcmVersionedMultiLocation',2367 beneficiary: 'XcmVersionedMultiLocation',2368 assets: 'XcmVersionedMultiAssets',2369 feeAssetItem: 'u32',2370 weightLimit: 'XcmV3WeightLimit',2371 },2372 limited_teleport_assets: {2373 dest: 'XcmVersionedMultiLocation',2374 beneficiary: 'XcmVersionedMultiLocation',2375 assets: 'XcmVersionedMultiAssets',2376 feeAssetItem: 'u32',2377 weightLimit: 'XcmV3WeightLimit',2378 },2379 force_suspension: {2380 suspended: 'bool'2381 }2382 }2383 },2384 /**2385 * Lookup225: xcm::VersionedXcm<RuntimeCall>2386 **/2387 XcmVersionedXcm: {2388 _enum: {2389 __Unused0: 'Null',2390 __Unused1: 'Null',2391 V2: 'XcmV2Xcm',2392 V3: 'XcmV3Xcm'2393 }2394 },2395 /**2396 * Lookup226: xcm::v2::Xcm<RuntimeCall>2397 **/2398 XcmV2Xcm: 'Vec<XcmV2Instruction>',2399 /**2400 * Lookup228: xcm::v2::Instruction<RuntimeCall>2401 **/2402 XcmV2Instruction: {2403 _enum: {2404 WithdrawAsset: 'XcmV2MultiassetMultiAssets',2405 ReserveAssetDeposited: 'XcmV2MultiassetMultiAssets',2406 ReceiveTeleportedAsset: 'XcmV2MultiassetMultiAssets',2407 QueryResponse: {2408 queryId: 'Compact<u64>',2409 response: 'XcmV2Response',2410 maxWeight: 'Compact<u64>',2411 },2412 TransferAsset: {2413 assets: 'XcmV2MultiassetMultiAssets',2414 beneficiary: 'XcmV2MultiLocation',2415 },2416 TransferReserveAsset: {2417 assets: 'XcmV2MultiassetMultiAssets',2418 dest: 'XcmV2MultiLocation',2419 xcm: 'XcmV2Xcm',2420 },2421 Transact: {2422 originType: 'XcmV2OriginKind',2423 requireWeightAtMost: 'Compact<u64>',2424 call: 'XcmDoubleEncoded',2425 },2426 HrmpNewChannelOpenRequest: {2427 sender: 'Compact<u32>',2428 maxMessageSize: 'Compact<u32>',2429 maxCapacity: 'Compact<u32>',2430 },2431 HrmpChannelAccepted: {2432 recipient: 'Compact<u32>',2433 },2434 HrmpChannelClosing: {2435 initiator: 'Compact<u32>',2436 sender: 'Compact<u32>',2437 recipient: 'Compact<u32>',2438 },2439 ClearOrigin: 'Null',2440 DescendOrigin: 'XcmV2MultilocationJunctions',2441 ReportError: {2442 queryId: 'Compact<u64>',2443 dest: 'XcmV2MultiLocation',2444 maxResponseWeight: 'Compact<u64>',2445 },2446 DepositAsset: {2447 assets: 'XcmV2MultiassetMultiAssetFilter',2448 maxAssets: 'Compact<u32>',2449 beneficiary: 'XcmV2MultiLocation',2450 },2451 DepositReserveAsset: {2452 assets: 'XcmV2MultiassetMultiAssetFilter',2453 maxAssets: 'Compact<u32>',2454 dest: 'XcmV2MultiLocation',2455 xcm: 'XcmV2Xcm',2456 },2457 ExchangeAsset: {2458 give: 'XcmV2MultiassetMultiAssetFilter',2459 receive: 'XcmV2MultiassetMultiAssets',2460 },2461 InitiateReserveWithdraw: {2462 assets: 'XcmV2MultiassetMultiAssetFilter',2463 reserve: 'XcmV2MultiLocation',2464 xcm: 'XcmV2Xcm',2465 },2466 InitiateTeleport: {2467 assets: 'XcmV2MultiassetMultiAssetFilter',2468 dest: 'XcmV2MultiLocation',2469 xcm: 'XcmV2Xcm',2470 },2471 QueryHolding: {2472 queryId: 'Compact<u64>',2473 dest: 'XcmV2MultiLocation',2474 assets: 'XcmV2MultiassetMultiAssetFilter',2475 maxResponseWeight: 'Compact<u64>',2476 },2477 BuyExecution: {2478 fees: 'XcmV2MultiAsset',2479 weightLimit: 'XcmV2WeightLimit',2480 },2481 RefundSurplus: 'Null',2482 SetErrorHandler: 'XcmV2Xcm',2483 SetAppendix: 'XcmV2Xcm',2484 ClearError: 'Null',2485 ClaimAsset: {2486 assets: 'XcmV2MultiassetMultiAssets',2487 ticket: 'XcmV2MultiLocation',2488 },2489 Trap: 'Compact<u64>',2490 SubscribeVersion: {2491 queryId: 'Compact<u64>',2492 maxResponseWeight: 'Compact<u64>',2493 },2494 UnsubscribeVersion: 'Null'2495 }2496 },2497 /**2498 * Lookup229: xcm::v2::Response2499 **/2500 XcmV2Response: {2501 _enum: {2502 Null: 'Null',2503 Assets: 'XcmV2MultiassetMultiAssets',2504 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',2505 Version: 'u32'2506 }2507 },2508 /**2509 * Lookup232: xcm::v2::traits::Error2510 **/2511 XcmV2TraitsError: {2512 _enum: {2513 Overflow: 'Null',2514 Unimplemented: 'Null',2515 UntrustedReserveLocation: 'Null',2516 UntrustedTeleportLocation: 'Null',2517 MultiLocationFull: 'Null',2518 MultiLocationNotInvertible: 'Null',2519 BadOrigin: 'Null',2520 InvalidLocation: 'Null',2521 AssetNotFound: 'Null',2522 FailedToTransactAsset: 'Null',2523 NotWithdrawable: 'Null',2524 LocationCannotHold: 'Null',2525 ExceedsMaxMessageSize: 'Null',2526 DestinationUnsupported: 'Null',2527 Transport: 'Null',2528 Unroutable: 'Null',2529 UnknownClaim: 'Null',2530 FailedToDecode: 'Null',2531 MaxWeightInvalid: 'Null',2532 NotHoldingFees: 'Null',2533 TooExpensive: 'Null',2534 Trap: 'u64',2535 UnhandledXcmVersion: 'Null',2536 WeightLimitReached: 'u64',2537 Barrier: 'Null',2538 WeightNotComputable: 'Null'2539 }2540 },2541 /**2542 * Lookup233: xcm::v2::OriginKind2543 **/2544 XcmV2OriginKind: {2545 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']2546 },2547 /**2548 * Lookup234: xcm::double_encoded::DoubleEncoded<T>2549 **/2550 XcmDoubleEncoded: {2551 encoded: 'Bytes'2552 },2553 /**2554 * Lookup235: xcm::v2::multiasset::MultiAssetFilter2555 **/2556 XcmV2MultiassetMultiAssetFilter: {2557 _enum: {2558 Definite: 'XcmV2MultiassetMultiAssets',2559 Wild: 'XcmV2MultiassetWildMultiAsset'2560 }2561 },2562 /**2563 * Lookup236: xcm::v2::multiasset::WildMultiAsset2564 **/2565 XcmV2MultiassetWildMultiAsset: {2566 _enum: {2567 All: 'Null',2568 AllOf: {2569 id: 'XcmV2MultiassetAssetId',2570 fun: 'XcmV2MultiassetWildFungibility'2571 }2572 }2573 },2574 /**2575 * Lookup237: xcm::v2::multiasset::WildFungibility2576 **/2577 XcmV2MultiassetWildFungibility: {2578 _enum: ['Fungible', 'NonFungible']2579 },2580 /**2581 * Lookup238: xcm::v2::WeightLimit2582 **/2583 XcmV2WeightLimit: {2584 _enum: {2585 Unlimited: 'Null',2586 Limited: 'Compact<u64>'2587 }2588 },2589 /**2590 * Lookup239: xcm::v3::Xcm<Call>2591 **/2592 XcmV3Xcm: 'Vec<XcmV3Instruction>',2593 /**2594 * Lookup241: xcm::v3::Instruction<Call>2595 **/2596 XcmV3Instruction: {2597 _enum: {2598 WithdrawAsset: 'XcmV3MultiassetMultiAssets',2599 ReserveAssetDeposited: 'XcmV3MultiassetMultiAssets',2600 ReceiveTeleportedAsset: 'XcmV3MultiassetMultiAssets',2601 QueryResponse: {2602 queryId: 'Compact<u64>',2603 response: 'XcmV3Response',2604 maxWeight: 'SpWeightsWeightV2Weight',2605 querier: 'Option<XcmV3MultiLocation>',2606 },2607 TransferAsset: {2608 assets: 'XcmV3MultiassetMultiAssets',2609 beneficiary: 'XcmV3MultiLocation',2610 },2611 TransferReserveAsset: {2612 assets: 'XcmV3MultiassetMultiAssets',2613 dest: 'XcmV3MultiLocation',2614 xcm: 'XcmV3Xcm',2615 },2616 Transact: {2617 originKind: 'XcmV2OriginKind',2618 requireWeightAtMost: 'SpWeightsWeightV2Weight',2619 call: 'XcmDoubleEncoded',2620 },2621 HrmpNewChannelOpenRequest: {2622 sender: 'Compact<u32>',2623 maxMessageSize: 'Compact<u32>',2624 maxCapacity: 'Compact<u32>',2625 },2626 HrmpChannelAccepted: {2627 recipient: 'Compact<u32>',2628 },2629 HrmpChannelClosing: {2630 initiator: 'Compact<u32>',2631 sender: 'Compact<u32>',2632 recipient: 'Compact<u32>',2633 },2634 ClearOrigin: 'Null',2635 DescendOrigin: 'XcmV3Junctions',2636 ReportError: 'XcmV3QueryResponseInfo',2637 DepositAsset: {2638 assets: 'XcmV3MultiassetMultiAssetFilter',2639 beneficiary: 'XcmV3MultiLocation',2640 },2641 DepositReserveAsset: {2642 assets: 'XcmV3MultiassetMultiAssetFilter',2643 dest: 'XcmV3MultiLocation',2644 xcm: 'XcmV3Xcm',2645 },2646 ExchangeAsset: {2647 give: 'XcmV3MultiassetMultiAssetFilter',2648 want: 'XcmV3MultiassetMultiAssets',2649 maximal: 'bool',2650 },2651 InitiateReserveWithdraw: {2652 assets: 'XcmV3MultiassetMultiAssetFilter',2653 reserve: 'XcmV3MultiLocation',2654 xcm: 'XcmV3Xcm',2655 },2656 InitiateTeleport: {2657 assets: 'XcmV3MultiassetMultiAssetFilter',2658 dest: 'XcmV3MultiLocation',2659 xcm: 'XcmV3Xcm',2660 },2661 ReportHolding: {2662 responseInfo: 'XcmV3QueryResponseInfo',2663 assets: 'XcmV3MultiassetMultiAssetFilter',2664 },2665 BuyExecution: {2666 fees: 'XcmV3MultiAsset',2667 weightLimit: 'XcmV3WeightLimit',2668 },2669 RefundSurplus: 'Null',2670 SetErrorHandler: 'XcmV3Xcm',2671 SetAppendix: 'XcmV3Xcm',2672 ClearError: 'Null',2673 ClaimAsset: {2674 assets: 'XcmV3MultiassetMultiAssets',2675 ticket: 'XcmV3MultiLocation',2676 },2677 Trap: 'Compact<u64>',2678 SubscribeVersion: {2679 queryId: 'Compact<u64>',2680 maxResponseWeight: 'SpWeightsWeightV2Weight',2681 },2682 UnsubscribeVersion: 'Null',2683 BurnAsset: 'XcmV3MultiassetMultiAssets',2684 ExpectAsset: 'XcmV3MultiassetMultiAssets',2685 ExpectOrigin: 'Option<XcmV3MultiLocation>',2686 ExpectError: 'Option<(u32,XcmV3TraitsError)>',2687 ExpectTransactStatus: 'XcmV3MaybeErrorCode',2688 QueryPallet: {2689 moduleName: 'Bytes',2690 responseInfo: 'XcmV3QueryResponseInfo',2691 },2692 ExpectPallet: {2693 index: 'Compact<u32>',2694 name: 'Bytes',2695 moduleName: 'Bytes',2696 crateMajor: 'Compact<u32>',2697 minCrateMinor: 'Compact<u32>',2698 },2699 ReportTransactStatus: 'XcmV3QueryResponseInfo',2700 ClearTransactStatus: 'Null',2701 UniversalOrigin: 'XcmV3Junction',2702 ExportMessage: {2703 network: 'XcmV3JunctionNetworkId',2704 destination: 'XcmV3Junctions',2705 xcm: 'XcmV3Xcm',2706 },2707 LockAsset: {2708 asset: 'XcmV3MultiAsset',2709 unlocker: 'XcmV3MultiLocation',2710 },2711 UnlockAsset: {2712 asset: 'XcmV3MultiAsset',2713 target: 'XcmV3MultiLocation',2714 },2715 NoteUnlockable: {2716 asset: 'XcmV3MultiAsset',2717 owner: 'XcmV3MultiLocation',2718 },2719 RequestUnlock: {2720 asset: 'XcmV3MultiAsset',2721 locker: 'XcmV3MultiLocation',2722 },2723 SetFeesMode: {2724 jitWithdraw: 'bool',2725 },2726 SetTopic: '[u8;32]',2727 ClearTopic: 'Null',2728 AliasOrigin: 'XcmV3MultiLocation',2729 UnpaidExecution: {2730 weightLimit: 'XcmV3WeightLimit',2731 checkOrigin: 'Option<XcmV3MultiLocation>'2732 }2733 }2734 },2735 /**2736 * Lookup242: xcm::v3::Response2737 **/2738 XcmV3Response: {2739 _enum: {2740 Null: 'Null',2741 Assets: 'XcmV3MultiassetMultiAssets',2742 ExecutionResult: 'Option<(u32,XcmV3TraitsError)>',2743 Version: 'u32',2744 PalletsInfo: 'Vec<XcmV3PalletInfo>',2745 DispatchResult: 'XcmV3MaybeErrorCode'2746 }2747 },2748 /**2749 * Lookup245: xcm::v3::traits::Error2750 **/2751 XcmV3TraitsError: {2752 _enum: {2753 Overflow: 'Null',2754 Unimplemented: 'Null',2755 UntrustedReserveLocation: 'Null',2756 UntrustedTeleportLocation: 'Null',2757 LocationFull: 'Null',2758 LocationNotInvertible: 'Null',2759 BadOrigin: 'Null',2760 InvalidLocation: 'Null',2761 AssetNotFound: 'Null',2762 FailedToTransactAsset: 'Null',2763 NotWithdrawable: 'Null',2764 LocationCannotHold: 'Null',2765 ExceedsMaxMessageSize: 'Null',2766 DestinationUnsupported: 'Null',2767 Transport: 'Null',2768 Unroutable: 'Null',2769 UnknownClaim: 'Null',2770 FailedToDecode: 'Null',2771 MaxWeightInvalid: 'Null',2772 NotHoldingFees: 'Null',2773 TooExpensive: 'Null',2774 Trap: 'u64',2775 ExpectationFalse: 'Null',2776 PalletNotFound: 'Null',2777 NameMismatch: 'Null',2778 VersionIncompatible: 'Null',2779 HoldingWouldOverflow: 'Null',2780 ExportError: 'Null',2781 ReanchorFailed: 'Null',2782 NoDeal: 'Null',2783 FeesNotMet: 'Null',2784 LockError: 'Null',2785 NoPermission: 'Null',2786 Unanchored: 'Null',2787 NotDepositable: 'Null',2788 UnhandledXcmVersion: 'Null',2789 WeightLimitReached: 'SpWeightsWeightV2Weight',2790 Barrier: 'Null',2791 WeightNotComputable: 'Null',2792 ExceedsStackLimit: 'Null'2793 }2794 },2795 /**2796 * Lookup247: xcm::v3::PalletInfo2797 **/2798 XcmV3PalletInfo: {2799 index: 'Compact<u32>',2800 name: 'Bytes',2801 moduleName: 'Bytes',2802 major: 'Compact<u32>',2803 minor: 'Compact<u32>',2804 patch: 'Compact<u32>'2805 },2806 /**2807 * Lookup250: xcm::v3::MaybeErrorCode2808 **/2809 XcmV3MaybeErrorCode: {2810 _enum: {2811 Success: 'Null',2812 Error: 'Bytes',2813 TruncatedError: 'Bytes'2814 }2815 },2816 /**2817 * Lookup253: xcm::v3::QueryResponseInfo2818 **/2819 XcmV3QueryResponseInfo: {2820 destination: 'XcmV3MultiLocation',2821 queryId: 'Compact<u64>',2822 maxWeight: 'SpWeightsWeightV2Weight'2823 },2824 /**2825 * Lookup254: xcm::v3::multiasset::MultiAssetFilter2826 **/2827 XcmV3MultiassetMultiAssetFilter: {2828 _enum: {2829 Definite: 'XcmV3MultiassetMultiAssets',2830 Wild: 'XcmV3MultiassetWildMultiAsset'2831 }2832 },2833 /**2834 * Lookup255: xcm::v3::multiasset::WildMultiAsset2835 **/2836 XcmV3MultiassetWildMultiAsset: {2837 _enum: {2838 All: 'Null',2839 AllOf: {2840 id: 'XcmV3MultiassetAssetId',2841 fun: 'XcmV3MultiassetWildFungibility',2842 },2843 AllCounted: 'Compact<u32>',2844 AllOfCounted: {2845 id: 'XcmV3MultiassetAssetId',2846 fun: 'XcmV3MultiassetWildFungibility',2847 count: 'Compact<u32>'2848 }2849 }2850 },2851 /**2852 * Lookup256: xcm::v3::multiasset::WildFungibility2853 **/2854 XcmV3MultiassetWildFungibility: {2855 _enum: ['Fungible', 'NonFungible']2856 },2857 /**2858 * Lookup265: cumulus_pallet_xcm::pallet::Call<T>2859 **/2860 CumulusPalletXcmCall: 'Null',2861 /**2862 * Lookup266: cumulus_pallet_dmp_queue::pallet::Call<T>2863 **/2864 CumulusPalletDmpQueueCall: {2865 _enum: {2866 service_overweight: {2867 index: 'u64',2868 weightLimit: 'SpWeightsWeightV2Weight'2869 }2870 }2871 },2872 /**2873 * Lookup267: pallet_inflation::pallet::Call<T>2874 **/2875 PalletInflationCall: {2876 _enum: {2877 start_inflation: {2878 inflationStartRelayBlock: 'u32'2879 }2880 }2881 },2882 /**2883 * Lookup268: pallet_unique::pallet::Call<T>2884 **/2885 PalletUniqueCall: {2886 _enum: {2887 create_collection: {2888 collectionName: 'Vec<u16>',2889 collectionDescription: 'Vec<u16>',2890 tokenPrefix: 'Bytes',2891 mode: 'UpDataStructsCollectionMode',2892 },2893 create_collection_ex: {2894 data: 'UpDataStructsCreateCollectionData',2895 },2896 destroy_collection: {2897 collectionId: 'u32',2898 },2899 add_to_allow_list: {2900 collectionId: 'u32',2901 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2902 },2903 remove_from_allow_list: {2904 collectionId: 'u32',2905 address: 'PalletEvmAccountBasicCrossAccountIdRepr',2906 },2907 change_collection_owner: {2908 collectionId: 'u32',2909 newOwner: 'AccountId32',2910 },2911 add_collection_admin: {2912 collectionId: 'u32',2913 newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2914 },2915 remove_collection_admin: {2916 collectionId: 'u32',2917 accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2918 },2919 set_collection_sponsor: {2920 collectionId: 'u32',2921 newSponsor: 'AccountId32',2922 },2923 confirm_sponsorship: {2924 collectionId: 'u32',2925 },2926 remove_collection_sponsor: {2927 collectionId: 'u32',2928 },2929 create_item: {2930 collectionId: 'u32',2931 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2932 data: 'UpDataStructsCreateItemData',2933 },2934 create_multiple_items: {2935 collectionId: 'u32',2936 owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2937 itemsData: 'Vec<UpDataStructsCreateItemData>',2938 },2939 set_collection_properties: {2940 collectionId: 'u32',2941 properties: 'Vec<UpDataStructsProperty>',2942 },2943 delete_collection_properties: {2944 collectionId: 'u32',2945 propertyKeys: 'Vec<Bytes>',2946 },2947 set_token_properties: {2948 collectionId: 'u32',2949 tokenId: 'u32',2950 properties: 'Vec<UpDataStructsProperty>',2951 },2952 delete_token_properties: {2953 collectionId: 'u32',2954 tokenId: 'u32',2955 propertyKeys: 'Vec<Bytes>',2956 },2957 set_token_property_permissions: {2958 collectionId: 'u32',2959 propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2960 },2961 create_multiple_items_ex: {2962 collectionId: 'u32',2963 data: 'UpDataStructsCreateItemExData',2964 },2965 set_transfers_enabled_flag: {2966 collectionId: 'u32',2967 value: 'bool',2968 },2969 burn_item: {2970 collectionId: 'u32',2971 itemId: 'u32',2972 value: 'u128',2973 },2974 burn_from: {2975 collectionId: 'u32',2976 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2977 itemId: 'u32',2978 value: 'u128',2979 },2980 transfer: {2981 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2982 collectionId: 'u32',2983 itemId: 'u32',2984 value: 'u128',2985 },2986 approve: {2987 spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2988 collectionId: 'u32',2989 itemId: 'u32',2990 amount: 'u128',2991 },2992 approve_from: {2993 from: 'PalletEvmAccountBasicCrossAccountIdRepr',2994 to: 'PalletEvmAccountBasicCrossAccountIdRepr',2995 collectionId: 'u32',2996 itemId: 'u32',2997 amount: 'u128',2998 },2999 transfer_from: {3000 from: 'PalletEvmAccountBasicCrossAccountIdRepr',3001 recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',3002 collectionId: 'u32',3003 itemId: 'u32',3004 value: 'u128',3005 },3006 set_collection_limits: {3007 collectionId: 'u32',3008 newLimit: 'UpDataStructsCollectionLimits',3009 },3010 set_collection_permissions: {3011 collectionId: 'u32',3012 newPermission: 'UpDataStructsCollectionPermissions',3013 },3014 repartition: {3015 collectionId: 'u32',3016 tokenId: 'u32',3017 amount: 'u128',3018 },3019 set_allowance_for_all: {3020 collectionId: 'u32',3021 operator: 'PalletEvmAccountBasicCrossAccountIdRepr',3022 approve: 'bool',3023 },3024 force_repair_collection: {3025 collectionId: 'u32',3026 },3027 force_repair_item: {3028 collectionId: 'u32',3029 itemId: 'u32'3030 }3031 }3032 },3033 /**3034 * Lookup273: up_data_structs::CollectionMode3035 **/3036 UpDataStructsCollectionMode: {3037 _enum: {3038 NFT: 'Null',3039 Fungible: 'u8',3040 ReFungible: 'Null'3041 }3042 },3043 /**3044 * Lookup274: up_data_structs::CreateCollectionData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3045 **/3046 UpDataStructsCreateCollectionData: {3047 mode: 'UpDataStructsCollectionMode',3048 access: 'Option<UpDataStructsAccessMode>',3049 name: 'Vec<u16>',3050 description: 'Vec<u16>',3051 tokenPrefix: 'Bytes',3052 limits: 'Option<UpDataStructsCollectionLimits>',3053 permissions: 'Option<UpDataStructsCollectionPermissions>',3054 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3055 properties: 'Vec<UpDataStructsProperty>',3056 adminList: 'Vec<PalletEvmAccountBasicCrossAccountIdRepr>',3057 pendingSponsor: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3058 flags: '[u8;1]'3059 },3060 /**3061 * Lookup275: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>3062 **/3063 PalletEvmAccountBasicCrossAccountIdRepr: {3064 _enum: {3065 Substrate: 'AccountId32',3066 Ethereum: 'H160'3067 }3068 },3069 /**3070 * Lookup277: up_data_structs::AccessMode3071 **/3072 UpDataStructsAccessMode: {3073 _enum: ['Normal', 'AllowList']3074 },3075 /**3076 * Lookup279: up_data_structs::CollectionLimits3077 **/3078 UpDataStructsCollectionLimits: {3079 accountTokenOwnershipLimit: 'Option<u32>',3080 sponsoredDataSize: 'Option<u32>',3081 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',3082 tokenLimit: 'Option<u32>',3083 sponsorTransferTimeout: 'Option<u32>',3084 sponsorApproveTimeout: 'Option<u32>',3085 ownerCanTransfer: 'Option<bool>',3086 ownerCanDestroy: 'Option<bool>',3087 transfersEnabled: 'Option<bool>'3088 },3089 /**3090 * Lookup281: up_data_structs::SponsoringRateLimit3091 **/3092 UpDataStructsSponsoringRateLimit: {3093 _enum: {3094 SponsoringDisabled: 'Null',3095 Blocks: 'u32'3096 }3097 },3098 /**3099 * Lookup284: up_data_structs::CollectionPermissions3100 **/3101 UpDataStructsCollectionPermissions: {3102 access: 'Option<UpDataStructsAccessMode>',3103 mintMode: 'Option<bool>',3104 nesting: 'Option<UpDataStructsNestingPermissions>'3105 },3106 /**3107 * Lookup286: up_data_structs::NestingPermissions3108 **/3109 UpDataStructsNestingPermissions: {3110 tokenOwner: 'bool',3111 collectionAdmin: 'bool',3112 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'3113 },3114 /**3115 * Lookup288: up_data_structs::OwnerRestrictedSet3116 **/3117 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',3118 /**3119 * Lookup294: up_data_structs::PropertyKeyPermission3120 **/3121 UpDataStructsPropertyKeyPermission: {3122 key: 'Bytes',3123 permission: 'UpDataStructsPropertyPermission'3124 },3125 /**3126 * Lookup296: up_data_structs::PropertyPermission3127 **/3128 UpDataStructsPropertyPermission: {3129 mutable: 'bool',3130 collectionAdmin: 'bool',3131 tokenOwner: 'bool'3132 },3133 /**3134 * Lookup299: up_data_structs::Property3135 **/3136 UpDataStructsProperty: {3137 key: 'Bytes',3138 value: 'Bytes'3139 },3140 /**3141 * Lookup304: up_data_structs::CreateItemData3142 **/3143 UpDataStructsCreateItemData: {3144 _enum: {3145 NFT: 'UpDataStructsCreateNftData',3146 Fungible: 'UpDataStructsCreateFungibleData',3147 ReFungible: 'UpDataStructsCreateReFungibleData'3148 }3149 },3150 /**3151 * Lookup305: up_data_structs::CreateNftData3152 **/3153 UpDataStructsCreateNftData: {3154 properties: 'Vec<UpDataStructsProperty>'3155 },3156 /**3157 * Lookup306: up_data_structs::CreateFungibleData3158 **/3159 UpDataStructsCreateFungibleData: {3160 value: 'u128'3161 },3162 /**3163 * Lookup307: up_data_structs::CreateReFungibleData3164 **/3165 UpDataStructsCreateReFungibleData: {3166 pieces: 'u128',3167 properties: 'Vec<UpDataStructsProperty>'3168 },3169 /**3170 * Lookup311: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3171 **/3172 UpDataStructsCreateItemExData: {3173 _enum: {3174 NFT: 'Vec<UpDataStructsCreateNftExData>',3175 Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',3176 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',3177 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'3178 }3179 },3180 /**3181 * Lookup313: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3182 **/3183 UpDataStructsCreateNftExData: {3184 properties: 'Vec<UpDataStructsProperty>',3185 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3186 },3187 /**3188 * Lookup320: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3189 **/3190 UpDataStructsCreateRefungibleExSingleOwner: {3191 user: 'PalletEvmAccountBasicCrossAccountIdRepr',3192 pieces: 'u128',3193 properties: 'Vec<UpDataStructsProperty>'3194 },3195 /**3196 * Lookup322: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3197 **/3198 UpDataStructsCreateRefungibleExMultipleOwners: {3199 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',3200 properties: 'Vec<UpDataStructsProperty>'3201 },3202 /**3203 * Lookup323: pallet_configuration::pallet::Call<T>3204 **/3205 PalletConfigurationCall: {3206 _enum: {3207 set_weight_to_fee_coefficient_override: {3208 coeff: 'Option<u64>',3209 },3210 set_min_gas_price_override: {3211 coeff: 'Option<u64>',3212 },3213 __Unused2: 'Null',3214 set_app_promotion_configuration_override: {3215 configuration: 'PalletConfigurationAppPromotionConfiguration',3216 },3217 set_collator_selection_desired_collators: {3218 max: 'Option<u32>',3219 },3220 set_collator_selection_license_bond: {3221 amount: 'Option<u128>',3222 },3223 set_collator_selection_kick_threshold: {3224 threshold: 'Option<u32>'3225 }3226 }3227 },3228 /**3229 * Lookup325: pallet_configuration::AppPromotionConfiguration<BlockNumber>3230 **/3231 PalletConfigurationAppPromotionConfiguration: {3232 recalculationInterval: 'Option<u32>',3233 pendingInterval: 'Option<u32>',3234 intervalIncome: 'Option<Perbill>',3235 maxStakersPerCalculation: 'Option<u8>'3236 },3237 /**3238 * Lookup330: pallet_structure::pallet::Call<T>3239 **/3240 PalletStructureCall: 'Null',3241 /**3242 * Lookup331: pallet_app_promotion::pallet::Call<T>3243 **/3244 PalletAppPromotionCall: {3245 _enum: {3246 set_admin_address: {3247 admin: 'PalletEvmAccountBasicCrossAccountIdRepr',3248 },3249 stake: {3250 amount: 'u128',3251 },3252 unstake_all: 'Null',3253 sponsor_collection: {3254 collectionId: 'u32',3255 },3256 stop_sponsoring_collection: {3257 collectionId: 'u32',3258 },3259 sponsor_contract: {3260 contractId: 'H160',3261 },3262 stop_sponsoring_contract: {3263 contractId: 'H160',3264 },3265 payout_stakers: {3266 stakersNumber: 'Option<u8>',3267 },3268 unstake_partial: {3269 amount: 'u128',3270 },3271 force_unstake: {3272 pendingBlocks: 'Vec<u32>'3273 }3274 }3275 },3276 /**3277 * Lookup333: pallet_foreign_assets::module::Call<T>3278 **/3279 PalletForeignAssetsModuleCall: {3280 _enum: {3281 register_foreign_asset: {3282 owner: 'AccountId32',3283 location: 'XcmVersionedMultiLocation',3284 metadata: 'PalletForeignAssetsModuleAssetMetadata',3285 },3286 update_foreign_asset: {3287 foreignAssetId: 'u32',3288 location: 'XcmVersionedMultiLocation',3289 metadata: 'PalletForeignAssetsModuleAssetMetadata'3290 }3291 }3292 },3293 /**3294 * Lookup334: pallet_foreign_assets::module::AssetMetadata<Balance>3295 **/3296 PalletForeignAssetsModuleAssetMetadata: {3297 name: 'Bytes',3298 symbol: 'Bytes',3299 decimals: 'u8',3300 minimalBalance: 'u128'3301 },3302 /**3303 * Lookup337: pallet_evm::pallet::Call<T>3304 **/3305 PalletEvmCall: {3306 _enum: {3307 withdraw: {3308 address: 'H160',3309 value: 'u128',3310 },3311 call: {3312 source: 'H160',3313 target: 'H160',3314 input: 'Bytes',3315 value: 'U256',3316 gasLimit: 'u64',3317 maxFeePerGas: 'U256',3318 maxPriorityFeePerGas: 'Option<U256>',3319 nonce: 'Option<U256>',3320 accessList: 'Vec<(H160,Vec<H256>)>',3321 },3322 create: {3323 source: 'H160',3324 init: 'Bytes',3325 value: 'U256',3326 gasLimit: 'u64',3327 maxFeePerGas: 'U256',3328 maxPriorityFeePerGas: 'Option<U256>',3329 nonce: 'Option<U256>',3330 accessList: 'Vec<(H160,Vec<H256>)>',3331 },3332 create2: {3333 source: 'H160',3334 init: 'Bytes',3335 salt: 'H256',3336 value: 'U256',3337 gasLimit: 'u64',3338 maxFeePerGas: 'U256',3339 maxPriorityFeePerGas: 'Option<U256>',3340 nonce: 'Option<U256>',3341 accessList: 'Vec<(H160,Vec<H256>)>'3342 }3343 }3344 },3345 /**3346 * Lookup344: pallet_ethereum::pallet::Call<T>3347 **/3348 PalletEthereumCall: {3349 _enum: {3350 transact: {3351 transaction: 'EthereumTransactionTransactionV2'3352 }3353 }3354 },3355 /**3356 * Lookup345: ethereum::transaction::TransactionV23357 **/3358 EthereumTransactionTransactionV2: {3359 _enum: {3360 Legacy: 'EthereumTransactionLegacyTransaction',3361 EIP2930: 'EthereumTransactionEip2930Transaction',3362 EIP1559: 'EthereumTransactionEip1559Transaction'3363 }3364 },3365 /**3366 * Lookup346: ethereum::transaction::LegacyTransaction3367 **/3368 EthereumTransactionLegacyTransaction: {3369 nonce: 'U256',3370 gasPrice: 'U256',3371 gasLimit: 'U256',3372 action: 'EthereumTransactionTransactionAction',3373 value: 'U256',3374 input: 'Bytes',3375 signature: 'EthereumTransactionTransactionSignature'3376 },3377 /**3378 * Lookup347: ethereum::transaction::TransactionAction3379 **/3380 EthereumTransactionTransactionAction: {3381 _enum: {3382 Call: 'H160',3383 Create: 'Null'3384 }3385 },3386 /**3387 * Lookup348: ethereum::transaction::TransactionSignature3388 **/3389 EthereumTransactionTransactionSignature: {3390 v: 'u64',3391 r: 'H256',3392 s: 'H256'3393 },3394 /**3395 * Lookup350: ethereum::transaction::EIP2930Transaction3396 **/3397 EthereumTransactionEip2930Transaction: {3398 chainId: 'u64',3399 nonce: 'U256',3400 gasPrice: 'U256',3401 gasLimit: 'U256',3402 action: 'EthereumTransactionTransactionAction',3403 value: 'U256',3404 input: 'Bytes',3405 accessList: 'Vec<EthereumTransactionAccessListItem>',3406 oddYParity: 'bool',3407 r: 'H256',3408 s: 'H256'3409 },3410 /**3411 * Lookup352: ethereum::transaction::AccessListItem3412 **/3413 EthereumTransactionAccessListItem: {3414 address: 'H160',3415 storageKeys: 'Vec<H256>'3416 },3417 /**3418 * Lookup353: ethereum::transaction::EIP1559Transaction3419 **/3420 EthereumTransactionEip1559Transaction: {3421 chainId: 'u64',3422 nonce: 'U256',3423 maxPriorityFeePerGas: 'U256',3424 maxFeePerGas: 'U256',3425 gasLimit: 'U256',3426 action: 'EthereumTransactionTransactionAction',3427 value: 'U256',3428 input: 'Bytes',3429 accessList: 'Vec<EthereumTransactionAccessListItem>',3430 oddYParity: 'bool',3431 r: 'H256',3432 s: 'H256'3433 },3434 /**3435 * Lookup354: pallet_evm_contract_helpers::pallet::Call<T>3436 **/3437 PalletEvmContractHelpersCall: {3438 _enum: {3439 migrate_from_self_sponsoring: {3440 addresses: 'Vec<H160>'3441 }3442 }3443 },3444 /**3445 * Lookup356: pallet_evm_migration::pallet::Call<T>3446 **/3447 PalletEvmMigrationCall: {3448 _enum: {3449 begin: {3450 address: 'H160',3451 },3452 set_data: {3453 address: 'H160',3454 data: 'Vec<(H256,H256)>',3455 },3456 finish: {3457 address: 'H160',3458 code: 'Bytes',3459 },3460 insert_eth_logs: {3461 logs: 'Vec<EthereumLog>',3462 },3463 insert_events: {3464 events: 'Vec<Bytes>',3465 },3466 remove_rmrk_data: 'Null'3467 }3468 },3469 /**3470 * Lookup360: ethereum::log::Log3471 **/3472 EthereumLog: {3473 address: 'H160',3474 topics: 'Vec<H256>',3475 data: 'Bytes'3476 },3477 /**3478 * Lookup361: pallet_maintenance::pallet::Call<T>3479 **/3480 PalletMaintenanceCall: {3481 _enum: {3482 enable: 'Null',3483 disable: 'Null',3484 execute_preimage: {3485 _alias: {3486 hash_: 'hash',3487 },3488 hash_: 'H256',3489 weightBound: 'SpWeightsWeightV2Weight'3490 }3491 }3492 },3493 /**3494 * Lookup362: pallet_test_utils::pallet::Call<T>3495 **/3496 PalletTestUtilsCall: {3497 _enum: {3498 enable: 'Null',3499 set_test_value: {3500 value: 'u32',3501 },3502 set_test_value_and_rollback: {3503 value: 'u32',3504 },3505 inc_test_value: 'Null',3506 just_take_fee: 'Null',3507 batch_all: {3508 calls: 'Vec<Call>'3509 }3510 }3511 },3512 /**3513 * Lookup365: pallet_scheduler::pallet::Event<T>3514 **/3515 PalletSchedulerEvent: {3516 _enum: {3517 Scheduled: {3518 when: 'u32',3519 index: 'u32',3520 },3521 Canceled: {3522 when: 'u32',3523 index: 'u32',3524 },3525 Dispatched: {3526 task: '(u32,u32)',3527 id: 'Option<[u8;32]>',3528 result: 'Result<Null, SpRuntimeDispatchError>',3529 },3530 CallUnavailable: {3531 task: '(u32,u32)',3532 id: 'Option<[u8;32]>',3533 },3534 PeriodicFailed: {3535 task: '(u32,u32)',3536 id: 'Option<[u8;32]>',3537 },3538 PermanentlyOverweight: {3539 task: '(u32,u32)',3540 id: 'Option<[u8;32]>'3541 }3542 }3543 },3544 /**3545 * Lookup366: cumulus_pallet_xcmp_queue::pallet::Event<T>3546 **/3547 CumulusPalletXcmpQueueEvent: {3548 _enum: {3549 Success: {3550 messageHash: 'Option<[u8;32]>',3551 weight: 'SpWeightsWeightV2Weight',3552 },3553 Fail: {3554 messageHash: 'Option<[u8;32]>',3555 error: 'XcmV3TraitsError',3556 weight: 'SpWeightsWeightV2Weight',3557 },3558 BadVersion: {3559 messageHash: 'Option<[u8;32]>',3560 },3561 BadFormat: {3562 messageHash: 'Option<[u8;32]>',3563 },3564 XcmpMessageSent: {3565 messageHash: 'Option<[u8;32]>',3566 },3567 OverweightEnqueued: {3568 sender: 'u32',3569 sentAt: 'u32',3570 index: 'u64',3571 required: 'SpWeightsWeightV2Weight',3572 },3573 OverweightServiced: {3574 index: 'u64',3575 used: 'SpWeightsWeightV2Weight'3576 }3577 }3578 },3579 /**3580 * Lookup367: pallet_xcm::pallet::Event<T>3581 **/3582 PalletXcmEvent: {3583 _enum: {3584 Attempted: 'XcmV3TraitsOutcome',3585 Sent: '(XcmV3MultiLocation,XcmV3MultiLocation,XcmV3Xcm)',3586 UnexpectedResponse: '(XcmV3MultiLocation,u64)',3587 ResponseReady: '(u64,XcmV3Response)',3588 Notified: '(u64,u8,u8)',3589 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',3590 NotifyDispatchError: '(u64,u8,u8)',3591 NotifyDecodeFailed: '(u64,u8,u8)',3592 InvalidResponder: '(XcmV3MultiLocation,u64,Option<XcmV3MultiLocation>)',3593 InvalidResponderVersion: '(XcmV3MultiLocation,u64)',3594 ResponseTaken: 'u64',3595 AssetsTrapped: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)',3596 VersionChangeNotified: '(XcmV3MultiLocation,u32,XcmV3MultiassetMultiAssets)',3597 SupportedVersionChanged: '(XcmV3MultiLocation,u32)',3598 NotifyTargetSendFail: '(XcmV3MultiLocation,u64,XcmV3TraitsError)',3599 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',3600 InvalidQuerierVersion: '(XcmV3MultiLocation,u64)',3601 InvalidQuerier: '(XcmV3MultiLocation,u64,XcmV3MultiLocation,Option<XcmV3MultiLocation>)',3602 VersionNotifyStarted: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',3603 VersionNotifyRequested: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',3604 VersionNotifyUnrequested: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',3605 FeesPaid: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',3606 AssetsClaimed: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)'3607 }3608 },3609 /**3610 * Lookup368: xcm::v3::traits::Outcome3611 **/3612 XcmV3TraitsOutcome: {3613 _enum: {3614 Complete: 'SpWeightsWeightV2Weight',3615 Incomplete: '(SpWeightsWeightV2Weight,XcmV3TraitsError)',3616 Error: 'XcmV3TraitsError'3617 }3618 },3619 /**3620 * Lookup369: cumulus_pallet_xcm::pallet::Event<T>3621 **/3622 CumulusPalletXcmEvent: {3623 _enum: {3624 InvalidFormat: '[u8;32]',3625 UnsupportedVersion: '[u8;32]',3626 ExecutedDownward: '([u8;32],XcmV3TraitsOutcome)'3627 }3628 },3629 /**3630 * Lookup370: cumulus_pallet_dmp_queue::pallet::Event<T>3631 **/3632 CumulusPalletDmpQueueEvent: {3633 _enum: {3634 InvalidFormat: {3635 messageId: '[u8;32]',3636 },3637 UnsupportedVersion: {3638 messageId: '[u8;32]',3639 },3640 ExecutedDownward: {3641 messageId: '[u8;32]',3642 outcome: 'XcmV3TraitsOutcome',3643 },3644 WeightExhausted: {3645 messageId: '[u8;32]',3646 remainingWeight: 'SpWeightsWeightV2Weight',3647 requiredWeight: 'SpWeightsWeightV2Weight',3648 },3649 OverweightEnqueued: {3650 messageId: '[u8;32]',3651 overweightIndex: 'u64',3652 requiredWeight: 'SpWeightsWeightV2Weight',3653 },3654 OverweightServiced: {3655 overweightIndex: 'u64',3656 weightUsed: 'SpWeightsWeightV2Weight',3657 },3658 MaxMessagesExhausted: {3659 messageId: '[u8;32]'3660 }3661 }3662 },3663 /**3664 * Lookup371: pallet_configuration::pallet::Event<T>3665 **/3666 PalletConfigurationEvent: {3667 _enum: {3668 NewDesiredCollators: {3669 desiredCollators: 'Option<u32>',3670 },3671 NewCollatorLicenseBond: {3672 bondCost: 'Option<u128>',3673 },3674 NewCollatorKickThreshold: {3675 lengthInBlocks: 'Option<u32>'3676 }3677 }3678 },3679 /**3680 * Lookup372: pallet_common::pallet::Event<T>3681 **/3682 PalletCommonEvent: {3683 _enum: {3684 CollectionCreated: '(u32,u8,AccountId32)',3685 CollectionDestroyed: 'u32',3686 ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',3687 ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',3688 Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',3689 Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',3690 ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',3691 CollectionPropertySet: '(u32,Bytes)',3692 CollectionPropertyDeleted: '(u32,Bytes)',3693 TokenPropertySet: '(u32,u32,Bytes)',3694 TokenPropertyDeleted: '(u32,u32,Bytes)',3695 PropertyPermissionSet: '(u32,Bytes)',3696 AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',3697 AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',3698 CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',3699 CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',3700 CollectionLimitSet: 'u32',3701 CollectionOwnerChanged: '(u32,AccountId32)',3702 CollectionPermissionSet: 'u32',3703 CollectionSponsorSet: '(u32,AccountId32)',3704 SponsorshipConfirmed: '(u32,AccountId32)',3705 CollectionSponsorRemoved: 'u32'3706 }3707 },3708 /**3709 * Lookup373: pallet_structure::pallet::Event<T>3710 **/3711 PalletStructureEvent: {3712 _enum: {3713 Executed: 'Result<Null, SpRuntimeDispatchError>'3714 }3715 },3716 /**3717 * Lookup374: pallet_app_promotion::pallet::Event<T>3718 **/3719 PalletAppPromotionEvent: {3720 _enum: {3721 StakingRecalculation: '(AccountId32,u128,u128)',3722 Stake: '(AccountId32,u128)',3723 Unstake: '(AccountId32,u128)',3724 SetAdmin: 'AccountId32'3725 }3726 },3727 /**3728 * Lookup375: pallet_foreign_assets::module::Event<T>3729 **/3730 PalletForeignAssetsModuleEvent: {3731 _enum: {3732 ForeignAssetRegistered: {3733 assetId: 'u32',3734 assetAddress: 'XcmV3MultiLocation',3735 metadata: 'PalletForeignAssetsModuleAssetMetadata',3736 },3737 ForeignAssetUpdated: {3738 assetId: 'u32',3739 assetAddress: 'XcmV3MultiLocation',3740 metadata: 'PalletForeignAssetsModuleAssetMetadata',3741 },3742 AssetRegistered: {3743 assetId: 'PalletForeignAssetsAssetIds',3744 metadata: 'PalletForeignAssetsModuleAssetMetadata',3745 },3746 AssetUpdated: {3747 assetId: 'PalletForeignAssetsAssetIds',3748 metadata: 'PalletForeignAssetsModuleAssetMetadata'3749 }3750 }3751 },3752 /**3753 * Lookup376: pallet_evm::pallet::Event<T>3754 **/3755 PalletEvmEvent: {3756 _enum: {3757 Log: {3758 log: 'EthereumLog',3759 },3760 Created: {3761 address: 'H160',3762 },3763 CreatedFailed: {3764 address: 'H160',3765 },3766 Executed: {3767 address: 'H160',3768 },3769 ExecutedFailed: {3770 address: 'H160'3771 }3772 }3773 },3774 /**3775 * Lookup377: pallet_ethereum::pallet::Event3776 **/3777 PalletEthereumEvent: {3778 _enum: {3779 Executed: {3780 from: 'H160',3781 to: 'H160',3782 transactionHash: 'H256',3783 exitReason: 'EvmCoreErrorExitReason',3784 extraData: 'Bytes'3785 }3786 }3787 },3788 /**3789 * Lookup378: evm_core::error::ExitReason3790 **/3791 EvmCoreErrorExitReason: {3792 _enum: {3793 Succeed: 'EvmCoreErrorExitSucceed',3794 Error: 'EvmCoreErrorExitError',3795 Revert: 'EvmCoreErrorExitRevert',3796 Fatal: 'EvmCoreErrorExitFatal'3797 }3798 },3799 /**3800 * Lookup379: evm_core::error::ExitSucceed3801 **/3802 EvmCoreErrorExitSucceed: {3803 _enum: ['Stopped', 'Returned', 'Suicided']3804 },3805 /**3806 * Lookup380: evm_core::error::ExitError3807 **/3808 EvmCoreErrorExitError: {3809 _enum: {3810 StackUnderflow: 'Null',3811 StackOverflow: 'Null',3812 InvalidJump: 'Null',3813 InvalidRange: 'Null',3814 DesignatedInvalid: 'Null',3815 CallTooDeep: 'Null',3816 CreateCollision: 'Null',3817 CreateContractLimit: 'Null',3818 OutOfOffset: 'Null',3819 OutOfGas: 'Null',3820 OutOfFund: 'Null',3821 PCUnderflow: 'Null',3822 CreateEmpty: 'Null',3823 Other: 'Text',3824 MaxNonce: 'Null',3825 InvalidCode: 'u8'3826 }3827 },3828 /**3829 * Lookup384: evm_core::error::ExitRevert3830 **/3831 EvmCoreErrorExitRevert: {3832 _enum: ['Reverted']3833 },3834 /**3835 * Lookup385: evm_core::error::ExitFatal3836 **/3837 EvmCoreErrorExitFatal: {3838 _enum: {3839 NotSupported: 'Null',3840 UnhandledInterrupt: 'Null',3841 CallErrorAsFatal: 'EvmCoreErrorExitError',3842 Other: 'Text'3843 }3844 },3845 /**3846 * Lookup386: pallet_evm_contract_helpers::pallet::Event<T>3847 **/3848 PalletEvmContractHelpersEvent: {3849 _enum: {3850 ContractSponsorSet: '(H160,AccountId32)',3851 ContractSponsorshipConfirmed: '(H160,AccountId32)',3852 ContractSponsorRemoved: 'H160'3853 }3854 },3855 /**3856 * Lookup387: pallet_evm_migration::pallet::Event<T>3857 **/3858 PalletEvmMigrationEvent: {3859 _enum: ['TestEvent']3860 },3861 /**3862 * Lookup388: pallet_maintenance::pallet::Event<T>3863 **/3864 PalletMaintenanceEvent: {3865 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']3866 },3867 /**3868 * Lookup389: pallet_test_utils::pallet::Event<T>3869 **/3870 PalletTestUtilsEvent: {3871 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']3872 },3873 /**3874 * Lookup390: frame_system::Phase3875 **/3876 FrameSystemPhase: {3877 _enum: {3878 ApplyExtrinsic: 'u32',3879 Finalization: 'Null',3880 Initialization: 'Null'3881 }3882 },3883 /**3884 * Lookup392: frame_system::LastRuntimeUpgradeInfo3885 **/3886 FrameSystemLastRuntimeUpgradeInfo: {3887 specVersion: 'Compact<u32>',3888 specName: 'Text'3889 },3890 /**3891 * Lookup393: frame_system::limits::BlockWeights3892 **/3893 FrameSystemLimitsBlockWeights: {3894 baseBlock: 'SpWeightsWeightV2Weight',3895 maxBlock: 'SpWeightsWeightV2Weight',3896 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'3897 },3898 /**3899 * Lookup394: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>3900 **/3901 FrameSupportDispatchPerDispatchClassWeightsPerClass: {3902 normal: 'FrameSystemLimitsWeightsPerClass',3903 operational: 'FrameSystemLimitsWeightsPerClass',3904 mandatory: 'FrameSystemLimitsWeightsPerClass'3905 },3906 /**3907 * Lookup395: frame_system::limits::WeightsPerClass3908 **/3909 FrameSystemLimitsWeightsPerClass: {3910 baseExtrinsic: 'SpWeightsWeightV2Weight',3911 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',3912 maxTotal: 'Option<SpWeightsWeightV2Weight>',3913 reserved: 'Option<SpWeightsWeightV2Weight>'3914 },3915 /**3916 * Lookup397: frame_system::limits::BlockLength3917 **/3918 FrameSystemLimitsBlockLength: {3919 max: 'FrameSupportDispatchPerDispatchClassU32'3920 },3921 /**3922 * Lookup398: frame_support::dispatch::PerDispatchClass<T>3923 **/3924 FrameSupportDispatchPerDispatchClassU32: {3925 normal: 'u32',3926 operational: 'u32',3927 mandatory: 'u32'3928 },3929 /**3930 * Lookup399: sp_weights::RuntimeDbWeight3931 **/3932 SpWeightsRuntimeDbWeight: {3933 read: 'u64',3934 write: 'u64'3935 },3936 /**3937 * Lookup400: sp_version::RuntimeVersion3938 **/3939 SpVersionRuntimeVersion: {3940 specName: 'Text',3941 implName: 'Text',3942 authoringVersion: 'u32',3943 specVersion: 'u32',3944 implVersion: 'u32',3945 apis: 'Vec<([u8;8],u32)>',3946 transactionVersion: 'u32',3947 stateVersion: 'u8'3948 },3949 /**3950 * Lookup404: frame_system::pallet::Error<T>3951 **/3952 FrameSystemError: {3953 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']3954 },3955 /**3956 * Lookup406: polkadot_primitives::v4::UpgradeRestriction3957 **/3958 PolkadotPrimitivesV4UpgradeRestriction: {3959 _enum: ['Present']3960 },3961 /**3962 * Lookup407: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot3963 **/3964 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {3965 dmqMqcHead: 'H256',3966 relayDispatchQueueSize: 'CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize',3967 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>',3968 egressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>'3969 },3970 /**3971 * Lookup408: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispachQueueSize3972 **/3973 CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize: {3974 remainingCount: 'u32',3975 remainingSize: 'u32'3976 },3977 /**3978 * Lookup411: polkadot_primitives::v4::AbridgedHrmpChannel3979 **/3980 PolkadotPrimitivesV4AbridgedHrmpChannel: {3981 maxCapacity: 'u32',3982 maxTotalSize: 'u32',3983 maxMessageSize: 'u32',3984 msgCount: 'u32',3985 totalSize: 'u32',3986 mqcHead: 'Option<H256>'3987 },3988 /**3989 * Lookup412: polkadot_primitives::v4::AbridgedHostConfiguration3990 **/3991 PolkadotPrimitivesV4AbridgedHostConfiguration: {3992 maxCodeSize: 'u32',3993 maxHeadDataSize: 'u32',3994 maxUpwardQueueCount: 'u32',3995 maxUpwardQueueSize: 'u32',3996 maxUpwardMessageSize: 'u32',3997 maxUpwardMessageNumPerCandidate: 'u32',3998 hrmpMaxMessageNumPerCandidate: 'u32',3999 validationUpgradeCooldown: 'u32',4000 validationUpgradeDelay: 'u32'4001 },4002 /**4003 * Lookup418: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>4004 **/4005 PolkadotCorePrimitivesOutboundHrmpMessage: {4006 recipient: 'u32',4007 data: 'Bytes'4008 },4009 /**4010 * Lookup419: cumulus_pallet_parachain_system::CodeUpgradeAuthorization<T>4011 **/4012 CumulusPalletParachainSystemCodeUpgradeAuthorization: {4013 codeHash: 'H256',4014 checkVersion: 'bool'4015 },4016 /**4017 * Lookup420: cumulus_pallet_parachain_system::pallet::Error<T>4018 **/4019 CumulusPalletParachainSystemError: {4020 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']4021 },4022 /**4023 * Lookup422: pallet_collator_selection::pallet::Error<T>4024 **/4025 PalletCollatorSelectionError: {4026 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']4027 },4028 /**4029 * Lookup426: sp_core::crypto::KeyTypeId4030 **/4031 SpCoreCryptoKeyTypeId: '[u8;4]',4032 /**4033 * Lookup427: pallet_session::pallet::Error<T>4034 **/4035 PalletSessionError: {4036 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']4037 },4038 /**4039 * Lookup432: pallet_balances::types::BalanceLock<Balance>4040 **/4041 PalletBalancesBalanceLock: {4042 id: '[u8;8]',4043 amount: 'u128',4044 reasons: 'PalletBalancesReasons'4045 },4046 /**4047 * Lookup433: pallet_balances::types::Reasons4048 **/4049 PalletBalancesReasons: {4050 _enum: ['Fee', 'Misc', 'All']4051 },4052 /**4053 * Lookup436: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>4054 **/4055 PalletBalancesReserveData: {4056 id: '[u8;16]',4057 amount: 'u128'4058 },4059 /**4060 * Lookup439: pallet_balances::types::IdAmount<Id, Balance>4061 **/4062 PalletBalancesIdAmount: {4063 id: '[u8;16]',4064 amount: 'u128'4065 },4066 /**4067 * Lookup442: pallet_balances::pallet::Error<T, I>4068 **/4069 PalletBalancesError: {4070 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']4071 },4072 /**4073 * Lookup444: pallet_transaction_payment::Releases4074 **/4075 PalletTransactionPaymentReleases: {4076 _enum: ['V1Ancient', 'V2']4077 },4078 /**4079 * Lookup445: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>4080 **/4081 PalletTreasuryProposal: {4082 proposer: 'AccountId32',4083 value: 'u128',4084 beneficiary: 'AccountId32',4085 bond: 'u128'4086 },4087 /**4088 * Lookup448: frame_support::PalletId4089 **/4090 FrameSupportPalletId: '[u8;8]',4091 /**4092 * Lookup449: pallet_treasury::pallet::Error<T, I>4093 **/4094 PalletTreasuryError: {4095 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']4096 },4097 /**4098 * Lookup450: pallet_sudo::pallet::Error<T>4099 **/4100 PalletSudoError: {4101 _enum: ['RequireSudo']4102 },4103 /**4104 * Lookup452: orml_vesting::module::Error<T>4105 **/4106 OrmlVestingModuleError: {4107 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']4108 },4109 /**4110 * Lookup453: orml_xtokens::module::Error<T>4111 **/4112 OrmlXtokensModuleError: {4113 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']4114 },4115 /**4116 * Lookup456: orml_tokens::BalanceLock<Balance>4117 **/4118 OrmlTokensBalanceLock: {4119 id: '[u8;8]',4120 amount: 'u128'4121 },4122 /**4123 * Lookup458: orml_tokens::AccountData<Balance>4124 **/4125 OrmlTokensAccountData: {4126 free: 'u128',4127 reserved: 'u128',4128 frozen: 'u128'4129 },4130 /**4131 * Lookup460: orml_tokens::ReserveData<ReserveIdentifier, Balance>4132 **/4133 OrmlTokensReserveData: {4134 id: 'Null',4135 amount: 'u128'4136 },4137 /**4138 * Lookup462: orml_tokens::module::Error<T>4139 **/4140 OrmlTokensModuleError: {4141 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']4142 },4143 /**4144 * Lookup467: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>4145 **/4146 PalletIdentityRegistrarInfo: {4147 account: 'AccountId32',4148 fee: 'u128',4149 fields: 'PalletIdentityBitFlags'4150 },4151 /**4152 * Lookup469: pallet_identity::pallet::Error<T>4153 **/4154 PalletIdentityError: {4155 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']4156 },4157 /**4158 * Lookup470: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>4159 **/4160 PalletPreimageRequestStatus: {4161 _enum: {4162 Unrequested: {4163 deposit: '(AccountId32,u128)',4164 len: 'u32',4165 },4166 Requested: {4167 deposit: 'Option<(AccountId32,u128)>',4168 count: 'u32',4169 len: 'Option<u32>'4170 }4171 }4172 },4173 /**4174 * Lookup475: pallet_preimage::pallet::Error<T>4175 **/4176 PalletPreimageError: {4177 _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']4178 },4179 /**4180 * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>4181 **/4182 PalletDemocracyReferendumInfo: {4183 _enum: {4184 Ongoing: 'PalletDemocracyReferendumStatus',4185 Finished: {4186 approved: 'bool',4187 end: 'u32'4188 }4189 }4190 },4191 /**4192 * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>4193 **/4194 PalletDemocracyReferendumStatus: {4195 end: 'u32',4196 proposal: 'FrameSupportPreimagesBounded',4197 threshold: 'PalletDemocracyVoteThreshold',4198 delay: 'u32',4199 tally: 'PalletDemocracyTally'4200 },4201 /**4202 * Lookup483: pallet_democracy::types::Tally<Balance>4203 **/4204 PalletDemocracyTally: {4205 ayes: 'u128',4206 nays: 'u128',4207 turnout: 'u128'4208 },4209 /**4210 * Lookup484: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>4211 **/4212 PalletDemocracyVoteVoting: {4213 _enum: {4214 Direct: {4215 votes: 'Vec<(u32,PalletDemocracyVoteAccountVote)>',4216 delegations: 'PalletDemocracyDelegations',4217 prior: 'PalletDemocracyVotePriorLock',4218 },4219 Delegating: {4220 balance: 'u128',4221 target: 'AccountId32',4222 conviction: 'PalletDemocracyConviction',4223 delegations: 'PalletDemocracyDelegations',4224 prior: 'PalletDemocracyVotePriorLock'4225 }4226 }4227 },4228 /**4229 * Lookup488: pallet_democracy::types::Delegations<Balance>4230 **/4231 PalletDemocracyDelegations: {4232 votes: 'u128',4233 capital: 'u128'4234 },4235 /**4236 * Lookup489: pallet_democracy::vote::PriorLock<BlockNumber, Balance>4237 **/4238 PalletDemocracyVotePriorLock: '(u32,u128)',4239 /**4240 * Lookup492: pallet_democracy::pallet::Error<T>4241 **/4242 PalletDemocracyError: {4243 _enum: ['ValueLow', 'ProposalMissing', 'AlreadyCanceled', 'DuplicateProposal', 'ProposalBlacklisted', 'NotSimpleMajority', 'InvalidHash', 'NoProposal', 'AlreadyVetoed', 'ReferendumInvalid', 'NoneWaiting', 'NotVoter', 'NoPermission', 'AlreadyDelegating', 'InsufficientFunds', 'NotDelegating', 'VotesExist', 'InstantNotAllowed', 'Nonsense', 'WrongUpperBound', 'MaxVotesReached', 'TooMany', 'VotingPeriodLow', 'PreimageNotExist']4244 },4245 /**4246 * Lookup494: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>4247 **/4248 PalletCollectiveVotes: {4249 index: 'u32',4250 threshold: 'u32',4251 ayes: 'Vec<AccountId32>',4252 nays: 'Vec<AccountId32>',4253 end: 'u32'4254 },4255 /**4256 * Lookup495: pallet_collective::pallet::Error<T, I>4257 **/4258 PalletCollectiveError: {4259 _enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength']4260 },4261 /**4262 * Lookup499: pallet_membership::pallet::Error<T, I>4263 **/4264 PalletMembershipError: {4265 _enum: ['AlreadyMember', 'NotMember', 'TooManyMembers']4266 },4267 /**4268 * Lookup502: pallet_ranked_collective::MemberRecord4269 **/4270 PalletRankedCollectiveMemberRecord: {4271 rank: 'u16'4272 },4273 /**4274 * Lookup507: pallet_ranked_collective::pallet::Error<T, I>4275 **/4276 PalletRankedCollectiveError: {4277 _enum: ['AlreadyMember', 'NotMember', 'NotPolling', 'Ongoing', 'NoneRemaining', 'Corruption', 'RankTooLow', 'InvalidWitness', 'NoPermission']4278 },4279 /**4280 * Lookup508: pallet_referenda::types::ReferendumInfo<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>4281 **/4282 PalletReferendaReferendumInfo: {4283 _enum: {4284 Ongoing: 'PalletReferendaReferendumStatus',4285 Approved: '(u32,Option<PalletReferendaDeposit>,Option<PalletReferendaDeposit>)',4286 Rejected: '(u32,Option<PalletReferendaDeposit>,Option<PalletReferendaDeposit>)',4287 Cancelled: '(u32,Option<PalletReferendaDeposit>,Option<PalletReferendaDeposit>)',4288 TimedOut: '(u32,Option<PalletReferendaDeposit>,Option<PalletReferendaDeposit>)',4289 Killed: 'u32'4290 }4291 },4292 /**4293 * Lookup509: pallet_referenda::types::ReferendumStatus<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>4294 **/4295 PalletReferendaReferendumStatus: {4296 track: 'u16',4297 origin: 'OpalRuntimeOriginCaller',4298 proposal: 'FrameSupportPreimagesBounded',4299 enactment: 'FrameSupportScheduleDispatchTime',4300 submitted: 'u32',4301 submissionDeposit: 'PalletReferendaDeposit',4302 decisionDeposit: 'Option<PalletReferendaDeposit>',4303 deciding: 'Option<PalletReferendaDecidingStatus>',4304 tally: 'PalletRankedCollectiveTally',4305 inQueue: 'bool',4306 alarm: 'Option<(u32,(u32,u32))>'4307 },4308 /**4309 * Lookup510: pallet_referenda::types::Deposit<sp_core::crypto::AccountId32, Balance>4310 **/4311 PalletReferendaDeposit: {4312 who: 'AccountId32',4313 amount: 'u128'4314 },4315 /**4316 * Lookup513: pallet_referenda::types::DecidingStatus<BlockNumber>4317 **/4318 PalletReferendaDecidingStatus: {4319 since: 'u32',4320 confirming: 'Option<u32>'4321 },4322 /**4323 * Lookup519: pallet_referenda::types::TrackInfo<Balance, Moment>4324 **/4325 PalletReferendaTrackInfo: {4326 name: 'Text',4327 maxDeciding: 'u32',4328 decisionDeposit: 'u128',4329 preparePeriod: 'u32',4330 decisionPeriod: 'u32',4331 confirmPeriod: 'u32',4332 minEnactmentPeriod: 'u32',4333 minApproval: 'PalletReferendaCurve',4334 minSupport: 'PalletReferendaCurve'4335 },4336 /**4337 * Lookup520: pallet_referenda::types::Curve4338 **/4339 PalletReferendaCurve: {4340 _enum: {4341 LinearDecreasing: {4342 length: 'Perbill',4343 floor: 'Perbill',4344 ceil: 'Perbill',4345 },4346 SteppedDecreasing: {4347 begin: 'Perbill',4348 end: 'Perbill',4349 step: 'Perbill',4350 period: 'Perbill',4351 },4352 Reciprocal: {4353 factor: 'i64',4354 xOffset: 'i64',4355 yOffset: 'i64'4356 }4357 }4358 },4359 /**4360 * Lookup523: pallet_referenda::pallet::Error<T, I>4361 **/4362 PalletReferendaError: {4363 _enum: ['NotOngoing', 'HasDeposit', 'BadTrack', 'Full', 'QueueEmpty', 'BadReferendum', 'NothingToDo', 'NoTrack', 'Unfinished', 'NoPermission', 'NoDeposit', 'BadStatus', 'PreimageNotExist']4364 },4365 /**4366 * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>4367 **/4368 PalletSchedulerScheduled: {4369 maybeId: 'Option<[u8;32]>',4370 priority: 'u8',4371 call: 'FrameSupportPreimagesBounded',4372 maybePeriodic: 'Option<(u32,u32)>',4373 origin: 'OpalRuntimeOriginCaller'4374 },4375 /**4376 * Lookup528: pallet_scheduler::pallet::Error<T>4377 **/4378 PalletSchedulerError: {4379 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named']4380 },4381 /**4382 * Lookup530: cumulus_pallet_xcmp_queue::InboundChannelDetails4383 **/4384 CumulusPalletXcmpQueueInboundChannelDetails: {4385 sender: 'u32',4386 state: 'CumulusPalletXcmpQueueInboundState',4387 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'4388 },4389 /**4390 * Lookup531: cumulus_pallet_xcmp_queue::InboundState4391 **/4392 CumulusPalletXcmpQueueInboundState: {4393 _enum: ['Ok', 'Suspended']4394 },4395 /**4396 * Lookup534: polkadot_parachain::primitives::XcmpMessageFormat4397 **/4398 PolkadotParachainPrimitivesXcmpMessageFormat: {4399 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']4400 },4401 /**4402 * Lookup537: cumulus_pallet_xcmp_queue::OutboundChannelDetails4403 **/4404 CumulusPalletXcmpQueueOutboundChannelDetails: {4405 recipient: 'u32',4406 state: 'CumulusPalletXcmpQueueOutboundState',4407 signalsExist: 'bool',4408 firstIndex: 'u16',4409 lastIndex: 'u16'4410 },4411 /**4412 * Lookup538: cumulus_pallet_xcmp_queue::OutboundState4413 **/4414 CumulusPalletXcmpQueueOutboundState: {4415 _enum: ['Ok', 'Suspended']4416 },4417 /**4418 * Lookup540: cumulus_pallet_xcmp_queue::QueueConfigData4419 **/4420 CumulusPalletXcmpQueueQueueConfigData: {4421 suspendThreshold: 'u32',4422 dropThreshold: 'u32',4423 resumeThreshold: 'u32',4424 thresholdWeight: 'SpWeightsWeightV2Weight',4425 weightRestrictDecay: 'SpWeightsWeightV2Weight',4426 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'4427 },4428 /**4429 * Lookup542: cumulus_pallet_xcmp_queue::pallet::Error<T>4430 **/4431 CumulusPalletXcmpQueueError: {4432 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']4433 },4434 /**4435 * Lookup543: pallet_xcm::pallet::QueryStatus<BlockNumber>4436 **/4437 PalletXcmQueryStatus: {4438 _enum: {4439 Pending: {4440 responder: 'XcmVersionedMultiLocation',4441 maybeMatchQuerier: 'Option<XcmVersionedMultiLocation>',4442 maybeNotify: 'Option<(u8,u8)>',4443 timeout: 'u32',4444 },4445 VersionNotifier: {4446 origin: 'XcmVersionedMultiLocation',4447 isActive: 'bool',4448 },4449 Ready: {4450 response: 'XcmVersionedResponse',4451 at: 'u32'4452 }4453 }4454 },4455 /**4456 * Lookup547: xcm::VersionedResponse4457 **/4458 XcmVersionedResponse: {4459 _enum: {4460 __Unused0: 'Null',4461 __Unused1: 'Null',4462 V2: 'XcmV2Response',4463 V3: 'XcmV3Response'4464 }4465 },4466 /**4467 * Lookup553: pallet_xcm::pallet::VersionMigrationStage4468 **/4469 PalletXcmVersionMigrationStage: {4470 _enum: {4471 MigrateSupportedVersion: 'Null',4472 MigrateVersionNotifiers: 'Null',4473 NotifyCurrentTargets: 'Option<Bytes>',4474 MigrateAndNotifyOldTargets: 'Null'4475 }4476 },4477 /**4478 * Lookup556: xcm::VersionedAssetId4479 **/4480 XcmVersionedAssetId: {4481 _enum: {4482 __Unused0: 'Null',4483 __Unused1: 'Null',4484 __Unused2: 'Null',4485 V3: 'XcmV3MultiassetAssetId'4486 }4487 },4488 /**4489 * Lookup557: pallet_xcm::pallet::RemoteLockedFungibleRecord<ConsumerIdentifier, MaxConsumers>4490 **/4491 PalletXcmRemoteLockedFungibleRecord: {4492 amount: 'u128',4493 owner: 'XcmVersionedMultiLocation',4494 locker: 'XcmVersionedMultiLocation',4495 consumers: 'Vec<(Null,u128)>'4496 },4497 /**4498 * Lookup564: pallet_xcm::pallet::Error<T>4499 **/4500 PalletXcmError: {4501 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse']4502 },4503 /**4504 * Lookup565: cumulus_pallet_xcm::pallet::Error<T>4505 **/4506 CumulusPalletXcmError: 'Null',4507 /**4508 * Lookup566: cumulus_pallet_dmp_queue::ConfigData4509 **/4510 CumulusPalletDmpQueueConfigData: {4511 maxIndividual: 'SpWeightsWeightV2Weight'4512 },4513 /**4514 * Lookup567: cumulus_pallet_dmp_queue::PageIndexData4515 **/4516 CumulusPalletDmpQueuePageIndexData: {4517 beginUsed: 'u32',4518 endUsed: 'u32',4519 overweightCount: 'u64'4520 },4521 /**4522 * Lookup570: cumulus_pallet_dmp_queue::pallet::Error<T>4523 **/4524 CumulusPalletDmpQueueError: {4525 _enum: ['Unknown', 'OverLimit']4526 },4527 /**4528 * Lookup574: pallet_unique::pallet::Error<T>4529 **/4530 PalletUniqueError: {4531 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']4532 },4533 /**4534 * Lookup575: pallet_configuration::pallet::Error<T>4535 **/4536 PalletConfigurationError: {4537 _enum: ['InconsistentConfiguration']4538 },4539 /**4540 * Lookup576: up_data_structs::Collection<sp_core::crypto::AccountId32>4541 **/4542 UpDataStructsCollection: {4543 owner: 'AccountId32',4544 mode: 'UpDataStructsCollectionMode',4545 name: 'Vec<u16>',4546 description: 'Vec<u16>',4547 tokenPrefix: 'Bytes',4548 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',4549 limits: 'UpDataStructsCollectionLimits',4550 permissions: 'UpDataStructsCollectionPermissions',4551 flags: '[u8;1]'4552 },4553 /**4554 * Lookup577: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>4555 **/4556 UpDataStructsSponsorshipStateAccountId32: {4557 _enum: {4558 Disabled: 'Null',4559 Unconfirmed: 'AccountId32',4560 Confirmed: 'AccountId32'4561 }4562 },4563 /**4564 * Lookup578: up_data_structs::Properties4565 **/4566 UpDataStructsProperties: {4567 map: 'UpDataStructsPropertiesMapBoundedVec',4568 consumedSpace: 'u32',4569 reserved: 'u32'4570 },4571 /**4572 * Lookup579: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>4573 **/4574 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',4575 /**4576 * Lookup584: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>4577 **/4578 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',4579 /**4580 * Lookup591: up_data_structs::CollectionStats4581 **/4582 UpDataStructsCollectionStats: {4583 created: 'u32',4584 destroyed: 'u32',4585 alive: 'u32'4586 },4587 /**4588 * Lookup592: up_data_structs::TokenChild4589 **/4590 UpDataStructsTokenChild: {4591 token: 'u32',4592 collection: 'u32'4593 },4594 /**4595 * Lookup593: PhantomType::up_data_structs<T>4596 **/4597 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',4598 /**4599 * Lookup595: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>4600 **/4601 UpDataStructsTokenData: {4602 properties: 'Vec<UpDataStructsProperty>',4603 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',4604 pieces: 'u128'4605 },4606 /**4607 * Lookup596: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>4608 **/4609 UpDataStructsRpcCollection: {4610 owner: 'AccountId32',4611 mode: 'UpDataStructsCollectionMode',4612 name: 'Vec<u16>',4613 description: 'Vec<u16>',4614 tokenPrefix: 'Bytes',4615 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',4616 limits: 'UpDataStructsCollectionLimits',4617 permissions: 'UpDataStructsCollectionPermissions',4618 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',4619 properties: 'Vec<UpDataStructsProperty>',4620 readOnly: 'bool',4621 flags: 'UpDataStructsRpcCollectionFlags'4622 },4623 /**4624 * Lookup597: up_data_structs::RpcCollectionFlags4625 **/4626 UpDataStructsRpcCollectionFlags: {4627 foreign: 'bool',4628 erc721metadata: 'bool'4629 },4630 /**4631 * Lookup598: up_pov_estimate_rpc::PovInfo4632 **/4633 UpPovEstimateRpcPovInfo: {4634 proofSize: 'u64',4635 compactProofSize: 'u64',4636 compressedProofSize: 'u64',4637 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',4638 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'4639 },4640 /**4641 * Lookup601: sp_runtime::transaction_validity::TransactionValidityError4642 **/4643 SpRuntimeTransactionValidityTransactionValidityError: {4644 _enum: {4645 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',4646 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'4647 }4648 },4649 /**4650 * Lookup602: sp_runtime::transaction_validity::InvalidTransaction4651 **/4652 SpRuntimeTransactionValidityInvalidTransaction: {4653 _enum: {4654 Call: 'Null',4655 Payment: 'Null',4656 Future: 'Null',4657 Stale: 'Null',4658 BadProof: 'Null',4659 AncientBirthBlock: 'Null',4660 ExhaustsResources: 'Null',4661 Custom: 'u8',4662 BadMandatory: 'Null',4663 MandatoryValidation: 'Null',4664 BadSigner: 'Null'4665 }4666 },4667 /**4668 * Lookup603: sp_runtime::transaction_validity::UnknownTransaction4669 **/4670 SpRuntimeTransactionValidityUnknownTransaction: {4671 _enum: {4672 CannotLookup: 'Null',4673 NoUnsignedValidator: 'Null',4674 Custom: 'u8'4675 }4676 },4677 /**4678 * Lookup605: up_pov_estimate_rpc::TrieKeyValue4679 **/4680 UpPovEstimateRpcTrieKeyValue: {4681 key: 'Bytes',4682 value: 'Bytes'4683 },4684 /**4685 * Lookup607: pallet_common::pallet::Error<T>4686 **/4687 PalletCommonError: {4688 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']4689 },4690 /**4691 * Lookup609: pallet_fungible::pallet::Error<T>4692 **/4693 PalletFungibleError: {4694 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']4695 },4696 /**4697 * Lookup614: pallet_refungible::pallet::Error<T>4698 **/4699 PalletRefungibleError: {4700 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']4701 },4702 /**4703 * Lookup615: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>4704 **/4705 PalletNonfungibleItemData: {4706 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'4707 },4708 /**4709 * Lookup617: up_data_structs::PropertyScope4710 **/4711 UpDataStructsPropertyScope: {4712 _enum: ['None', 'Rmrk']4713 },4714 /**4715 * Lookup620: pallet_nonfungible::pallet::Error<T>4716 **/4717 PalletNonfungibleError: {4718 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']4719 },4720 /**4721 * Lookup621: pallet_structure::pallet::Error<T>4722 **/4723 PalletStructureError: {4724 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']4725 },4726 /**4727 * Lookup626: pallet_app_promotion::pallet::Error<T>4728 **/4729 PalletAppPromotionError: {4730 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'InsufficientStakedBalance', 'InconsistencyState']4731 },4732 /**4733 * Lookup627: pallet_foreign_assets::module::Error<T>4734 **/4735 PalletForeignAssetsModuleError: {4736 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']4737 },4738 /**4739 * Lookup628: pallet_evm::CodeMetadata4740 **/4741 PalletEvmCodeMetadata: {4742 _alias: {4743 size_: 'size',4744 hash_: 'hash'4745 },4746 size_: 'u64',4747 hash_: 'H256'4748 },4749 /**4750 * Lookup630: pallet_evm::pallet::Error<T>4751 **/4752 PalletEvmError: {4753 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']4754 },4755 /**4756 * Lookup633: fp_rpc::TransactionStatus4757 **/4758 FpRpcTransactionStatus: {4759 transactionHash: 'H256',4760 transactionIndex: 'u32',4761 from: 'H160',4762 to: 'Option<H160>',4763 contractAddress: 'Option<H160>',4764 logs: 'Vec<EthereumLog>',4765 logsBloom: 'EthbloomBloom'4766 },4767 /**4768 * Lookup635: ethbloom::Bloom4769 **/4770 EthbloomBloom: '[u8;256]',4771 /**4772 * Lookup637: ethereum::receipt::ReceiptV34773 **/4774 EthereumReceiptReceiptV3: {4775 _enum: {4776 Legacy: 'EthereumReceiptEip658ReceiptData',4777 EIP2930: 'EthereumReceiptEip658ReceiptData',4778 EIP1559: 'EthereumReceiptEip658ReceiptData'4779 }4780 },4781 /**4782 * Lookup638: ethereum::receipt::EIP658ReceiptData4783 **/4784 EthereumReceiptEip658ReceiptData: {4785 statusCode: 'u8',4786 usedGas: 'U256',4787 logsBloom: 'EthbloomBloom',4788 logs: 'Vec<EthereumLog>'4789 },4790 /**4791 * Lookup639: ethereum::block::Block<ethereum::transaction::TransactionV2>4792 **/4793 EthereumBlock: {4794 header: 'EthereumHeader',4795 transactions: 'Vec<EthereumTransactionTransactionV2>',4796 ommers: 'Vec<EthereumHeader>'4797 },4798 /**4799 * Lookup640: ethereum::header::Header4800 **/4801 EthereumHeader: {4802 parentHash: 'H256',4803 ommersHash: 'H256',4804 beneficiary: 'H160',4805 stateRoot: 'H256',4806 transactionsRoot: 'H256',4807 receiptsRoot: 'H256',4808 logsBloom: 'EthbloomBloom',4809 difficulty: 'U256',4810 number: 'U256',4811 gasLimit: 'U256',4812 gasUsed: 'U256',4813 timestamp: 'u64',4814 extraData: 'Bytes',4815 mixHash: 'H256',4816 nonce: 'EthereumTypesHashH64'4817 },4818 /**4819 * Lookup641: ethereum_types::hash::H644820 **/4821 EthereumTypesHashH64: '[u8;8]',4822 /**4823 * Lookup646: pallet_ethereum::pallet::Error<T>4824 **/4825 PalletEthereumError: {4826 _enum: ['InvalidSignature', 'PreLogExists']4827 },4828 /**4829 * Lookup647: pallet_evm_coder_substrate::pallet::Error<T>4830 **/4831 PalletEvmCoderSubstrateError: {4832 _enum: ['OutOfGas', 'OutOfFund']4833 },4834 /**4835 * Lookup648: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>4836 **/4837 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {4838 _enum: {4839 Disabled: 'Null',4840 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',4841 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'4842 }4843 },4844 /**4845 * Lookup649: pallet_evm_contract_helpers::SponsoringModeT4846 **/4847 PalletEvmContractHelpersSponsoringModeT: {4848 _enum: ['Disabled', 'Allowlisted', 'Generous']4849 },4850 /**4851 * Lookup655: pallet_evm_contract_helpers::pallet::Error<T>4852 **/4853 PalletEvmContractHelpersError: {4854 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']4855 },4856 /**4857 * Lookup656: pallet_evm_migration::pallet::Error<T>4858 **/4859 PalletEvmMigrationError: {4860 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']4861 },4862 /**4863 * Lookup657: pallet_maintenance::pallet::Error<T>4864 **/4865 PalletMaintenanceError: 'Null',4866 /**4867 * Lookup658: pallet_test_utils::pallet::Error<T>4868 **/4869 PalletTestUtilsError: {4870 _enum: ['TestPalletDisabled', 'TriggerRollback']4871 },4872 /**4873 * Lookup660: sp_runtime::MultiSignature4874 **/4875 SpRuntimeMultiSignature: {4876 _enum: {4877 Ed25519: 'SpCoreEd25519Signature',4878 Sr25519: 'SpCoreSr25519Signature',4879 Ecdsa: 'SpCoreEcdsaSignature'4880 }4881 },4882 /**4883 * Lookup661: sp_core::ed25519::Signature4884 **/4885 SpCoreEd25519Signature: '[u8;64]',4886 /**4887 * Lookup663: sp_core::sr25519::Signature4888 **/4889 SpCoreSr25519Signature: '[u8;64]',4890 /**4891 * Lookup664: sp_core::ecdsa::Signature4892 **/4893 SpCoreEcdsaSignature: '[u8;65]',4894 /**4895 * Lookup667: frame_system::extensions::check_spec_version::CheckSpecVersion<T>4896 **/4897 FrameSystemExtensionsCheckSpecVersion: 'Null',4898 /**4899 * Lookup668: frame_system::extensions::check_tx_version::CheckTxVersion<T>4900 **/4901 FrameSystemExtensionsCheckTxVersion: 'Null',4902 /**4903 * Lookup669: frame_system::extensions::check_genesis::CheckGenesis<T>4904 **/4905 FrameSystemExtensionsCheckGenesis: 'Null',4906 /**4907 * Lookup672: frame_system::extensions::check_nonce::CheckNonce<T>4908 **/4909 FrameSystemExtensionsCheckNonce: 'Compact<u32>',4910 /**4911 * Lookup673: frame_system::extensions::check_weight::CheckWeight<T>4912 **/4913 FrameSystemExtensionsCheckWeight: 'Null',4914 /**4915 * Lookup674: opal_runtime::runtime_common::maintenance::CheckMaintenance4916 **/4917 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',4918 /**4919 * Lookup675: opal_runtime::runtime_common::identity::DisableIdentityCalls4920 **/4921 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',4922 /**4923 * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>4924 **/4925 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',4926 /**4927 * Lookup677: opal_runtime::Runtime4928 **/4929 OpalRuntimeRuntime: 'Null',4930 /**4931 * Lookup678: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>4932 **/4933 PalletEthereumFakeTransactionFinalizer: 'Null'4934};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;