difftreelog
test regenerate types
in: master
11 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
@@ -8,8 +8,8 @@
import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { Codec } from '@polkadot/types-codec/types';
-import type { Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, XcmV1MultiLocation } from '@polkadot/types/lookup';
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
@@ -87,23 +87,7 @@
* Number of blocks that pass between treasury balance updates due to inflation
**/
inflationBlockInterval: u32 & AugmentedConst<ApiType>;
- /**
- * Generic const
- **/
- [key: string]: Codec;
- };
- scheduler: {
- /**
- * The maximum weight that may be scheduled per block for any dispatchables of less
- * priority than `schedule::HARD_DEADLINE`.
- **/
- maximumWeight: Weight & AugmentedConst<ApiType>;
/**
- * The maximum number of scheduled calls in the queue for a single block.
- * Not strictly enforced, but used for weight estimation.
- **/
- maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
- /**
* Generic const
**/
[key: string]: Codec;
@@ -124,7 +108,7 @@
/**
* The weight of runtime database operations the runtime can invoke.
**/
- dbWeight: FrameSupportWeightsRuntimeDbWeight & AugmentedConst<ApiType>;
+ dbWeight: SpWeightsRuntimeDbWeight & AugmentedConst<ApiType>;
/**
* The designated SS58 prefix of this chain.
*
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -636,28 +636,6 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- scheduler: {
- /**
- * Failed to schedule a call
- **/
- FailedToSchedule: 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>;
- };
structure: {
/**
* While nesting, reached the breadth limit of nesting, exceeding the provided budget.
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -7,9 +7,8 @@
import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
-import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
@@ -467,28 +466,6 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
- scheduler: {
- /**
- * The call for the provided hash was not found so the task has been aborted.
- **/
- CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;
- /**
- * 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> }>;
- /**
- * Scheduled some task.
- **/
- Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
structure: {
/**
* Executed call on behalf of the token.
@@ -525,11 +502,11 @@
/**
* An extrinsic failed.
**/
- ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;
+ ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;
/**
* An extrinsic completed successfully.
**/
- ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;
+ ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;
/**
* An account was reaped.
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -6,10 +6,10 @@
import '@polkadot/api-base/types/storage';
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
-import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -665,21 +665,7 @@
* Map of a Base ID and a Part ID to an NFT in the Base collection serving as the Part.
**/
inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
- /**
- * Generic query
- **/
- [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<PalletUniqueSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
- /**
- * Lookup from identity to the block number and index of the task.
- **/
- lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
- /**
* Generic query
**/
[key: string]: QueryableStorageEntry<ApiType>;
@@ -716,7 +702,7 @@
/**
* The current weight for the block.
**/
- blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportWeightsPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;
+ blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportDispatchPerDispatchClassWeight>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Digest of the current block, also part of the block header.
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -6,10 +6,10 @@
import '@polkadot/api-base/types/submittable';
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
-import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { Bytes, Compact, Option, U256, 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, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -816,28 +816,6 @@
* - `inherit`: Optional bool.
**/
themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- scheduler: {
- /**
- * Cancel a named scheduled task.
- **/
- cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
- /**
- * 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: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
- /**
- * Schedule a named task after a delay.
- *
- * # <weight>
- * Same as [`schedule_named`](Self::schedule_named).
- * # </weight>
- **/
- 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: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountId33: AccountId33;83 AccountIdOf: AccountIdOf;84 AccountIndex: AccountIndex;85 AccountInfo: AccountInfo;86 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87 AccountInfoWithProviders: AccountInfoWithProviders;88 AccountInfoWithRefCount: AccountInfoWithRefCount;89 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91 AccountStatus: AccountStatus;92 AccountValidity: AccountValidity;93 AccountVote: AccountVote;94 AccountVoteSplit: AccountVoteSplit;95 AccountVoteStandard: AccountVoteStandard;96 ActiveEraInfo: ActiveEraInfo;97 ActiveGilt: ActiveGilt;98 ActiveGiltsTotal: ActiveGiltsTotal;99 ActiveIndex: ActiveIndex;100 ActiveRecovery: ActiveRecovery;101 Address: Address;102 AliveContractInfo: AliveContractInfo;103 AllowedSlots: AllowedSlots;104 AnySignature: AnySignature;105 ApiId: ApiId;106 ApplyExtrinsicResult: ApplyExtrinsicResult;107 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108 ApprovalFlag: ApprovalFlag;109 Approvals: Approvals;110 ArithmeticError: ArithmeticError;111 AssetApproval: AssetApproval;112 AssetApprovalKey: AssetApprovalKey;113 AssetBalance: AssetBalance;114 AssetDestroyWitness: AssetDestroyWitness;115 AssetDetails: AssetDetails;116 AssetId: AssetId;117 AssetInstance: AssetInstance;118 AssetInstanceV0: AssetInstanceV0;119 AssetInstanceV1: AssetInstanceV1;120 AssetInstanceV2: AssetInstanceV2;121 AssetMetadata: AssetMetadata;122 AssetOptions: AssetOptions;123 AssignmentId: AssignmentId;124 AssignmentKind: AssignmentKind;125 AttestedCandidate: AttestedCandidate;126 AuctionIndex: AuctionIndex;127 AuthIndex: AuthIndex;128 AuthorityDiscoveryId: AuthorityDiscoveryId;129 AuthorityId: AuthorityId;130 AuthorityIndex: AuthorityIndex;131 AuthorityList: AuthorityList;132 AuthoritySet: AuthoritySet;133 AuthoritySetChange: AuthoritySetChange;134 AuthoritySetChanges: AuthoritySetChanges;135 AuthoritySignature: AuthoritySignature;136 AuthorityWeight: AuthorityWeight;137 AvailabilityBitfield: AvailabilityBitfield;138 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139 BabeAuthorityWeight: BabeAuthorityWeight;140 BabeBlockWeight: BabeBlockWeight;141 BabeEpochConfiguration: BabeEpochConfiguration;142 BabeEquivocationProof: BabeEquivocationProof;143 BabeGenesisConfiguration: BabeGenesisConfiguration;144 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145 BabeWeight: BabeWeight;146 BackedCandidate: BackedCandidate;147 Balance: Balance;148 BalanceLock: BalanceLock;149 BalanceLockTo212: BalanceLockTo212;150 BalanceOf: BalanceOf;151 BalanceStatus: BalanceStatus;152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyCommitment: BeefyCommitment;154 BeefyId: BeefyId;155 BeefyKey: BeefyKey;156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;157 BeefyPayload: BeefyPayload;158 BeefyPayloadId: BeefyPayloadId;159 BeefySignedCommitment: BeefySignedCommitment;160 BenchmarkBatch: BenchmarkBatch;161 BenchmarkConfig: BenchmarkConfig;162 BenchmarkList: BenchmarkList;163 BenchmarkMetadata: BenchmarkMetadata;164 BenchmarkParameter: BenchmarkParameter;165 BenchmarkResult: BenchmarkResult;166 Bid: Bid;167 Bidder: Bidder;168 BidKind: BidKind;169 BitVec: BitVec;170 Block: Block;171 BlockAttestations: BlockAttestations;172 BlockHash: BlockHash;173 BlockLength: BlockLength;174 BlockNumber: BlockNumber;175 BlockNumberFor: BlockNumberFor;176 BlockNumberOf: BlockNumberOf;177 BlockStats: BlockStats;178 BlockTrace: BlockTrace;179 BlockTraceEvent: BlockTraceEvent;180 BlockTraceEventData: BlockTraceEventData;181 BlockTraceSpan: BlockTraceSpan;182 BlockV0: BlockV0;183 BlockV1: BlockV1;184 BlockV2: BlockV2;185 BlockWeights: BlockWeights;186 BodyId: BodyId;187 BodyPart: BodyPart;188 bool: bool;189 Bool: Bool;190 Bounty: Bounty;191 BountyIndex: BountyIndex;192 BountyStatus: BountyStatus;193 BountyStatusActive: BountyStatusActive;194 BountyStatusCuratorProposed: BountyStatusCuratorProposed;195 BountyStatusPendingPayout: BountyStatusPendingPayout;196 BridgedBlockHash: BridgedBlockHash;197 BridgedBlockNumber: BridgedBlockNumber;198 BridgedHeader: BridgedHeader;199 BridgeMessageId: BridgeMessageId;200 BufferedSessionChange: BufferedSessionChange;201 Bytes: Bytes;202 Call: Call;203 CallHash: CallHash;204 CallHashOf: CallHashOf;205 CallIndex: CallIndex;206 CallOrigin: CallOrigin;207 CandidateCommitments: CandidateCommitments;208 CandidateDescriptor: CandidateDescriptor;209 CandidateEvent: CandidateEvent;210 CandidateHash: CandidateHash;211 CandidateInfo: CandidateInfo;212 CandidatePendingAvailability: CandidatePendingAvailability;213 CandidateReceipt: CandidateReceipt;214 ChainId: ChainId;215 ChainProperties: ChainProperties;216 ChainType: ChainType;217 ChangesTrieConfiguration: ChangesTrieConfiguration;218 ChangesTrieSignal: ChangesTrieSignal;219 CheckInherentsResult: CheckInherentsResult;220 ClassDetails: ClassDetails;221 ClassId: ClassId;222 ClassMetadata: ClassMetadata;223 CodecHash: CodecHash;224 CodeHash: CodeHash;225 CodeSource: CodeSource;226 CodeUploadRequest: CodeUploadRequest;227 CodeUploadResult: CodeUploadResult;228 CodeUploadResultValue: CodeUploadResultValue;229 CollationInfo: CollationInfo;230 CollationInfoV1: CollationInfoV1;231 CollatorId: CollatorId;232 CollatorSignature: CollatorSignature;233 CollectiveOrigin: CollectiveOrigin;234 CommittedCandidateReceipt: CommittedCandidateReceipt;235 CompactAssignments: CompactAssignments;236 CompactAssignmentsTo257: CompactAssignmentsTo257;237 CompactAssignmentsTo265: CompactAssignmentsTo265;238 CompactAssignmentsWith16: CompactAssignmentsWith16;239 CompactAssignmentsWith24: CompactAssignmentsWith24;240 CompactScore: CompactScore;241 CompactScoreCompact: CompactScoreCompact;242 ConfigData: ConfigData;243 Consensus: Consensus;244 ConsensusEngineId: ConsensusEngineId;245 ConsumedWeight: ConsumedWeight;246 ContractCallFlags: ContractCallFlags;247 ContractCallRequest: ContractCallRequest;248 ContractConstructorSpecLatest: ContractConstructorSpecLatest;249 ContractConstructorSpecV0: ContractConstructorSpecV0;250 ContractConstructorSpecV1: ContractConstructorSpecV1;251 ContractConstructorSpecV2: ContractConstructorSpecV2;252 ContractConstructorSpecV3: ContractConstructorSpecV3;253 ContractContractSpecV0: ContractContractSpecV0;254 ContractContractSpecV1: ContractContractSpecV1;255 ContractContractSpecV2: ContractContractSpecV2;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;258 ContractCryptoHasher: ContractCryptoHasher;259 ContractDiscriminant: ContractDiscriminant;260 ContractDisplayName: ContractDisplayName;261 ContractEventParamSpecLatest: ContractEventParamSpecLatest;262 ContractEventParamSpecV0: ContractEventParamSpecV0;263 ContractEventParamSpecV2: ContractEventParamSpecV2;264 ContractEventSpecLatest: ContractEventSpecLatest;265 ContractEventSpecV0: ContractEventSpecV0;266 ContractEventSpecV1: ContractEventSpecV1;267 ContractEventSpecV2: ContractEventSpecV2;268 ContractExecResult: ContractExecResult;269 ContractExecResultOk: ContractExecResultOk;270 ContractExecResultResult: ContractExecResultResult;271 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractInfo: ContractInfo;277 ContractInstantiateResult: ContractInstantiateResult;278 ContractInstantiateResultTo267: ContractInstantiateResultTo267;279 ContractInstantiateResultTo299: ContractInstantiateResultTo299;280 ContractLayoutArray: ContractLayoutArray;281 ContractLayoutCell: ContractLayoutCell;282 ContractLayoutEnum: ContractLayoutEnum;283 ContractLayoutHash: ContractLayoutHash;284 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;285 ContractLayoutKey: ContractLayoutKey;286 ContractLayoutStruct: ContractLayoutStruct;287 ContractLayoutStructField: ContractLayoutStructField;288 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;289 ContractMessageParamSpecV0: ContractMessageParamSpecV0;290 ContractMessageParamSpecV2: ContractMessageParamSpecV2;291 ContractMessageSpecLatest: ContractMessageSpecLatest;292 ContractMessageSpecV0: ContractMessageSpecV0;293 ContractMessageSpecV1: ContractMessageSpecV1;294 ContractMessageSpecV2: ContractMessageSpecV2;295 ContractMetadata: ContractMetadata;296 ContractMetadataLatest: ContractMetadataLatest;297 ContractMetadataV0: ContractMetadataV0;298 ContractMetadataV1: ContractMetadataV1;299 ContractMetadataV2: ContractMetadataV2;300 ContractMetadataV3: ContractMetadataV3;301 ContractMetadataV4: ContractMetadataV4;302 ContractProject: ContractProject;303 ContractProjectContract: ContractProjectContract;304 ContractProjectInfo: ContractProjectInfo;305 ContractProjectSource: ContractProjectSource;306 ContractProjectV0: ContractProjectV0;307 ContractReturnFlags: ContractReturnFlags;308 ContractSelector: ContractSelector;309 ContractStorageKey: ContractStorageKey;310 ContractStorageLayout: ContractStorageLayout;311 ContractTypeSpec: ContractTypeSpec;312 Conviction: Conviction;313 CoreAssignment: CoreAssignment;314 CoreIndex: CoreIndex;315 CoreOccupied: CoreOccupied;316 CoreState: CoreState;317 CrateVersion: CrateVersion;318 CreatedBlock: CreatedBlock;319 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;320 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;321 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;322 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;323 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;324 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;325 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;326 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;327 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;328 CumulusPalletXcmCall: CumulusPalletXcmCall;329 CumulusPalletXcmError: CumulusPalletXcmError;330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;331 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;332 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;333 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;334 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;335 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;336 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;337 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;338 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;339 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;340 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;341 Data: Data;342 DeferredOffenceOf: DeferredOffenceOf;343 DefunctVoter: DefunctVoter;344 DelayKind: DelayKind;345 DelayKindBest: DelayKindBest;346 Delegations: Delegations;347 DeletedContract: DeletedContract;348 DeliveredMessages: DeliveredMessages;349 DepositBalance: DepositBalance;350 DepositBalanceOf: DepositBalanceOf;351 DestroyWitness: DestroyWitness;352 Digest: Digest;353 DigestItem: DigestItem;354 DigestOf: DigestOf;355 DispatchClass: DispatchClass;356 DispatchError: DispatchError;357 DispatchErrorModule: DispatchErrorModule;358 DispatchErrorModulePre6: DispatchErrorModulePre6;359 DispatchErrorModuleU8: DispatchErrorModuleU8;360 DispatchErrorModuleU8a: DispatchErrorModuleU8a;361 DispatchErrorPre6: DispatchErrorPre6;362 DispatchErrorPre6First: DispatchErrorPre6First;363 DispatchErrorTo198: DispatchErrorTo198;364 DispatchFeePayment: DispatchFeePayment;365 DispatchInfo: DispatchInfo;366 DispatchInfoTo190: DispatchInfoTo190;367 DispatchInfoTo244: DispatchInfoTo244;368 DispatchOutcome: DispatchOutcome;369 DispatchOutcomePre6: DispatchOutcomePre6;370 DispatchResult: DispatchResult;371 DispatchResultOf: DispatchResultOf;372 DispatchResultTo198: DispatchResultTo198;373 DisputeLocation: DisputeLocation;374 DisputeResult: DisputeResult;375 DisputeState: DisputeState;376 DisputeStatement: DisputeStatement;377 DisputeStatementSet: DisputeStatementSet;378 DoubleEncodedCall: DoubleEncodedCall;379 DoubleVoteReport: DoubleVoteReport;380 DownwardMessage: DownwardMessage;381 EcdsaSignature: EcdsaSignature;382 Ed25519Signature: Ed25519Signature;383 EIP1559Transaction: EIP1559Transaction;384 EIP2930Transaction: EIP2930Transaction;385 ElectionCompute: ElectionCompute;386 ElectionPhase: ElectionPhase;387 ElectionResult: ElectionResult;388 ElectionScore: ElectionScore;389 ElectionSize: ElectionSize;390 ElectionStatus: ElectionStatus;391 EncodedFinalityProofs: EncodedFinalityProofs;392 EncodedJustification: EncodedJustification;393 Epoch: Epoch;394 EpochAuthorship: EpochAuthorship;395 Era: Era;396 EraIndex: EraIndex;397 EraPoints: EraPoints;398 EraRewardPoints: EraRewardPoints;399 EraRewards: EraRewards;400 ErrorMetadataLatest: ErrorMetadataLatest;401 ErrorMetadataV10: ErrorMetadataV10;402 ErrorMetadataV11: ErrorMetadataV11;403 ErrorMetadataV12: ErrorMetadataV12;404 ErrorMetadataV13: ErrorMetadataV13;405 ErrorMetadataV14: ErrorMetadataV14;406 ErrorMetadataV9: ErrorMetadataV9;407 EthAccessList: EthAccessList;408 EthAccessListItem: EthAccessListItem;409 EthAccount: EthAccount;410 EthAddress: EthAddress;411 EthBlock: EthBlock;412 EthBloom: EthBloom;413 EthbloomBloom: EthbloomBloom;414 EthCallRequest: EthCallRequest;415 EthereumAccountId: EthereumAccountId;416 EthereumAddress: EthereumAddress;417 EthereumBlock: EthereumBlock;418 EthereumHeader: EthereumHeader;419 EthereumLog: EthereumLog;420 EthereumLookupSource: EthereumLookupSource;421 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;422 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;423 EthereumSignature: EthereumSignature;424 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;425 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;426 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;427 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;428 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;429 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;430 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;431 EthereumTypesHashH64: EthereumTypesHashH64;432 EthFeeHistory: EthFeeHistory;433 EthFilter: EthFilter;434 EthFilterAddress: EthFilterAddress;435 EthFilterChanges: EthFilterChanges;436 EthFilterTopic: EthFilterTopic;437 EthFilterTopicEntry: EthFilterTopicEntry;438 EthFilterTopicInner: EthFilterTopicInner;439 EthHeader: EthHeader;440 EthLog: EthLog;441 EthReceipt: EthReceipt;442 EthReceiptV0: EthReceiptV0;443 EthReceiptV3: EthReceiptV3;444 EthRichBlock: EthRichBlock;445 EthRichHeader: EthRichHeader;446 EthStorageProof: EthStorageProof;447 EthSubKind: EthSubKind;448 EthSubParams: EthSubParams;449 EthSubResult: EthSubResult;450 EthSyncInfo: EthSyncInfo;451 EthSyncStatus: EthSyncStatus;452 EthTransaction: EthTransaction;453 EthTransactionAction: EthTransactionAction;454 EthTransactionCondition: EthTransactionCondition;455 EthTransactionRequest: EthTransactionRequest;456 EthTransactionSignature: EthTransactionSignature;457 EthTransactionStatus: EthTransactionStatus;458 EthWork: EthWork;459 Event: Event;460 EventId: EventId;461 EventIndex: EventIndex;462 EventMetadataLatest: EventMetadataLatest;463 EventMetadataV10: EventMetadataV10;464 EventMetadataV11: EventMetadataV11;465 EventMetadataV12: EventMetadataV12;466 EventMetadataV13: EventMetadataV13;467 EventMetadataV14: EventMetadataV14;468 EventMetadataV9: EventMetadataV9;469 EventRecord: EventRecord;470 EvmAccount: EvmAccount;471 EvmCallInfo: EvmCallInfo;472 EvmCoreErrorExitError: EvmCoreErrorExitError;473 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;474 EvmCoreErrorExitReason: EvmCoreErrorExitReason;475 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;476 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;477 EvmCreateInfo: EvmCreateInfo;478 EvmLog: EvmLog;479 EvmVicinity: EvmVicinity;480 ExecReturnValue: ExecReturnValue;481 ExitError: ExitError;482 ExitFatal: ExitFatal;483 ExitReason: ExitReason;484 ExitRevert: ExitRevert;485 ExitSucceed: ExitSucceed;486 ExplicitDisputeStatement: ExplicitDisputeStatement;487 Exposure: Exposure;488 ExtendedBalance: ExtendedBalance;489 Extrinsic: Extrinsic;490 ExtrinsicEra: ExtrinsicEra;491 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;492 ExtrinsicMetadataV11: ExtrinsicMetadataV11;493 ExtrinsicMetadataV12: ExtrinsicMetadataV12;494 ExtrinsicMetadataV13: ExtrinsicMetadataV13;495 ExtrinsicMetadataV14: ExtrinsicMetadataV14;496 ExtrinsicOrHash: ExtrinsicOrHash;497 ExtrinsicPayload: ExtrinsicPayload;498 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;499 ExtrinsicPayloadV4: ExtrinsicPayloadV4;500 ExtrinsicSignature: ExtrinsicSignature;501 ExtrinsicSignatureV4: ExtrinsicSignatureV4;502 ExtrinsicStatus: ExtrinsicStatus;503 ExtrinsicsWeight: ExtrinsicsWeight;504 ExtrinsicUnknown: ExtrinsicUnknown;505 ExtrinsicV4: ExtrinsicV4;506 f32: f32;507 F32: F32;508 f64: f64;509 F64: F64;510 FeeDetails: FeeDetails;511 Fixed128: Fixed128;512 Fixed64: Fixed64;513 FixedI128: FixedI128;514 FixedI64: FixedI64;515 FixedU128: FixedU128;516 FixedU64: FixedU64;517 Forcing: Forcing;518 ForkTreePendingChange: ForkTreePendingChange;519 ForkTreePendingChangeNode: ForkTreePendingChangeNode;520 FpRpcTransactionStatus: FpRpcTransactionStatus;521 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;522 FrameSupportPalletId: FrameSupportPalletId;523 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;524 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;525 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;526 FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;527 FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;528 FrameSupportWeightsPays: FrameSupportWeightsPays;529 FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;530 FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;531 FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;532 FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;533 FrameSystemAccountInfo: FrameSystemAccountInfo;534 FrameSystemCall: FrameSystemCall;535 FrameSystemError: FrameSystemError;536 FrameSystemEvent: FrameSystemEvent;537 FrameSystemEventRecord: FrameSystemEventRecord;538 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;539 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;540 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;541 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;542 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;543 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;544 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;545 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;546 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;547 FrameSystemPhase: FrameSystemPhase;548 FullIdentification: FullIdentification;549 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;550 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;551 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;552 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;553 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;554 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;555 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;556 FunctionMetadataLatest: FunctionMetadataLatest;557 FunctionMetadataV10: FunctionMetadataV10;558 FunctionMetadataV11: FunctionMetadataV11;559 FunctionMetadataV12: FunctionMetadataV12;560 FunctionMetadataV13: FunctionMetadataV13;561 FunctionMetadataV14: FunctionMetadataV14;562 FunctionMetadataV9: FunctionMetadataV9;563 FundIndex: FundIndex;564 FundInfo: FundInfo;565 Fungibility: Fungibility;566 FungibilityV0: FungibilityV0;567 FungibilityV1: FungibilityV1;568 FungibilityV2: FungibilityV2;569 Gas: Gas;570 GiltBid: GiltBid;571 GlobalValidationData: GlobalValidationData;572 GlobalValidationSchedule: GlobalValidationSchedule;573 GrandpaCommit: GrandpaCommit;574 GrandpaEquivocation: GrandpaEquivocation;575 GrandpaEquivocationProof: GrandpaEquivocationProof;576 GrandpaEquivocationValue: GrandpaEquivocationValue;577 GrandpaJustification: GrandpaJustification;578 GrandpaPrecommit: GrandpaPrecommit;579 GrandpaPrevote: GrandpaPrevote;580 GrandpaSignedPrecommit: GrandpaSignedPrecommit;581 GroupIndex: GroupIndex;582 GroupRotationInfo: GroupRotationInfo;583 H1024: H1024;584 H128: H128;585 H160: H160;586 H2048: H2048;587 H256: H256;588 H32: H32;589 H512: H512;590 H64: H64;591 Hash: Hash;592 HeadData: HeadData;593 Header: Header;594 HeaderPartial: HeaderPartial;595 Health: Health;596 Heartbeat: Heartbeat;597 HeartbeatTo244: HeartbeatTo244;598 HostConfiguration: HostConfiguration;599 HostFnWeights: HostFnWeights;600 HostFnWeightsTo264: HostFnWeightsTo264;601 HrmpChannel: HrmpChannel;602 HrmpChannelId: HrmpChannelId;603 HrmpOpenChannelRequest: HrmpOpenChannelRequest;604 i128: i128;605 I128: I128;606 i16: i16;607 I16: I16;608 i256: i256;609 I256: I256;610 i32: i32;611 I32: I32;612 I32F32: I32F32;613 i64: i64;614 I64: I64;615 i8: i8;616 I8: I8;617 IdentificationTuple: IdentificationTuple;618 IdentityFields: IdentityFields;619 IdentityInfo: IdentityInfo;620 IdentityInfoAdditional: IdentityInfoAdditional;621 IdentityInfoTo198: IdentityInfoTo198;622 IdentityJudgement: IdentityJudgement;623 ImmortalEra: ImmortalEra;624 ImportedAux: ImportedAux;625 InboundDownwardMessage: InboundDownwardMessage;626 InboundHrmpMessage: InboundHrmpMessage;627 InboundHrmpMessages: InboundHrmpMessages;628 InboundLaneData: InboundLaneData;629 InboundRelayer: InboundRelayer;630 InboundStatus: InboundStatus;631 IncludedBlocks: IncludedBlocks;632 InclusionFee: InclusionFee;633 IncomingParachain: IncomingParachain;634 IncomingParachainDeploy: IncomingParachainDeploy;635 IncomingParachainFixed: IncomingParachainFixed;636 Index: Index;637 IndicesLookupSource: IndicesLookupSource;638 IndividualExposure: IndividualExposure;639 InherentData: InherentData;640 InherentIdentifier: InherentIdentifier;641 InitializationData: InitializationData;642 InstanceDetails: InstanceDetails;643 InstanceId: InstanceId;644 InstanceMetadata: InstanceMetadata;645 InstantiateRequest: InstantiateRequest;646 InstantiateRequestV1: InstantiateRequestV1;647 InstantiateRequestV2: InstantiateRequestV2;648 InstantiateReturnValue: InstantiateReturnValue;649 InstantiateReturnValueOk: InstantiateReturnValueOk;650 InstantiateReturnValueTo267: InstantiateReturnValueTo267;651 InstructionV2: InstructionV2;652 InstructionWeights: InstructionWeights;653 InteriorMultiLocation: InteriorMultiLocation;654 InvalidDisputeStatementKind: InvalidDisputeStatementKind;655 InvalidTransaction: InvalidTransaction;656 Json: Json;657 Junction: Junction;658 Junctions: Junctions;659 JunctionsV1: JunctionsV1;660 JunctionsV2: JunctionsV2;661 JunctionV0: JunctionV0;662 JunctionV1: JunctionV1;663 JunctionV2: JunctionV2;664 Justification: Justification;665 JustificationNotification: JustificationNotification;666 Justifications: Justifications;667 Key: Key;668 KeyOwnerProof: KeyOwnerProof;669 Keys: Keys;670 KeyType: KeyType;671 KeyTypeId: KeyTypeId;672 KeyValue: KeyValue;673 KeyValueOption: KeyValueOption;674 Kind: Kind;675 LaneId: LaneId;676 LastContribution: LastContribution;677 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;678 LeasePeriod: LeasePeriod;679 LeasePeriodOf: LeasePeriodOf;680 LegacyTransaction: LegacyTransaction;681 Limits: Limits;682 LimitsTo264: LimitsTo264;683 LocalValidationData: LocalValidationData;684 LockIdentifier: LockIdentifier;685 LookupSource: LookupSource;686 LookupTarget: LookupTarget;687 LotteryConfig: LotteryConfig;688 MaybeRandomness: MaybeRandomness;689 MaybeVrf: MaybeVrf;690 MemberCount: MemberCount;691 MembershipProof: MembershipProof;692 MessageData: MessageData;693 MessageId: MessageId;694 MessageIngestionType: MessageIngestionType;695 MessageKey: MessageKey;696 MessageNonce: MessageNonce;697 MessageQueueChain: MessageQueueChain;698 MessagesDeliveryProofOf: MessagesDeliveryProofOf;699 MessagesProofOf: MessagesProofOf;700 MessagingStateSnapshot: MessagingStateSnapshot;701 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;702 MetadataAll: MetadataAll;703 MetadataLatest: MetadataLatest;704 MetadataV10: MetadataV10;705 MetadataV11: MetadataV11;706 MetadataV12: MetadataV12;707 MetadataV13: MetadataV13;708 MetadataV14: MetadataV14;709 MetadataV9: MetadataV9;710 MigrationStatusResult: MigrationStatusResult;711 MmrBatchProof: MmrBatchProof;712 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;713 MmrError: MmrError;714 MmrLeafBatchProof: MmrLeafBatchProof;715 MmrLeafIndex: MmrLeafIndex;716 MmrLeafProof: MmrLeafProof;717 MmrNodeIndex: MmrNodeIndex;718 MmrProof: MmrProof;719 MmrRootHash: MmrRootHash;720 ModuleConstantMetadataV10: ModuleConstantMetadataV10;721 ModuleConstantMetadataV11: ModuleConstantMetadataV11;722 ModuleConstantMetadataV12: ModuleConstantMetadataV12;723 ModuleConstantMetadataV13: ModuleConstantMetadataV13;724 ModuleConstantMetadataV9: ModuleConstantMetadataV9;725 ModuleId: ModuleId;726 ModuleMetadataV10: ModuleMetadataV10;727 ModuleMetadataV11: ModuleMetadataV11;728 ModuleMetadataV12: ModuleMetadataV12;729 ModuleMetadataV13: ModuleMetadataV13;730 ModuleMetadataV9: ModuleMetadataV9;731 Moment: Moment;732 MomentOf: MomentOf;733 MoreAttestations: MoreAttestations;734 MortalEra: MortalEra;735 MultiAddress: MultiAddress;736 MultiAsset: MultiAsset;737 MultiAssetFilter: MultiAssetFilter;738 MultiAssetFilterV1: MultiAssetFilterV1;739 MultiAssetFilterV2: MultiAssetFilterV2;740 MultiAssets: MultiAssets;741 MultiAssetsV1: MultiAssetsV1;742 MultiAssetsV2: MultiAssetsV2;743 MultiAssetV0: MultiAssetV0;744 MultiAssetV1: MultiAssetV1;745 MultiAssetV2: MultiAssetV2;746 MultiDisputeStatementSet: MultiDisputeStatementSet;747 MultiLocation: MultiLocation;748 MultiLocationV0: MultiLocationV0;749 MultiLocationV1: MultiLocationV1;750 MultiLocationV2: MultiLocationV2;751 Multiplier: Multiplier;752 Multisig: Multisig;753 MultiSignature: MultiSignature;754 MultiSigner: MultiSigner;755 NetworkId: NetworkId;756 NetworkState: NetworkState;757 NetworkStatePeerset: NetworkStatePeerset;758 NetworkStatePeersetInfo: NetworkStatePeersetInfo;759 NewBidder: NewBidder;760 NextAuthority: NextAuthority;761 NextConfigDescriptor: NextConfigDescriptor;762 NextConfigDescriptorV1: NextConfigDescriptorV1;763 NodeRole: NodeRole;764 Nominations: Nominations;765 NominatorIndex: NominatorIndex;766 NominatorIndexCompact: NominatorIndexCompact;767 NotConnectedPeer: NotConnectedPeer;768 NpApiError: NpApiError;769 Null: Null;770 OccupiedCore: OccupiedCore;771 OccupiedCoreAssumption: OccupiedCoreAssumption;772 OffchainAccuracy: OffchainAccuracy;773 OffchainAccuracyCompact: OffchainAccuracyCompact;774 OffenceDetails: OffenceDetails;775 Offender: Offender;776 OldV1SessionInfo: OldV1SessionInfo;777 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;778 OpalRuntimeRuntime: OpalRuntimeRuntime;779 OpaqueCall: OpaqueCall;780 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;781 OpaqueMetadata: OpaqueMetadata;782 OpaqueMultiaddr: OpaqueMultiaddr;783 OpaqueNetworkState: OpaqueNetworkState;784 OpaquePeerId: OpaquePeerId;785 OpaqueTimeSlot: OpaqueTimeSlot;786 OpenTip: OpenTip;787 OpenTipFinderTo225: OpenTipFinderTo225;788 OpenTipTip: OpenTipTip;789 OpenTipTo225: OpenTipTo225;790 OperatingMode: OperatingMode;791 OptionBool: OptionBool;792 Origin: Origin;793 OriginCaller: OriginCaller;794 OriginKindV0: OriginKindV0;795 OriginKindV1: OriginKindV1;796 OriginKindV2: OriginKindV2;797 OrmlTokensAccountData: OrmlTokensAccountData;798 OrmlTokensBalanceLock: OrmlTokensBalanceLock;799 OrmlTokensModuleCall: OrmlTokensModuleCall;800 OrmlTokensModuleError: OrmlTokensModuleError;801 OrmlTokensModuleEvent: OrmlTokensModuleEvent;802 OrmlTokensReserveData: OrmlTokensReserveData;803 OrmlVestingModuleCall: OrmlVestingModuleCall;804 OrmlVestingModuleError: OrmlVestingModuleError;805 OrmlVestingModuleEvent: OrmlVestingModuleEvent;806 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;807 OrmlXtokensModuleCall: OrmlXtokensModuleCall;808 OrmlXtokensModuleError: OrmlXtokensModuleError;809 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;810 OutboundHrmpMessage: OutboundHrmpMessage;811 OutboundLaneData: OutboundLaneData;812 OutboundMessageFee: OutboundMessageFee;813 OutboundPayload: OutboundPayload;814 OutboundStatus: OutboundStatus;815 Outcome: Outcome;816 OverweightIndex: OverweightIndex;817 Owner: Owner;818 PageCounter: PageCounter;819 PageIndexData: PageIndexData;820 PalletAppPromotionCall: PalletAppPromotionCall;821 PalletAppPromotionError: PalletAppPromotionError;822 PalletAppPromotionEvent: PalletAppPromotionEvent;823 PalletBalancesAccountData: PalletBalancesAccountData;824 PalletBalancesBalanceLock: PalletBalancesBalanceLock;825 PalletBalancesCall: PalletBalancesCall;826 PalletBalancesError: PalletBalancesError;827 PalletBalancesEvent: PalletBalancesEvent;828 PalletBalancesReasons: PalletBalancesReasons;829 PalletBalancesReleases: PalletBalancesReleases;830 PalletBalancesReserveData: PalletBalancesReserveData;831 PalletCallMetadataLatest: PalletCallMetadataLatest;832 PalletCallMetadataV14: PalletCallMetadataV14;833 PalletCommonError: PalletCommonError;834 PalletCommonEvent: PalletCommonEvent;835 PalletConfigurationCall: PalletConfigurationCall;836 PalletConstantMetadataLatest: PalletConstantMetadataLatest;837 PalletConstantMetadataV14: PalletConstantMetadataV14;838 PalletErrorMetadataLatest: PalletErrorMetadataLatest;839 PalletErrorMetadataV14: PalletErrorMetadataV14;840 PalletEthereumCall: PalletEthereumCall;841 PalletEthereumError: PalletEthereumError;842 PalletEthereumEvent: PalletEthereumEvent;843 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;844 PalletEthereumRawOrigin: PalletEthereumRawOrigin;845 PalletEventMetadataLatest: PalletEventMetadataLatest;846 PalletEventMetadataV14: PalletEventMetadataV14;847 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;848 PalletEvmCall: PalletEvmCall;849 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;850 PalletEvmContractHelpersError: PalletEvmContractHelpersError;851 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;852 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;853 PalletEvmError: PalletEvmError;854 PalletEvmEvent: PalletEvmEvent;855 PalletEvmMigrationCall: PalletEvmMigrationCall;856 PalletEvmMigrationError: PalletEvmMigrationError;857 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;858 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;859 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;860 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;861 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;862 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;863 PalletFungibleError: PalletFungibleError;864 PalletId: PalletId;865 PalletInflationCall: PalletInflationCall;866 PalletMetadataLatest: PalletMetadataLatest;867 PalletMetadataV14: PalletMetadataV14;868 PalletNonfungibleError: PalletNonfungibleError;869 PalletNonfungibleItemData: PalletNonfungibleItemData;870 PalletRefungibleError: PalletRefungibleError;871 PalletRefungibleItemData: PalletRefungibleItemData;872 PalletRmrkCoreCall: PalletRmrkCoreCall;873 PalletRmrkCoreError: PalletRmrkCoreError;874 PalletRmrkCoreEvent: PalletRmrkCoreEvent;875 PalletRmrkEquipCall: PalletRmrkEquipCall;876 PalletRmrkEquipError: PalletRmrkEquipError;877 PalletRmrkEquipEvent: PalletRmrkEquipEvent;878 PalletsOrigin: PalletsOrigin;879 PalletStorageMetadataLatest: PalletStorageMetadataLatest;880 PalletStorageMetadataV14: PalletStorageMetadataV14;881 PalletStructureCall: PalletStructureCall;882 PalletStructureError: PalletStructureError;883 PalletStructureEvent: PalletStructureEvent;884 PalletSudoCall: PalletSudoCall;885 PalletSudoError: PalletSudoError;886 PalletSudoEvent: PalletSudoEvent;887 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;888 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;889 PalletTimestampCall: PalletTimestampCall;890 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;891 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;892 PalletTreasuryCall: PalletTreasuryCall;893 PalletTreasuryError: PalletTreasuryError;894 PalletTreasuryEvent: PalletTreasuryEvent;895 PalletTreasuryProposal: PalletTreasuryProposal;896 PalletUniqueCall: PalletUniqueCall;897 PalletUniqueError: PalletUniqueError;898 PalletUniqueRawEvent: PalletUniqueRawEvent;899 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;900 PalletUniqueSchedulerError: PalletUniqueSchedulerError;901 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;902 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;903 PalletVersion: PalletVersion;904 PalletXcmCall: PalletXcmCall;905 PalletXcmError: PalletXcmError;906 PalletXcmEvent: PalletXcmEvent;907 PalletXcmOrigin: PalletXcmOrigin;908 ParachainDispatchOrigin: ParachainDispatchOrigin;909 ParachainInherentData: ParachainInherentData;910 ParachainProposal: ParachainProposal;911 ParachainsInherentData: ParachainsInherentData;912 ParaGenesisArgs: ParaGenesisArgs;913 ParaId: ParaId;914 ParaInfo: ParaInfo;915 ParaLifecycle: ParaLifecycle;916 Parameter: Parameter;917 ParaPastCodeMeta: ParaPastCodeMeta;918 ParaScheduling: ParaScheduling;919 ParathreadClaim: ParathreadClaim;920 ParathreadClaimQueue: ParathreadClaimQueue;921 ParathreadEntry: ParathreadEntry;922 ParaValidatorIndex: ParaValidatorIndex;923 Pays: Pays;924 Peer: Peer;925 PeerEndpoint: PeerEndpoint;926 PeerEndpointAddr: PeerEndpointAddr;927 PeerInfo: PeerInfo;928 PeerPing: PeerPing;929 PendingChange: PendingChange;930 PendingPause: PendingPause;931 PendingResume: PendingResume;932 Perbill: Perbill;933 Percent: Percent;934 PerDispatchClassU32: PerDispatchClassU32;935 PerDispatchClassWeight: PerDispatchClassWeight;936 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;937 Period: Period;938 Permill: Permill;939 PermissionLatest: PermissionLatest;940 PermissionsV1: PermissionsV1;941 PermissionVersions: PermissionVersions;942 Perquintill: Perquintill;943 PersistedValidationData: PersistedValidationData;944 PerU16: PerU16;945 Phantom: Phantom;946 PhantomData: PhantomData;947 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;948 Phase: Phase;949 PhragmenScore: PhragmenScore;950 Points: Points;951 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;952 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;953 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;954 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;955 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;956 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;957 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;958 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;959 PortableType: PortableType;960 PortableTypeV14: PortableTypeV14;961 Precommits: Precommits;962 PrefabWasmModule: PrefabWasmModule;963 PrefixedStorageKey: PrefixedStorageKey;964 PreimageStatus: PreimageStatus;965 PreimageStatusAvailable: PreimageStatusAvailable;966 PreRuntime: PreRuntime;967 Prevotes: Prevotes;968 Priority: Priority;969 PriorLock: PriorLock;970 PropIndex: PropIndex;971 Proposal: Proposal;972 ProposalIndex: ProposalIndex;973 ProxyAnnouncement: ProxyAnnouncement;974 ProxyDefinition: ProxyDefinition;975 ProxyState: ProxyState;976 ProxyType: ProxyType;977 PvfCheckStatement: PvfCheckStatement;978 QueryId: QueryId;979 QueryStatus: QueryStatus;980 QueueConfigData: QueueConfigData;981 QueuedParathread: QueuedParathread;982 Randomness: Randomness;983 Raw: Raw;984 RawAuraPreDigest: RawAuraPreDigest;985 RawBabePreDigest: RawBabePreDigest;986 RawBabePreDigestCompat: RawBabePreDigestCompat;987 RawBabePreDigestPrimary: RawBabePreDigestPrimary;988 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;989 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;990 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;991 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;992 RawBabePreDigestTo159: RawBabePreDigestTo159;993 RawOrigin: RawOrigin;994 RawSolution: RawSolution;995 RawSolutionTo265: RawSolutionTo265;996 RawSolutionWith16: RawSolutionWith16;997 RawSolutionWith24: RawSolutionWith24;998 RawVRFOutput: RawVRFOutput;999 ReadProof: ReadProof;1000 ReadySolution: ReadySolution;1001 Reasons: Reasons;1002 RecoveryConfig: RecoveryConfig;1003 RefCount: RefCount;1004 RefCountTo259: RefCountTo259;1005 ReferendumIndex: ReferendumIndex;1006 ReferendumInfo: ReferendumInfo;1007 ReferendumInfoFinished: ReferendumInfoFinished;1008 ReferendumInfoTo239: ReferendumInfoTo239;1009 ReferendumStatus: ReferendumStatus;1010 RegisteredParachainInfo: RegisteredParachainInfo;1011 RegistrarIndex: RegistrarIndex;1012 RegistrarInfo: RegistrarInfo;1013 Registration: Registration;1014 RegistrationJudgement: RegistrationJudgement;1015 RegistrationTo198: RegistrationTo198;1016 RelayBlockNumber: RelayBlockNumber;1017 RelayChainBlockNumber: RelayChainBlockNumber;1018 RelayChainHash: RelayChainHash;1019 RelayerId: RelayerId;1020 RelayHash: RelayHash;1021 Releases: Releases;1022 Remark: Remark;1023 Renouncing: Renouncing;1024 RentProjection: RentProjection;1025 ReplacementTimes: ReplacementTimes;1026 ReportedRoundStates: ReportedRoundStates;1027 Reporter: Reporter;1028 ReportIdOf: ReportIdOf;1029 ReserveData: ReserveData;1030 ReserveIdentifier: ReserveIdentifier;1031 Response: Response;1032 ResponseV0: ResponseV0;1033 ResponseV1: ResponseV1;1034 ResponseV2: ResponseV2;1035 ResponseV2Error: ResponseV2Error;1036 ResponseV2Result: ResponseV2Result;1037 Retriable: Retriable;1038 RewardDestination: RewardDestination;1039 RewardPoint: RewardPoint;1040 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1041 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1042 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1043 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1044 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1045 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1046 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1047 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1048 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1049 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1050 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1051 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1052 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1053 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1054 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1055 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1056 RmrkTraitsTheme: RmrkTraitsTheme;1057 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1058 RoundSnapshot: RoundSnapshot;1059 RoundState: RoundState;1060 RpcMethods: RpcMethods;1061 RuntimeDbWeight: RuntimeDbWeight;1062 RuntimeDispatchInfo: RuntimeDispatchInfo;1063 RuntimeVersion: RuntimeVersion;1064 RuntimeVersionApi: RuntimeVersionApi;1065 RuntimeVersionPartial: RuntimeVersionPartial;1066 RuntimeVersionPre3: RuntimeVersionPre3;1067 RuntimeVersionPre4: RuntimeVersionPre4;1068 Schedule: Schedule;1069 Scheduled: Scheduled;1070 ScheduledCore: ScheduledCore;1071 ScheduledTo254: ScheduledTo254;1072 SchedulePeriod: SchedulePeriod;1073 SchedulePriority: SchedulePriority;1074 ScheduleTo212: ScheduleTo212;1075 ScheduleTo258: ScheduleTo258;1076 ScheduleTo264: ScheduleTo264;1077 Scheduling: Scheduling;1078 ScrapedOnChainVotes: ScrapedOnChainVotes;1079 Seal: Seal;1080 SealV0: SealV0;1081 SeatHolder: SeatHolder;1082 SeedOf: SeedOf;1083 ServiceQuality: ServiceQuality;1084 SessionIndex: SessionIndex;1085 SessionInfo: SessionInfo;1086 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1087 SessionKeys1: SessionKeys1;1088 SessionKeys10: SessionKeys10;1089 SessionKeys10B: SessionKeys10B;1090 SessionKeys2: SessionKeys2;1091 SessionKeys3: SessionKeys3;1092 SessionKeys4: SessionKeys4;1093 SessionKeys5: SessionKeys5;1094 SessionKeys6: SessionKeys6;1095 SessionKeys6B: SessionKeys6B;1096 SessionKeys7: SessionKeys7;1097 SessionKeys7B: SessionKeys7B;1098 SessionKeys8: SessionKeys8;1099 SessionKeys8B: SessionKeys8B;1100 SessionKeys9: SessionKeys9;1101 SessionKeys9B: SessionKeys9B;1102 SetId: SetId;1103 SetIndex: SetIndex;1104 Si0Field: Si0Field;1105 Si0LookupTypeId: Si0LookupTypeId;1106 Si0Path: Si0Path;1107 Si0Type: Si0Type;1108 Si0TypeDef: Si0TypeDef;1109 Si0TypeDefArray: Si0TypeDefArray;1110 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1111 Si0TypeDefCompact: Si0TypeDefCompact;1112 Si0TypeDefComposite: Si0TypeDefComposite;1113 Si0TypeDefPhantom: Si0TypeDefPhantom;1114 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1115 Si0TypeDefSequence: Si0TypeDefSequence;1116 Si0TypeDefTuple: Si0TypeDefTuple;1117 Si0TypeDefVariant: Si0TypeDefVariant;1118 Si0TypeParameter: Si0TypeParameter;1119 Si0Variant: Si0Variant;1120 Si1Field: Si1Field;1121 Si1LookupTypeId: Si1LookupTypeId;1122 Si1Path: Si1Path;1123 Si1Type: Si1Type;1124 Si1TypeDef: Si1TypeDef;1125 Si1TypeDefArray: Si1TypeDefArray;1126 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1127 Si1TypeDefCompact: Si1TypeDefCompact;1128 Si1TypeDefComposite: Si1TypeDefComposite;1129 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1130 Si1TypeDefSequence: Si1TypeDefSequence;1131 Si1TypeDefTuple: Si1TypeDefTuple;1132 Si1TypeDefVariant: Si1TypeDefVariant;1133 Si1TypeParameter: Si1TypeParameter;1134 Si1Variant: Si1Variant;1135 SiField: SiField;1136 Signature: Signature;1137 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1138 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1139 SignedBlock: SignedBlock;1140 SignedBlockWithJustification: SignedBlockWithJustification;1141 SignedBlockWithJustifications: SignedBlockWithJustifications;1142 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1143 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1144 SignedSubmission: SignedSubmission;1145 SignedSubmissionOf: SignedSubmissionOf;1146 SignedSubmissionTo276: SignedSubmissionTo276;1147 SignerPayload: SignerPayload;1148 SigningContext: SigningContext;1149 SiLookupTypeId: SiLookupTypeId;1150 SiPath: SiPath;1151 SiType: SiType;1152 SiTypeDef: SiTypeDef;1153 SiTypeDefArray: SiTypeDefArray;1154 SiTypeDefBitSequence: SiTypeDefBitSequence;1155 SiTypeDefCompact: SiTypeDefCompact;1156 SiTypeDefComposite: SiTypeDefComposite;1157 SiTypeDefPrimitive: SiTypeDefPrimitive;1158 SiTypeDefSequence: SiTypeDefSequence;1159 SiTypeDefTuple: SiTypeDefTuple;1160 SiTypeDefVariant: SiTypeDefVariant;1161 SiTypeParameter: SiTypeParameter;1162 SiVariant: SiVariant;1163 SlashingSpans: SlashingSpans;1164 SlashingSpansTo204: SlashingSpansTo204;1165 SlashJournalEntry: SlashJournalEntry;1166 Slot: Slot;1167 SlotDuration: SlotDuration;1168 SlotNumber: SlotNumber;1169 SlotRange: SlotRange;1170 SlotRange10: SlotRange10;1171 SocietyJudgement: SocietyJudgement;1172 SocietyVote: SocietyVote;1173 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1174 SolutionSupport: SolutionSupport;1175 SolutionSupports: SolutionSupports;1176 SpanIndex: SpanIndex;1177 SpanRecord: SpanRecord;1178 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1179 SpCoreEd25519Signature: SpCoreEd25519Signature;1180 SpCoreSr25519Signature: SpCoreSr25519Signature;1181 SpCoreVoid: SpCoreVoid;1182 SpecVersion: SpecVersion;1183 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1184 SpRuntimeDigest: SpRuntimeDigest;1185 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1186 SpRuntimeDispatchError: SpRuntimeDispatchError;1187 SpRuntimeModuleError: SpRuntimeModuleError;1188 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1189 SpRuntimeTokenError: SpRuntimeTokenError;1190 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1191 SpTrieStorageProof: SpTrieStorageProof;1192 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1193 Sr25519Signature: Sr25519Signature;1194 StakingLedger: StakingLedger;1195 StakingLedgerTo223: StakingLedgerTo223;1196 StakingLedgerTo240: StakingLedgerTo240;1197 Statement: Statement;1198 StatementKind: StatementKind;1199 StorageChangeSet: StorageChangeSet;1200 StorageData: StorageData;1201 StorageDeposit: StorageDeposit;1202 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1203 StorageEntryMetadataV10: StorageEntryMetadataV10;1204 StorageEntryMetadataV11: StorageEntryMetadataV11;1205 StorageEntryMetadataV12: StorageEntryMetadataV12;1206 StorageEntryMetadataV13: StorageEntryMetadataV13;1207 StorageEntryMetadataV14: StorageEntryMetadataV14;1208 StorageEntryMetadataV9: StorageEntryMetadataV9;1209 StorageEntryModifierLatest: StorageEntryModifierLatest;1210 StorageEntryModifierV10: StorageEntryModifierV10;1211 StorageEntryModifierV11: StorageEntryModifierV11;1212 StorageEntryModifierV12: StorageEntryModifierV12;1213 StorageEntryModifierV13: StorageEntryModifierV13;1214 StorageEntryModifierV14: StorageEntryModifierV14;1215 StorageEntryModifierV9: StorageEntryModifierV9;1216 StorageEntryTypeLatest: StorageEntryTypeLatest;1217 StorageEntryTypeV10: StorageEntryTypeV10;1218 StorageEntryTypeV11: StorageEntryTypeV11;1219 StorageEntryTypeV12: StorageEntryTypeV12;1220 StorageEntryTypeV13: StorageEntryTypeV13;1221 StorageEntryTypeV14: StorageEntryTypeV14;1222 StorageEntryTypeV9: StorageEntryTypeV9;1223 StorageHasher: StorageHasher;1224 StorageHasherV10: StorageHasherV10;1225 StorageHasherV11: StorageHasherV11;1226 StorageHasherV12: StorageHasherV12;1227 StorageHasherV13: StorageHasherV13;1228 StorageHasherV14: StorageHasherV14;1229 StorageHasherV9: StorageHasherV9;1230 StorageInfo: StorageInfo;1231 StorageKey: StorageKey;1232 StorageKind: StorageKind;1233 StorageMetadataV10: StorageMetadataV10;1234 StorageMetadataV11: StorageMetadataV11;1235 StorageMetadataV12: StorageMetadataV12;1236 StorageMetadataV13: StorageMetadataV13;1237 StorageMetadataV9: StorageMetadataV9;1238 StorageProof: StorageProof;1239 StoredPendingChange: StoredPendingChange;1240 StoredState: StoredState;1241 StrikeCount: StrikeCount;1242 SubId: SubId;1243 SubmissionIndicesOf: SubmissionIndicesOf;1244 Supports: Supports;1245 SyncState: SyncState;1246 SystemInherentData: SystemInherentData;1247 SystemOrigin: SystemOrigin;1248 Tally: Tally;1249 TaskAddress: TaskAddress;1250 TAssetBalance: TAssetBalance;1251 TAssetDepositBalance: TAssetDepositBalance;1252 Text: Text;1253 Timepoint: Timepoint;1254 TokenError: TokenError;1255 TombstoneContractInfo: TombstoneContractInfo;1256 TraceBlockResponse: TraceBlockResponse;1257 TraceError: TraceError;1258 TransactionalError: TransactionalError;1259 TransactionInfo: TransactionInfo;1260 TransactionLongevity: TransactionLongevity;1261 TransactionPriority: TransactionPriority;1262 TransactionSource: TransactionSource;1263 TransactionStorageProof: TransactionStorageProof;1264 TransactionTag: TransactionTag;1265 TransactionV0: TransactionV0;1266 TransactionV1: TransactionV1;1267 TransactionV2: TransactionV2;1268 TransactionValidity: TransactionValidity;1269 TransactionValidityError: TransactionValidityError;1270 TransientValidationData: TransientValidationData;1271 TreasuryProposal: TreasuryProposal;1272 TrieId: TrieId;1273 TrieIndex: TrieIndex;1274 Type: Type;1275 u128: u128;1276 U128: U128;1277 u16: u16;1278 U16: U16;1279 u256: u256;1280 U256: U256;1281 u32: u32;1282 U32: U32;1283 U32F32: U32F32;1284 u64: u64;1285 U64: U64;1286 u8: u8;1287 U8: U8;1288 UnappliedSlash: UnappliedSlash;1289 UnappliedSlashOther: UnappliedSlashOther;1290 UncleEntryItem: UncleEntryItem;1291 UnknownTransaction: UnknownTransaction;1292 UnlockChunk: UnlockChunk;1293 UnrewardedRelayer: UnrewardedRelayer;1294 UnrewardedRelayersState: UnrewardedRelayersState;1295 UpDataStructsAccessMode: UpDataStructsAccessMode;1296 UpDataStructsCollection: UpDataStructsCollection;1297 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1298 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1299 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1300 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1301 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1302 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1303 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1304 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1305 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1306 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1307 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1308 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1309 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1310 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1311 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1312 UpDataStructsProperties: UpDataStructsProperties;1313 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1314 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1315 UpDataStructsProperty: UpDataStructsProperty;1316 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1317 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1318 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1319 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1320 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1321 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1322 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1323 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1324 UpDataStructsTokenChild: UpDataStructsTokenChild;1325 UpDataStructsTokenData: UpDataStructsTokenData;1326 UpgradeGoAhead: UpgradeGoAhead;1327 UpgradeRestriction: UpgradeRestriction;1328 UpwardMessage: UpwardMessage;1329 usize: usize;1330 USize: USize;1331 ValidationCode: ValidationCode;1332 ValidationCodeHash: ValidationCodeHash;1333 ValidationData: ValidationData;1334 ValidationDataType: ValidationDataType;1335 ValidationFunctionParams: ValidationFunctionParams;1336 ValidatorCount: ValidatorCount;1337 ValidatorId: ValidatorId;1338 ValidatorIdOf: ValidatorIdOf;1339 ValidatorIndex: ValidatorIndex;1340 ValidatorIndexCompact: ValidatorIndexCompact;1341 ValidatorPrefs: ValidatorPrefs;1342 ValidatorPrefsTo145: ValidatorPrefsTo145;1343 ValidatorPrefsTo196: ValidatorPrefsTo196;1344 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1345 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1346 ValidatorSet: ValidatorSet;1347 ValidatorSetId: ValidatorSetId;1348 ValidatorSignature: ValidatorSignature;1349 ValidDisputeStatementKind: ValidDisputeStatementKind;1350 ValidityAttestation: ValidityAttestation;1351 ValidTransaction: ValidTransaction;1352 VecInboundHrmpMessage: VecInboundHrmpMessage;1353 VersionedMultiAsset: VersionedMultiAsset;1354 VersionedMultiAssets: VersionedMultiAssets;1355 VersionedMultiLocation: VersionedMultiLocation;1356 VersionedResponse: VersionedResponse;1357 VersionedXcm: VersionedXcm;1358 VersionMigrationStage: VersionMigrationStage;1359 VestingInfo: VestingInfo;1360 VestingSchedule: VestingSchedule;1361 Vote: Vote;1362 VoteIndex: VoteIndex;1363 Voter: Voter;1364 VoterInfo: VoterInfo;1365 Votes: Votes;1366 VotesTo230: VotesTo230;1367 VoteThreshold: VoteThreshold;1368 VoteWeight: VoteWeight;1369 Voting: Voting;1370 VotingDelegating: VotingDelegating;1371 VotingDirect: VotingDirect;1372 VotingDirectVote: VotingDirectVote;1373 VouchingStatus: VouchingStatus;1374 VrfData: VrfData;1375 VrfOutput: VrfOutput;1376 VrfProof: VrfProof;1377 Weight: Weight;1378 WeightLimitV2: WeightLimitV2;1379 WeightMultiplier: WeightMultiplier;1380 WeightPerClass: WeightPerClass;1381 WeightToFeeCoefficient: WeightToFeeCoefficient;1382 WeightV1: WeightV1;1383 WeightV2: WeightV2;1384 WildFungibility: WildFungibility;1385 WildFungibilityV0: WildFungibilityV0;1386 WildFungibilityV1: WildFungibilityV1;1387 WildFungibilityV2: WildFungibilityV2;1388 WildMultiAsset: WildMultiAsset;1389 WildMultiAssetV1: WildMultiAssetV1;1390 WildMultiAssetV2: WildMultiAssetV2;1391 WinnersData: WinnersData;1392 WinnersData10: WinnersData10;1393 WinnersDataTuple: WinnersDataTuple;1394 WinnersDataTuple10: WinnersDataTuple10;1395 WinningData: WinningData;1396 WinningData10: WinningData10;1397 WinningDataEntry: WinningDataEntry;1398 WithdrawReasons: WithdrawReasons;1399 Xcm: Xcm;1400 XcmAssetId: XcmAssetId;1401 XcmDoubleEncoded: XcmDoubleEncoded;1402 XcmError: XcmError;1403 XcmErrorV0: XcmErrorV0;1404 XcmErrorV1: XcmErrorV1;1405 XcmErrorV2: XcmErrorV2;1406 XcmOrder: XcmOrder;1407 XcmOrderV0: XcmOrderV0;1408 XcmOrderV1: XcmOrderV1;1409 XcmOrderV2: XcmOrderV2;1410 XcmOrigin: XcmOrigin;1411 XcmOriginKind: XcmOriginKind;1412 XcmpMessageFormat: XcmpMessageFormat;1413 XcmV0: XcmV0;1414 XcmV0Junction: XcmV0Junction;1415 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1416 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1417 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1418 XcmV0MultiAsset: XcmV0MultiAsset;1419 XcmV0MultiLocation: XcmV0MultiLocation;1420 XcmV0Order: XcmV0Order;1421 XcmV0OriginKind: XcmV0OriginKind;1422 XcmV0Response: XcmV0Response;1423 XcmV0Xcm: XcmV0Xcm;1424 XcmV1: XcmV1;1425 XcmV1Junction: XcmV1Junction;1426 XcmV1MultiAsset: XcmV1MultiAsset;1427 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1428 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1429 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1430 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1431 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1432 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1433 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1434 XcmV1MultiLocation: XcmV1MultiLocation;1435 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1436 XcmV1Order: XcmV1Order;1437 XcmV1Response: XcmV1Response;1438 XcmV1Xcm: XcmV1Xcm;1439 XcmV2: XcmV2;1440 XcmV2Instruction: XcmV2Instruction;1441 XcmV2Response: XcmV2Response;1442 XcmV2TraitsError: XcmV2TraitsError;1443 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1444 XcmV2WeightLimit: XcmV2WeightLimit;1445 XcmV2Xcm: XcmV2Xcm;1446 XcmVersion: XcmVersion;1447 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1448 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1449 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1450 XcmVersionedXcm: XcmVersionedXcm;1451 } // InterfaceTypes1452} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, 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, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountId33: AccountId33;83 AccountIdOf: AccountIdOf;84 AccountIndex: AccountIndex;85 AccountInfo: AccountInfo;86 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87 AccountInfoWithProviders: AccountInfoWithProviders;88 AccountInfoWithRefCount: AccountInfoWithRefCount;89 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91 AccountStatus: AccountStatus;92 AccountValidity: AccountValidity;93 AccountVote: AccountVote;94 AccountVoteSplit: AccountVoteSplit;95 AccountVoteStandard: AccountVoteStandard;96 ActiveEraInfo: ActiveEraInfo;97 ActiveGilt: ActiveGilt;98 ActiveGiltsTotal: ActiveGiltsTotal;99 ActiveIndex: ActiveIndex;100 ActiveRecovery: ActiveRecovery;101 Address: Address;102 AliveContractInfo: AliveContractInfo;103 AllowedSlots: AllowedSlots;104 AnySignature: AnySignature;105 ApiId: ApiId;106 ApplyExtrinsicResult: ApplyExtrinsicResult;107 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108 ApprovalFlag: ApprovalFlag;109 Approvals: Approvals;110 ArithmeticError: ArithmeticError;111 AssetApproval: AssetApproval;112 AssetApprovalKey: AssetApprovalKey;113 AssetBalance: AssetBalance;114 AssetDestroyWitness: AssetDestroyWitness;115 AssetDetails: AssetDetails;116 AssetId: AssetId;117 AssetInstance: AssetInstance;118 AssetInstanceV0: AssetInstanceV0;119 AssetInstanceV1: AssetInstanceV1;120 AssetInstanceV2: AssetInstanceV2;121 AssetMetadata: AssetMetadata;122 AssetOptions: AssetOptions;123 AssignmentId: AssignmentId;124 AssignmentKind: AssignmentKind;125 AttestedCandidate: AttestedCandidate;126 AuctionIndex: AuctionIndex;127 AuthIndex: AuthIndex;128 AuthorityDiscoveryId: AuthorityDiscoveryId;129 AuthorityId: AuthorityId;130 AuthorityIndex: AuthorityIndex;131 AuthorityList: AuthorityList;132 AuthoritySet: AuthoritySet;133 AuthoritySetChange: AuthoritySetChange;134 AuthoritySetChanges: AuthoritySetChanges;135 AuthoritySignature: AuthoritySignature;136 AuthorityWeight: AuthorityWeight;137 AvailabilityBitfield: AvailabilityBitfield;138 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139 BabeAuthorityWeight: BabeAuthorityWeight;140 BabeBlockWeight: BabeBlockWeight;141 BabeEpochConfiguration: BabeEpochConfiguration;142 BabeEquivocationProof: BabeEquivocationProof;143 BabeGenesisConfiguration: BabeGenesisConfiguration;144 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145 BabeWeight: BabeWeight;146 BackedCandidate: BackedCandidate;147 Balance: Balance;148 BalanceLock: BalanceLock;149 BalanceLockTo212: BalanceLockTo212;150 BalanceOf: BalanceOf;151 BalanceStatus: BalanceStatus;152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyCommitment: BeefyCommitment;154 BeefyId: BeefyId;155 BeefyKey: BeefyKey;156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;157 BeefyPayload: BeefyPayload;158 BeefyPayloadId: BeefyPayloadId;159 BeefySignedCommitment: BeefySignedCommitment;160 BenchmarkBatch: BenchmarkBatch;161 BenchmarkConfig: BenchmarkConfig;162 BenchmarkList: BenchmarkList;163 BenchmarkMetadata: BenchmarkMetadata;164 BenchmarkParameter: BenchmarkParameter;165 BenchmarkResult: BenchmarkResult;166 Bid: Bid;167 Bidder: Bidder;168 BidKind: BidKind;169 BitVec: BitVec;170 Block: Block;171 BlockAttestations: BlockAttestations;172 BlockHash: BlockHash;173 BlockLength: BlockLength;174 BlockNumber: BlockNumber;175 BlockNumberFor: BlockNumberFor;176 BlockNumberOf: BlockNumberOf;177 BlockStats: BlockStats;178 BlockTrace: BlockTrace;179 BlockTraceEvent: BlockTraceEvent;180 BlockTraceEventData: BlockTraceEventData;181 BlockTraceSpan: BlockTraceSpan;182 BlockV0: BlockV0;183 BlockV1: BlockV1;184 BlockV2: BlockV2;185 BlockWeights: BlockWeights;186 BodyId: BodyId;187 BodyPart: BodyPart;188 bool: bool;189 Bool: Bool;190 Bounty: Bounty;191 BountyIndex: BountyIndex;192 BountyStatus: BountyStatus;193 BountyStatusActive: BountyStatusActive;194 BountyStatusCuratorProposed: BountyStatusCuratorProposed;195 BountyStatusPendingPayout: BountyStatusPendingPayout;196 BridgedBlockHash: BridgedBlockHash;197 BridgedBlockNumber: BridgedBlockNumber;198 BridgedHeader: BridgedHeader;199 BridgeMessageId: BridgeMessageId;200 BufferedSessionChange: BufferedSessionChange;201 Bytes: Bytes;202 Call: Call;203 CallHash: CallHash;204 CallHashOf: CallHashOf;205 CallIndex: CallIndex;206 CallOrigin: CallOrigin;207 CandidateCommitments: CandidateCommitments;208 CandidateDescriptor: CandidateDescriptor;209 CandidateEvent: CandidateEvent;210 CandidateHash: CandidateHash;211 CandidateInfo: CandidateInfo;212 CandidatePendingAvailability: CandidatePendingAvailability;213 CandidateReceipt: CandidateReceipt;214 ChainId: ChainId;215 ChainProperties: ChainProperties;216 ChainType: ChainType;217 ChangesTrieConfiguration: ChangesTrieConfiguration;218 ChangesTrieSignal: ChangesTrieSignal;219 CheckInherentsResult: CheckInherentsResult;220 ClassDetails: ClassDetails;221 ClassId: ClassId;222 ClassMetadata: ClassMetadata;223 CodecHash: CodecHash;224 CodeHash: CodeHash;225 CodeSource: CodeSource;226 CodeUploadRequest: CodeUploadRequest;227 CodeUploadResult: CodeUploadResult;228 CodeUploadResultValue: CodeUploadResultValue;229 CollationInfo: CollationInfo;230 CollationInfoV1: CollationInfoV1;231 CollatorId: CollatorId;232 CollatorSignature: CollatorSignature;233 CollectiveOrigin: CollectiveOrigin;234 CommittedCandidateReceipt: CommittedCandidateReceipt;235 CompactAssignments: CompactAssignments;236 CompactAssignmentsTo257: CompactAssignmentsTo257;237 CompactAssignmentsTo265: CompactAssignmentsTo265;238 CompactAssignmentsWith16: CompactAssignmentsWith16;239 CompactAssignmentsWith24: CompactAssignmentsWith24;240 CompactScore: CompactScore;241 CompactScoreCompact: CompactScoreCompact;242 ConfigData: ConfigData;243 Consensus: Consensus;244 ConsensusEngineId: ConsensusEngineId;245 ConsumedWeight: ConsumedWeight;246 ContractCallFlags: ContractCallFlags;247 ContractCallRequest: ContractCallRequest;248 ContractConstructorSpecLatest: ContractConstructorSpecLatest;249 ContractConstructorSpecV0: ContractConstructorSpecV0;250 ContractConstructorSpecV1: ContractConstructorSpecV1;251 ContractConstructorSpecV2: ContractConstructorSpecV2;252 ContractConstructorSpecV3: ContractConstructorSpecV3;253 ContractContractSpecV0: ContractContractSpecV0;254 ContractContractSpecV1: ContractContractSpecV1;255 ContractContractSpecV2: ContractContractSpecV2;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;258 ContractCryptoHasher: ContractCryptoHasher;259 ContractDiscriminant: ContractDiscriminant;260 ContractDisplayName: ContractDisplayName;261 ContractEventParamSpecLatest: ContractEventParamSpecLatest;262 ContractEventParamSpecV0: ContractEventParamSpecV0;263 ContractEventParamSpecV2: ContractEventParamSpecV2;264 ContractEventSpecLatest: ContractEventSpecLatest;265 ContractEventSpecV0: ContractEventSpecV0;266 ContractEventSpecV1: ContractEventSpecV1;267 ContractEventSpecV2: ContractEventSpecV2;268 ContractExecResult: ContractExecResult;269 ContractExecResultOk: ContractExecResultOk;270 ContractExecResultResult: ContractExecResultResult;271 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractInfo: ContractInfo;277 ContractInstantiateResult: ContractInstantiateResult;278 ContractInstantiateResultTo267: ContractInstantiateResultTo267;279 ContractInstantiateResultTo299: ContractInstantiateResultTo299;280 ContractLayoutArray: ContractLayoutArray;281 ContractLayoutCell: ContractLayoutCell;282 ContractLayoutEnum: ContractLayoutEnum;283 ContractLayoutHash: ContractLayoutHash;284 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;285 ContractLayoutKey: ContractLayoutKey;286 ContractLayoutStruct: ContractLayoutStruct;287 ContractLayoutStructField: ContractLayoutStructField;288 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;289 ContractMessageParamSpecV0: ContractMessageParamSpecV0;290 ContractMessageParamSpecV2: ContractMessageParamSpecV2;291 ContractMessageSpecLatest: ContractMessageSpecLatest;292 ContractMessageSpecV0: ContractMessageSpecV0;293 ContractMessageSpecV1: ContractMessageSpecV1;294 ContractMessageSpecV2: ContractMessageSpecV2;295 ContractMetadata: ContractMetadata;296 ContractMetadataLatest: ContractMetadataLatest;297 ContractMetadataV0: ContractMetadataV0;298 ContractMetadataV1: ContractMetadataV1;299 ContractMetadataV2: ContractMetadataV2;300 ContractMetadataV3: ContractMetadataV3;301 ContractMetadataV4: ContractMetadataV4;302 ContractProject: ContractProject;303 ContractProjectContract: ContractProjectContract;304 ContractProjectInfo: ContractProjectInfo;305 ContractProjectSource: ContractProjectSource;306 ContractProjectV0: ContractProjectV0;307 ContractReturnFlags: ContractReturnFlags;308 ContractSelector: ContractSelector;309 ContractStorageKey: ContractStorageKey;310 ContractStorageLayout: ContractStorageLayout;311 ContractTypeSpec: ContractTypeSpec;312 Conviction: Conviction;313 CoreAssignment: CoreAssignment;314 CoreIndex: CoreIndex;315 CoreOccupied: CoreOccupied;316 CoreState: CoreState;317 CrateVersion: CrateVersion;318 CreatedBlock: CreatedBlock;319 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;320 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;321 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;322 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;323 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;324 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;325 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;326 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;327 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;328 CumulusPalletXcmCall: CumulusPalletXcmCall;329 CumulusPalletXcmError: CumulusPalletXcmError;330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;331 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;332 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;333 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;334 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;335 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;336 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;337 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;338 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;339 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;340 Data: Data;341 DeferredOffenceOf: DeferredOffenceOf;342 DefunctVoter: DefunctVoter;343 DelayKind: DelayKind;344 DelayKindBest: DelayKindBest;345 Delegations: Delegations;346 DeletedContract: DeletedContract;347 DeliveredMessages: DeliveredMessages;348 DepositBalance: DepositBalance;349 DepositBalanceOf: DepositBalanceOf;350 DestroyWitness: DestroyWitness;351 Digest: Digest;352 DigestItem: DigestItem;353 DigestOf: DigestOf;354 DispatchClass: DispatchClass;355 DispatchError: DispatchError;356 DispatchErrorModule: DispatchErrorModule;357 DispatchErrorModulePre6: DispatchErrorModulePre6;358 DispatchErrorModuleU8: DispatchErrorModuleU8;359 DispatchErrorModuleU8a: DispatchErrorModuleU8a;360 DispatchErrorPre6: DispatchErrorPre6;361 DispatchErrorPre6First: DispatchErrorPre6First;362 DispatchErrorTo198: DispatchErrorTo198;363 DispatchFeePayment: DispatchFeePayment;364 DispatchInfo: DispatchInfo;365 DispatchInfoTo190: DispatchInfoTo190;366 DispatchInfoTo244: DispatchInfoTo244;367 DispatchOutcome: DispatchOutcome;368 DispatchOutcomePre6: DispatchOutcomePre6;369 DispatchResult: DispatchResult;370 DispatchResultOf: DispatchResultOf;371 DispatchResultTo198: DispatchResultTo198;372 DisputeLocation: DisputeLocation;373 DisputeResult: DisputeResult;374 DisputeState: DisputeState;375 DisputeStatement: DisputeStatement;376 DisputeStatementSet: DisputeStatementSet;377 DoubleEncodedCall: DoubleEncodedCall;378 DoubleVoteReport: DoubleVoteReport;379 DownwardMessage: DownwardMessage;380 EcdsaSignature: EcdsaSignature;381 Ed25519Signature: Ed25519Signature;382 EIP1559Transaction: EIP1559Transaction;383 EIP2930Transaction: EIP2930Transaction;384 ElectionCompute: ElectionCompute;385 ElectionPhase: ElectionPhase;386 ElectionResult: ElectionResult;387 ElectionScore: ElectionScore;388 ElectionSize: ElectionSize;389 ElectionStatus: ElectionStatus;390 EncodedFinalityProofs: EncodedFinalityProofs;391 EncodedJustification: EncodedJustification;392 Epoch: Epoch;393 EpochAuthorship: EpochAuthorship;394 Era: Era;395 EraIndex: EraIndex;396 EraPoints: EraPoints;397 EraRewardPoints: EraRewardPoints;398 EraRewards: EraRewards;399 ErrorMetadataLatest: ErrorMetadataLatest;400 ErrorMetadataV10: ErrorMetadataV10;401 ErrorMetadataV11: ErrorMetadataV11;402 ErrorMetadataV12: ErrorMetadataV12;403 ErrorMetadataV13: ErrorMetadataV13;404 ErrorMetadataV14: ErrorMetadataV14;405 ErrorMetadataV9: ErrorMetadataV9;406 EthAccessList: EthAccessList;407 EthAccessListItem: EthAccessListItem;408 EthAccount: EthAccount;409 EthAddress: EthAddress;410 EthBlock: EthBlock;411 EthBloom: EthBloom;412 EthbloomBloom: EthbloomBloom;413 EthCallRequest: EthCallRequest;414 EthereumAccountId: EthereumAccountId;415 EthereumAddress: EthereumAddress;416 EthereumBlock: EthereumBlock;417 EthereumHeader: EthereumHeader;418 EthereumLog: EthereumLog;419 EthereumLookupSource: EthereumLookupSource;420 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;421 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;422 EthereumSignature: EthereumSignature;423 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;424 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;425 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;426 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;427 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;428 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;429 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;430 EthereumTypesHashH64: EthereumTypesHashH64;431 EthFeeHistory: EthFeeHistory;432 EthFilter: EthFilter;433 EthFilterAddress: EthFilterAddress;434 EthFilterChanges: EthFilterChanges;435 EthFilterTopic: EthFilterTopic;436 EthFilterTopicEntry: EthFilterTopicEntry;437 EthFilterTopicInner: EthFilterTopicInner;438 EthHeader: EthHeader;439 EthLog: EthLog;440 EthReceipt: EthReceipt;441 EthReceiptV0: EthReceiptV0;442 EthReceiptV3: EthReceiptV3;443 EthRichBlock: EthRichBlock;444 EthRichHeader: EthRichHeader;445 EthStorageProof: EthStorageProof;446 EthSubKind: EthSubKind;447 EthSubParams: EthSubParams;448 EthSubResult: EthSubResult;449 EthSyncInfo: EthSyncInfo;450 EthSyncStatus: EthSyncStatus;451 EthTransaction: EthTransaction;452 EthTransactionAction: EthTransactionAction;453 EthTransactionCondition: EthTransactionCondition;454 EthTransactionRequest: EthTransactionRequest;455 EthTransactionSignature: EthTransactionSignature;456 EthTransactionStatus: EthTransactionStatus;457 EthWork: EthWork;458 Event: Event;459 EventId: EventId;460 EventIndex: EventIndex;461 EventMetadataLatest: EventMetadataLatest;462 EventMetadataV10: EventMetadataV10;463 EventMetadataV11: EventMetadataV11;464 EventMetadataV12: EventMetadataV12;465 EventMetadataV13: EventMetadataV13;466 EventMetadataV14: EventMetadataV14;467 EventMetadataV9: EventMetadataV9;468 EventRecord: EventRecord;469 EvmAccount: EvmAccount;470 EvmCallInfo: EvmCallInfo;471 EvmCoreErrorExitError: EvmCoreErrorExitError;472 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;473 EvmCoreErrorExitReason: EvmCoreErrorExitReason;474 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;475 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;476 EvmCreateInfo: EvmCreateInfo;477 EvmLog: EvmLog;478 EvmVicinity: EvmVicinity;479 ExecReturnValue: ExecReturnValue;480 ExitError: ExitError;481 ExitFatal: ExitFatal;482 ExitReason: ExitReason;483 ExitRevert: ExitRevert;484 ExitSucceed: ExitSucceed;485 ExplicitDisputeStatement: ExplicitDisputeStatement;486 Exposure: Exposure;487 ExtendedBalance: ExtendedBalance;488 Extrinsic: Extrinsic;489 ExtrinsicEra: ExtrinsicEra;490 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;491 ExtrinsicMetadataV11: ExtrinsicMetadataV11;492 ExtrinsicMetadataV12: ExtrinsicMetadataV12;493 ExtrinsicMetadataV13: ExtrinsicMetadataV13;494 ExtrinsicMetadataV14: ExtrinsicMetadataV14;495 ExtrinsicOrHash: ExtrinsicOrHash;496 ExtrinsicPayload: ExtrinsicPayload;497 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;498 ExtrinsicPayloadV4: ExtrinsicPayloadV4;499 ExtrinsicSignature: ExtrinsicSignature;500 ExtrinsicSignatureV4: ExtrinsicSignatureV4;501 ExtrinsicStatus: ExtrinsicStatus;502 ExtrinsicsWeight: ExtrinsicsWeight;503 ExtrinsicUnknown: ExtrinsicUnknown;504 ExtrinsicV4: ExtrinsicV4;505 f32: f32;506 F32: F32;507 f64: f64;508 F64: F64;509 FeeDetails: FeeDetails;510 Fixed128: Fixed128;511 Fixed64: Fixed64;512 FixedI128: FixedI128;513 FixedI64: FixedI64;514 FixedU128: FixedU128;515 FixedU64: FixedU64;516 Forcing: Forcing;517 ForkTreePendingChange: ForkTreePendingChange;518 ForkTreePendingChangeNode: ForkTreePendingChangeNode;519 FpRpcTransactionStatus: FpRpcTransactionStatus;520 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;521 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;522 FrameSupportDispatchPays: FrameSupportDispatchPays;523 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;524 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;525 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;526 FrameSupportPalletId: FrameSupportPalletId;527 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;528 FrameSystemAccountInfo: FrameSystemAccountInfo;529 FrameSystemCall: FrameSystemCall;530 FrameSystemError: FrameSystemError;531 FrameSystemEvent: FrameSystemEvent;532 FrameSystemEventRecord: FrameSystemEventRecord;533 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;534 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;535 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;536 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;537 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;538 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;539 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;540 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;541 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;542 FrameSystemPhase: FrameSystemPhase;543 FullIdentification: FullIdentification;544 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;545 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;546 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;547 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;548 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;549 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;550 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;551 FunctionMetadataLatest: FunctionMetadataLatest;552 FunctionMetadataV10: FunctionMetadataV10;553 FunctionMetadataV11: FunctionMetadataV11;554 FunctionMetadataV12: FunctionMetadataV12;555 FunctionMetadataV13: FunctionMetadataV13;556 FunctionMetadataV14: FunctionMetadataV14;557 FunctionMetadataV9: FunctionMetadataV9;558 FundIndex: FundIndex;559 FundInfo: FundInfo;560 Fungibility: Fungibility;561 FungibilityV0: FungibilityV0;562 FungibilityV1: FungibilityV1;563 FungibilityV2: FungibilityV2;564 Gas: Gas;565 GiltBid: GiltBid;566 GlobalValidationData: GlobalValidationData;567 GlobalValidationSchedule: GlobalValidationSchedule;568 GrandpaCommit: GrandpaCommit;569 GrandpaEquivocation: GrandpaEquivocation;570 GrandpaEquivocationProof: GrandpaEquivocationProof;571 GrandpaEquivocationValue: GrandpaEquivocationValue;572 GrandpaJustification: GrandpaJustification;573 GrandpaPrecommit: GrandpaPrecommit;574 GrandpaPrevote: GrandpaPrevote;575 GrandpaSignedPrecommit: GrandpaSignedPrecommit;576 GroupIndex: GroupIndex;577 GroupRotationInfo: GroupRotationInfo;578 H1024: H1024;579 H128: H128;580 H160: H160;581 H2048: H2048;582 H256: H256;583 H32: H32;584 H512: H512;585 H64: H64;586 Hash: Hash;587 HeadData: HeadData;588 Header: Header;589 HeaderPartial: HeaderPartial;590 Health: Health;591 Heartbeat: Heartbeat;592 HeartbeatTo244: HeartbeatTo244;593 HostConfiguration: HostConfiguration;594 HostFnWeights: HostFnWeights;595 HostFnWeightsTo264: HostFnWeightsTo264;596 HrmpChannel: HrmpChannel;597 HrmpChannelId: HrmpChannelId;598 HrmpOpenChannelRequest: HrmpOpenChannelRequest;599 i128: i128;600 I128: I128;601 i16: i16;602 I16: I16;603 i256: i256;604 I256: I256;605 i32: i32;606 I32: I32;607 I32F32: I32F32;608 i64: i64;609 I64: I64;610 i8: i8;611 I8: I8;612 IdentificationTuple: IdentificationTuple;613 IdentityFields: IdentityFields;614 IdentityInfo: IdentityInfo;615 IdentityInfoAdditional: IdentityInfoAdditional;616 IdentityInfoTo198: IdentityInfoTo198;617 IdentityJudgement: IdentityJudgement;618 ImmortalEra: ImmortalEra;619 ImportedAux: ImportedAux;620 InboundDownwardMessage: InboundDownwardMessage;621 InboundHrmpMessage: InboundHrmpMessage;622 InboundHrmpMessages: InboundHrmpMessages;623 InboundLaneData: InboundLaneData;624 InboundRelayer: InboundRelayer;625 InboundStatus: InboundStatus;626 IncludedBlocks: IncludedBlocks;627 InclusionFee: InclusionFee;628 IncomingParachain: IncomingParachain;629 IncomingParachainDeploy: IncomingParachainDeploy;630 IncomingParachainFixed: IncomingParachainFixed;631 Index: Index;632 IndicesLookupSource: IndicesLookupSource;633 IndividualExposure: IndividualExposure;634 InherentData: InherentData;635 InherentIdentifier: InherentIdentifier;636 InitializationData: InitializationData;637 InstanceDetails: InstanceDetails;638 InstanceId: InstanceId;639 InstanceMetadata: InstanceMetadata;640 InstantiateRequest: InstantiateRequest;641 InstantiateRequestV1: InstantiateRequestV1;642 InstantiateRequestV2: InstantiateRequestV2;643 InstantiateReturnValue: InstantiateReturnValue;644 InstantiateReturnValueOk: InstantiateReturnValueOk;645 InstantiateReturnValueTo267: InstantiateReturnValueTo267;646 InstructionV2: InstructionV2;647 InstructionWeights: InstructionWeights;648 InteriorMultiLocation: InteriorMultiLocation;649 InvalidDisputeStatementKind: InvalidDisputeStatementKind;650 InvalidTransaction: InvalidTransaction;651 Json: Json;652 Junction: Junction;653 Junctions: Junctions;654 JunctionsV1: JunctionsV1;655 JunctionsV2: JunctionsV2;656 JunctionV0: JunctionV0;657 JunctionV1: JunctionV1;658 JunctionV2: JunctionV2;659 Justification: Justification;660 JustificationNotification: JustificationNotification;661 Justifications: Justifications;662 Key: Key;663 KeyOwnerProof: KeyOwnerProof;664 Keys: Keys;665 KeyType: KeyType;666 KeyTypeId: KeyTypeId;667 KeyValue: KeyValue;668 KeyValueOption: KeyValueOption;669 Kind: Kind;670 LaneId: LaneId;671 LastContribution: LastContribution;672 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;673 LeasePeriod: LeasePeriod;674 LeasePeriodOf: LeasePeriodOf;675 LegacyTransaction: LegacyTransaction;676 Limits: Limits;677 LimitsTo264: LimitsTo264;678 LocalValidationData: LocalValidationData;679 LockIdentifier: LockIdentifier;680 LookupSource: LookupSource;681 LookupTarget: LookupTarget;682 LotteryConfig: LotteryConfig;683 MaybeRandomness: MaybeRandomness;684 MaybeVrf: MaybeVrf;685 MemberCount: MemberCount;686 MembershipProof: MembershipProof;687 MessageData: MessageData;688 MessageId: MessageId;689 MessageIngestionType: MessageIngestionType;690 MessageKey: MessageKey;691 MessageNonce: MessageNonce;692 MessageQueueChain: MessageQueueChain;693 MessagesDeliveryProofOf: MessagesDeliveryProofOf;694 MessagesProofOf: MessagesProofOf;695 MessagingStateSnapshot: MessagingStateSnapshot;696 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;697 MetadataAll: MetadataAll;698 MetadataLatest: MetadataLatest;699 MetadataV10: MetadataV10;700 MetadataV11: MetadataV11;701 MetadataV12: MetadataV12;702 MetadataV13: MetadataV13;703 MetadataV14: MetadataV14;704 MetadataV9: MetadataV9;705 MigrationStatusResult: MigrationStatusResult;706 MmrBatchProof: MmrBatchProof;707 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;708 MmrError: MmrError;709 MmrLeafBatchProof: MmrLeafBatchProof;710 MmrLeafIndex: MmrLeafIndex;711 MmrLeafProof: MmrLeafProof;712 MmrNodeIndex: MmrNodeIndex;713 MmrProof: MmrProof;714 MmrRootHash: MmrRootHash;715 ModuleConstantMetadataV10: ModuleConstantMetadataV10;716 ModuleConstantMetadataV11: ModuleConstantMetadataV11;717 ModuleConstantMetadataV12: ModuleConstantMetadataV12;718 ModuleConstantMetadataV13: ModuleConstantMetadataV13;719 ModuleConstantMetadataV9: ModuleConstantMetadataV9;720 ModuleId: ModuleId;721 ModuleMetadataV10: ModuleMetadataV10;722 ModuleMetadataV11: ModuleMetadataV11;723 ModuleMetadataV12: ModuleMetadataV12;724 ModuleMetadataV13: ModuleMetadataV13;725 ModuleMetadataV9: ModuleMetadataV9;726 Moment: Moment;727 MomentOf: MomentOf;728 MoreAttestations: MoreAttestations;729 MortalEra: MortalEra;730 MultiAddress: MultiAddress;731 MultiAsset: MultiAsset;732 MultiAssetFilter: MultiAssetFilter;733 MultiAssetFilterV1: MultiAssetFilterV1;734 MultiAssetFilterV2: MultiAssetFilterV2;735 MultiAssets: MultiAssets;736 MultiAssetsV1: MultiAssetsV1;737 MultiAssetsV2: MultiAssetsV2;738 MultiAssetV0: MultiAssetV0;739 MultiAssetV1: MultiAssetV1;740 MultiAssetV2: MultiAssetV2;741 MultiDisputeStatementSet: MultiDisputeStatementSet;742 MultiLocation: MultiLocation;743 MultiLocationV0: MultiLocationV0;744 MultiLocationV1: MultiLocationV1;745 MultiLocationV2: MultiLocationV2;746 Multiplier: Multiplier;747 Multisig: Multisig;748 MultiSignature: MultiSignature;749 MultiSigner: MultiSigner;750 NetworkId: NetworkId;751 NetworkState: NetworkState;752 NetworkStatePeerset: NetworkStatePeerset;753 NetworkStatePeersetInfo: NetworkStatePeersetInfo;754 NewBidder: NewBidder;755 NextAuthority: NextAuthority;756 NextConfigDescriptor: NextConfigDescriptor;757 NextConfigDescriptorV1: NextConfigDescriptorV1;758 NodeRole: NodeRole;759 Nominations: Nominations;760 NominatorIndex: NominatorIndex;761 NominatorIndexCompact: NominatorIndexCompact;762 NotConnectedPeer: NotConnectedPeer;763 NpApiError: NpApiError;764 Null: Null;765 OccupiedCore: OccupiedCore;766 OccupiedCoreAssumption: OccupiedCoreAssumption;767 OffchainAccuracy: OffchainAccuracy;768 OffchainAccuracyCompact: OffchainAccuracyCompact;769 OffenceDetails: OffenceDetails;770 Offender: Offender;771 OldV1SessionInfo: OldV1SessionInfo;772 OpalRuntimeRuntime: OpalRuntimeRuntime;773 OpaqueCall: OpaqueCall;774 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;775 OpaqueMetadata: OpaqueMetadata;776 OpaqueMultiaddr: OpaqueMultiaddr;777 OpaqueNetworkState: OpaqueNetworkState;778 OpaquePeerId: OpaquePeerId;779 OpaqueTimeSlot: OpaqueTimeSlot;780 OpenTip: OpenTip;781 OpenTipFinderTo225: OpenTipFinderTo225;782 OpenTipTip: OpenTipTip;783 OpenTipTo225: OpenTipTo225;784 OperatingMode: OperatingMode;785 OptionBool: OptionBool;786 Origin: Origin;787 OriginCaller: OriginCaller;788 OriginKindV0: OriginKindV0;789 OriginKindV1: OriginKindV1;790 OriginKindV2: OriginKindV2;791 OrmlTokensAccountData: OrmlTokensAccountData;792 OrmlTokensBalanceLock: OrmlTokensBalanceLock;793 OrmlTokensModuleCall: OrmlTokensModuleCall;794 OrmlTokensModuleError: OrmlTokensModuleError;795 OrmlTokensModuleEvent: OrmlTokensModuleEvent;796 OrmlTokensReserveData: OrmlTokensReserveData;797 OrmlVestingModuleCall: OrmlVestingModuleCall;798 OrmlVestingModuleError: OrmlVestingModuleError;799 OrmlVestingModuleEvent: OrmlVestingModuleEvent;800 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;801 OrmlXtokensModuleCall: OrmlXtokensModuleCall;802 OrmlXtokensModuleError: OrmlXtokensModuleError;803 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;804 OutboundHrmpMessage: OutboundHrmpMessage;805 OutboundLaneData: OutboundLaneData;806 OutboundMessageFee: OutboundMessageFee;807 OutboundPayload: OutboundPayload;808 OutboundStatus: OutboundStatus;809 Outcome: Outcome;810 OverweightIndex: OverweightIndex;811 Owner: Owner;812 PageCounter: PageCounter;813 PageIndexData: PageIndexData;814 PalletAppPromotionCall: PalletAppPromotionCall;815 PalletAppPromotionError: PalletAppPromotionError;816 PalletAppPromotionEvent: PalletAppPromotionEvent;817 PalletBalancesAccountData: PalletBalancesAccountData;818 PalletBalancesBalanceLock: PalletBalancesBalanceLock;819 PalletBalancesCall: PalletBalancesCall;820 PalletBalancesError: PalletBalancesError;821 PalletBalancesEvent: PalletBalancesEvent;822 PalletBalancesReasons: PalletBalancesReasons;823 PalletBalancesReleases: PalletBalancesReleases;824 PalletBalancesReserveData: PalletBalancesReserveData;825 PalletCallMetadataLatest: PalletCallMetadataLatest;826 PalletCallMetadataV14: PalletCallMetadataV14;827 PalletCommonError: PalletCommonError;828 PalletCommonEvent: PalletCommonEvent;829 PalletConfigurationCall: PalletConfigurationCall;830 PalletConstantMetadataLatest: PalletConstantMetadataLatest;831 PalletConstantMetadataV14: PalletConstantMetadataV14;832 PalletErrorMetadataLatest: PalletErrorMetadataLatest;833 PalletErrorMetadataV14: PalletErrorMetadataV14;834 PalletEthereumCall: PalletEthereumCall;835 PalletEthereumError: PalletEthereumError;836 PalletEthereumEvent: PalletEthereumEvent;837 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;838 PalletEventMetadataLatest: PalletEventMetadataLatest;839 PalletEventMetadataV14: PalletEventMetadataV14;840 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;841 PalletEvmCall: PalletEvmCall;842 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;843 PalletEvmContractHelpersError: PalletEvmContractHelpersError;844 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;845 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;846 PalletEvmError: PalletEvmError;847 PalletEvmEvent: PalletEvmEvent;848 PalletEvmMigrationCall: PalletEvmMigrationCall;849 PalletEvmMigrationError: PalletEvmMigrationError;850 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;851 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;852 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;853 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;854 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;855 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;856 PalletFungibleError: PalletFungibleError;857 PalletId: PalletId;858 PalletInflationCall: PalletInflationCall;859 PalletMetadataLatest: PalletMetadataLatest;860 PalletMetadataV14: PalletMetadataV14;861 PalletNonfungibleError: PalletNonfungibleError;862 PalletNonfungibleItemData: PalletNonfungibleItemData;863 PalletRefungibleError: PalletRefungibleError;864 PalletRefungibleItemData: PalletRefungibleItemData;865 PalletRmrkCoreCall: PalletRmrkCoreCall;866 PalletRmrkCoreError: PalletRmrkCoreError;867 PalletRmrkCoreEvent: PalletRmrkCoreEvent;868 PalletRmrkEquipCall: PalletRmrkEquipCall;869 PalletRmrkEquipError: PalletRmrkEquipError;870 PalletRmrkEquipEvent: PalletRmrkEquipEvent;871 PalletsOrigin: PalletsOrigin;872 PalletStorageMetadataLatest: PalletStorageMetadataLatest;873 PalletStorageMetadataV14: PalletStorageMetadataV14;874 PalletStructureCall: PalletStructureCall;875 PalletStructureError: PalletStructureError;876 PalletStructureEvent: PalletStructureEvent;877 PalletSudoCall: PalletSudoCall;878 PalletSudoError: PalletSudoError;879 PalletSudoEvent: PalletSudoEvent;880 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;881 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;882 PalletTimestampCall: PalletTimestampCall;883 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;884 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;885 PalletTreasuryCall: PalletTreasuryCall;886 PalletTreasuryError: PalletTreasuryError;887 PalletTreasuryEvent: PalletTreasuryEvent;888 PalletTreasuryProposal: PalletTreasuryProposal;889 PalletUniqueCall: PalletUniqueCall;890 PalletUniqueError: PalletUniqueError;891 PalletUniqueRawEvent: PalletUniqueRawEvent;892 PalletVersion: PalletVersion;893 PalletXcmCall: PalletXcmCall;894 PalletXcmError: PalletXcmError;895 PalletXcmEvent: PalletXcmEvent;896 ParachainDispatchOrigin: ParachainDispatchOrigin;897 ParachainInherentData: ParachainInherentData;898 ParachainProposal: ParachainProposal;899 ParachainsInherentData: ParachainsInherentData;900 ParaGenesisArgs: ParaGenesisArgs;901 ParaId: ParaId;902 ParaInfo: ParaInfo;903 ParaLifecycle: ParaLifecycle;904 Parameter: Parameter;905 ParaPastCodeMeta: ParaPastCodeMeta;906 ParaScheduling: ParaScheduling;907 ParathreadClaim: ParathreadClaim;908 ParathreadClaimQueue: ParathreadClaimQueue;909 ParathreadEntry: ParathreadEntry;910 ParaValidatorIndex: ParaValidatorIndex;911 Pays: Pays;912 Peer: Peer;913 PeerEndpoint: PeerEndpoint;914 PeerEndpointAddr: PeerEndpointAddr;915 PeerInfo: PeerInfo;916 PeerPing: PeerPing;917 PendingChange: PendingChange;918 PendingPause: PendingPause;919 PendingResume: PendingResume;920 Perbill: Perbill;921 Percent: Percent;922 PerDispatchClassU32: PerDispatchClassU32;923 PerDispatchClassWeight: PerDispatchClassWeight;924 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;925 Period: Period;926 Permill: Permill;927 PermissionLatest: PermissionLatest;928 PermissionsV1: PermissionsV1;929 PermissionVersions: PermissionVersions;930 Perquintill: Perquintill;931 PersistedValidationData: PersistedValidationData;932 PerU16: PerU16;933 Phantom: Phantom;934 PhantomData: PhantomData;935 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;936 Phase: Phase;937 PhragmenScore: PhragmenScore;938 Points: Points;939 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;940 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;941 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;942 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;943 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;944 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;945 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;946 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;947 PortableType: PortableType;948 PortableTypeV14: PortableTypeV14;949 Precommits: Precommits;950 PrefabWasmModule: PrefabWasmModule;951 PrefixedStorageKey: PrefixedStorageKey;952 PreimageStatus: PreimageStatus;953 PreimageStatusAvailable: PreimageStatusAvailable;954 PreRuntime: PreRuntime;955 Prevotes: Prevotes;956 Priority: Priority;957 PriorLock: PriorLock;958 PropIndex: PropIndex;959 Proposal: Proposal;960 ProposalIndex: ProposalIndex;961 ProxyAnnouncement: ProxyAnnouncement;962 ProxyDefinition: ProxyDefinition;963 ProxyState: ProxyState;964 ProxyType: ProxyType;965 PvfCheckStatement: PvfCheckStatement;966 QueryId: QueryId;967 QueryStatus: QueryStatus;968 QueueConfigData: QueueConfigData;969 QueuedParathread: QueuedParathread;970 Randomness: Randomness;971 Raw: Raw;972 RawAuraPreDigest: RawAuraPreDigest;973 RawBabePreDigest: RawBabePreDigest;974 RawBabePreDigestCompat: RawBabePreDigestCompat;975 RawBabePreDigestPrimary: RawBabePreDigestPrimary;976 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;977 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;978 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;979 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;980 RawBabePreDigestTo159: RawBabePreDigestTo159;981 RawOrigin: RawOrigin;982 RawSolution: RawSolution;983 RawSolutionTo265: RawSolutionTo265;984 RawSolutionWith16: RawSolutionWith16;985 RawSolutionWith24: RawSolutionWith24;986 RawVRFOutput: RawVRFOutput;987 ReadProof: ReadProof;988 ReadySolution: ReadySolution;989 Reasons: Reasons;990 RecoveryConfig: RecoveryConfig;991 RefCount: RefCount;992 RefCountTo259: RefCountTo259;993 ReferendumIndex: ReferendumIndex;994 ReferendumInfo: ReferendumInfo;995 ReferendumInfoFinished: ReferendumInfoFinished;996 ReferendumInfoTo239: ReferendumInfoTo239;997 ReferendumStatus: ReferendumStatus;998 RegisteredParachainInfo: RegisteredParachainInfo;999 RegistrarIndex: RegistrarIndex;1000 RegistrarInfo: RegistrarInfo;1001 Registration: Registration;1002 RegistrationJudgement: RegistrationJudgement;1003 RegistrationTo198: RegistrationTo198;1004 RelayBlockNumber: RelayBlockNumber;1005 RelayChainBlockNumber: RelayChainBlockNumber;1006 RelayChainHash: RelayChainHash;1007 RelayerId: RelayerId;1008 RelayHash: RelayHash;1009 Releases: Releases;1010 Remark: Remark;1011 Renouncing: Renouncing;1012 RentProjection: RentProjection;1013 ReplacementTimes: ReplacementTimes;1014 ReportedRoundStates: ReportedRoundStates;1015 Reporter: Reporter;1016 ReportIdOf: ReportIdOf;1017 ReserveData: ReserveData;1018 ReserveIdentifier: ReserveIdentifier;1019 Response: Response;1020 ResponseV0: ResponseV0;1021 ResponseV1: ResponseV1;1022 ResponseV2: ResponseV2;1023 ResponseV2Error: ResponseV2Error;1024 ResponseV2Result: ResponseV2Result;1025 Retriable: Retriable;1026 RewardDestination: RewardDestination;1027 RewardPoint: RewardPoint;1028 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1029 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1030 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1031 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1032 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1033 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1034 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1035 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1036 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1037 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1038 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1039 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1040 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1041 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1042 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1043 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1044 RmrkTraitsTheme: RmrkTraitsTheme;1045 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1046 RoundSnapshot: RoundSnapshot;1047 RoundState: RoundState;1048 RpcMethods: RpcMethods;1049 RuntimeDbWeight: RuntimeDbWeight;1050 RuntimeDispatchInfo: RuntimeDispatchInfo;1051 RuntimeVersion: RuntimeVersion;1052 RuntimeVersionApi: RuntimeVersionApi;1053 RuntimeVersionPartial: RuntimeVersionPartial;1054 RuntimeVersionPre3: RuntimeVersionPre3;1055 RuntimeVersionPre4: RuntimeVersionPre4;1056 Schedule: Schedule;1057 Scheduled: Scheduled;1058 ScheduledCore: ScheduledCore;1059 ScheduledTo254: ScheduledTo254;1060 SchedulePeriod: SchedulePeriod;1061 SchedulePriority: SchedulePriority;1062 ScheduleTo212: ScheduleTo212;1063 ScheduleTo258: ScheduleTo258;1064 ScheduleTo264: ScheduleTo264;1065 Scheduling: Scheduling;1066 ScrapedOnChainVotes: ScrapedOnChainVotes;1067 Seal: Seal;1068 SealV0: SealV0;1069 SeatHolder: SeatHolder;1070 SeedOf: SeedOf;1071 ServiceQuality: ServiceQuality;1072 SessionIndex: SessionIndex;1073 SessionInfo: SessionInfo;1074 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1075 SessionKeys1: SessionKeys1;1076 SessionKeys10: SessionKeys10;1077 SessionKeys10B: SessionKeys10B;1078 SessionKeys2: SessionKeys2;1079 SessionKeys3: SessionKeys3;1080 SessionKeys4: SessionKeys4;1081 SessionKeys5: SessionKeys5;1082 SessionKeys6: SessionKeys6;1083 SessionKeys6B: SessionKeys6B;1084 SessionKeys7: SessionKeys7;1085 SessionKeys7B: SessionKeys7B;1086 SessionKeys8: SessionKeys8;1087 SessionKeys8B: SessionKeys8B;1088 SessionKeys9: SessionKeys9;1089 SessionKeys9B: SessionKeys9B;1090 SetId: SetId;1091 SetIndex: SetIndex;1092 Si0Field: Si0Field;1093 Si0LookupTypeId: Si0LookupTypeId;1094 Si0Path: Si0Path;1095 Si0Type: Si0Type;1096 Si0TypeDef: Si0TypeDef;1097 Si0TypeDefArray: Si0TypeDefArray;1098 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1099 Si0TypeDefCompact: Si0TypeDefCompact;1100 Si0TypeDefComposite: Si0TypeDefComposite;1101 Si0TypeDefPhantom: Si0TypeDefPhantom;1102 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1103 Si0TypeDefSequence: Si0TypeDefSequence;1104 Si0TypeDefTuple: Si0TypeDefTuple;1105 Si0TypeDefVariant: Si0TypeDefVariant;1106 Si0TypeParameter: Si0TypeParameter;1107 Si0Variant: Si0Variant;1108 Si1Field: Si1Field;1109 Si1LookupTypeId: Si1LookupTypeId;1110 Si1Path: Si1Path;1111 Si1Type: Si1Type;1112 Si1TypeDef: Si1TypeDef;1113 Si1TypeDefArray: Si1TypeDefArray;1114 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1115 Si1TypeDefCompact: Si1TypeDefCompact;1116 Si1TypeDefComposite: Si1TypeDefComposite;1117 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1118 Si1TypeDefSequence: Si1TypeDefSequence;1119 Si1TypeDefTuple: Si1TypeDefTuple;1120 Si1TypeDefVariant: Si1TypeDefVariant;1121 Si1TypeParameter: Si1TypeParameter;1122 Si1Variant: Si1Variant;1123 SiField: SiField;1124 Signature: Signature;1125 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1126 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1127 SignedBlock: SignedBlock;1128 SignedBlockWithJustification: SignedBlockWithJustification;1129 SignedBlockWithJustifications: SignedBlockWithJustifications;1130 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1131 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1132 SignedSubmission: SignedSubmission;1133 SignedSubmissionOf: SignedSubmissionOf;1134 SignedSubmissionTo276: SignedSubmissionTo276;1135 SignerPayload: SignerPayload;1136 SigningContext: SigningContext;1137 SiLookupTypeId: SiLookupTypeId;1138 SiPath: SiPath;1139 SiType: SiType;1140 SiTypeDef: SiTypeDef;1141 SiTypeDefArray: SiTypeDefArray;1142 SiTypeDefBitSequence: SiTypeDefBitSequence;1143 SiTypeDefCompact: SiTypeDefCompact;1144 SiTypeDefComposite: SiTypeDefComposite;1145 SiTypeDefPrimitive: SiTypeDefPrimitive;1146 SiTypeDefSequence: SiTypeDefSequence;1147 SiTypeDefTuple: SiTypeDefTuple;1148 SiTypeDefVariant: SiTypeDefVariant;1149 SiTypeParameter: SiTypeParameter;1150 SiVariant: SiVariant;1151 SlashingSpans: SlashingSpans;1152 SlashingSpansTo204: SlashingSpansTo204;1153 SlashJournalEntry: SlashJournalEntry;1154 Slot: Slot;1155 SlotDuration: SlotDuration;1156 SlotNumber: SlotNumber;1157 SlotRange: SlotRange;1158 SlotRange10: SlotRange10;1159 SocietyJudgement: SocietyJudgement;1160 SocietyVote: SocietyVote;1161 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1162 SolutionSupport: SolutionSupport;1163 SolutionSupports: SolutionSupports;1164 SpanIndex: SpanIndex;1165 SpanRecord: SpanRecord;1166 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1167 SpCoreEd25519Signature: SpCoreEd25519Signature;1168 SpCoreSr25519Signature: SpCoreSr25519Signature;1169 SpecVersion: SpecVersion;1170 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1171 SpRuntimeDigest: SpRuntimeDigest;1172 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1173 SpRuntimeDispatchError: SpRuntimeDispatchError;1174 SpRuntimeModuleError: SpRuntimeModuleError;1175 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1176 SpRuntimeTokenError: SpRuntimeTokenError;1177 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1178 SpTrieStorageProof: SpTrieStorageProof;1179 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1180 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1181 Sr25519Signature: Sr25519Signature;1182 StakingLedger: StakingLedger;1183 StakingLedgerTo223: StakingLedgerTo223;1184 StakingLedgerTo240: StakingLedgerTo240;1185 Statement: Statement;1186 StatementKind: StatementKind;1187 StorageChangeSet: StorageChangeSet;1188 StorageData: StorageData;1189 StorageDeposit: StorageDeposit;1190 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1191 StorageEntryMetadataV10: StorageEntryMetadataV10;1192 StorageEntryMetadataV11: StorageEntryMetadataV11;1193 StorageEntryMetadataV12: StorageEntryMetadataV12;1194 StorageEntryMetadataV13: StorageEntryMetadataV13;1195 StorageEntryMetadataV14: StorageEntryMetadataV14;1196 StorageEntryMetadataV9: StorageEntryMetadataV9;1197 StorageEntryModifierLatest: StorageEntryModifierLatest;1198 StorageEntryModifierV10: StorageEntryModifierV10;1199 StorageEntryModifierV11: StorageEntryModifierV11;1200 StorageEntryModifierV12: StorageEntryModifierV12;1201 StorageEntryModifierV13: StorageEntryModifierV13;1202 StorageEntryModifierV14: StorageEntryModifierV14;1203 StorageEntryModifierV9: StorageEntryModifierV9;1204 StorageEntryTypeLatest: StorageEntryTypeLatest;1205 StorageEntryTypeV10: StorageEntryTypeV10;1206 StorageEntryTypeV11: StorageEntryTypeV11;1207 StorageEntryTypeV12: StorageEntryTypeV12;1208 StorageEntryTypeV13: StorageEntryTypeV13;1209 StorageEntryTypeV14: StorageEntryTypeV14;1210 StorageEntryTypeV9: StorageEntryTypeV9;1211 StorageHasher: StorageHasher;1212 StorageHasherV10: StorageHasherV10;1213 StorageHasherV11: StorageHasherV11;1214 StorageHasherV12: StorageHasherV12;1215 StorageHasherV13: StorageHasherV13;1216 StorageHasherV14: StorageHasherV14;1217 StorageHasherV9: StorageHasherV9;1218 StorageInfo: StorageInfo;1219 StorageKey: StorageKey;1220 StorageKind: StorageKind;1221 StorageMetadataV10: StorageMetadataV10;1222 StorageMetadataV11: StorageMetadataV11;1223 StorageMetadataV12: StorageMetadataV12;1224 StorageMetadataV13: StorageMetadataV13;1225 StorageMetadataV9: StorageMetadataV9;1226 StorageProof: StorageProof;1227 StoredPendingChange: StoredPendingChange;1228 StoredState: StoredState;1229 StrikeCount: StrikeCount;1230 SubId: SubId;1231 SubmissionIndicesOf: SubmissionIndicesOf;1232 Supports: Supports;1233 SyncState: SyncState;1234 SystemInherentData: SystemInherentData;1235 SystemOrigin: SystemOrigin;1236 Tally: Tally;1237 TaskAddress: TaskAddress;1238 TAssetBalance: TAssetBalance;1239 TAssetDepositBalance: TAssetDepositBalance;1240 Text: Text;1241 Timepoint: Timepoint;1242 TokenError: TokenError;1243 TombstoneContractInfo: TombstoneContractInfo;1244 TraceBlockResponse: TraceBlockResponse;1245 TraceError: TraceError;1246 TransactionalError: TransactionalError;1247 TransactionInfo: TransactionInfo;1248 TransactionLongevity: TransactionLongevity;1249 TransactionPriority: TransactionPriority;1250 TransactionSource: TransactionSource;1251 TransactionStorageProof: TransactionStorageProof;1252 TransactionTag: TransactionTag;1253 TransactionV0: TransactionV0;1254 TransactionV1: TransactionV1;1255 TransactionV2: TransactionV2;1256 TransactionValidity: TransactionValidity;1257 TransactionValidityError: TransactionValidityError;1258 TransientValidationData: TransientValidationData;1259 TreasuryProposal: TreasuryProposal;1260 TrieId: TrieId;1261 TrieIndex: TrieIndex;1262 Type: Type;1263 u128: u128;1264 U128: U128;1265 u16: u16;1266 U16: U16;1267 u256: u256;1268 U256: U256;1269 u32: u32;1270 U32: U32;1271 U32F32: U32F32;1272 u64: u64;1273 U64: U64;1274 u8: u8;1275 U8: U8;1276 UnappliedSlash: UnappliedSlash;1277 UnappliedSlashOther: UnappliedSlashOther;1278 UncleEntryItem: UncleEntryItem;1279 UnknownTransaction: UnknownTransaction;1280 UnlockChunk: UnlockChunk;1281 UnrewardedRelayer: UnrewardedRelayer;1282 UnrewardedRelayersState: UnrewardedRelayersState;1283 UpDataStructsAccessMode: UpDataStructsAccessMode;1284 UpDataStructsCollection: UpDataStructsCollection;1285 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1286 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1287 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1288 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1289 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1290 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1291 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1292 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1293 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1294 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1295 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1296 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1297 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1298 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1299 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1300 UpDataStructsProperties: UpDataStructsProperties;1301 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1302 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1303 UpDataStructsProperty: UpDataStructsProperty;1304 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1305 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1306 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1307 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1308 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1309 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1310 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1311 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1312 UpDataStructsTokenChild: UpDataStructsTokenChild;1313 UpDataStructsTokenData: UpDataStructsTokenData;1314 UpgradeGoAhead: UpgradeGoAhead;1315 UpgradeRestriction: UpgradeRestriction;1316 UpwardMessage: UpwardMessage;1317 usize: usize;1318 USize: USize;1319 ValidationCode: ValidationCode;1320 ValidationCodeHash: ValidationCodeHash;1321 ValidationData: ValidationData;1322 ValidationDataType: ValidationDataType;1323 ValidationFunctionParams: ValidationFunctionParams;1324 ValidatorCount: ValidatorCount;1325 ValidatorId: ValidatorId;1326 ValidatorIdOf: ValidatorIdOf;1327 ValidatorIndex: ValidatorIndex;1328 ValidatorIndexCompact: ValidatorIndexCompact;1329 ValidatorPrefs: ValidatorPrefs;1330 ValidatorPrefsTo145: ValidatorPrefsTo145;1331 ValidatorPrefsTo196: ValidatorPrefsTo196;1332 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1333 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1334 ValidatorSet: ValidatorSet;1335 ValidatorSetId: ValidatorSetId;1336 ValidatorSignature: ValidatorSignature;1337 ValidDisputeStatementKind: ValidDisputeStatementKind;1338 ValidityAttestation: ValidityAttestation;1339 ValidTransaction: ValidTransaction;1340 VecInboundHrmpMessage: VecInboundHrmpMessage;1341 VersionedMultiAsset: VersionedMultiAsset;1342 VersionedMultiAssets: VersionedMultiAssets;1343 VersionedMultiLocation: VersionedMultiLocation;1344 VersionedResponse: VersionedResponse;1345 VersionedXcm: VersionedXcm;1346 VersionMigrationStage: VersionMigrationStage;1347 VestingInfo: VestingInfo;1348 VestingSchedule: VestingSchedule;1349 Vote: Vote;1350 VoteIndex: VoteIndex;1351 Voter: Voter;1352 VoterInfo: VoterInfo;1353 Votes: Votes;1354 VotesTo230: VotesTo230;1355 VoteThreshold: VoteThreshold;1356 VoteWeight: VoteWeight;1357 Voting: Voting;1358 VotingDelegating: VotingDelegating;1359 VotingDirect: VotingDirect;1360 VotingDirectVote: VotingDirectVote;1361 VouchingStatus: VouchingStatus;1362 VrfData: VrfData;1363 VrfOutput: VrfOutput;1364 VrfProof: VrfProof;1365 Weight: Weight;1366 WeightLimitV2: WeightLimitV2;1367 WeightMultiplier: WeightMultiplier;1368 WeightPerClass: WeightPerClass;1369 WeightToFeeCoefficient: WeightToFeeCoefficient;1370 WeightV1: WeightV1;1371 WeightV2: WeightV2;1372 WildFungibility: WildFungibility;1373 WildFungibilityV0: WildFungibilityV0;1374 WildFungibilityV1: WildFungibilityV1;1375 WildFungibilityV2: WildFungibilityV2;1376 WildMultiAsset: WildMultiAsset;1377 WildMultiAssetV1: WildMultiAssetV1;1378 WildMultiAssetV2: WildMultiAssetV2;1379 WinnersData: WinnersData;1380 WinnersData10: WinnersData10;1381 WinnersDataTuple: WinnersDataTuple;1382 WinnersDataTuple10: WinnersDataTuple10;1383 WinningData: WinningData;1384 WinningData10: WinningData10;1385 WinningDataEntry: WinningDataEntry;1386 WithdrawReasons: WithdrawReasons;1387 Xcm: Xcm;1388 XcmAssetId: XcmAssetId;1389 XcmDoubleEncoded: XcmDoubleEncoded;1390 XcmError: XcmError;1391 XcmErrorV0: XcmErrorV0;1392 XcmErrorV1: XcmErrorV1;1393 XcmErrorV2: XcmErrorV2;1394 XcmOrder: XcmOrder;1395 XcmOrderV0: XcmOrderV0;1396 XcmOrderV1: XcmOrderV1;1397 XcmOrderV2: XcmOrderV2;1398 XcmOrigin: XcmOrigin;1399 XcmOriginKind: XcmOriginKind;1400 XcmpMessageFormat: XcmpMessageFormat;1401 XcmV0: XcmV0;1402 XcmV0Junction: XcmV0Junction;1403 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1404 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1405 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1406 XcmV0MultiAsset: XcmV0MultiAsset;1407 XcmV0MultiLocation: XcmV0MultiLocation;1408 XcmV0Order: XcmV0Order;1409 XcmV0OriginKind: XcmV0OriginKind;1410 XcmV0Response: XcmV0Response;1411 XcmV0Xcm: XcmV0Xcm;1412 XcmV1: XcmV1;1413 XcmV1Junction: XcmV1Junction;1414 XcmV1MultiAsset: XcmV1MultiAsset;1415 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1416 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1417 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1418 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1419 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1420 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1421 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1422 XcmV1MultiLocation: XcmV1MultiLocation;1423 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1424 XcmV1Order: XcmV1Order;1425 XcmV1Response: XcmV1Response;1426 XcmV1Xcm: XcmV1Xcm;1427 XcmV2: XcmV2;1428 XcmV2Instruction: XcmV2Instruction;1429 XcmV2Response: XcmV2Response;1430 XcmV2TraitsError: XcmV2TraitsError;1431 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1432 XcmV2WeightLimit: XcmV2WeightLimit;1433 XcmV2Xcm: XcmV2Xcm;1434 XcmVersion: XcmVersion;1435 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1436 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1437 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1438 XcmVersionedXcm: XcmVersionedXcm;1439 } // InterfaceTypes1440} // declare moduletests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -153,14 +153,6 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
-/** @name CumulusPalletXcmOrigin */
-export interface CumulusPalletXcmOrigin extends Enum {
- readonly isRelay: boolean;
- readonly isSiblingParachain: boolean;
- readonly asSiblingParachain: u32;
- readonly type: 'Relay' | 'SiblingParachain';
-}
-
/** @name CumulusPalletXcmpQueueCall */
export interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
@@ -499,90 +491,59 @@
readonly contractAddress: Option<H160>;
readonly logs: Vec<EthereumLog>;
readonly logsBloom: EthbloomBloom;
-}
-
-/** @name FrameSupportDispatchRawOrigin */
-export interface FrameSupportDispatchRawOrigin extends Enum {
- readonly isRoot: boolean;
- readonly isSigned: boolean;
- readonly asSigned: AccountId32;
- readonly isNone: boolean;
- readonly type: 'Root' | 'Signed' | 'None';
}
-
-/** @name FrameSupportPalletId */
-export interface FrameSupportPalletId extends U8aFixed {}
-/** @name FrameSupportScheduleLookupError */
-export interface FrameSupportScheduleLookupError extends Enum {
- readonly isUnknown: boolean;
- readonly isBadFormat: boolean;
- readonly type: 'Unknown' | 'BadFormat';
-}
-
-/** @name FrameSupportScheduleMaybeHashed */
-export interface FrameSupportScheduleMaybeHashed extends Enum {
- readonly isValue: boolean;
- readonly asValue: Call;
- readonly isHash: boolean;
- readonly asHash: H256;
- readonly type: 'Value' | 'Hash';
-}
-
-/** @name FrameSupportTokensMiscBalanceStatus */
-export interface FrameSupportTokensMiscBalanceStatus extends Enum {
- readonly isFree: boolean;
- readonly isReserved: boolean;
- readonly type: 'Free' | 'Reserved';
-}
-
-/** @name FrameSupportWeightsDispatchClass */
-export interface FrameSupportWeightsDispatchClass extends Enum {
+/** @name FrameSupportDispatchDispatchClass */
+export interface FrameSupportDispatchDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
readonly isMandatory: boolean;
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
-/** @name FrameSupportWeightsDispatchInfo */
-export interface FrameSupportWeightsDispatchInfo extends Struct {
+/** @name FrameSupportDispatchDispatchInfo */
+export interface FrameSupportDispatchDispatchInfo extends Struct {
readonly weight: Weight;
- readonly class: FrameSupportWeightsDispatchClass;
- readonly paysFee: FrameSupportWeightsPays;
+ readonly class: FrameSupportDispatchDispatchClass;
+ readonly paysFee: FrameSupportDispatchPays;
}
-/** @name FrameSupportWeightsPays */
-export interface FrameSupportWeightsPays extends Enum {
+/** @name FrameSupportDispatchPays */
+export interface FrameSupportDispatchPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
}
-/** @name FrameSupportWeightsPerDispatchClassU32 */
-export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
+/** @name FrameSupportDispatchPerDispatchClassU32 */
+export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
-/** @name FrameSupportWeightsPerDispatchClassWeight */
-export interface FrameSupportWeightsPerDispatchClassWeight extends Struct {
+/** @name FrameSupportDispatchPerDispatchClassWeight */
+export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
readonly normal: Weight;
readonly operational: Weight;
readonly mandatory: Weight;
}
-/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */
-export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
+/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */
+export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
-/** @name FrameSupportWeightsRuntimeDbWeight */
-export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
- readonly read: u64;
- readonly write: u64;
+/** @name FrameSupportPalletId */
+export interface FrameSupportPalletId extends U8aFixed {}
+
+/** @name FrameSupportTokensMiscBalanceStatus */
+export interface FrameSupportTokensMiscBalanceStatus extends Enum {
+ readonly isFree: boolean;
+ readonly isReserved: boolean;
+ readonly type: 'Free' | 'Reserved';
}
/** @name FrameSystemAccountInfo */
@@ -651,12 +612,12 @@
export interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
- readonly dispatchInfo: FrameSupportWeightsDispatchInfo;
+ readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
} & Struct;
readonly isExtrinsicFailed: boolean;
readonly asExtrinsicFailed: {
readonly dispatchError: SpRuntimeDispatchError;
- readonly dispatchInfo: FrameSupportWeightsDispatchInfo;
+ readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
} & Struct;
readonly isCodeUpdated: boolean;
readonly isNewAccount: boolean;
@@ -705,14 +666,14 @@
/** @name FrameSystemLimitsBlockLength */
export interface FrameSystemLimitsBlockLength extends Struct {
- readonly max: FrameSupportWeightsPerDispatchClassU32;
+ readonly max: FrameSupportDispatchPerDispatchClassU32;
}
/** @name FrameSystemLimitsBlockWeights */
export interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: Weight;
readonly maxBlock: Weight;
- readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
+ readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
/** @name FrameSystemLimitsWeightsPerClass */
@@ -732,21 +693,6 @@
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 isPolkadotXcm: boolean;
- readonly asPolkadotXcm: PalletXcmOrigin;
- readonly isCumulusXcm: boolean;
- readonly asCumulusXcm: CumulusPalletXcmOrigin;
- readonly isEthereum: boolean;
- readonly asEthereum: PalletEthereumRawOrigin;
- readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
-}
-
/** @name OpalRuntimeRuntime */
export interface OpalRuntimeRuntime extends Null {}
@@ -1357,13 +1303,6 @@
/** @name PalletEthereumFakeTransactionFinalizer */
export interface PalletEthereumFakeTransactionFinalizer extends Null {}
-/** @name PalletEthereumRawOrigin */
-export interface PalletEthereumRawOrigin extends Enum {
- readonly isEthereumTransaction: boolean;
- readonly asEthereumTransaction: H160;
- readonly type: 'EthereumTransaction';
-}
-
/** @name PalletEvmAccountBasicCrossAccountIdRepr */
export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
readonly isSubstrate: boolean;
@@ -2276,76 +2215,6 @@
readonly isCollectionPermissionSet: boolean;
readonly asCollectionPermissionSet: u32;
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
-}
-
-/** @name PalletUniqueSchedulerCall */
-export interface PalletUniqueSchedulerCall extends Enum {
- readonly isScheduleNamed: boolean;
- readonly asScheduleNamed: {
- readonly id: U8aFixed;
- readonly when: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- } & Struct;
- readonly isCancelNamed: boolean;
- readonly asCancelNamed: {
- readonly id: U8aFixed;
- } & Struct;
- readonly isScheduleNamedAfter: boolean;
- readonly asScheduleNamedAfter: {
- readonly id: U8aFixed;
- readonly after: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- } & Struct;
- readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
-}
-
-/** @name PalletUniqueSchedulerError */
-export interface PalletUniqueSchedulerError extends Enum {
- readonly isFailedToSchedule: boolean;
- readonly isNotFound: boolean;
- readonly isTargetBlockNumberInPast: boolean;
- readonly isRescheduleNoChange: boolean;
- readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
-}
-
-/** @name PalletUniqueSchedulerEvent */
-export interface PalletUniqueSchedulerEvent extends Enum {
- readonly isScheduled: boolean;
- readonly asScheduled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isCanceled: boolean;
- readonly asCanceled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isDispatched: boolean;
- readonly asDispatched: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- readonly result: Result<Null, SpRuntimeDispatchError>;
- } & Struct;
- readonly isCallLookupFailed: boolean;
- readonly asCallLookupFailed: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- readonly error: FrameSupportScheduleLookupError;
- } & Struct;
- readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
-}
-
-/** @name PalletUniqueSchedulerScheduledV3 */
-export interface PalletUniqueSchedulerScheduledV3 extends Struct {
- readonly maybeId: Option<U8aFixed>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: OpalRuntimeOriginCaller;
}
/** @name PalletXcmCall */
@@ -2465,15 +2334,6 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
}
-/** @name PalletXcmOrigin */
-export interface PalletXcmOrigin extends Enum {
- readonly isXcm: boolean;
- readonly asXcm: XcmV1MultiLocation;
- readonly isResponse: boolean;
- readonly asResponse: XcmV1MultiLocation;
- readonly type: 'Xcm' | 'Response';
-}
-
/** @name PhantomTypeUpDataStructs */
export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
@@ -2693,9 +2553,6 @@
/** @name SpCoreSr25519Signature */
export interface SpCoreSr25519Signature extends U8aFixed {}
-
-/** @name SpCoreVoid */
-export interface SpCoreVoid extends Null {}
/** @name SpRuntimeArithmeticError */
export interface SpRuntimeArithmeticError extends Enum {
@@ -2796,6 +2653,12 @@
readonly stateVersion: u8;
}
+/** @name SpWeightsRuntimeDbWeight */
+export interface SpWeightsRuntimeDbWeight extends Struct {
+ readonly read: u64;
+ readonly write: u64;
+}
+
/** @name UpDataStructsAccessMode */
export interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -24,9 +24,9 @@
feeFrozen: 'u128'
},
/**
- * Lookup7: frame_support::weights::PerDispatchClass<frame_support::weights::weight_v2::Weight>
+ * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
**/
- FrameSupportWeightsPerDispatchClassWeight: {
+ FrameSupportDispatchPerDispatchClassWeight: {
normal: 'Weight',
operational: 'Weight',
mandatory: 'Weight'
@@ -54,7 +54,7 @@
}
},
/**
- * Lookup17: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup17: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -67,11 +67,11 @@
FrameSystemEvent: {
_enum: {
ExtrinsicSuccess: {
- dispatchInfo: 'FrameSupportWeightsDispatchInfo',
+ dispatchInfo: 'FrameSupportDispatchDispatchInfo',
},
ExtrinsicFailed: {
dispatchError: 'SpRuntimeDispatchError',
- dispatchInfo: 'FrameSupportWeightsDispatchInfo',
+ dispatchInfo: 'FrameSupportDispatchDispatchInfo',
},
CodeUpdated: 'Null',
NewAccount: {
@@ -90,23 +90,23 @@
}
},
/**
- * Lookup20: frame_support::weights::DispatchInfo
+ * Lookup20: frame_support::dispatch::DispatchInfo
**/
- FrameSupportWeightsDispatchInfo: {
+ FrameSupportDispatchDispatchInfo: {
weight: 'Weight',
- class: 'FrameSupportWeightsDispatchClass',
- paysFee: 'FrameSupportWeightsPays'
+ class: 'FrameSupportDispatchDispatchClass',
+ paysFee: 'FrameSupportDispatchPays'
},
/**
- * Lookup21: frame_support::weights::DispatchClass
+ * Lookup21: frame_support::dispatch::DispatchClass
**/
- FrameSupportWeightsDispatchClass: {
+ FrameSupportDispatchDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup22: frame_support::weights::Pays
+ * Lookup22: frame_support::dispatch::Pays
**/
- FrameSupportWeightsPays: {
+ FrameSupportDispatchPays: {
_enum: ['Yes', 'No']
},
/**
@@ -674,11 +674,11 @@
}
},
/**
- * Lookup68: xcm::v2::Xcm<Call>
+ * Lookup68: xcm::v2::Xcm<RuntimeCall>
**/
XcmV2Xcm: 'Vec<XcmV2Instruction>',
/**
- * Lookup70: xcm::v2::Instruction<Call>
+ * Lookup70: xcm::v2::Instruction<RuntimeCall>
**/
XcmV2Instruction: {
_enum: {
@@ -1004,39 +1004,8 @@
}
},
/**
- * Lookup93: pallet_unique_scheduler::pallet::Event<T>
- **/
- PalletUniqueSchedulerEvent: {
- _enum: {
- Scheduled: {
- when: 'u32',
- index: 'u32',
- },
- Canceled: {
- when: 'u32',
- index: 'u32',
- },
- Dispatched: {
- task: '(u32,u32)',
- id: 'Option<[u8;16]>',
- result: 'Result<Null, SpRuntimeDispatchError>',
- },
- CallLookupFailed: {
- task: '(u32,u32)',
- id: 'Option<[u8;16]>',
- error: 'FrameSupportScheduleLookupError'
- }
- }
- },
- /**
- * Lookup96: frame_support::traits::schedule::LookupError
+ * Lookup93: pallet_common::pallet::Event<T>
**/
- FrameSupportScheduleLookupError: {
- _enum: ['Unknown', 'BadFormat']
- },
- /**
- * Lookup97: pallet_common::pallet::Event<T>
- **/
PalletCommonEvent: {
_enum: {
CollectionCreated: '(u32,u8,AccountId32)',
@@ -1053,7 +1022,7 @@
}
},
/**
- * Lookup100: pallet_structure::pallet::Event<T>
+ * Lookup96: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1061,7 +1030,7 @@
}
},
/**
- * Lookup101: pallet_rmrk_core::pallet::Event<T>
+ * Lookup97: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1138,7 +1107,7 @@
}
},
/**
- * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1147,7 +1116,7 @@
}
},
/**
- * Lookup107: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup103: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1162,7 +1131,7 @@
}
},
/**
- * Lookup108: pallet_app_promotion::pallet::Event<T>
+ * Lookup104: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1173,7 +1142,7 @@
}
},
/**
- * Lookup109: pallet_foreign_assets::module::Event<T>
+ * Lookup105: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1198,7 +1167,7 @@
}
},
/**
- * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup106: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1207,7 +1176,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup111: pallet_evm::pallet::Event<T>
+ * Lookup107: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1221,7 +1190,7 @@
}
},
/**
- * Lookup112: ethereum::log::Log
+ * Lookup108: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1229,7 +1198,7 @@
data: 'Bytes'
},
/**
- * Lookup116: pallet_ethereum::pallet::Event
+ * Lookup112: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1237,7 +1206,7 @@
}
},
/**
- * Lookup117: evm_core::error::ExitReason
+ * Lookup113: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1248,13 +1217,13 @@
}
},
/**
- * Lookup118: evm_core::error::ExitSucceed
+ * Lookup114: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup119: evm_core::error::ExitError
+ * Lookup115: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1276,13 +1245,13 @@
}
},
/**
- * Lookup122: evm_core::error::ExitRevert
+ * Lookup118: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup123: evm_core::error::ExitFatal
+ * Lookup119: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1293,7 +1262,7 @@
}
},
/**
- * Lookup124: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1303,7 +1272,7 @@
}
},
/**
- * Lookup125: frame_system::Phase
+ * Lookup121: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1313,14 +1282,14 @@
}
},
/**
- * Lookup127: frame_system::LastRuntimeUpgradeInfo
+ * Lookup124: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup128: frame_system::pallet::Call<T>
+ * Lookup125: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1358,23 +1327,23 @@
}
},
/**
- * Lookup133: frame_system::limits::BlockWeights
+ * Lookup130: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'Weight',
maxBlock: 'Weight',
- perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
+ perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
- * Lookup134: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
- FrameSupportWeightsPerDispatchClassWeightsPerClass: {
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
operational: 'FrameSystemLimitsWeightsPerClass',
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup135: frame_system::limits::WeightsPerClass
+ * Lookup132: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'Weight',
@@ -1383,28 +1352,28 @@
reserved: 'Option<Weight>'
},
/**
- * Lookup137: frame_system::limits::BlockLength
+ * Lookup134: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
- max: 'FrameSupportWeightsPerDispatchClassU32'
+ max: 'FrameSupportDispatchPerDispatchClassU32'
},
/**
- * Lookup138: frame_support::weights::PerDispatchClass<T>
+ * Lookup135: frame_support::dispatch::PerDispatchClass<T>
**/
- FrameSupportWeightsPerDispatchClassU32: {
+ FrameSupportDispatchPerDispatchClassU32: {
normal: 'u32',
operational: 'u32',
mandatory: 'u32'
},
/**
- * Lookup139: frame_support::weights::RuntimeDbWeight
+ * Lookup136: sp_weights::RuntimeDbWeight
**/
- FrameSupportWeightsRuntimeDbWeight: {
+ SpWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup140: sp_version::RuntimeVersion
+ * Lookup137: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1417,13 +1386,13 @@
stateVersion: 'u8'
},
/**
- * Lookup145: frame_system::pallet::Error<T>
+ * Lookup142: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup146: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1432,19 +1401,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup149: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup146: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup150: sp_trie::storage_proof::StorageProof
+ * Lookup147: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup152: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1453,7 +1422,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup155: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1464,7 +1433,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup156: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1478,14 +1447,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup162: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup163: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1504,7 +1473,7 @@
}
},
/**
- * Lookup164: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1513,27 +1482,27 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup166: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup169: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup172: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
},
/**
- * Lookup174: pallet_balances::BalanceLock<Balance>
+ * Lookup171: pallet_balances::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1541,26 +1510,26 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup175: pallet_balances::Reasons
+ * Lookup172: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup178: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup180: pallet_balances::Releases
+ * Lookup177: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup181: pallet_balances::pallet::Call<T, I>
+ * Lookup178: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1593,13 +1562,13 @@
}
},
/**
- * Lookup184: pallet_balances::pallet::Error<T, I>
+ * Lookup181: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup186: pallet_timestamp::pallet::Call<T>
+ * Lookup183: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1609,13 +1578,13 @@
}
},
/**
- * Lookup188: pallet_transaction_payment::Releases
+ * Lookup185: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup189: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1624,7 +1593,7 @@
bond: 'u128'
},
/**
- * Lookup192: pallet_treasury::pallet::Call<T, I>
+ * Lookup189: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1648,17 +1617,17 @@
}
},
/**
- * Lookup195: frame_support::PalletId
+ * Lookup192: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup196: pallet_treasury::pallet::Error<T, I>
+ * Lookup193: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup197: pallet_sudo::pallet::Call<T>
+ * Lookup194: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1682,7 +1651,7 @@
}
},
/**
- * Lookup199: orml_vesting::module::Call<T>
+ * Lookup196: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -1701,7 +1670,7 @@
}
},
/**
- * Lookup201: orml_xtokens::module::Call<T>
+ * Lookup198: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -1744,7 +1713,7 @@
}
},
/**
- * Lookup202: xcm::VersionedMultiAsset
+ * Lookup199: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -1753,7 +1722,7 @@
}
},
/**
- * Lookup205: orml_tokens::module::Call<T>
+ * Lookup202: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -1787,7 +1756,7 @@
}
},
/**
- * Lookup206: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -1836,7 +1805,7 @@
}
},
/**
- * Lookup207: pallet_xcm::pallet::Call<T>
+ * Lookup204: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -1890,7 +1859,7 @@
}
},
/**
- * Lookup208: xcm::VersionedXcm<Call>
+ * Lookup205: xcm::VersionedXcm<RuntimeCall>
**/
XcmVersionedXcm: {
_enum: {
@@ -1900,7 +1869,7 @@
}
},
/**
- * Lookup209: xcm::v0::Xcm<Call>
+ * Lookup206: xcm::v0::Xcm<RuntimeCall>
**/
XcmV0Xcm: {
_enum: {
@@ -1954,7 +1923,7 @@
}
},
/**
- * Lookup211: xcm::v0::order::Order<Call>
+ * Lookup208: xcm::v0::order::Order<RuntimeCall>
**/
XcmV0Order: {
_enum: {
@@ -1997,7 +1966,7 @@
}
},
/**
- * Lookup213: xcm::v0::Response
+ * Lookup210: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -2005,7 +1974,7 @@
}
},
/**
- * Lookup214: xcm::v1::Xcm<Call>
+ * Lookup211: xcm::v1::Xcm<RuntimeCall>
**/
XcmV1Xcm: {
_enum: {
@@ -2064,7 +2033,7 @@
}
},
/**
- * Lookup216: xcm::v1::order::Order<Call>
+ * Lookup213: xcm::v1::order::Order<RuntimeCall>
**/
XcmV1Order: {
_enum: {
@@ -2109,7 +2078,7 @@
}
},
/**
- * Lookup218: xcm::v1::Response
+ * Lookup215: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -2118,11 +2087,11 @@
}
},
/**
- * Lookup232: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup229: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup233: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -2133,7 +2102,7 @@
}
},
/**
- * Lookup234: pallet_inflation::pallet::Call<T>
+ * Lookup231: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2143,7 +2112,7 @@
}
},
/**
- * Lookup235: pallet_unique::Call<T>
+ * Lookup232: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2275,7 +2244,7 @@
}
},
/**
- * Lookup240: up_data_structs::CollectionMode
+ * Lookup237: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2285,7 +2254,7 @@
}
},
/**
- * Lookup241: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2300,13 +2269,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup243: up_data_structs::AccessMode
+ * Lookup240: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup245: up_data_structs::CollectionLimits
+ * Lookup242: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2320,7 +2289,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup247: up_data_structs::SponsoringRateLimit
+ * Lookup244: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2329,7 +2298,7 @@
}
},
/**
- * Lookup250: up_data_structs::CollectionPermissions
+ * Lookup247: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2337,7 +2306,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup252: up_data_structs::NestingPermissions
+ * Lookup249: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2345,18 +2314,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup254: up_data_structs::OwnerRestrictedSet
+ * Lookup251: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup259: up_data_structs::PropertyKeyPermission
+ * Lookup256: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup260: up_data_structs::PropertyPermission
+ * Lookup257: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2364,14 +2333,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup263: up_data_structs::Property
+ * Lookup260: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup266: up_data_structs::CreateItemData
+ * Lookup263: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2381,26 +2350,26 @@
}
},
/**
- * Lookup267: up_data_structs::CreateNftData
+ * Lookup264: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup268: up_data_structs::CreateFungibleData
+ * Lookup265: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup269: up_data_structs::CreateReFungibleData
+ * Lookup266: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup272: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2411,14 +2380,14 @@
}
},
/**
- * Lookup274: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup281: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2426,47 +2395,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup283: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup284: pallet_unique_scheduler::pallet::Call<T>
- **/
- PalletUniqueSchedulerCall: {
- _enum: {
- schedule_named: {
- id: '[u8;16]',
- when: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'u8',
- call: 'FrameSupportScheduleMaybeHashed',
- },
- cancel_named: {
- id: '[u8;16]',
- },
- schedule_named_after: {
- id: '[u8;16]',
- after: 'u32',
- maybePeriodic: 'Option<(u32,u32)>',
- priority: 'u8',
- call: 'FrameSupportScheduleMaybeHashed'
- }
- }
- },
- /**
- * Lookup286: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
- **/
- FrameSupportScheduleMaybeHashed: {
- _enum: {
- Value: 'Call',
- Hash: 'H256'
- }
- },
- /**
- * Lookup287: pallet_configuration::pallet::Call<T>
+ * Lookup281: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2479,15 +2415,15 @@
}
},
/**
- * Lookup289: pallet_template_transaction_payment::Call<T>
+ * Lookup283: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup290: pallet_structure::pallet::Call<T>
+ * Lookup284: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup291: pallet_rmrk_core::pallet::Call<T>
+ * Lookup285: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2578,7 +2514,7 @@
}
},
/**
- * Lookup297: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup291: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2588,7 +2524,7 @@
}
},
/**
- * Lookup299: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup293: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2597,7 +2533,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup301: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup295: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2608,7 +2544,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup302: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup296: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2619,7 +2555,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup305: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup299: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2640,7 +2576,7 @@
}
},
/**
- * Lookup308: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup302: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2649,7 +2585,7 @@
}
},
/**
- * Lookup310: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup304: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2657,7 +2593,7 @@
src: 'Bytes'
},
/**
- * Lookup311: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup305: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2666,7 +2602,7 @@
z: 'u32'
},
/**
- * Lookup312: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup306: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2676,7 +2612,7 @@
}
},
/**
- * Lookup314: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup308: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2684,14 +2620,14 @@
inherit: 'bool'
},
/**
- * Lookup316: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup318: pallet_app_promotion::pallet::Call<T>
+ * Lookup312: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2720,7 +2656,7 @@
}
},
/**
- * Lookup320: pallet_foreign_assets::module::Call<T>
+ * Lookup314: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2737,7 +2673,7 @@
}
},
/**
- * Lookup321: pallet_evm::pallet::Call<T>
+ * Lookup315: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2780,7 +2716,7 @@
}
},
/**
- * Lookup325: pallet_ethereum::pallet::Call<T>
+ * Lookup319: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2790,7 +2726,7 @@
}
},
/**
- * Lookup326: ethereum::transaction::TransactionV2
+ * Lookup320: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2800,7 +2736,7 @@
}
},
/**
- * Lookup327: ethereum::transaction::LegacyTransaction
+ * Lookup321: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2812,7 +2748,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup328: ethereum::transaction::TransactionAction
+ * Lookup322: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2821,7 +2757,7 @@
}
},
/**
- * Lookup329: ethereum::transaction::TransactionSignature
+ * Lookup323: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2829,7 +2765,7 @@
s: 'H256'
},
/**
- * Lookup331: ethereum::transaction::EIP2930Transaction
+ * Lookup325: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2845,14 +2781,14 @@
s: 'H256'
},
/**
- * Lookup333: ethereum::transaction::AccessListItem
+ * Lookup327: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup334: ethereum::transaction::EIP1559Transaction
+ * Lookup328: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2869,7 +2805,7 @@
s: 'H256'
},
/**
- * Lookup335: pallet_evm_migration::pallet::Call<T>
+ * Lookup329: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2887,32 +2823,32 @@
}
},
/**
- * Lookup338: pallet_sudo::pallet::Error<T>
+ * Lookup332: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup340: orml_vesting::module::Error<T>
+ * Lookup334: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup341: orml_xtokens::module::Error<T>
+ * Lookup335: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup344: orml_tokens::BalanceLock<Balance>
+ * Lookup338: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup346: orml_tokens::AccountData<Balance>
+ * Lookup340: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -2920,20 +2856,20 @@
frozen: 'u128'
},
/**
- * Lookup348: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup342: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup350: orml_tokens::module::Error<T>
+ * Lookup344: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup352: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup346: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2941,19 +2877,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup353: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup347: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup356: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup350: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup359: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup353: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2963,13 +2899,13 @@
lastIndex: 'u16'
},
/**
- * Lookup360: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup354: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup362: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup356: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2980,29 +2916,29 @@
xcmpMaxIndividualWeight: 'Weight'
},
/**
- * Lookup364: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup358: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup365: pallet_xcm::pallet::Error<T>
+ * Lookup359: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup366: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup360: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup367: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup361: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'Weight'
},
/**
- * Lookup368: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup362: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3010,185 +2946,20 @@
overweightCount: 'u64'
},
/**
- * Lookup371: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup365: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup375: pallet_unique::Error<T>
+ * Lookup369: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup378: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
- **/
- PalletUniqueSchedulerScheduledV3: {
- maybeId: 'Option<[u8;16]>',
- priority: 'u8',
- call: 'FrameSupportScheduleMaybeHashed',
- maybePeriodic: 'Option<(u32,u32)>',
- origin: 'OpalRuntimeOriginCaller'
- },
- /**
- * Lookup379: opal_runtime::OriginCaller
- **/
- OpalRuntimeOriginCaller: {
- _enum: {
- system: 'FrameSupportDispatchRawOrigin',
- __Unused1: 'Null',
- __Unused2: 'Null',
- __Unused3: 'Null',
- Void: 'SpCoreVoid',
- __Unused5: 'Null',
- __Unused6: 'Null',
- __Unused7: 'Null',
- __Unused8: 'Null',
- __Unused9: 'Null',
- __Unused10: 'Null',
- __Unused11: 'Null',
- __Unused12: 'Null',
- __Unused13: 'Null',
- __Unused14: 'Null',
- __Unused15: 'Null',
- __Unused16: 'Null',
- __Unused17: 'Null',
- __Unused18: 'Null',
- __Unused19: 'Null',
- __Unused20: 'Null',
- __Unused21: 'Null',
- __Unused22: 'Null',
- __Unused23: 'Null',
- __Unused24: 'Null',
- __Unused25: 'Null',
- __Unused26: 'Null',
- __Unused27: 'Null',
- __Unused28: 'Null',
- __Unused29: 'Null',
- __Unused30: 'Null',
- __Unused31: 'Null',
- __Unused32: 'Null',
- __Unused33: 'Null',
- __Unused34: 'Null',
- __Unused35: 'Null',
- __Unused36: 'Null',
- __Unused37: 'Null',
- __Unused38: 'Null',
- __Unused39: 'Null',
- __Unused40: 'Null',
- __Unused41: 'Null',
- __Unused42: 'Null',
- __Unused43: 'Null',
- __Unused44: 'Null',
- __Unused45: 'Null',
- __Unused46: 'Null',
- __Unused47: 'Null',
- __Unused48: 'Null',
- __Unused49: 'Null',
- __Unused50: 'Null',
- PolkadotXcm: 'PalletXcmOrigin',
- CumulusXcm: 'CumulusPalletXcmOrigin',
- __Unused53: 'Null',
- __Unused54: 'Null',
- __Unused55: 'Null',
- __Unused56: 'Null',
- __Unused57: 'Null',
- __Unused58: 'Null',
- __Unused59: 'Null',
- __Unused60: 'Null',
- __Unused61: 'Null',
- __Unused62: 'Null',
- __Unused63: 'Null',
- __Unused64: 'Null',
- __Unused65: 'Null',
- __Unused66: 'Null',
- __Unused67: 'Null',
- __Unused68: 'Null',
- __Unused69: 'Null',
- __Unused70: 'Null',
- __Unused71: 'Null',
- __Unused72: 'Null',
- __Unused73: 'Null',
- __Unused74: 'Null',
- __Unused75: 'Null',
- __Unused76: 'Null',
- __Unused77: 'Null',
- __Unused78: 'Null',
- __Unused79: 'Null',
- __Unused80: 'Null',
- __Unused81: 'Null',
- __Unused82: 'Null',
- __Unused83: 'Null',
- __Unused84: 'Null',
- __Unused85: 'Null',
- __Unused86: 'Null',
- __Unused87: 'Null',
- __Unused88: 'Null',
- __Unused89: 'Null',
- __Unused90: 'Null',
- __Unused91: 'Null',
- __Unused92: 'Null',
- __Unused93: 'Null',
- __Unused94: 'Null',
- __Unused95: 'Null',
- __Unused96: 'Null',
- __Unused97: 'Null',
- __Unused98: 'Null',
- __Unused99: 'Null',
- __Unused100: 'Null',
- Ethereum: 'PalletEthereumRawOrigin'
- }
- },
- /**
- * Lookup380: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
- **/
- FrameSupportDispatchRawOrigin: {
- _enum: {
- Root: 'Null',
- Signed: 'AccountId32',
- None: 'Null'
- }
- },
- /**
- * Lookup381: pallet_xcm::pallet::Origin
- **/
- PalletXcmOrigin: {
- _enum: {
- Xcm: 'XcmV1MultiLocation',
- Response: 'XcmV1MultiLocation'
- }
- },
- /**
- * Lookup382: cumulus_pallet_xcm::pallet::Origin
- **/
- CumulusPalletXcmOrigin: {
- _enum: {
- Relay: 'Null',
- SiblingParachain: 'u32'
- }
- },
- /**
- * Lookup383: pallet_ethereum::RawOrigin
- **/
- PalletEthereumRawOrigin: {
- _enum: {
- EthereumTransaction: 'H160'
- }
- },
- /**
- * Lookup384: sp_core::Void
- **/
- SpCoreVoid: 'Null',
- /**
- * Lookup385: pallet_unique_scheduler::pallet::Error<T>
+ * Lookup370: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
- PalletUniqueSchedulerError: {
- _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
- },
- /**
- * Lookup386: up_data_structs::Collection<sp_core::crypto::AccountId32>
- **/
UpDataStructsCollection: {
owner: 'AccountId32',
mode: 'UpDataStructsCollectionMode',
@@ -3201,7 +2972,7 @@
flags: '[u8;1]'
},
/**
- * Lookup387: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup371: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3211,7 +2982,7 @@
}
},
/**
- * Lookup389: up_data_structs::Properties
+ * Lookup373: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3219,15 +2990,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup390: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup374: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup395: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup379: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup402: up_data_structs::CollectionStats
+ * Lookup386: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3235,18 +3006,18 @@
alive: 'u32'
},
/**
- * Lookup403: up_data_structs::TokenChild
+ * Lookup387: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup404: PhantomType::up_data_structs<T>
+ * Lookup388: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup406: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup390: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3254,7 +3025,7 @@
pieces: 'u128'
},
/**
- * Lookup408: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup392: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3271,14 +3042,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup409: up_data_structs::RpcCollectionFlags
+ * Lookup393: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup410: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup394: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3288,7 +3059,7 @@
nftsCount: 'u32'
},
/**
- * Lookup411: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup395: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3298,14 +3069,14 @@
pending: 'bool'
},
/**
- * Lookup413: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup397: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup414: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup398: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3314,14 +3085,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup415: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup399: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup416: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup400: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3329,92 +3100,92 @@
symbol: 'Bytes'
},
/**
- * Lookup417: rmrk_traits::nft::NftChild
+ * Lookup401: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup419: pallet_common::pallet::Error<T>
+ * Lookup403: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
},
/**
- * Lookup421: pallet_fungible::pallet::Error<T>
+ * Lookup405: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup422: pallet_refungible::ItemData
+ * Lookup406: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup427: pallet_refungible::pallet::Error<T>
+ * Lookup411: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup428: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup412: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup430: up_data_structs::PropertyScope
+ * Lookup414: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup432: pallet_nonfungible::pallet::Error<T>
+ * Lookup416: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup433: pallet_structure::pallet::Error<T>
+ * Lookup417: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup434: pallet_rmrk_core::pallet::Error<T>
+ * Lookup418: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup436: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup420: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup442: pallet_app_promotion::pallet::Error<T>
+ * Lookup426: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup443: pallet_foreign_assets::module::Error<T>
+ * Lookup427: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup446: pallet_evm::pallet::Error<T>
+ * Lookup430: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup449: fp_rpc::TransactionStatus
+ * Lookup433: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3426,11 +3197,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup451: ethbloom::Bloom
+ * Lookup435: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup453: ethereum::receipt::ReceiptV3
+ * Lookup437: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3440,7 +3211,7 @@
}
},
/**
- * Lookup454: ethereum::receipt::EIP658ReceiptData
+ * Lookup438: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3449,7 +3220,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup455: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup439: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3457,7 +3228,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup456: ethereum::header::Header
+ * Lookup440: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3477,23 +3248,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup457: ethereum_types::hash::H64
+ * Lookup441: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup462: pallet_ethereum::pallet::Error<T>
+ * Lookup446: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup463: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup447: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup464: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup448: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3503,25 +3274,25 @@
}
},
/**
- * Lookup465: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup449: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup471: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup455: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup472: pallet_evm_migration::pallet::Error<T>
+ * Lookup456: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup474: sp_runtime::MultiSignature
+ * Lookup458: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3531,47 +3302,47 @@
}
},
/**
- * Lookup475: sp_core::ed25519::Signature
+ * Lookup459: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup477: sp_core::sr25519::Signature
+ * Lookup461: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup478: sp_core::ecdsa::Signature
+ * Lookup462: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup481: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup465: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup482: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup466: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup483: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup467: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup486: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup470: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup487: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup471: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup488: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup472: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup489: opal_runtime::Runtime
+ * Lookup473: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup490: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup474: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassWeight, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, 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, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -21,7 +21,6 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
- CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -51,18 +50,14 @@
EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;
EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
FpRpcTransactionStatus: FpRpcTransactionStatus;
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
+ FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
+ FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
+ FrameSupportDispatchPays: FrameSupportDispatchPays;
+ FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
+ FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
- FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
- FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
- FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
- FrameSupportWeightsPays: FrameSupportWeightsPays;
- FrameSupportWeightsPerDispatchClassU32: FrameSupportWeightsPerDispatchClassU32;
- FrameSupportWeightsPerDispatchClassWeight: FrameSupportWeightsPerDispatchClassWeight;
- FrameSupportWeightsPerDispatchClassWeightsPerClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
- FrameSupportWeightsRuntimeDbWeight: FrameSupportWeightsRuntimeDbWeight;
FrameSystemAccountInfo: FrameSystemAccountInfo;
FrameSystemCall: FrameSystemCall;
FrameSystemError: FrameSystemError;
@@ -78,7 +73,6 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
- OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OrmlTokensAccountData: OrmlTokensAccountData;
OrmlTokensBalanceLock: OrmlTokensBalanceLock;
@@ -111,7 +105,6 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
- PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -158,14 +151,9 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
- PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
- PalletUniqueSchedulerError: PalletUniqueSchedulerError;
- PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
- PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
- PalletXcmOrigin: PalletXcmOrigin;
PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -196,7 +184,6 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
- SpCoreVoid: SpCoreVoid;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
@@ -207,6 +194,7 @@
SpRuntimeTransactionalError: SpRuntimeTransactionalError;
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
+ SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
UpDataStructsAccessMode: UpDataStructsAccessMode;
UpDataStructsCollection: UpDataStructsCollection;
UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -28,8 +28,8 @@
readonly feeFrozen: u128;
}
- /** @name FrameSupportWeightsPerDispatchClassWeight (7) */
- interface FrameSupportWeightsPerDispatchClassWeight extends Struct {
+ /** @name FrameSupportDispatchPerDispatchClassWeight (7) */
+ interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
readonly normal: Weight;
readonly operational: Weight;
readonly mandatory: Weight;
@@ -65,12 +65,12 @@
interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
- readonly dispatchInfo: FrameSupportWeightsDispatchInfo;
+ readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
} & Struct;
readonly isExtrinsicFailed: boolean;
readonly asExtrinsicFailed: {
readonly dispatchError: SpRuntimeDispatchError;
- readonly dispatchInfo: FrameSupportWeightsDispatchInfo;
+ readonly dispatchInfo: FrameSupportDispatchDispatchInfo;
} & Struct;
readonly isCodeUpdated: boolean;
readonly isNewAccount: boolean;
@@ -89,23 +89,23 @@
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
}
- /** @name FrameSupportWeightsDispatchInfo (20) */
- interface FrameSupportWeightsDispatchInfo extends Struct {
+ /** @name FrameSupportDispatchDispatchInfo (20) */
+ interface FrameSupportDispatchDispatchInfo extends Struct {
readonly weight: Weight;
- readonly class: FrameSupportWeightsDispatchClass;
- readonly paysFee: FrameSupportWeightsPays;
+ readonly class: FrameSupportDispatchDispatchClass;
+ readonly paysFee: FrameSupportDispatchPays;
}
- /** @name FrameSupportWeightsDispatchClass (21) */
- interface FrameSupportWeightsDispatchClass extends Enum {
+ /** @name FrameSupportDispatchDispatchClass (21) */
+ interface FrameSupportDispatchDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
readonly isMandatory: boolean;
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
- /** @name FrameSupportWeightsPays (22) */
- interface FrameSupportWeightsPays extends Enum {
+ /** @name FrameSupportDispatchPays (22) */
+ interface FrameSupportDispatchPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
@@ -1132,41 +1132,7 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletUniqueSchedulerEvent (93) */
- interface PalletUniqueSchedulerEvent extends Enum {
- readonly isScheduled: boolean;
- readonly asScheduled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isCanceled: boolean;
- readonly asCanceled: {
- readonly when: u32;
- readonly index: u32;
- } & Struct;
- readonly isDispatched: boolean;
- readonly asDispatched: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- readonly result: Result<Null, SpRuntimeDispatchError>;
- } & Struct;
- readonly isCallLookupFailed: boolean;
- readonly asCallLookupFailed: {
- readonly task: ITuple<[u32, u32]>;
- readonly id: Option<U8aFixed>;
- readonly error: FrameSupportScheduleLookupError;
- } & Struct;
- readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
- }
-
- /** @name FrameSupportScheduleLookupError (96) */
- interface FrameSupportScheduleLookupError extends Enum {
- readonly isUnknown: boolean;
- readonly isBadFormat: boolean;
- readonly type: 'Unknown' | 'BadFormat';
- }
-
- /** @name PalletCommonEvent (97) */
+ /** @name PalletCommonEvent (93) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1193,14 +1159,14 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
}
- /** @name PalletStructureEvent (100) */
+ /** @name PalletStructureEvent (96) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (101) */
+ /** @name PalletRmrkCoreEvent (97) */
interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -1290,7 +1256,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */
interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1299,7 +1265,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name PalletRmrkEquipEvent (107) */
+ /** @name PalletRmrkEquipEvent (103) */
interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -1314,7 +1280,7 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
- /** @name PalletAppPromotionEvent (108) */
+ /** @name PalletAppPromotionEvent (104) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1327,7 +1293,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (109) */
+ /** @name PalletForeignAssetsModuleEvent (105) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1354,7 +1320,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (110) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (106) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1362,7 +1328,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (111) */
+ /** @name PalletEvmEvent (107) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: EthereumLog;
@@ -1381,21 +1347,21 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
}
- /** @name EthereumLog (112) */
+ /** @name EthereumLog (108) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (116) */
+ /** @name PalletEthereumEvent (112) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (117) */
+ /** @name EvmCoreErrorExitReason (113) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1408,7 +1374,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (118) */
+ /** @name EvmCoreErrorExitSucceed (114) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1416,7 +1382,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (119) */
+ /** @name EvmCoreErrorExitError (115) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1437,13 +1403,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (122) */
+ /** @name EvmCoreErrorExitRevert (118) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (123) */
+ /** @name EvmCoreErrorExitFatal (119) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1454,7 +1420,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (124) */
+ /** @name PalletEvmContractHelpersEvent (120) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1465,7 +1431,7 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name FrameSystemPhase (125) */
+ /** @name FrameSystemPhase (121) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1474,13 +1440,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (127) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (124) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (128) */
+ /** @name FrameSystemCall (125) */
interface FrameSystemCall extends Enum {
readonly isFillBlock: boolean;
readonly asFillBlock: {
@@ -1522,21 +1488,21 @@
readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (133) */
+ /** @name FrameSystemLimitsBlockWeights (130) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: Weight;
readonly maxBlock: Weight;
- readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
+ readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (134) */
- interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */
+ interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (135) */
+ /** @name FrameSystemLimitsWeightsPerClass (132) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: Weight;
readonly maxExtrinsic: Option<Weight>;
@@ -1544,25 +1510,25 @@
readonly reserved: Option<Weight>;
}
- /** @name FrameSystemLimitsBlockLength (137) */
+ /** @name FrameSystemLimitsBlockLength (134) */
interface FrameSystemLimitsBlockLength extends Struct {
- readonly max: FrameSupportWeightsPerDispatchClassU32;
+ readonly max: FrameSupportDispatchPerDispatchClassU32;
}
- /** @name FrameSupportWeightsPerDispatchClassU32 (138) */
- interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
+ /** @name FrameSupportDispatchPerDispatchClassU32 (135) */
+ interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name FrameSupportWeightsRuntimeDbWeight (139) */
- interface FrameSupportWeightsRuntimeDbWeight extends Struct {
+ /** @name SpWeightsRuntimeDbWeight (136) */
+ interface SpWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (140) */
+ /** @name SpVersionRuntimeVersion (137) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1574,7 +1540,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (145) */
+ /** @name FrameSystemError (142) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1585,7 +1551,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (146) */
+ /** @name PolkadotPrimitivesV2PersistedValidationData (143) */
interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
@@ -1593,18 +1559,18 @@
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */
interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (150) */
+ /** @name SpTrieStorageProof (147) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1612,7 +1578,7 @@
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */
interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
@@ -1622,7 +1588,7 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */
interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
@@ -1635,13 +1601,13 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (163) */
+ /** @name CumulusPalletParachainSystemCall (160) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1662,7 +1628,7 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
@@ -1670,19 +1636,19 @@
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (172) */
+ /** @name CumulusPalletParachainSystemError (169) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1695,14 +1661,14 @@
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
}
- /** @name PalletBalancesBalanceLock (174) */
+ /** @name PalletBalancesBalanceLock (171) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (175) */
+ /** @name PalletBalancesReasons (172) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -1710,20 +1676,20 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (178) */
+ /** @name PalletBalancesReserveData (175) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesReleases (180) */
+ /** @name PalletBalancesReleases (177) */
interface PalletBalancesReleases extends Enum {
readonly isV100: boolean;
readonly isV200: boolean;
readonly type: 'V100' | 'V200';
}
- /** @name PalletBalancesCall (181) */
+ /** @name PalletBalancesCall (178) */
interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1760,7 +1726,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesError (184) */
+ /** @name PalletBalancesError (181) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -1773,7 +1739,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (186) */
+ /** @name PalletTimestampCall (183) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -1782,14 +1748,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (188) */
+ /** @name PalletTransactionPaymentReleases (185) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (189) */
+ /** @name PalletTreasuryProposal (186) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -1797,7 +1763,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (192) */
+ /** @name PalletTreasuryCall (189) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -1824,10 +1790,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (195) */
+ /** @name FrameSupportPalletId (192) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (196) */
+ /** @name PalletTreasuryError (193) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -1837,7 +1803,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (197) */
+ /** @name PalletSudoCall (194) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -1860,7 +1826,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (199) */
+ /** @name OrmlVestingModuleCall (196) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -1880,7 +1846,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlXtokensModuleCall (201) */
+ /** @name OrmlXtokensModuleCall (198) */
interface OrmlXtokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1927,7 +1893,7 @@
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
- /** @name XcmVersionedMultiAsset (202) */
+ /** @name XcmVersionedMultiAsset (199) */
interface XcmVersionedMultiAsset extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiAsset;
@@ -1936,7 +1902,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name OrmlTokensModuleCall (205) */
+ /** @name OrmlTokensModuleCall (202) */
interface OrmlTokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1973,7 +1939,7 @@
readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
}
- /** @name CumulusPalletXcmpQueueCall (206) */
+ /** @name CumulusPalletXcmpQueueCall (203) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2009,7 +1975,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (207) */
+ /** @name PalletXcmCall (204) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -2071,7 +2037,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedXcm (208) */
+ /** @name XcmVersionedXcm (205) */
interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -2082,7 +2048,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (209) */
+ /** @name XcmV0Xcm (206) */
interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2145,7 +2111,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0Order (211) */
+ /** @name XcmV0Order (208) */
interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -2193,14 +2159,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (213) */
+ /** @name XcmV0Response (210) */
interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV1Xcm (214) */
+ /** @name XcmV1Xcm (211) */
interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2269,7 +2235,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1Order (216) */
+ /** @name XcmV1Order (213) */
interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -2319,7 +2285,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1Response (218) */
+ /** @name XcmV1Response (215) */
interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2328,10 +2294,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name CumulusPalletXcmCall (232) */
+ /** @name CumulusPalletXcmCall (229) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (233) */
+ /** @name CumulusPalletDmpQueueCall (230) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2341,7 +2307,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (234) */
+ /** @name PalletInflationCall (231) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2350,7 +2316,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (235) */
+ /** @name PalletUniqueCall (232) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2508,7 +2474,7 @@
readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';
}
- /** @name UpDataStructsCollectionMode (240) */
+ /** @name UpDataStructsCollectionMode (237) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2517,7 +2483,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (241) */
+ /** @name UpDataStructsCreateCollectionData (238) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2531,14 +2497,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (243) */
+ /** @name UpDataStructsAccessMode (240) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (245) */
+ /** @name UpDataStructsCollectionLimits (242) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -2551,7 +2517,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (247) */
+ /** @name UpDataStructsSponsoringRateLimit (244) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -2559,43 +2525,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (250) */
+ /** @name UpDataStructsCollectionPermissions (247) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (252) */
+ /** @name UpDataStructsNestingPermissions (249) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (254) */
+ /** @name UpDataStructsOwnerRestrictedSet (251) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (259) */
+ /** @name UpDataStructsPropertyKeyPermission (256) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (260) */
+ /** @name UpDataStructsPropertyPermission (257) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (263) */
+ /** @name UpDataStructsProperty (260) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (266) */
+ /** @name UpDataStructsCreateItemData (263) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -2606,23 +2572,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (267) */
+ /** @name UpDataStructsCreateNftData (264) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (268) */
+ /** @name UpDataStructsCreateFungibleData (265) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (269) */
+ /** @name UpDataStructsCreateReFungibleData (266) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (272) */
+ /** @name UpDataStructsCreateItemExData (269) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2635,60 +2601,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (274) */
+ /** @name UpDataStructsCreateNftExData (271) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletUniqueSchedulerCall (284) */
- interface PalletUniqueSchedulerCall extends Enum {
- readonly isScheduleNamed: boolean;
- readonly asScheduleNamed: {
- readonly id: U8aFixed;
- readonly when: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- } & Struct;
- readonly isCancelNamed: boolean;
- readonly asCancelNamed: {
- readonly id: U8aFixed;
- } & Struct;
- readonly isScheduleNamedAfter: boolean;
- readonly asScheduleNamedAfter: {
- readonly id: U8aFixed;
- readonly after: u32;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- } & Struct;
- readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
- }
-
- /** @name FrameSupportScheduleMaybeHashed (286) */
- interface FrameSupportScheduleMaybeHashed extends Enum {
- readonly isValue: boolean;
- readonly asValue: Call;
- readonly isHash: boolean;
- readonly asHash: H256;
- readonly type: 'Value' | 'Hash';
- }
-
- /** @name PalletConfigurationCall (287) */
+ /** @name PalletConfigurationCall (281) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -2701,13 +2633,13 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
}
- /** @name PalletTemplateTransactionPaymentCall (289) */
+ /** @name PalletTemplateTransactionPaymentCall (283) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (290) */
+ /** @name PalletStructureCall (284) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (291) */
+ /** @name PalletRmrkCoreCall (285) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2813,7 +2745,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (297) */
+ /** @name RmrkTraitsResourceResourceTypes (291) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2824,7 +2756,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (299) */
+ /** @name RmrkTraitsResourceBasicResource (293) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2832,7 +2764,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (301) */
+ /** @name RmrkTraitsResourceComposableResource (295) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2842,7 +2774,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (302) */
+ /** @name RmrkTraitsResourceSlotResource (296) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2852,7 +2784,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (305) */
+ /** @name PalletRmrkEquipCall (299) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2874,7 +2806,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (308) */
+ /** @name RmrkTraitsPartPartType (302) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2883,14 +2815,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (310) */
+ /** @name RmrkTraitsPartFixedPart (304) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (311) */
+ /** @name RmrkTraitsPartSlotPart (305) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2898,7 +2830,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (312) */
+ /** @name RmrkTraitsPartEquippableList (306) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2907,20 +2839,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (314) */
+ /** @name RmrkTraitsTheme (308) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (316) */
+ /** @name RmrkTraitsThemeThemeProperty (310) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (318) */
+ /** @name PalletAppPromotionCall (312) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -2954,7 +2886,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (320) */
+ /** @name PalletForeignAssetsModuleCall (314) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -2971,7 +2903,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (321) */
+ /** @name PalletEvmCall (315) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3016,7 +2948,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (325) */
+ /** @name PalletEthereumCall (319) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3025,7 +2957,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (326) */
+ /** @name EthereumTransactionTransactionV2 (320) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3036,7 +2968,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (327) */
+ /** @name EthereumTransactionLegacyTransaction (321) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3047,7 +2979,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (328) */
+ /** @name EthereumTransactionTransactionAction (322) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3055,14 +2987,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (329) */
+ /** @name EthereumTransactionTransactionSignature (323) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (331) */
+ /** @name EthereumTransactionEip2930Transaction (325) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3077,13 +3009,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (333) */
+ /** @name EthereumTransactionAccessListItem (327) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (334) */
+ /** @name EthereumTransactionEip1559Transaction (328) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3099,7 +3031,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (335) */
+ /** @name PalletEvmMigrationCall (329) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3118,13 +3050,13 @@
readonly type: 'Begin' | 'SetData' | 'Finish';
}
- /** @name PalletSudoError (338) */
+ /** @name PalletSudoError (332) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (340) */
+ /** @name OrmlVestingModuleError (334) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3135,7 +3067,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (341) */
+ /** @name OrmlXtokensModuleError (335) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3159,26 +3091,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (344) */
+ /** @name OrmlTokensBalanceLock (338) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (346) */
+ /** @name OrmlTokensAccountData (340) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (348) */
+ /** @name OrmlTokensReserveData (342) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (350) */
+ /** @name OrmlTokensModuleError (344) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3191,21 +3123,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (352) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (346) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (353) */
+ /** @name CumulusPalletXcmpQueueInboundState (347) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (356) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (350) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3213,7 +3145,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (359) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (353) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3222,14 +3154,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (360) */
+ /** @name CumulusPalletXcmpQueueOutboundState (354) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (362) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (356) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3239,7 +3171,7 @@
readonly xcmpMaxIndividualWeight: Weight;
}
- /** @name CumulusPalletXcmpQueueError (364) */
+ /** @name CumulusPalletXcmpQueueError (358) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3249,7 +3181,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (365) */
+ /** @name PalletXcmError (359) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3267,29 +3199,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (366) */
+ /** @name CumulusPalletXcmError (360) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (367) */
+ /** @name CumulusPalletDmpQueueConfigData (361) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (368) */
+ /** @name CumulusPalletDmpQueuePageIndexData (362) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (371) */
+ /** @name CumulusPalletDmpQueueError (365) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (375) */
+ /** @name PalletUniqueError (369) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -3298,75 +3230,7 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletUniqueSchedulerScheduledV3 (378) */
- interface PalletUniqueSchedulerScheduledV3 extends Struct {
- readonly maybeId: Option<U8aFixed>;
- readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
- readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: OpalRuntimeOriginCaller;
- }
-
- /** @name OpalRuntimeOriginCaller (379) */
- interface OpalRuntimeOriginCaller extends Enum {
- readonly isSystem: boolean;
- readonly asSystem: FrameSupportDispatchRawOrigin;
- readonly isVoid: boolean;
- readonly isPolkadotXcm: boolean;
- readonly asPolkadotXcm: PalletXcmOrigin;
- readonly isCumulusXcm: boolean;
- readonly asCumulusXcm: CumulusPalletXcmOrigin;
- readonly isEthereum: boolean;
- readonly asEthereum: PalletEthereumRawOrigin;
- readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
- }
-
- /** @name FrameSupportDispatchRawOrigin (380) */
- interface FrameSupportDispatchRawOrigin extends Enum {
- readonly isRoot: boolean;
- readonly isSigned: boolean;
- readonly asSigned: AccountId32;
- readonly isNone: boolean;
- readonly type: 'Root' | 'Signed' | 'None';
- }
-
- /** @name PalletXcmOrigin (381) */
- interface PalletXcmOrigin extends Enum {
- readonly isXcm: boolean;
- readonly asXcm: XcmV1MultiLocation;
- readonly isResponse: boolean;
- readonly asResponse: XcmV1MultiLocation;
- readonly type: 'Xcm' | 'Response';
- }
-
- /** @name CumulusPalletXcmOrigin (382) */
- interface CumulusPalletXcmOrigin extends Enum {
- readonly isRelay: boolean;
- readonly isSiblingParachain: boolean;
- readonly asSiblingParachain: u32;
- readonly type: 'Relay' | 'SiblingParachain';
- }
-
- /** @name PalletEthereumRawOrigin (383) */
- interface PalletEthereumRawOrigin extends Enum {
- readonly isEthereumTransaction: boolean;
- readonly asEthereumTransaction: H160;
- readonly type: 'EthereumTransaction';
- }
-
- /** @name SpCoreVoid (384) */
- type SpCoreVoid = Null;
-
- /** @name PalletUniqueSchedulerError (385) */
- interface PalletUniqueSchedulerError extends Enum {
- readonly isFailedToSchedule: boolean;
- readonly isNotFound: boolean;
- readonly isTargetBlockNumberInPast: boolean;
- readonly isRescheduleNoChange: boolean;
- readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
- }
-
- /** @name UpDataStructsCollection (386) */
+ /** @name UpDataStructsCollection (370) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3379,7 +3243,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (387) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (371) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3389,43 +3253,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (389) */
+ /** @name UpDataStructsProperties (373) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (390) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (374) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (395) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (379) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (402) */
+ /** @name UpDataStructsCollectionStats (386) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (403) */
+ /** @name UpDataStructsTokenChild (387) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (404) */
+ /** @name PhantomTypeUpDataStructs (388) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (406) */
+ /** @name UpDataStructsTokenData (390) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (408) */
+ /** @name UpDataStructsRpcCollection (392) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3441,13 +3305,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (409) */
+ /** @name UpDataStructsRpcCollectionFlags (393) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (410) */
+ /** @name RmrkTraitsCollectionCollectionInfo (394) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3456,7 +3320,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (411) */
+ /** @name RmrkTraitsNftNftInfo (395) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3465,13 +3329,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (413) */
+ /** @name RmrkTraitsNftRoyaltyInfo (397) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (414) */
+ /** @name RmrkTraitsResourceResourceInfo (398) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3479,26 +3343,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (415) */
+ /** @name RmrkTraitsPropertyPropertyInfo (399) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (416) */
+ /** @name RmrkTraitsBaseBaseInfo (400) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (417) */
+ /** @name RmrkTraitsNftNftChild (401) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (419) */
+ /** @name PalletCommonError (403) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3537,7 +3401,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
}
- /** @name PalletFungibleError (421) */
+ /** @name PalletFungibleError (405) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3547,12 +3411,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletRefungibleItemData (422) */
+ /** @name PalletRefungibleItemData (406) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (427) */
+ /** @name PalletRefungibleError (411) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3562,19 +3426,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (428) */
+ /** @name PalletNonfungibleItemData (412) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (430) */
+ /** @name UpDataStructsPropertyScope (414) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (432) */
+ /** @name PalletNonfungibleError (416) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3582,7 +3446,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (433) */
+ /** @name PalletStructureError (417) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3591,7 +3455,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (434) */
+ /** @name PalletRmrkCoreError (418) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3615,7 +3479,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (436) */
+ /** @name PalletRmrkEquipError (420) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3627,7 +3491,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (442) */
+ /** @name PalletAppPromotionError (426) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3638,7 +3502,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (443) */
+ /** @name PalletForeignAssetsModuleError (427) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3647,7 +3511,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (446) */
+ /** @name PalletEvmError (430) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3658,7 +3522,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (449) */
+ /** @name FpRpcTransactionStatus (433) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3669,10 +3533,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (451) */
+ /** @name EthbloomBloom (435) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (453) */
+ /** @name EthereumReceiptReceiptV3 (437) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3683,7 +3547,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (454) */
+ /** @name EthereumReceiptEip658ReceiptData (438) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3691,14 +3555,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (455) */
+ /** @name EthereumBlock (439) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (456) */
+ /** @name EthereumHeader (440) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3717,24 +3581,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (457) */
+ /** @name EthereumTypesHashH64 (441) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (462) */
+ /** @name PalletEthereumError (446) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (463) */
+ /** @name PalletEvmCoderSubstrateError (447) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (464) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (448) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3744,7 +3608,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (465) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (449) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3752,7 +3616,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (471) */
+ /** @name PalletEvmContractHelpersError (455) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3760,14 +3624,14 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (472) */
+ /** @name PalletEvmMigrationError (456) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (474) */
+ /** @name SpRuntimeMultiSignature (458) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3778,37 +3642,37 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (475) */
+ /** @name SpCoreEd25519Signature (459) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (477) */
+ /** @name SpCoreSr25519Signature (461) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (478) */
+ /** @name SpCoreEcdsaSignature (462) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (481) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (465) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (482) */
+ /** @name FrameSystemExtensionsCheckTxVersion (466) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (483) */
+ /** @name FrameSystemExtensionsCheckGenesis (467) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (486) */
+ /** @name FrameSystemExtensionsCheckNonce (470) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (487) */
+ /** @name FrameSystemExtensionsCheckWeight (471) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (488) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (472) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (489) */
+ /** @name OpalRuntimeRuntime (473) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (490) */
+ /** @name PalletEthereumFakeTransactionFinalizer (474) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module
tests/update_types.shdiffbeforeafterboth--- a/tests/update_types.sh
+++ b/tests/update_types.sh
@@ -12,8 +12,3 @@
for file in unique-types-js/augment-* unique-types-js/**/types.ts unique-types-js/registry.ts; do
sed -i '1s;^;//@ts-nocheck\n;' $file
done
-
-pushd unique-types-js
-git add .
-git commit -m "chore: regenerate types"
-popd