git.delta.rocks / unique-network / refs/commits / 1faae1df61d6

difftreelog

chore regenerate types / update yarn.lock

Daniel Shiposha2022-12-08parent: #8db6dc9.patch.diff
in: master

13 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -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 { H160, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
 
 export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
 
@@ -110,7 +110,7 @@
       /**
        * The maximum weight that may be scheduled per block for any dispatchables.
        **/
-      maximumWeight: Weight & AugmentedConst<ApiType>;
+      maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
       /**
        * The maximum number of scheduled calls in the queue for a single block.
        **/
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -55,7 +55,7 @@
        **/
       ExistingVestingSchedule: AugmentedError<ApiType>;
       /**
-       * Balance too low to send value
+       * Balance too low to send value.
        **/
       InsufficientBalance: AugmentedError<ApiType>;
       /**
@@ -386,7 +386,7 @@
        **/
       NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;
       /**
-       * Setting approval for all is not allowed.
+       * Setting allowance for all is not allowed.
        **/
       SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;
       /**
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -8,8 +8,8 @@
 import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
 import type { Bytes, Null, Option, Result, 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, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 
 export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
 
@@ -188,11 +188,11 @@
       /**
        * Downward message is overweight and was placed in the overweight queue.
        **/
-      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight }>;
+      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;
       /**
        * Downward message from the overweight queue was executed.
        **/
-      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { overweightIndex: u64, weightUsed: Weight }>;
+      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;
       /**
        * Downward message is unsupported version of XCM.
        **/
@@ -200,7 +200,7 @@
       /**
        * The weight limit for handling downward messages was reached.
        **/
-      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight }>;
+      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;
       /**
        * Generic event
        **/
@@ -304,7 +304,7 @@
       /**
        * Downward messages were processed using the given weight.
        **/
-      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { weightUsed: Weight, dmqHead: H256 }>;
+      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;
       /**
        * Some downward messages have been received and will be processed.
        **/
@@ -332,6 +332,12 @@
     };
     polkadotXcm: {
       /**
+       * Some assets have been claimed from an asset trap
+       * 
+       * \[ hash, origin, assets \]
+       **/
+      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+      /**
        * Some assets have been placed in an asset trap.
        * 
        * \[ hash, origin, assets \]
@@ -392,7 +398,7 @@
        * 
        * \[ id, pallet index, call index, actual weight, max budgeted weight \]
        **/
-      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>;
+      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;
       /**
        * A given location which had a version change subscription was dropped owing to an error
        * migrating the location to our new XCM format.
@@ -800,19 +806,19 @@
       /**
        * Some XCM failed.
        **/
-      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight }>;
+      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;
       /**
        * An XCM exceeded the individual message weight budget.
        **/
-      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { sender: u32, sentAt: u32, index: u64, required: Weight }>;
+      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;
       /**
        * An XCM from the overweight queue was executed with the given actual weight used.
        **/
-      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { index: u64, used: Weight }>;
+      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;
       /**
        * Some XCM was executed ok.
        **/
-      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { messageHash: Option<H256>, weight: Weight }>;
+      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;
       /**
        * An upward message was sent to the relay chain.
        **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -8,8 +8,8 @@
 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 { 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, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
+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, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, 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>;
@@ -566,12 +566,12 @@
        * The weight we reserve at the beginning of the block for processing DMP messages. This
        * overrides the amount set in the Config trait.
        **/
-      reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;
+      reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<SpWeightsWeightV2Weight>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * The weight we reserve at the beginning of the block for processing XCMP messages. This
        * overrides the amount set in the Config trait.
        **/
-      reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;
+      reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<SpWeightsWeightV2Weight>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * An option which indicates if the relay-chain restricts signalling a validation code upgrade.
        * In other words, if this is `Some` and [`NewValidationCode`] is `Some` then the produced
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -16,7 +16,7 @@
 import type { BlockHash } from '@polkadot/types/interfaces/chain';
 import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
 import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
-import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';
 import type { BlockStats } from '@polkadot/types/interfaces/dev';
 import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
 import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
@@ -24,7 +24,7 @@
 import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
 import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
-import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
 import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
 import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
@@ -174,7 +174,7 @@
        * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
        * Instantiate a new contract
        **/
-      instantiate: AugmentedRpc<(request: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+      instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
       /**
        * @deprecated Not available in newer versions of the contracts interfaces
        * Returns the projected time a given contract will be able to sustain paying its rent
@@ -426,13 +426,15 @@
     };
     payment: {
       /**
+       * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead
        * Query the detailed fee of a given encoded extrinsic
        **/
       queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;
       /**
+       * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead
        * Retrieves the fee information for an encoded extrinsic
        **/
-      queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;
+      queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
     };
     rmrk: {
       /**
modifiedtests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -229,7 +229,7 @@
        **/
       [key: string]: DecoratedCallBase<ApiType>;
     };
-    /** 0x37c8bb1350a9a2a8/1 */
+    /** 0x37c8bb1350a9a2a8/2 */
     transactionPaymentApi: {
       /**
        * The transaction fee details
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -8,8 +8,8 @@
 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 { 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, EthereumLog, 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';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, 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>;
@@ -243,7 +243,7 @@
        * Events:
        * - `OverweightServiced`: On success.
        **/
-      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;
+      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
       /**
        * Generic tx
        **/
@@ -383,7 +383,7 @@
        * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully
        * to completion; only that *some* of it was executed.
        **/
-      execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, Weight]>;
+      execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;
       /**
        * Set a safe XCM version (the version that XCM should be encoded with if the most recent
        * version a destination can accept is unknown).
@@ -953,7 +953,7 @@
        * - The weight of this call is defined by the caller.
        * # </weight>
        **/
-      sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, Weight]>;
+      sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
       /**
        * Generic tx
        **/
@@ -1759,7 +1759,7 @@
        * Events:
        * - `OverweightServiced`: On success.
        **/
-      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;
+      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
       /**
        * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
        * 
@@ -1796,7 +1796,7 @@
        * - `origin`: Must pass `Root`.
        * - `new`: Desired value for `QueueConfigData.threshold_weight`
        **/
-      updateThresholdWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
+      updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
       /**
        * Overwrites the speed to which the available weight approaches the maximum weight.
        * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
@@ -1804,7 +1804,7 @@
        * - `origin`: Must pass `Root`.
        * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.
        **/
-      updateWeightRestrictDecay: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
+      updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
       /**
        * Overwrite the maximum amount of weight any individual message may consume.
        * Messages above this weight go into the overweight queue and may only be serviced explicitly.
@@ -1812,7 +1812,7 @@
        * - `origin`: Must pass `Root`.
        * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.
        **/
-      updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;
+      updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
       /**
        * Generic tx
        **/
@@ -1822,9 +1822,9 @@
       /**
        * Transfer native currencies.
        * 
-       * `dest_weight` is the weight for XCM execution on the dest chain, and
-       * it would be charged from the transferred assets. If set below
-       * requirements, the execution may fail and assets wouldn't be
+       * `dest_weight_limit` is the weight for XCM execution on the dest
+       * chain, and it would be charged from the transferred assets. If set
+       * below requirements, the execution may fail and assets wouldn't be
        * received.
        * 
        * It's a no-op if any error on local XCM execution or message sending.
@@ -1833,13 +1833,13 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, u64]>;
+      transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
       /**
        * Transfer `MultiAsset`.
        * 
-       * `dest_weight` is the weight for XCM execution on the dest chain, and
-       * it would be charged from the transferred assets. If set below
-       * requirements, the execution may fail and assets wouldn't be
+       * `dest_weight_limit` is the weight for XCM execution on the dest
+       * chain, and it would be charged from the transferred assets. If set
+       * below requirements, the execution may fail and assets wouldn't be
        * received.
        * 
        * It's a no-op if any error on local XCM execution or message sending.
@@ -1848,13 +1848,13 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, u64]>;
+      transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
       /**
        * Transfer several `MultiAsset` specifying the item to be used as fee
        * 
-       * `dest_weight` is the weight for XCM execution on the dest chain, and
-       * it would be charged from the transferred assets. If set below
-       * requirements, the execution may fail and assets wouldn't be
+       * `dest_weight_limit` is the weight for XCM execution on the dest
+       * chain, and it would be charged from the transferred assets. If set
+       * below requirements, the execution may fail and assets wouldn't be
        * received.
        * 
        * `fee_item` is index of the MultiAssets that we want to use for
@@ -1866,13 +1866,13 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, u64]>;
+      transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
       /**
        * Transfer `MultiAsset` specifying the fee and amount as separate.
        * 
-       * `dest_weight` is the weight for XCM execution on the dest chain, and
-       * it would be charged from the transferred assets. If set below
-       * requirements, the execution may fail and assets wouldn't be
+       * `dest_weight_limit` is the weight for XCM execution on the dest
+       * chain, and it would be charged from the transferred assets. If set
+       * below requirements, the execution may fail and assets wouldn't be
        * received.
        * 
        * `fee` is the multiasset to be spent to pay for execution in
@@ -1890,13 +1890,13 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, u64]>;
+      transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
       /**
        * Transfer several currencies specifying the item to be used as fee
        * 
-       * `dest_weight` is the weight for XCM execution on the dest chain, and
-       * it would be charged from the transferred assets. If set below
-       * requirements, the execution may fail and assets wouldn't be
+       * `dest_weight_limit` is the weight for XCM execution on the dest
+       * chain, and it would be charged from the transferred assets. If set
+       * below requirements, the execution may fail and assets wouldn't be
        * received.
        * 
        * `fee_item` is index of the currencies tuple that we want to use for
@@ -1908,14 +1908,14 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, u64]>;
+      transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
       /**
        * Transfer native currencies specifying the fee and amount as
        * separate.
        * 
-       * `dest_weight` is the weight for XCM execution on the dest chain, and
-       * it would be charged from the transferred assets. If set below
-       * requirements, the execution may fail and assets wouldn't be
+       * `dest_weight_limit` is the weight for XCM execution on the dest
+       * chain, and it would be charged from the transferred assets. If set
+       * below requirements, the execution may fail and assets wouldn't be
        * received.
        * 
        * `fee` is the amount to be spent to pay for execution in destination
@@ -1932,7 +1932,7 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, u64]>;
+      transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
       /**
        * Generic tx
        **/
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
before · tests/src/interfaces/augment-types.ts
1// 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, 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, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, 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    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    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;522    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;523    FrameSupportDispatchPays: FrameSupportDispatchPays;524    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;525    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;526    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;527    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;528    FrameSupportPalletId: FrameSupportPalletId;529    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;530    FrameSystemAccountInfo: FrameSystemAccountInfo;531    FrameSystemCall: FrameSystemCall;532    FrameSystemError: FrameSystemError;533    FrameSystemEvent: FrameSystemEvent;534    FrameSystemEventRecord: FrameSystemEventRecord;535    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;536    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;537    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;538    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;539    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;540    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;541    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;542    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;543    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;544    FrameSystemPhase: FrameSystemPhase;545    FullIdentification: FullIdentification;546    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;547    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;548    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;549    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;550    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;551    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;552    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;553    FunctionMetadataLatest: FunctionMetadataLatest;554    FunctionMetadataV10: FunctionMetadataV10;555    FunctionMetadataV11: FunctionMetadataV11;556    FunctionMetadataV12: FunctionMetadataV12;557    FunctionMetadataV13: FunctionMetadataV13;558    FunctionMetadataV14: FunctionMetadataV14;559    FunctionMetadataV9: FunctionMetadataV9;560    FundIndex: FundIndex;561    FundInfo: FundInfo;562    Fungibility: Fungibility;563    FungibilityV0: FungibilityV0;564    FungibilityV1: FungibilityV1;565    FungibilityV2: FungibilityV2;566    Gas: Gas;567    GiltBid: GiltBid;568    GlobalValidationData: GlobalValidationData;569    GlobalValidationSchedule: GlobalValidationSchedule;570    GrandpaCommit: GrandpaCommit;571    GrandpaEquivocation: GrandpaEquivocation;572    GrandpaEquivocationProof: GrandpaEquivocationProof;573    GrandpaEquivocationValue: GrandpaEquivocationValue;574    GrandpaJustification: GrandpaJustification;575    GrandpaPrecommit: GrandpaPrecommit;576    GrandpaPrevote: GrandpaPrevote;577    GrandpaSignedPrecommit: GrandpaSignedPrecommit;578    GroupIndex: GroupIndex;579    GroupRotationInfo: GroupRotationInfo;580    H1024: H1024;581    H128: H128;582    H160: H160;583    H2048: H2048;584    H256: H256;585    H32: H32;586    H512: H512;587    H64: H64;588    Hash: Hash;589    HeadData: HeadData;590    Header: Header;591    HeaderPartial: HeaderPartial;592    Health: Health;593    Heartbeat: Heartbeat;594    HeartbeatTo244: HeartbeatTo244;595    HostConfiguration: HostConfiguration;596    HostFnWeights: HostFnWeights;597    HostFnWeightsTo264: HostFnWeightsTo264;598    HrmpChannel: HrmpChannel;599    HrmpChannelId: HrmpChannelId;600    HrmpOpenChannelRequest: HrmpOpenChannelRequest;601    i128: i128;602    I128: I128;603    i16: i16;604    I16: I16;605    i256: i256;606    I256: I256;607    i32: i32;608    I32: I32;609    I32F32: I32F32;610    i64: i64;611    I64: I64;612    i8: i8;613    I8: I8;614    IdentificationTuple: IdentificationTuple;615    IdentityFields: IdentityFields;616    IdentityInfo: IdentityInfo;617    IdentityInfoAdditional: IdentityInfoAdditional;618    IdentityInfoTo198: IdentityInfoTo198;619    IdentityJudgement: IdentityJudgement;620    ImmortalEra: ImmortalEra;621    ImportedAux: ImportedAux;622    InboundDownwardMessage: InboundDownwardMessage;623    InboundHrmpMessage: InboundHrmpMessage;624    InboundHrmpMessages: InboundHrmpMessages;625    InboundLaneData: InboundLaneData;626    InboundRelayer: InboundRelayer;627    InboundStatus: InboundStatus;628    IncludedBlocks: IncludedBlocks;629    InclusionFee: InclusionFee;630    IncomingParachain: IncomingParachain;631    IncomingParachainDeploy: IncomingParachainDeploy;632    IncomingParachainFixed: IncomingParachainFixed;633    Index: Index;634    IndicesLookupSource: IndicesLookupSource;635    IndividualExposure: IndividualExposure;636    InherentData: InherentData;637    InherentIdentifier: InherentIdentifier;638    InitializationData: InitializationData;639    InstanceDetails: InstanceDetails;640    InstanceId: InstanceId;641    InstanceMetadata: InstanceMetadata;642    InstantiateRequest: InstantiateRequest;643    InstantiateRequestV1: InstantiateRequestV1;644    InstantiateRequestV2: InstantiateRequestV2;645    InstantiateReturnValue: InstantiateReturnValue;646    InstantiateReturnValueOk: InstantiateReturnValueOk;647    InstantiateReturnValueTo267: InstantiateReturnValueTo267;648    InstructionV2: InstructionV2;649    InstructionWeights: InstructionWeights;650    InteriorMultiLocation: InteriorMultiLocation;651    InvalidDisputeStatementKind: InvalidDisputeStatementKind;652    InvalidTransaction: InvalidTransaction;653    Json: Json;654    Junction: Junction;655    Junctions: Junctions;656    JunctionsV1: JunctionsV1;657    JunctionsV2: JunctionsV2;658    JunctionV0: JunctionV0;659    JunctionV1: JunctionV1;660    JunctionV2: JunctionV2;661    Justification: Justification;662    JustificationNotification: JustificationNotification;663    Justifications: Justifications;664    Key: Key;665    KeyOwnerProof: KeyOwnerProof;666    Keys: Keys;667    KeyType: KeyType;668    KeyTypeId: KeyTypeId;669    KeyValue: KeyValue;670    KeyValueOption: KeyValueOption;671    Kind: Kind;672    LaneId: LaneId;673    LastContribution: LastContribution;674    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;675    LeasePeriod: LeasePeriod;676    LeasePeriodOf: LeasePeriodOf;677    LegacyTransaction: LegacyTransaction;678    Limits: Limits;679    LimitsTo264: LimitsTo264;680    LocalValidationData: LocalValidationData;681    LockIdentifier: LockIdentifier;682    LookupSource: LookupSource;683    LookupTarget: LookupTarget;684    LotteryConfig: LotteryConfig;685    MaybeRandomness: MaybeRandomness;686    MaybeVrf: MaybeVrf;687    MemberCount: MemberCount;688    MembershipProof: MembershipProof;689    MessageData: MessageData;690    MessageId: MessageId;691    MessageIngestionType: MessageIngestionType;692    MessageKey: MessageKey;693    MessageNonce: MessageNonce;694    MessageQueueChain: MessageQueueChain;695    MessagesDeliveryProofOf: MessagesDeliveryProofOf;696    MessagesProofOf: MessagesProofOf;697    MessagingStateSnapshot: MessagingStateSnapshot;698    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;699    MetadataAll: MetadataAll;700    MetadataLatest: MetadataLatest;701    MetadataV10: MetadataV10;702    MetadataV11: MetadataV11;703    MetadataV12: MetadataV12;704    MetadataV13: MetadataV13;705    MetadataV14: MetadataV14;706    MetadataV9: MetadataV9;707    MigrationStatusResult: MigrationStatusResult;708    MmrBatchProof: MmrBatchProof;709    MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;710    MmrError: MmrError;711    MmrLeafBatchProof: MmrLeafBatchProof;712    MmrLeafIndex: MmrLeafIndex;713    MmrLeafProof: MmrLeafProof;714    MmrNodeIndex: MmrNodeIndex;715    MmrProof: MmrProof;716    MmrRootHash: MmrRootHash;717    ModuleConstantMetadataV10: ModuleConstantMetadataV10;718    ModuleConstantMetadataV11: ModuleConstantMetadataV11;719    ModuleConstantMetadataV12: ModuleConstantMetadataV12;720    ModuleConstantMetadataV13: ModuleConstantMetadataV13;721    ModuleConstantMetadataV9: ModuleConstantMetadataV9;722    ModuleId: ModuleId;723    ModuleMetadataV10: ModuleMetadataV10;724    ModuleMetadataV11: ModuleMetadataV11;725    ModuleMetadataV12: ModuleMetadataV12;726    ModuleMetadataV13: ModuleMetadataV13;727    ModuleMetadataV9: ModuleMetadataV9;728    Moment: Moment;729    MomentOf: MomentOf;730    MoreAttestations: MoreAttestations;731    MortalEra: MortalEra;732    MultiAddress: MultiAddress;733    MultiAsset: MultiAsset;734    MultiAssetFilter: MultiAssetFilter;735    MultiAssetFilterV1: MultiAssetFilterV1;736    MultiAssetFilterV2: MultiAssetFilterV2;737    MultiAssets: MultiAssets;738    MultiAssetsV1: MultiAssetsV1;739    MultiAssetsV2: MultiAssetsV2;740    MultiAssetV0: MultiAssetV0;741    MultiAssetV1: MultiAssetV1;742    MultiAssetV2: MultiAssetV2;743    MultiDisputeStatementSet: MultiDisputeStatementSet;744    MultiLocation: MultiLocation;745    MultiLocationV0: MultiLocationV0;746    MultiLocationV1: MultiLocationV1;747    MultiLocationV2: MultiLocationV2;748    Multiplier: Multiplier;749    Multisig: Multisig;750    MultiSignature: MultiSignature;751    MultiSigner: MultiSigner;752    NetworkId: NetworkId;753    NetworkState: NetworkState;754    NetworkStatePeerset: NetworkStatePeerset;755    NetworkStatePeersetInfo: NetworkStatePeersetInfo;756    NewBidder: NewBidder;757    NextAuthority: NextAuthority;758    NextConfigDescriptor: NextConfigDescriptor;759    NextConfigDescriptorV1: NextConfigDescriptorV1;760    NodeRole: NodeRole;761    Nominations: Nominations;762    NominatorIndex: NominatorIndex;763    NominatorIndexCompact: NominatorIndexCompact;764    NotConnectedPeer: NotConnectedPeer;765    NpApiError: NpApiError;766    Null: Null;767    OccupiedCore: OccupiedCore;768    OccupiedCoreAssumption: OccupiedCoreAssumption;769    OffchainAccuracy: OffchainAccuracy;770    OffchainAccuracyCompact: OffchainAccuracyCompact;771    OffenceDetails: OffenceDetails;772    Offender: Offender;773    OldV1SessionInfo: OldV1SessionInfo;774    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;775    OpalRuntimeRuntime: OpalRuntimeRuntime;776    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;777    OpaqueCall: OpaqueCall;778    OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;779    OpaqueMetadata: OpaqueMetadata;780    OpaqueMultiaddr: OpaqueMultiaddr;781    OpaqueNetworkState: OpaqueNetworkState;782    OpaquePeerId: OpaquePeerId;783    OpaqueTimeSlot: OpaqueTimeSlot;784    OpenTip: OpenTip;785    OpenTipFinderTo225: OpenTipFinderTo225;786    OpenTipTip: OpenTipTip;787    OpenTipTo225: OpenTipTo225;788    OperatingMode: OperatingMode;789    OptionBool: OptionBool;790    Origin: Origin;791    OriginCaller: OriginCaller;792    OriginKindV0: OriginKindV0;793    OriginKindV1: OriginKindV1;794    OriginKindV2: OriginKindV2;795    OrmlTokensAccountData: OrmlTokensAccountData;796    OrmlTokensBalanceLock: OrmlTokensBalanceLock;797    OrmlTokensModuleCall: OrmlTokensModuleCall;798    OrmlTokensModuleError: OrmlTokensModuleError;799    OrmlTokensModuleEvent: OrmlTokensModuleEvent;800    OrmlTokensReserveData: OrmlTokensReserveData;801    OrmlVestingModuleCall: OrmlVestingModuleCall;802    OrmlVestingModuleError: OrmlVestingModuleError;803    OrmlVestingModuleEvent: OrmlVestingModuleEvent;804    OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;805    OrmlXtokensModuleCall: OrmlXtokensModuleCall;806    OrmlXtokensModuleError: OrmlXtokensModuleError;807    OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;808    OutboundHrmpMessage: OutboundHrmpMessage;809    OutboundLaneData: OutboundLaneData;810    OutboundMessageFee: OutboundMessageFee;811    OutboundPayload: OutboundPayload;812    OutboundStatus: OutboundStatus;813    Outcome: Outcome;814    OverweightIndex: OverweightIndex;815    Owner: Owner;816    PageCounter: PageCounter;817    PageIndexData: PageIndexData;818    PalletAppPromotionCall: PalletAppPromotionCall;819    PalletAppPromotionError: PalletAppPromotionError;820    PalletAppPromotionEvent: PalletAppPromotionEvent;821    PalletBalancesAccountData: PalletBalancesAccountData;822    PalletBalancesBalanceLock: PalletBalancesBalanceLock;823    PalletBalancesCall: PalletBalancesCall;824    PalletBalancesError: PalletBalancesError;825    PalletBalancesEvent: PalletBalancesEvent;826    PalletBalancesReasons: PalletBalancesReasons;827    PalletBalancesReleases: PalletBalancesReleases;828    PalletBalancesReserveData: PalletBalancesReserveData;829    PalletCallMetadataLatest: PalletCallMetadataLatest;830    PalletCallMetadataV14: PalletCallMetadataV14;831    PalletCommonError: PalletCommonError;832    PalletCommonEvent: PalletCommonEvent;833    PalletConfigurationCall: PalletConfigurationCall;834    PalletConstantMetadataLatest: PalletConstantMetadataLatest;835    PalletConstantMetadataV14: PalletConstantMetadataV14;836    PalletErrorMetadataLatest: PalletErrorMetadataLatest;837    PalletErrorMetadataV14: PalletErrorMetadataV14;838    PalletEthereumCall: PalletEthereumCall;839    PalletEthereumError: PalletEthereumError;840    PalletEthereumEvent: PalletEthereumEvent;841    PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;842    PalletEthereumRawOrigin: PalletEthereumRawOrigin;843    PalletEventMetadataLatest: PalletEventMetadataLatest;844    PalletEventMetadataV14: PalletEventMetadataV14;845    PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;846    PalletEvmCall: PalletEvmCall;847    PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;848    PalletEvmContractHelpersError: PalletEvmContractHelpersError;849    PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;850    PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;851    PalletEvmError: PalletEvmError;852    PalletEvmEvent: PalletEvmEvent;853    PalletEvmMigrationCall: PalletEvmMigrationCall;854    PalletEvmMigrationError: PalletEvmMigrationError;855    PalletEvmMigrationEvent: PalletEvmMigrationEvent;856    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;857    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;858    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;859    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;860    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;861    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;862    PalletFungibleError: PalletFungibleError;863    PalletId: PalletId;864    PalletInflationCall: PalletInflationCall;865    PalletMaintenanceCall: PalletMaintenanceCall;866    PalletMaintenanceError: PalletMaintenanceError;867    PalletMaintenanceEvent: PalletMaintenanceEvent;868    PalletMetadataLatest: PalletMetadataLatest;869    PalletMetadataV14: PalletMetadataV14;870    PalletNonfungibleError: PalletNonfungibleError;871    PalletNonfungibleItemData: PalletNonfungibleItemData;872    PalletRefungibleError: PalletRefungibleError;873    PalletRefungibleItemData: PalletRefungibleItemData;874    PalletRmrkCoreCall: PalletRmrkCoreCall;875    PalletRmrkCoreError: PalletRmrkCoreError;876    PalletRmrkCoreEvent: PalletRmrkCoreEvent;877    PalletRmrkEquipCall: PalletRmrkEquipCall;878    PalletRmrkEquipError: PalletRmrkEquipError;879    PalletRmrkEquipEvent: PalletRmrkEquipEvent;880    PalletsOrigin: PalletsOrigin;881    PalletStorageMetadataLatest: PalletStorageMetadataLatest;882    PalletStorageMetadataV14: PalletStorageMetadataV14;883    PalletStructureCall: PalletStructureCall;884    PalletStructureError: PalletStructureError;885    PalletStructureEvent: PalletStructureEvent;886    PalletSudoCall: PalletSudoCall;887    PalletSudoError: PalletSudoError;888    PalletSudoEvent: PalletSudoEvent;889    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;890    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;891    PalletTestUtilsCall: PalletTestUtilsCall;892    PalletTestUtilsError: PalletTestUtilsError;893    PalletTestUtilsEvent: PalletTestUtilsEvent;894    PalletTimestampCall: PalletTimestampCall;895    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;896    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;897    PalletTreasuryCall: PalletTreasuryCall;898    PalletTreasuryError: PalletTreasuryError;899    PalletTreasuryEvent: PalletTreasuryEvent;900    PalletTreasuryProposal: PalletTreasuryProposal;901    PalletUniqueCall: PalletUniqueCall;902    PalletUniqueError: PalletUniqueError;903    PalletUniqueRawEvent: PalletUniqueRawEvent;904    PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;905    PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;906    PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;907    PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;908    PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;909    PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;910    PalletVersion: PalletVersion;911    PalletXcmCall: PalletXcmCall;912    PalletXcmError: PalletXcmError;913    PalletXcmEvent: PalletXcmEvent;914    PalletXcmOrigin: PalletXcmOrigin;915    ParachainDispatchOrigin: ParachainDispatchOrigin;916    ParachainInherentData: ParachainInherentData;917    ParachainProposal: ParachainProposal;918    ParachainsInherentData: ParachainsInherentData;919    ParaGenesisArgs: ParaGenesisArgs;920    ParaId: ParaId;921    ParaInfo: ParaInfo;922    ParaLifecycle: ParaLifecycle;923    Parameter: Parameter;924    ParaPastCodeMeta: ParaPastCodeMeta;925    ParaScheduling: ParaScheduling;926    ParathreadClaim: ParathreadClaim;927    ParathreadClaimQueue: ParathreadClaimQueue;928    ParathreadEntry: ParathreadEntry;929    ParaValidatorIndex: ParaValidatorIndex;930    Pays: Pays;931    Peer: Peer;932    PeerEndpoint: PeerEndpoint;933    PeerEndpointAddr: PeerEndpointAddr;934    PeerInfo: PeerInfo;935    PeerPing: PeerPing;936    PendingChange: PendingChange;937    PendingPause: PendingPause;938    PendingResume: PendingResume;939    Perbill: Perbill;940    Percent: Percent;941    PerDispatchClassU32: PerDispatchClassU32;942    PerDispatchClassWeight: PerDispatchClassWeight;943    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;944    Period: Period;945    Permill: Permill;946    PermissionLatest: PermissionLatest;947    PermissionsV1: PermissionsV1;948    PermissionVersions: PermissionVersions;949    Perquintill: Perquintill;950    PersistedValidationData: PersistedValidationData;951    PerU16: PerU16;952    Phantom: Phantom;953    PhantomData: PhantomData;954    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;955    Phase: Phase;956    PhragmenScore: PhragmenScore;957    Points: Points;958    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;959    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;960    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;961    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;962    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;963    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;964    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;965    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;966    PortableType: PortableType;967    PortableTypeV14: PortableTypeV14;968    Precommits: Precommits;969    PrefabWasmModule: PrefabWasmModule;970    PrefixedStorageKey: PrefixedStorageKey;971    PreimageStatus: PreimageStatus;972    PreimageStatusAvailable: PreimageStatusAvailable;973    PreRuntime: PreRuntime;974    Prevotes: Prevotes;975    Priority: Priority;976    PriorLock: PriorLock;977    PropIndex: PropIndex;978    Proposal: Proposal;979    ProposalIndex: ProposalIndex;980    ProxyAnnouncement: ProxyAnnouncement;981    ProxyDefinition: ProxyDefinition;982    ProxyState: ProxyState;983    ProxyType: ProxyType;984    PvfCheckStatement: PvfCheckStatement;985    QueryId: QueryId;986    QueryStatus: QueryStatus;987    QueueConfigData: QueueConfigData;988    QueuedParathread: QueuedParathread;989    Randomness: Randomness;990    Raw: Raw;991    RawAuraPreDigest: RawAuraPreDigest;992    RawBabePreDigest: RawBabePreDigest;993    RawBabePreDigestCompat: RawBabePreDigestCompat;994    RawBabePreDigestPrimary: RawBabePreDigestPrimary;995    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;996    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;997    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;998    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;999    RawBabePreDigestTo159: RawBabePreDigestTo159;1000    RawOrigin: RawOrigin;1001    RawSolution: RawSolution;1002    RawSolutionTo265: RawSolutionTo265;1003    RawSolutionWith16: RawSolutionWith16;1004    RawSolutionWith24: RawSolutionWith24;1005    RawVRFOutput: RawVRFOutput;1006    ReadProof: ReadProof;1007    ReadySolution: ReadySolution;1008    Reasons: Reasons;1009    RecoveryConfig: RecoveryConfig;1010    RefCount: RefCount;1011    RefCountTo259: RefCountTo259;1012    ReferendumIndex: ReferendumIndex;1013    ReferendumInfo: ReferendumInfo;1014    ReferendumInfoFinished: ReferendumInfoFinished;1015    ReferendumInfoTo239: ReferendumInfoTo239;1016    ReferendumStatus: ReferendumStatus;1017    RegisteredParachainInfo: RegisteredParachainInfo;1018    RegistrarIndex: RegistrarIndex;1019    RegistrarInfo: RegistrarInfo;1020    Registration: Registration;1021    RegistrationJudgement: RegistrationJudgement;1022    RegistrationTo198: RegistrationTo198;1023    RelayBlockNumber: RelayBlockNumber;1024    RelayChainBlockNumber: RelayChainBlockNumber;1025    RelayChainHash: RelayChainHash;1026    RelayerId: RelayerId;1027    RelayHash: RelayHash;1028    Releases: Releases;1029    Remark: Remark;1030    Renouncing: Renouncing;1031    RentProjection: RentProjection;1032    ReplacementTimes: ReplacementTimes;1033    ReportedRoundStates: ReportedRoundStates;1034    Reporter: Reporter;1035    ReportIdOf: ReportIdOf;1036    ReserveData: ReserveData;1037    ReserveIdentifier: ReserveIdentifier;1038    Response: Response;1039    ResponseV0: ResponseV0;1040    ResponseV1: ResponseV1;1041    ResponseV2: ResponseV2;1042    ResponseV2Error: ResponseV2Error;1043    ResponseV2Result: ResponseV2Result;1044    Retriable: Retriable;1045    RewardDestination: RewardDestination;1046    RewardPoint: RewardPoint;1047    RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1048    RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1049    RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1050    RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1051    RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1052    RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1053    RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1054    RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1055    RmrkTraitsPartPartType: RmrkTraitsPartPartType;1056    RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1057    RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1058    RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1059    RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1060    RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1061    RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1062    RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1063    RmrkTraitsTheme: RmrkTraitsTheme;1064    RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1065    RoundSnapshot: RoundSnapshot;1066    RoundState: RoundState;1067    RpcMethods: RpcMethods;1068    RuntimeDbWeight: RuntimeDbWeight;1069    RuntimeDispatchInfo: RuntimeDispatchInfo;1070    RuntimeVersion: RuntimeVersion;1071    RuntimeVersionApi: RuntimeVersionApi;1072    RuntimeVersionPartial: RuntimeVersionPartial;1073    RuntimeVersionPre3: RuntimeVersionPre3;1074    RuntimeVersionPre4: RuntimeVersionPre4;1075    Schedule: Schedule;1076    Scheduled: Scheduled;1077    ScheduledCore: ScheduledCore;1078    ScheduledTo254: ScheduledTo254;1079    SchedulePeriod: SchedulePeriod;1080    SchedulePriority: SchedulePriority;1081    ScheduleTo212: ScheduleTo212;1082    ScheduleTo258: ScheduleTo258;1083    ScheduleTo264: ScheduleTo264;1084    Scheduling: Scheduling;1085    ScrapedOnChainVotes: ScrapedOnChainVotes;1086    Seal: Seal;1087    SealV0: SealV0;1088    SeatHolder: SeatHolder;1089    SeedOf: SeedOf;1090    ServiceQuality: ServiceQuality;1091    SessionIndex: SessionIndex;1092    SessionInfo: SessionInfo;1093    SessionInfoValidatorGroup: SessionInfoValidatorGroup;1094    SessionKeys1: SessionKeys1;1095    SessionKeys10: SessionKeys10;1096    SessionKeys10B: SessionKeys10B;1097    SessionKeys2: SessionKeys2;1098    SessionKeys3: SessionKeys3;1099    SessionKeys4: SessionKeys4;1100    SessionKeys5: SessionKeys5;1101    SessionKeys6: SessionKeys6;1102    SessionKeys6B: SessionKeys6B;1103    SessionKeys7: SessionKeys7;1104    SessionKeys7B: SessionKeys7B;1105    SessionKeys8: SessionKeys8;1106    SessionKeys8B: SessionKeys8B;1107    SessionKeys9: SessionKeys9;1108    SessionKeys9B: SessionKeys9B;1109    SetId: SetId;1110    SetIndex: SetIndex;1111    Si0Field: Si0Field;1112    Si0LookupTypeId: Si0LookupTypeId;1113    Si0Path: Si0Path;1114    Si0Type: Si0Type;1115    Si0TypeDef: Si0TypeDef;1116    Si0TypeDefArray: Si0TypeDefArray;1117    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1118    Si0TypeDefCompact: Si0TypeDefCompact;1119    Si0TypeDefComposite: Si0TypeDefComposite;1120    Si0TypeDefPhantom: Si0TypeDefPhantom;1121    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1122    Si0TypeDefSequence: Si0TypeDefSequence;1123    Si0TypeDefTuple: Si0TypeDefTuple;1124    Si0TypeDefVariant: Si0TypeDefVariant;1125    Si0TypeParameter: Si0TypeParameter;1126    Si0Variant: Si0Variant;1127    Si1Field: Si1Field;1128    Si1LookupTypeId: Si1LookupTypeId;1129    Si1Path: Si1Path;1130    Si1Type: Si1Type;1131    Si1TypeDef: Si1TypeDef;1132    Si1TypeDefArray: Si1TypeDefArray;1133    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1134    Si1TypeDefCompact: Si1TypeDefCompact;1135    Si1TypeDefComposite: Si1TypeDefComposite;1136    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1137    Si1TypeDefSequence: Si1TypeDefSequence;1138    Si1TypeDefTuple: Si1TypeDefTuple;1139    Si1TypeDefVariant: Si1TypeDefVariant;1140    Si1TypeParameter: Si1TypeParameter;1141    Si1Variant: Si1Variant;1142    SiField: SiField;1143    Signature: Signature;1144    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1145    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1146    SignedBlock: SignedBlock;1147    SignedBlockWithJustification: SignedBlockWithJustification;1148    SignedBlockWithJustifications: SignedBlockWithJustifications;1149    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1150    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1151    SignedSubmission: SignedSubmission;1152    SignedSubmissionOf: SignedSubmissionOf;1153    SignedSubmissionTo276: SignedSubmissionTo276;1154    SignerPayload: SignerPayload;1155    SigningContext: SigningContext;1156    SiLookupTypeId: SiLookupTypeId;1157    SiPath: SiPath;1158    SiType: SiType;1159    SiTypeDef: SiTypeDef;1160    SiTypeDefArray: SiTypeDefArray;1161    SiTypeDefBitSequence: SiTypeDefBitSequence;1162    SiTypeDefCompact: SiTypeDefCompact;1163    SiTypeDefComposite: SiTypeDefComposite;1164    SiTypeDefPrimitive: SiTypeDefPrimitive;1165    SiTypeDefSequence: SiTypeDefSequence;1166    SiTypeDefTuple: SiTypeDefTuple;1167    SiTypeDefVariant: SiTypeDefVariant;1168    SiTypeParameter: SiTypeParameter;1169    SiVariant: SiVariant;1170    SlashingSpans: SlashingSpans;1171    SlashingSpansTo204: SlashingSpansTo204;1172    SlashJournalEntry: SlashJournalEntry;1173    Slot: Slot;1174    SlotDuration: SlotDuration;1175    SlotNumber: SlotNumber;1176    SlotRange: SlotRange;1177    SlotRange10: SlotRange10;1178    SocietyJudgement: SocietyJudgement;1179    SocietyVote: SocietyVote;1180    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1181    SolutionSupport: SolutionSupport;1182    SolutionSupports: SolutionSupports;1183    SpanIndex: SpanIndex;1184    SpanRecord: SpanRecord;1185    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1186    SpCoreEd25519Signature: SpCoreEd25519Signature;1187    SpCoreSr25519Signature: SpCoreSr25519Signature;1188    SpCoreVoid: SpCoreVoid;1189    SpecVersion: SpecVersion;1190    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1191    SpRuntimeDigest: SpRuntimeDigest;1192    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1193    SpRuntimeDispatchError: SpRuntimeDispatchError;1194    SpRuntimeModuleError: SpRuntimeModuleError;1195    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1196    SpRuntimeTokenError: SpRuntimeTokenError;1197    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1198    SpTrieStorageProof: SpTrieStorageProof;1199    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1200    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1201    Sr25519Signature: Sr25519Signature;1202    StakingLedger: StakingLedger;1203    StakingLedgerTo223: StakingLedgerTo223;1204    StakingLedgerTo240: StakingLedgerTo240;1205    Statement: Statement;1206    StatementKind: StatementKind;1207    StorageChangeSet: StorageChangeSet;1208    StorageData: StorageData;1209    StorageDeposit: StorageDeposit;1210    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1211    StorageEntryMetadataV10: StorageEntryMetadataV10;1212    StorageEntryMetadataV11: StorageEntryMetadataV11;1213    StorageEntryMetadataV12: StorageEntryMetadataV12;1214    StorageEntryMetadataV13: StorageEntryMetadataV13;1215    StorageEntryMetadataV14: StorageEntryMetadataV14;1216    StorageEntryMetadataV9: StorageEntryMetadataV9;1217    StorageEntryModifierLatest: StorageEntryModifierLatest;1218    StorageEntryModifierV10: StorageEntryModifierV10;1219    StorageEntryModifierV11: StorageEntryModifierV11;1220    StorageEntryModifierV12: StorageEntryModifierV12;1221    StorageEntryModifierV13: StorageEntryModifierV13;1222    StorageEntryModifierV14: StorageEntryModifierV14;1223    StorageEntryModifierV9: StorageEntryModifierV9;1224    StorageEntryTypeLatest: StorageEntryTypeLatest;1225    StorageEntryTypeV10: StorageEntryTypeV10;1226    StorageEntryTypeV11: StorageEntryTypeV11;1227    StorageEntryTypeV12: StorageEntryTypeV12;1228    StorageEntryTypeV13: StorageEntryTypeV13;1229    StorageEntryTypeV14: StorageEntryTypeV14;1230    StorageEntryTypeV9: StorageEntryTypeV9;1231    StorageHasher: StorageHasher;1232    StorageHasherV10: StorageHasherV10;1233    StorageHasherV11: StorageHasherV11;1234    StorageHasherV12: StorageHasherV12;1235    StorageHasherV13: StorageHasherV13;1236    StorageHasherV14: StorageHasherV14;1237    StorageHasherV9: StorageHasherV9;1238    StorageInfo: StorageInfo;1239    StorageKey: StorageKey;1240    StorageKind: StorageKind;1241    StorageMetadataV10: StorageMetadataV10;1242    StorageMetadataV11: StorageMetadataV11;1243    StorageMetadataV12: StorageMetadataV12;1244    StorageMetadataV13: StorageMetadataV13;1245    StorageMetadataV9: StorageMetadataV9;1246    StorageProof: StorageProof;1247    StoredPendingChange: StoredPendingChange;1248    StoredState: StoredState;1249    StrikeCount: StrikeCount;1250    SubId: SubId;1251    SubmissionIndicesOf: SubmissionIndicesOf;1252    Supports: Supports;1253    SyncState: SyncState;1254    SystemInherentData: SystemInherentData;1255    SystemOrigin: SystemOrigin;1256    Tally: Tally;1257    TaskAddress: TaskAddress;1258    TAssetBalance: TAssetBalance;1259    TAssetDepositBalance: TAssetDepositBalance;1260    Text: Text;1261    Timepoint: Timepoint;1262    TokenError: TokenError;1263    TombstoneContractInfo: TombstoneContractInfo;1264    TraceBlockResponse: TraceBlockResponse;1265    TraceError: TraceError;1266    TransactionalError: TransactionalError;1267    TransactionInfo: TransactionInfo;1268    TransactionLongevity: TransactionLongevity;1269    TransactionPriority: TransactionPriority;1270    TransactionSource: TransactionSource;1271    TransactionStorageProof: TransactionStorageProof;1272    TransactionTag: TransactionTag;1273    TransactionV0: TransactionV0;1274    TransactionV1: TransactionV1;1275    TransactionV2: TransactionV2;1276    TransactionValidity: TransactionValidity;1277    TransactionValidityError: TransactionValidityError;1278    TransientValidationData: TransientValidationData;1279    TreasuryProposal: TreasuryProposal;1280    TrieId: TrieId;1281    TrieIndex: TrieIndex;1282    Type: Type;1283    u128: u128;1284    U128: U128;1285    u16: u16;1286    U16: U16;1287    u256: u256;1288    U256: U256;1289    u32: u32;1290    U32: U32;1291    U32F32: U32F32;1292    u64: u64;1293    U64: U64;1294    u8: u8;1295    U8: U8;1296    UnappliedSlash: UnappliedSlash;1297    UnappliedSlashOther: UnappliedSlashOther;1298    UncleEntryItem: UncleEntryItem;1299    UnknownTransaction: UnknownTransaction;1300    UnlockChunk: UnlockChunk;1301    UnrewardedRelayer: UnrewardedRelayer;1302    UnrewardedRelayersState: UnrewardedRelayersState;1303    UpDataStructsAccessMode: UpDataStructsAccessMode;1304    UpDataStructsCollection: UpDataStructsCollection;1305    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1306    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1307    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1308    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1309    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1310    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1311    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1312    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1313    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1314    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1315    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1316    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1317    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1318    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1319    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1320    UpDataStructsProperties: UpDataStructsProperties;1321    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1322    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1323    UpDataStructsProperty: UpDataStructsProperty;1324    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1325    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1326    UpDataStructsPropertyScope: UpDataStructsPropertyScope;1327    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1328    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1329    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1330    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1331    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1332    UpDataStructsTokenChild: UpDataStructsTokenChild;1333    UpDataStructsTokenData: UpDataStructsTokenData;1334    UpgradeGoAhead: UpgradeGoAhead;1335    UpgradeRestriction: UpgradeRestriction;1336    UpwardMessage: UpwardMessage;1337    usize: usize;1338    USize: USize;1339    ValidationCode: ValidationCode;1340    ValidationCodeHash: ValidationCodeHash;1341    ValidationData: ValidationData;1342    ValidationDataType: ValidationDataType;1343    ValidationFunctionParams: ValidationFunctionParams;1344    ValidatorCount: ValidatorCount;1345    ValidatorId: ValidatorId;1346    ValidatorIdOf: ValidatorIdOf;1347    ValidatorIndex: ValidatorIndex;1348    ValidatorIndexCompact: ValidatorIndexCompact;1349    ValidatorPrefs: ValidatorPrefs;1350    ValidatorPrefsTo145: ValidatorPrefsTo145;1351    ValidatorPrefsTo196: ValidatorPrefsTo196;1352    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1353    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1354    ValidatorSet: ValidatorSet;1355    ValidatorSetId: ValidatorSetId;1356    ValidatorSignature: ValidatorSignature;1357    ValidDisputeStatementKind: ValidDisputeStatementKind;1358    ValidityAttestation: ValidityAttestation;1359    ValidTransaction: ValidTransaction;1360    VecInboundHrmpMessage: VecInboundHrmpMessage;1361    VersionedMultiAsset: VersionedMultiAsset;1362    VersionedMultiAssets: VersionedMultiAssets;1363    VersionedMultiLocation: VersionedMultiLocation;1364    VersionedResponse: VersionedResponse;1365    VersionedXcm: VersionedXcm;1366    VersionMigrationStage: VersionMigrationStage;1367    VestingInfo: VestingInfo;1368    VestingSchedule: VestingSchedule;1369    Vote: Vote;1370    VoteIndex: VoteIndex;1371    Voter: Voter;1372    VoterInfo: VoterInfo;1373    Votes: Votes;1374    VotesTo230: VotesTo230;1375    VoteThreshold: VoteThreshold;1376    VoteWeight: VoteWeight;1377    Voting: Voting;1378    VotingDelegating: VotingDelegating;1379    VotingDirect: VotingDirect;1380    VotingDirectVote: VotingDirectVote;1381    VouchingStatus: VouchingStatus;1382    VrfData: VrfData;1383    VrfOutput: VrfOutput;1384    VrfProof: VrfProof;1385    Weight: Weight;1386    WeightLimitV2: WeightLimitV2;1387    WeightMultiplier: WeightMultiplier;1388    WeightPerClass: WeightPerClass;1389    WeightToFeeCoefficient: WeightToFeeCoefficient;1390    WeightV1: WeightV1;1391    WeightV2: WeightV2;1392    WildFungibility: WildFungibility;1393    WildFungibilityV0: WildFungibilityV0;1394    WildFungibilityV1: WildFungibilityV1;1395    WildFungibilityV2: WildFungibilityV2;1396    WildMultiAsset: WildMultiAsset;1397    WildMultiAssetV1: WildMultiAssetV1;1398    WildMultiAssetV2: WildMultiAssetV2;1399    WinnersData: WinnersData;1400    WinnersData10: WinnersData10;1401    WinnersDataTuple: WinnersDataTuple;1402    WinnersDataTuple10: WinnersDataTuple10;1403    WinningData: WinningData;1404    WinningData10: WinningData10;1405    WinningDataEntry: WinningDataEntry;1406    WithdrawReasons: WithdrawReasons;1407    Xcm: Xcm;1408    XcmAssetId: XcmAssetId;1409    XcmDoubleEncoded: XcmDoubleEncoded;1410    XcmError: XcmError;1411    XcmErrorV0: XcmErrorV0;1412    XcmErrorV1: XcmErrorV1;1413    XcmErrorV2: XcmErrorV2;1414    XcmOrder: XcmOrder;1415    XcmOrderV0: XcmOrderV0;1416    XcmOrderV1: XcmOrderV1;1417    XcmOrderV2: XcmOrderV2;1418    XcmOrigin: XcmOrigin;1419    XcmOriginKind: XcmOriginKind;1420    XcmpMessageFormat: XcmpMessageFormat;1421    XcmV0: XcmV0;1422    XcmV0Junction: XcmV0Junction;1423    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1424    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1425    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1426    XcmV0MultiAsset: XcmV0MultiAsset;1427    XcmV0MultiLocation: XcmV0MultiLocation;1428    XcmV0Order: XcmV0Order;1429    XcmV0OriginKind: XcmV0OriginKind;1430    XcmV0Response: XcmV0Response;1431    XcmV0Xcm: XcmV0Xcm;1432    XcmV1: XcmV1;1433    XcmV1Junction: XcmV1Junction;1434    XcmV1MultiAsset: XcmV1MultiAsset;1435    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1436    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1437    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1438    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1439    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1440    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1441    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1442    XcmV1MultiLocation: XcmV1MultiLocation;1443    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1444    XcmV1Order: XcmV1Order;1445    XcmV1Response: XcmV1Response;1446    XcmV1Xcm: XcmV1Xcm;1447    XcmV2: XcmV2;1448    XcmV2Instruction: XcmV2Instruction;1449    XcmV2Response: XcmV2Response;1450    XcmV2TraitsError: XcmV2TraitsError;1451    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1452    XcmV2WeightLimit: XcmV2WeightLimit;1453    XcmV2Xcm: XcmV2Xcm;1454    XcmVersion: XcmVersion;1455    XcmVersionedMultiAsset: XcmVersionedMultiAsset;1456    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1457    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1458    XcmVersionedXcm: XcmVersionedXcm;1459  } // InterfaceTypes1460} // declare module
after · tests/src/interfaces/augment-types.ts
1// 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, 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, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, 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, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, 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, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } 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    ContractExecResultU64: ContractExecResultU64;277    ContractInfo: ContractInfo;278    ContractInstantiateResult: ContractInstantiateResult;279    ContractInstantiateResultTo267: ContractInstantiateResultTo267;280    ContractInstantiateResultTo299: ContractInstantiateResultTo299;281    ContractInstantiateResultU64: ContractInstantiateResultU64;282    ContractLayoutArray: ContractLayoutArray;283    ContractLayoutCell: ContractLayoutCell;284    ContractLayoutEnum: ContractLayoutEnum;285    ContractLayoutHash: ContractLayoutHash;286    ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;287    ContractLayoutKey: ContractLayoutKey;288    ContractLayoutStruct: ContractLayoutStruct;289    ContractLayoutStructField: ContractLayoutStructField;290    ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;291    ContractMessageParamSpecV0: ContractMessageParamSpecV0;292    ContractMessageParamSpecV2: ContractMessageParamSpecV2;293    ContractMessageSpecLatest: ContractMessageSpecLatest;294    ContractMessageSpecV0: ContractMessageSpecV0;295    ContractMessageSpecV1: ContractMessageSpecV1;296    ContractMessageSpecV2: ContractMessageSpecV2;297    ContractMetadata: ContractMetadata;298    ContractMetadataLatest: ContractMetadataLatest;299    ContractMetadataV0: ContractMetadataV0;300    ContractMetadataV1: ContractMetadataV1;301    ContractMetadataV2: ContractMetadataV2;302    ContractMetadataV3: ContractMetadataV3;303    ContractMetadataV4: ContractMetadataV4;304    ContractProject: ContractProject;305    ContractProjectContract: ContractProjectContract;306    ContractProjectInfo: ContractProjectInfo;307    ContractProjectSource: ContractProjectSource;308    ContractProjectV0: ContractProjectV0;309    ContractReturnFlags: ContractReturnFlags;310    ContractSelector: ContractSelector;311    ContractStorageKey: ContractStorageKey;312    ContractStorageLayout: ContractStorageLayout;313    ContractTypeSpec: ContractTypeSpec;314    Conviction: Conviction;315    CoreAssignment: CoreAssignment;316    CoreIndex: CoreIndex;317    CoreOccupied: CoreOccupied;318    CoreState: CoreState;319    CrateVersion: CrateVersion;320    CreatedBlock: CreatedBlock;321    CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;322    CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;323    CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;324    CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;325    CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;326    CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;327    CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;328    CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;329    CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;330    CumulusPalletXcmCall: CumulusPalletXcmCall;331    CumulusPalletXcmError: CumulusPalletXcmError;332    CumulusPalletXcmEvent: CumulusPalletXcmEvent;333    CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;334    CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;335    CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;336    CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;337    CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;338    CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;339    CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;340    CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;341    CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;342    CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;343    Data: Data;344    DeferredOffenceOf: DeferredOffenceOf;345    DefunctVoter: DefunctVoter;346    DelayKind: DelayKind;347    DelayKindBest: DelayKindBest;348    Delegations: Delegations;349    DeletedContract: DeletedContract;350    DeliveredMessages: DeliveredMessages;351    DepositBalance: DepositBalance;352    DepositBalanceOf: DepositBalanceOf;353    DestroyWitness: DestroyWitness;354    Digest: Digest;355    DigestItem: DigestItem;356    DigestOf: DigestOf;357    DispatchClass: DispatchClass;358    DispatchError: DispatchError;359    DispatchErrorModule: DispatchErrorModule;360    DispatchErrorModulePre6: DispatchErrorModulePre6;361    DispatchErrorModuleU8: DispatchErrorModuleU8;362    DispatchErrorModuleU8a: DispatchErrorModuleU8a;363    DispatchErrorPre6: DispatchErrorPre6;364    DispatchErrorPre6First: DispatchErrorPre6First;365    DispatchErrorTo198: DispatchErrorTo198;366    DispatchFeePayment: DispatchFeePayment;367    DispatchInfo: DispatchInfo;368    DispatchInfoTo190: DispatchInfoTo190;369    DispatchInfoTo244: DispatchInfoTo244;370    DispatchOutcome: DispatchOutcome;371    DispatchOutcomePre6: DispatchOutcomePre6;372    DispatchResult: DispatchResult;373    DispatchResultOf: DispatchResultOf;374    DispatchResultTo198: DispatchResultTo198;375    DisputeLocation: DisputeLocation;376    DisputeResult: DisputeResult;377    DisputeState: DisputeState;378    DisputeStatement: DisputeStatement;379    DisputeStatementSet: DisputeStatementSet;380    DoubleEncodedCall: DoubleEncodedCall;381    DoubleVoteReport: DoubleVoteReport;382    DownwardMessage: DownwardMessage;383    EcdsaSignature: EcdsaSignature;384    Ed25519Signature: Ed25519Signature;385    EIP1559Transaction: EIP1559Transaction;386    EIP2930Transaction: EIP2930Transaction;387    ElectionCompute: ElectionCompute;388    ElectionPhase: ElectionPhase;389    ElectionResult: ElectionResult;390    ElectionScore: ElectionScore;391    ElectionSize: ElectionSize;392    ElectionStatus: ElectionStatus;393    EncodedFinalityProofs: EncodedFinalityProofs;394    EncodedJustification: EncodedJustification;395    Epoch: Epoch;396    EpochAuthorship: EpochAuthorship;397    Era: Era;398    EraIndex: EraIndex;399    EraPoints: EraPoints;400    EraRewardPoints: EraRewardPoints;401    EraRewards: EraRewards;402    ErrorMetadataLatest: ErrorMetadataLatest;403    ErrorMetadataV10: ErrorMetadataV10;404    ErrorMetadataV11: ErrorMetadataV11;405    ErrorMetadataV12: ErrorMetadataV12;406    ErrorMetadataV13: ErrorMetadataV13;407    ErrorMetadataV14: ErrorMetadataV14;408    ErrorMetadataV9: ErrorMetadataV9;409    EthAccessList: EthAccessList;410    EthAccessListItem: EthAccessListItem;411    EthAccount: EthAccount;412    EthAddress: EthAddress;413    EthBlock: EthBlock;414    EthBloom: EthBloom;415    EthbloomBloom: EthbloomBloom;416    EthCallRequest: EthCallRequest;417    EthereumAccountId: EthereumAccountId;418    EthereumAddress: EthereumAddress;419    EthereumBlock: EthereumBlock;420    EthereumHeader: EthereumHeader;421    EthereumLog: EthereumLog;422    EthereumLookupSource: EthereumLookupSource;423    EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;424    EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;425    EthereumSignature: EthereumSignature;426    EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;427    EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;428    EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;429    EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;430    EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;431    EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;432    EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;433    EthereumTypesHashH64: EthereumTypesHashH64;434    EthFeeHistory: EthFeeHistory;435    EthFilter: EthFilter;436    EthFilterAddress: EthFilterAddress;437    EthFilterChanges: EthFilterChanges;438    EthFilterTopic: EthFilterTopic;439    EthFilterTopicEntry: EthFilterTopicEntry;440    EthFilterTopicInner: EthFilterTopicInner;441    EthHeader: EthHeader;442    EthLog: EthLog;443    EthReceipt: EthReceipt;444    EthReceiptV0: EthReceiptV0;445    EthReceiptV3: EthReceiptV3;446    EthRichBlock: EthRichBlock;447    EthRichHeader: EthRichHeader;448    EthStorageProof: EthStorageProof;449    EthSubKind: EthSubKind;450    EthSubParams: EthSubParams;451    EthSubResult: EthSubResult;452    EthSyncInfo: EthSyncInfo;453    EthSyncStatus: EthSyncStatus;454    EthTransaction: EthTransaction;455    EthTransactionAction: EthTransactionAction;456    EthTransactionCondition: EthTransactionCondition;457    EthTransactionRequest: EthTransactionRequest;458    EthTransactionSignature: EthTransactionSignature;459    EthTransactionStatus: EthTransactionStatus;460    EthWork: EthWork;461    Event: Event;462    EventId: EventId;463    EventIndex: EventIndex;464    EventMetadataLatest: EventMetadataLatest;465    EventMetadataV10: EventMetadataV10;466    EventMetadataV11: EventMetadataV11;467    EventMetadataV12: EventMetadataV12;468    EventMetadataV13: EventMetadataV13;469    EventMetadataV14: EventMetadataV14;470    EventMetadataV9: EventMetadataV9;471    EventRecord: EventRecord;472    EvmAccount: EvmAccount;473    EvmCallInfo: EvmCallInfo;474    EvmCoreErrorExitError: EvmCoreErrorExitError;475    EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;476    EvmCoreErrorExitReason: EvmCoreErrorExitReason;477    EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;478    EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;479    EvmCreateInfo: EvmCreateInfo;480    EvmLog: EvmLog;481    EvmVicinity: EvmVicinity;482    ExecReturnValue: ExecReturnValue;483    ExitError: ExitError;484    ExitFatal: ExitFatal;485    ExitReason: ExitReason;486    ExitRevert: ExitRevert;487    ExitSucceed: ExitSucceed;488    ExplicitDisputeStatement: ExplicitDisputeStatement;489    Exposure: Exposure;490    ExtendedBalance: ExtendedBalance;491    Extrinsic: Extrinsic;492    ExtrinsicEra: ExtrinsicEra;493    ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;494    ExtrinsicMetadataV11: ExtrinsicMetadataV11;495    ExtrinsicMetadataV12: ExtrinsicMetadataV12;496    ExtrinsicMetadataV13: ExtrinsicMetadataV13;497    ExtrinsicMetadataV14: ExtrinsicMetadataV14;498    ExtrinsicOrHash: ExtrinsicOrHash;499    ExtrinsicPayload: ExtrinsicPayload;500    ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;501    ExtrinsicPayloadV4: ExtrinsicPayloadV4;502    ExtrinsicSignature: ExtrinsicSignature;503    ExtrinsicSignatureV4: ExtrinsicSignatureV4;504    ExtrinsicStatus: ExtrinsicStatus;505    ExtrinsicsWeight: ExtrinsicsWeight;506    ExtrinsicUnknown: ExtrinsicUnknown;507    ExtrinsicV4: ExtrinsicV4;508    f32: f32;509    F32: F32;510    f64: f64;511    F64: F64;512    FeeDetails: FeeDetails;513    Fixed128: Fixed128;514    Fixed64: Fixed64;515    FixedI128: FixedI128;516    FixedI64: FixedI64;517    FixedU128: FixedU128;518    FixedU64: FixedU64;519    Forcing: Forcing;520    ForkTreePendingChange: ForkTreePendingChange;521    ForkTreePendingChangeNode: ForkTreePendingChangeNode;522    FpRpcTransactionStatus: FpRpcTransactionStatus;523    FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;524    FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;525    FrameSupportDispatchPays: FrameSupportDispatchPays;526    FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;527    FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;528    FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;529    FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;530    FrameSupportPalletId: FrameSupportPalletId;531    FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;532    FrameSystemAccountInfo: FrameSystemAccountInfo;533    FrameSystemCall: FrameSystemCall;534    FrameSystemError: FrameSystemError;535    FrameSystemEvent: FrameSystemEvent;536    FrameSystemEventRecord: FrameSystemEventRecord;537    FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;538    FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;539    FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;540    FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;541    FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;542    FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;543    FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;544    FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;545    FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;546    FrameSystemPhase: FrameSystemPhase;547    FullIdentification: FullIdentification;548    FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;549    FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;550    FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;551    FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;552    FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;553    FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;554    FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;555    FunctionMetadataLatest: FunctionMetadataLatest;556    FunctionMetadataV10: FunctionMetadataV10;557    FunctionMetadataV11: FunctionMetadataV11;558    FunctionMetadataV12: FunctionMetadataV12;559    FunctionMetadataV13: FunctionMetadataV13;560    FunctionMetadataV14: FunctionMetadataV14;561    FunctionMetadataV9: FunctionMetadataV9;562    FundIndex: FundIndex;563    FundInfo: FundInfo;564    Fungibility: Fungibility;565    FungibilityV0: FungibilityV0;566    FungibilityV1: FungibilityV1;567    FungibilityV2: FungibilityV2;568    Gas: Gas;569    GiltBid: GiltBid;570    GlobalValidationData: GlobalValidationData;571    GlobalValidationSchedule: GlobalValidationSchedule;572    GrandpaCommit: GrandpaCommit;573    GrandpaEquivocation: GrandpaEquivocation;574    GrandpaEquivocationProof: GrandpaEquivocationProof;575    GrandpaEquivocationValue: GrandpaEquivocationValue;576    GrandpaJustification: GrandpaJustification;577    GrandpaPrecommit: GrandpaPrecommit;578    GrandpaPrevote: GrandpaPrevote;579    GrandpaSignedPrecommit: GrandpaSignedPrecommit;580    GroupIndex: GroupIndex;581    GroupRotationInfo: GroupRotationInfo;582    H1024: H1024;583    H128: H128;584    H160: H160;585    H2048: H2048;586    H256: H256;587    H32: H32;588    H512: H512;589    H64: H64;590    Hash: Hash;591    HeadData: HeadData;592    Header: Header;593    HeaderPartial: HeaderPartial;594    Health: Health;595    Heartbeat: Heartbeat;596    HeartbeatTo244: HeartbeatTo244;597    HostConfiguration: HostConfiguration;598    HostFnWeights: HostFnWeights;599    HostFnWeightsTo264: HostFnWeightsTo264;600    HrmpChannel: HrmpChannel;601    HrmpChannelId: HrmpChannelId;602    HrmpOpenChannelRequest: HrmpOpenChannelRequest;603    i128: i128;604    I128: I128;605    i16: i16;606    I16: I16;607    i256: i256;608    I256: I256;609    i32: i32;610    I32: I32;611    I32F32: I32F32;612    i64: i64;613    I64: I64;614    i8: i8;615    I8: I8;616    IdentificationTuple: IdentificationTuple;617    IdentityFields: IdentityFields;618    IdentityInfo: IdentityInfo;619    IdentityInfoAdditional: IdentityInfoAdditional;620    IdentityInfoTo198: IdentityInfoTo198;621    IdentityJudgement: IdentityJudgement;622    ImmortalEra: ImmortalEra;623    ImportedAux: ImportedAux;624    InboundDownwardMessage: InboundDownwardMessage;625    InboundHrmpMessage: InboundHrmpMessage;626    InboundHrmpMessages: InboundHrmpMessages;627    InboundLaneData: InboundLaneData;628    InboundRelayer: InboundRelayer;629    InboundStatus: InboundStatus;630    IncludedBlocks: IncludedBlocks;631    InclusionFee: InclusionFee;632    IncomingParachain: IncomingParachain;633    IncomingParachainDeploy: IncomingParachainDeploy;634    IncomingParachainFixed: IncomingParachainFixed;635    Index: Index;636    IndicesLookupSource: IndicesLookupSource;637    IndividualExposure: IndividualExposure;638    InherentData: InherentData;639    InherentIdentifier: InherentIdentifier;640    InitializationData: InitializationData;641    InstanceDetails: InstanceDetails;642    InstanceId: InstanceId;643    InstanceMetadata: InstanceMetadata;644    InstantiateRequest: InstantiateRequest;645    InstantiateRequestV1: InstantiateRequestV1;646    InstantiateRequestV2: InstantiateRequestV2;647    InstantiateReturnValue: InstantiateReturnValue;648    InstantiateReturnValueOk: InstantiateReturnValueOk;649    InstantiateReturnValueTo267: InstantiateReturnValueTo267;650    InstructionV2: InstructionV2;651    InstructionWeights: InstructionWeights;652    InteriorMultiLocation: InteriorMultiLocation;653    InvalidDisputeStatementKind: InvalidDisputeStatementKind;654    InvalidTransaction: InvalidTransaction;655    Json: Json;656    Junction: Junction;657    Junctions: Junctions;658    JunctionsV1: JunctionsV1;659    JunctionsV2: JunctionsV2;660    JunctionV0: JunctionV0;661    JunctionV1: JunctionV1;662    JunctionV2: JunctionV2;663    Justification: Justification;664    JustificationNotification: JustificationNotification;665    Justifications: Justifications;666    Key: Key;667    KeyOwnerProof: KeyOwnerProof;668    Keys: Keys;669    KeyType: KeyType;670    KeyTypeId: KeyTypeId;671    KeyValue: KeyValue;672    KeyValueOption: KeyValueOption;673    Kind: Kind;674    LaneId: LaneId;675    LastContribution: LastContribution;676    LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;677    LeasePeriod: LeasePeriod;678    LeasePeriodOf: LeasePeriodOf;679    LegacyTransaction: LegacyTransaction;680    Limits: Limits;681    LimitsTo264: LimitsTo264;682    LocalValidationData: LocalValidationData;683    LockIdentifier: LockIdentifier;684    LookupSource: LookupSource;685    LookupTarget: LookupTarget;686    LotteryConfig: LotteryConfig;687    MaybeRandomness: MaybeRandomness;688    MaybeVrf: MaybeVrf;689    MemberCount: MemberCount;690    MembershipProof: MembershipProof;691    MessageData: MessageData;692    MessageId: MessageId;693    MessageIngestionType: MessageIngestionType;694    MessageKey: MessageKey;695    MessageNonce: MessageNonce;696    MessageQueueChain: MessageQueueChain;697    MessagesDeliveryProofOf: MessagesDeliveryProofOf;698    MessagesProofOf: MessagesProofOf;699    MessagingStateSnapshot: MessagingStateSnapshot;700    MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;701    MetadataAll: MetadataAll;702    MetadataLatest: MetadataLatest;703    MetadataV10: MetadataV10;704    MetadataV11: MetadataV11;705    MetadataV12: MetadataV12;706    MetadataV13: MetadataV13;707    MetadataV14: MetadataV14;708    MetadataV9: MetadataV9;709    MigrationStatusResult: MigrationStatusResult;710    MmrBatchProof: MmrBatchProof;711    MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;712    MmrError: MmrError;713    MmrLeafBatchProof: MmrLeafBatchProof;714    MmrLeafIndex: MmrLeafIndex;715    MmrLeafProof: MmrLeafProof;716    MmrNodeIndex: MmrNodeIndex;717    MmrProof: MmrProof;718    MmrRootHash: MmrRootHash;719    ModuleConstantMetadataV10: ModuleConstantMetadataV10;720    ModuleConstantMetadataV11: ModuleConstantMetadataV11;721    ModuleConstantMetadataV12: ModuleConstantMetadataV12;722    ModuleConstantMetadataV13: ModuleConstantMetadataV13;723    ModuleConstantMetadataV9: ModuleConstantMetadataV9;724    ModuleId: ModuleId;725    ModuleMetadataV10: ModuleMetadataV10;726    ModuleMetadataV11: ModuleMetadataV11;727    ModuleMetadataV12: ModuleMetadataV12;728    ModuleMetadataV13: ModuleMetadataV13;729    ModuleMetadataV9: ModuleMetadataV9;730    Moment: Moment;731    MomentOf: MomentOf;732    MoreAttestations: MoreAttestations;733    MortalEra: MortalEra;734    MultiAddress: MultiAddress;735    MultiAsset: MultiAsset;736    MultiAssetFilter: MultiAssetFilter;737    MultiAssetFilterV1: MultiAssetFilterV1;738    MultiAssetFilterV2: MultiAssetFilterV2;739    MultiAssets: MultiAssets;740    MultiAssetsV1: MultiAssetsV1;741    MultiAssetsV2: MultiAssetsV2;742    MultiAssetV0: MultiAssetV0;743    MultiAssetV1: MultiAssetV1;744    MultiAssetV2: MultiAssetV2;745    MultiDisputeStatementSet: MultiDisputeStatementSet;746    MultiLocation: MultiLocation;747    MultiLocationV0: MultiLocationV0;748    MultiLocationV1: MultiLocationV1;749    MultiLocationV2: MultiLocationV2;750    Multiplier: Multiplier;751    Multisig: Multisig;752    MultiSignature: MultiSignature;753    MultiSigner: MultiSigner;754    NetworkId: NetworkId;755    NetworkState: NetworkState;756    NetworkStatePeerset: NetworkStatePeerset;757    NetworkStatePeersetInfo: NetworkStatePeersetInfo;758    NewBidder: NewBidder;759    NextAuthority: NextAuthority;760    NextConfigDescriptor: NextConfigDescriptor;761    NextConfigDescriptorV1: NextConfigDescriptorV1;762    NodeRole: NodeRole;763    Nominations: Nominations;764    NominatorIndex: NominatorIndex;765    NominatorIndexCompact: NominatorIndexCompact;766    NotConnectedPeer: NotConnectedPeer;767    NpApiError: NpApiError;768    Null: Null;769    OccupiedCore: OccupiedCore;770    OccupiedCoreAssumption: OccupiedCoreAssumption;771    OffchainAccuracy: OffchainAccuracy;772    OffchainAccuracyCompact: OffchainAccuracyCompact;773    OffenceDetails: OffenceDetails;774    Offender: Offender;775    OldV1SessionInfo: OldV1SessionInfo;776    OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;777    OpalRuntimeRuntime: OpalRuntimeRuntime;778    OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;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    PalletEvmMigrationEvent: PalletEvmMigrationEvent;858    PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;859    PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;860    PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;861    PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;862    PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;863    PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;864    PalletFungibleError: PalletFungibleError;865    PalletId: PalletId;866    PalletInflationCall: PalletInflationCall;867    PalletMaintenanceCall: PalletMaintenanceCall;868    PalletMaintenanceError: PalletMaintenanceError;869    PalletMaintenanceEvent: PalletMaintenanceEvent;870    PalletMetadataLatest: PalletMetadataLatest;871    PalletMetadataV14: PalletMetadataV14;872    PalletNonfungibleError: PalletNonfungibleError;873    PalletNonfungibleItemData: PalletNonfungibleItemData;874    PalletRefungibleError: PalletRefungibleError;875    PalletRefungibleItemData: PalletRefungibleItemData;876    PalletRmrkCoreCall: PalletRmrkCoreCall;877    PalletRmrkCoreError: PalletRmrkCoreError;878    PalletRmrkCoreEvent: PalletRmrkCoreEvent;879    PalletRmrkEquipCall: PalletRmrkEquipCall;880    PalletRmrkEquipError: PalletRmrkEquipError;881    PalletRmrkEquipEvent: PalletRmrkEquipEvent;882    PalletsOrigin: PalletsOrigin;883    PalletStorageMetadataLatest: PalletStorageMetadataLatest;884    PalletStorageMetadataV14: PalletStorageMetadataV14;885    PalletStructureCall: PalletStructureCall;886    PalletStructureError: PalletStructureError;887    PalletStructureEvent: PalletStructureEvent;888    PalletSudoCall: PalletSudoCall;889    PalletSudoError: PalletSudoError;890    PalletSudoEvent: PalletSudoEvent;891    PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;892    PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;893    PalletTestUtilsCall: PalletTestUtilsCall;894    PalletTestUtilsError: PalletTestUtilsError;895    PalletTestUtilsEvent: PalletTestUtilsEvent;896    PalletTimestampCall: PalletTimestampCall;897    PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;898    PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;899    PalletTreasuryCall: PalletTreasuryCall;900    PalletTreasuryError: PalletTreasuryError;901    PalletTreasuryEvent: PalletTreasuryEvent;902    PalletTreasuryProposal: PalletTreasuryProposal;903    PalletUniqueCall: PalletUniqueCall;904    PalletUniqueError: PalletUniqueError;905    PalletUniqueRawEvent: PalletUniqueRawEvent;906    PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;907    PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;908    PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;909    PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;910    PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;911    PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;912    PalletVersion: PalletVersion;913    PalletXcmCall: PalletXcmCall;914    PalletXcmError: PalletXcmError;915    PalletXcmEvent: PalletXcmEvent;916    PalletXcmOrigin: PalletXcmOrigin;917    ParachainDispatchOrigin: ParachainDispatchOrigin;918    ParachainInherentData: ParachainInherentData;919    ParachainProposal: ParachainProposal;920    ParachainsInherentData: ParachainsInherentData;921    ParaGenesisArgs: ParaGenesisArgs;922    ParaId: ParaId;923    ParaInfo: ParaInfo;924    ParaLifecycle: ParaLifecycle;925    Parameter: Parameter;926    ParaPastCodeMeta: ParaPastCodeMeta;927    ParaScheduling: ParaScheduling;928    ParathreadClaim: ParathreadClaim;929    ParathreadClaimQueue: ParathreadClaimQueue;930    ParathreadEntry: ParathreadEntry;931    ParaValidatorIndex: ParaValidatorIndex;932    Pays: Pays;933    Peer: Peer;934    PeerEndpoint: PeerEndpoint;935    PeerEndpointAddr: PeerEndpointAddr;936    PeerInfo: PeerInfo;937    PeerPing: PeerPing;938    PendingChange: PendingChange;939    PendingPause: PendingPause;940    PendingResume: PendingResume;941    Perbill: Perbill;942    Percent: Percent;943    PerDispatchClassU32: PerDispatchClassU32;944    PerDispatchClassWeight: PerDispatchClassWeight;945    PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;946    Period: Period;947    Permill: Permill;948    PermissionLatest: PermissionLatest;949    PermissionsV1: PermissionsV1;950    PermissionVersions: PermissionVersions;951    Perquintill: Perquintill;952    PersistedValidationData: PersistedValidationData;953    PerU16: PerU16;954    Phantom: Phantom;955    PhantomData: PhantomData;956    PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;957    Phase: Phase;958    PhragmenScore: PhragmenScore;959    Points: Points;960    PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;961    PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;962    PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;963    PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;964    PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;965    PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;966    PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;967    PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;968    PortableType: PortableType;969    PortableTypeV14: PortableTypeV14;970    Precommits: Precommits;971    PrefabWasmModule: PrefabWasmModule;972    PrefixedStorageKey: PrefixedStorageKey;973    PreimageStatus: PreimageStatus;974    PreimageStatusAvailable: PreimageStatusAvailable;975    PreRuntime: PreRuntime;976    Prevotes: Prevotes;977    Priority: Priority;978    PriorLock: PriorLock;979    PropIndex: PropIndex;980    Proposal: Proposal;981    ProposalIndex: ProposalIndex;982    ProxyAnnouncement: ProxyAnnouncement;983    ProxyDefinition: ProxyDefinition;984    ProxyState: ProxyState;985    ProxyType: ProxyType;986    PvfCheckStatement: PvfCheckStatement;987    QueryId: QueryId;988    QueryStatus: QueryStatus;989    QueueConfigData: QueueConfigData;990    QueuedParathread: QueuedParathread;991    Randomness: Randomness;992    Raw: Raw;993    RawAuraPreDigest: RawAuraPreDigest;994    RawBabePreDigest: RawBabePreDigest;995    RawBabePreDigestCompat: RawBabePreDigestCompat;996    RawBabePreDigestPrimary: RawBabePreDigestPrimary;997    RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;998    RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;999    RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;1000    RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;1001    RawBabePreDigestTo159: RawBabePreDigestTo159;1002    RawOrigin: RawOrigin;1003    RawSolution: RawSolution;1004    RawSolutionTo265: RawSolutionTo265;1005    RawSolutionWith16: RawSolutionWith16;1006    RawSolutionWith24: RawSolutionWith24;1007    RawVRFOutput: RawVRFOutput;1008    ReadProof: ReadProof;1009    ReadySolution: ReadySolution;1010    Reasons: Reasons;1011    RecoveryConfig: RecoveryConfig;1012    RefCount: RefCount;1013    RefCountTo259: RefCountTo259;1014    ReferendumIndex: ReferendumIndex;1015    ReferendumInfo: ReferendumInfo;1016    ReferendumInfoFinished: ReferendumInfoFinished;1017    ReferendumInfoTo239: ReferendumInfoTo239;1018    ReferendumStatus: ReferendumStatus;1019    RegisteredParachainInfo: RegisteredParachainInfo;1020    RegistrarIndex: RegistrarIndex;1021    RegistrarInfo: RegistrarInfo;1022    Registration: Registration;1023    RegistrationJudgement: RegistrationJudgement;1024    RegistrationTo198: RegistrationTo198;1025    RelayBlockNumber: RelayBlockNumber;1026    RelayChainBlockNumber: RelayChainBlockNumber;1027    RelayChainHash: RelayChainHash;1028    RelayerId: RelayerId;1029    RelayHash: RelayHash;1030    Releases: Releases;1031    Remark: Remark;1032    Renouncing: Renouncing;1033    RentProjection: RentProjection;1034    ReplacementTimes: ReplacementTimes;1035    ReportedRoundStates: ReportedRoundStates;1036    Reporter: Reporter;1037    ReportIdOf: ReportIdOf;1038    ReserveData: ReserveData;1039    ReserveIdentifier: ReserveIdentifier;1040    Response: Response;1041    ResponseV0: ResponseV0;1042    ResponseV1: ResponseV1;1043    ResponseV2: ResponseV2;1044    ResponseV2Error: ResponseV2Error;1045    ResponseV2Result: ResponseV2Result;1046    Retriable: Retriable;1047    RewardDestination: RewardDestination;1048    RewardPoint: RewardPoint;1049    RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1050    RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1051    RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1052    RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1053    RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1054    RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1055    RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1056    RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1057    RmrkTraitsPartPartType: RmrkTraitsPartPartType;1058    RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1059    RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1060    RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1061    RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1062    RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1063    RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1064    RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1065    RmrkTraitsTheme: RmrkTraitsTheme;1066    RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1067    RoundSnapshot: RoundSnapshot;1068    RoundState: RoundState;1069    RpcMethods: RpcMethods;1070    RuntimeDbWeight: RuntimeDbWeight;1071    RuntimeDispatchInfo: RuntimeDispatchInfo;1072    RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1073    RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1074    RuntimeVersion: RuntimeVersion;1075    RuntimeVersionApi: RuntimeVersionApi;1076    RuntimeVersionPartial: RuntimeVersionPartial;1077    RuntimeVersionPre3: RuntimeVersionPre3;1078    RuntimeVersionPre4: RuntimeVersionPre4;1079    Schedule: Schedule;1080    Scheduled: Scheduled;1081    ScheduledCore: ScheduledCore;1082    ScheduledTo254: ScheduledTo254;1083    SchedulePeriod: SchedulePeriod;1084    SchedulePriority: SchedulePriority;1085    ScheduleTo212: ScheduleTo212;1086    ScheduleTo258: ScheduleTo258;1087    ScheduleTo264: ScheduleTo264;1088    Scheduling: Scheduling;1089    ScrapedOnChainVotes: ScrapedOnChainVotes;1090    Seal: Seal;1091    SealV0: SealV0;1092    SeatHolder: SeatHolder;1093    SeedOf: SeedOf;1094    ServiceQuality: ServiceQuality;1095    SessionIndex: SessionIndex;1096    SessionInfo: SessionInfo;1097    SessionInfoValidatorGroup: SessionInfoValidatorGroup;1098    SessionKeys1: SessionKeys1;1099    SessionKeys10: SessionKeys10;1100    SessionKeys10B: SessionKeys10B;1101    SessionKeys2: SessionKeys2;1102    SessionKeys3: SessionKeys3;1103    SessionKeys4: SessionKeys4;1104    SessionKeys5: SessionKeys5;1105    SessionKeys6: SessionKeys6;1106    SessionKeys6B: SessionKeys6B;1107    SessionKeys7: SessionKeys7;1108    SessionKeys7B: SessionKeys7B;1109    SessionKeys8: SessionKeys8;1110    SessionKeys8B: SessionKeys8B;1111    SessionKeys9: SessionKeys9;1112    SessionKeys9B: SessionKeys9B;1113    SetId: SetId;1114    SetIndex: SetIndex;1115    Si0Field: Si0Field;1116    Si0LookupTypeId: Si0LookupTypeId;1117    Si0Path: Si0Path;1118    Si0Type: Si0Type;1119    Si0TypeDef: Si0TypeDef;1120    Si0TypeDefArray: Si0TypeDefArray;1121    Si0TypeDefBitSequence: Si0TypeDefBitSequence;1122    Si0TypeDefCompact: Si0TypeDefCompact;1123    Si0TypeDefComposite: Si0TypeDefComposite;1124    Si0TypeDefPhantom: Si0TypeDefPhantom;1125    Si0TypeDefPrimitive: Si0TypeDefPrimitive;1126    Si0TypeDefSequence: Si0TypeDefSequence;1127    Si0TypeDefTuple: Si0TypeDefTuple;1128    Si0TypeDefVariant: Si0TypeDefVariant;1129    Si0TypeParameter: Si0TypeParameter;1130    Si0Variant: Si0Variant;1131    Si1Field: Si1Field;1132    Si1LookupTypeId: Si1LookupTypeId;1133    Si1Path: Si1Path;1134    Si1Type: Si1Type;1135    Si1TypeDef: Si1TypeDef;1136    Si1TypeDefArray: Si1TypeDefArray;1137    Si1TypeDefBitSequence: Si1TypeDefBitSequence;1138    Si1TypeDefCompact: Si1TypeDefCompact;1139    Si1TypeDefComposite: Si1TypeDefComposite;1140    Si1TypeDefPrimitive: Si1TypeDefPrimitive;1141    Si1TypeDefSequence: Si1TypeDefSequence;1142    Si1TypeDefTuple: Si1TypeDefTuple;1143    Si1TypeDefVariant: Si1TypeDefVariant;1144    Si1TypeParameter: Si1TypeParameter;1145    Si1Variant: Si1Variant;1146    SiField: SiField;1147    Signature: Signature;1148    SignedAvailabilityBitfield: SignedAvailabilityBitfield;1149    SignedAvailabilityBitfields: SignedAvailabilityBitfields;1150    SignedBlock: SignedBlock;1151    SignedBlockWithJustification: SignedBlockWithJustification;1152    SignedBlockWithJustifications: SignedBlockWithJustifications;1153    SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1154    SignedExtensionMetadataV14: SignedExtensionMetadataV14;1155    SignedSubmission: SignedSubmission;1156    SignedSubmissionOf: SignedSubmissionOf;1157    SignedSubmissionTo276: SignedSubmissionTo276;1158    SignerPayload: SignerPayload;1159    SigningContext: SigningContext;1160    SiLookupTypeId: SiLookupTypeId;1161    SiPath: SiPath;1162    SiType: SiType;1163    SiTypeDef: SiTypeDef;1164    SiTypeDefArray: SiTypeDefArray;1165    SiTypeDefBitSequence: SiTypeDefBitSequence;1166    SiTypeDefCompact: SiTypeDefCompact;1167    SiTypeDefComposite: SiTypeDefComposite;1168    SiTypeDefPrimitive: SiTypeDefPrimitive;1169    SiTypeDefSequence: SiTypeDefSequence;1170    SiTypeDefTuple: SiTypeDefTuple;1171    SiTypeDefVariant: SiTypeDefVariant;1172    SiTypeParameter: SiTypeParameter;1173    SiVariant: SiVariant;1174    SlashingSpans: SlashingSpans;1175    SlashingSpansTo204: SlashingSpansTo204;1176    SlashJournalEntry: SlashJournalEntry;1177    Slot: Slot;1178    SlotDuration: SlotDuration;1179    SlotNumber: SlotNumber;1180    SlotRange: SlotRange;1181    SlotRange10: SlotRange10;1182    SocietyJudgement: SocietyJudgement;1183    SocietyVote: SocietyVote;1184    SolutionOrSnapshotSize: SolutionOrSnapshotSize;1185    SolutionSupport: SolutionSupport;1186    SolutionSupports: SolutionSupports;1187    SpanIndex: SpanIndex;1188    SpanRecord: SpanRecord;1189    SpCoreEcdsaSignature: SpCoreEcdsaSignature;1190    SpCoreEd25519Signature: SpCoreEd25519Signature;1191    SpCoreSr25519Signature: SpCoreSr25519Signature;1192    SpCoreVoid: SpCoreVoid;1193    SpecVersion: SpecVersion;1194    SpRuntimeArithmeticError: SpRuntimeArithmeticError;1195    SpRuntimeDigest: SpRuntimeDigest;1196    SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1197    SpRuntimeDispatchError: SpRuntimeDispatchError;1198    SpRuntimeModuleError: SpRuntimeModuleError;1199    SpRuntimeMultiSignature: SpRuntimeMultiSignature;1200    SpRuntimeTokenError: SpRuntimeTokenError;1201    SpRuntimeTransactionalError: SpRuntimeTransactionalError;1202    SpTrieStorageProof: SpTrieStorageProof;1203    SpVersionRuntimeVersion: SpVersionRuntimeVersion;1204    SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1205    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1206    Sr25519Signature: Sr25519Signature;1207    StakingLedger: StakingLedger;1208    StakingLedgerTo223: StakingLedgerTo223;1209    StakingLedgerTo240: StakingLedgerTo240;1210    Statement: Statement;1211    StatementKind: StatementKind;1212    StorageChangeSet: StorageChangeSet;1213    StorageData: StorageData;1214    StorageDeposit: StorageDeposit;1215    StorageEntryMetadataLatest: StorageEntryMetadataLatest;1216    StorageEntryMetadataV10: StorageEntryMetadataV10;1217    StorageEntryMetadataV11: StorageEntryMetadataV11;1218    StorageEntryMetadataV12: StorageEntryMetadataV12;1219    StorageEntryMetadataV13: StorageEntryMetadataV13;1220    StorageEntryMetadataV14: StorageEntryMetadataV14;1221    StorageEntryMetadataV9: StorageEntryMetadataV9;1222    StorageEntryModifierLatest: StorageEntryModifierLatest;1223    StorageEntryModifierV10: StorageEntryModifierV10;1224    StorageEntryModifierV11: StorageEntryModifierV11;1225    StorageEntryModifierV12: StorageEntryModifierV12;1226    StorageEntryModifierV13: StorageEntryModifierV13;1227    StorageEntryModifierV14: StorageEntryModifierV14;1228    StorageEntryModifierV9: StorageEntryModifierV9;1229    StorageEntryTypeLatest: StorageEntryTypeLatest;1230    StorageEntryTypeV10: StorageEntryTypeV10;1231    StorageEntryTypeV11: StorageEntryTypeV11;1232    StorageEntryTypeV12: StorageEntryTypeV12;1233    StorageEntryTypeV13: StorageEntryTypeV13;1234    StorageEntryTypeV14: StorageEntryTypeV14;1235    StorageEntryTypeV9: StorageEntryTypeV9;1236    StorageHasher: StorageHasher;1237    StorageHasherV10: StorageHasherV10;1238    StorageHasherV11: StorageHasherV11;1239    StorageHasherV12: StorageHasherV12;1240    StorageHasherV13: StorageHasherV13;1241    StorageHasherV14: StorageHasherV14;1242    StorageHasherV9: StorageHasherV9;1243    StorageInfo: StorageInfo;1244    StorageKey: StorageKey;1245    StorageKind: StorageKind;1246    StorageMetadataV10: StorageMetadataV10;1247    StorageMetadataV11: StorageMetadataV11;1248    StorageMetadataV12: StorageMetadataV12;1249    StorageMetadataV13: StorageMetadataV13;1250    StorageMetadataV9: StorageMetadataV9;1251    StorageProof: StorageProof;1252    StoredPendingChange: StoredPendingChange;1253    StoredState: StoredState;1254    StrikeCount: StrikeCount;1255    SubId: SubId;1256    SubmissionIndicesOf: SubmissionIndicesOf;1257    Supports: Supports;1258    SyncState: SyncState;1259    SystemInherentData: SystemInherentData;1260    SystemOrigin: SystemOrigin;1261    Tally: Tally;1262    TaskAddress: TaskAddress;1263    TAssetBalance: TAssetBalance;1264    TAssetDepositBalance: TAssetDepositBalance;1265    Text: Text;1266    Timepoint: Timepoint;1267    TokenError: TokenError;1268    TombstoneContractInfo: TombstoneContractInfo;1269    TraceBlockResponse: TraceBlockResponse;1270    TraceError: TraceError;1271    TransactionalError: TransactionalError;1272    TransactionInfo: TransactionInfo;1273    TransactionLongevity: TransactionLongevity;1274    TransactionPriority: TransactionPriority;1275    TransactionSource: TransactionSource;1276    TransactionStorageProof: TransactionStorageProof;1277    TransactionTag: TransactionTag;1278    TransactionV0: TransactionV0;1279    TransactionV1: TransactionV1;1280    TransactionV2: TransactionV2;1281    TransactionValidity: TransactionValidity;1282    TransactionValidityError: TransactionValidityError;1283    TransientValidationData: TransientValidationData;1284    TreasuryProposal: TreasuryProposal;1285    TrieId: TrieId;1286    TrieIndex: TrieIndex;1287    Type: Type;1288    u128: u128;1289    U128: U128;1290    u16: u16;1291    U16: U16;1292    u256: u256;1293    U256: U256;1294    u32: u32;1295    U32: U32;1296    U32F32: U32F32;1297    u64: u64;1298    U64: U64;1299    u8: u8;1300    U8: U8;1301    UnappliedSlash: UnappliedSlash;1302    UnappliedSlashOther: UnappliedSlashOther;1303    UncleEntryItem: UncleEntryItem;1304    UnknownTransaction: UnknownTransaction;1305    UnlockChunk: UnlockChunk;1306    UnrewardedRelayer: UnrewardedRelayer;1307    UnrewardedRelayersState: UnrewardedRelayersState;1308    UpDataStructsAccessMode: UpDataStructsAccessMode;1309    UpDataStructsCollection: UpDataStructsCollection;1310    UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1311    UpDataStructsCollectionMode: UpDataStructsCollectionMode;1312    UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1313    UpDataStructsCollectionStats: UpDataStructsCollectionStats;1314    UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1315    UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1316    UpDataStructsCreateItemData: UpDataStructsCreateItemData;1317    UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1318    UpDataStructsCreateNftData: UpDataStructsCreateNftData;1319    UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1320    UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1321    UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1322    UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1323    UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1324    UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1325    UpDataStructsProperties: UpDataStructsProperties;1326    UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1327    UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1328    UpDataStructsProperty: UpDataStructsProperty;1329    UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1330    UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1331    UpDataStructsPropertyScope: UpDataStructsPropertyScope;1332    UpDataStructsRpcCollection: UpDataStructsRpcCollection;1333    UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1334    UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1335    UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1336    UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1337    UpDataStructsTokenChild: UpDataStructsTokenChild;1338    UpDataStructsTokenData: UpDataStructsTokenData;1339    UpgradeGoAhead: UpgradeGoAhead;1340    UpgradeRestriction: UpgradeRestriction;1341    UpwardMessage: UpwardMessage;1342    usize: usize;1343    USize: USize;1344    ValidationCode: ValidationCode;1345    ValidationCodeHash: ValidationCodeHash;1346    ValidationData: ValidationData;1347    ValidationDataType: ValidationDataType;1348    ValidationFunctionParams: ValidationFunctionParams;1349    ValidatorCount: ValidatorCount;1350    ValidatorId: ValidatorId;1351    ValidatorIdOf: ValidatorIdOf;1352    ValidatorIndex: ValidatorIndex;1353    ValidatorIndexCompact: ValidatorIndexCompact;1354    ValidatorPrefs: ValidatorPrefs;1355    ValidatorPrefsTo145: ValidatorPrefsTo145;1356    ValidatorPrefsTo196: ValidatorPrefsTo196;1357    ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1358    ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1359    ValidatorSet: ValidatorSet;1360    ValidatorSetId: ValidatorSetId;1361    ValidatorSignature: ValidatorSignature;1362    ValidDisputeStatementKind: ValidDisputeStatementKind;1363    ValidityAttestation: ValidityAttestation;1364    ValidTransaction: ValidTransaction;1365    VecInboundHrmpMessage: VecInboundHrmpMessage;1366    VersionedMultiAsset: VersionedMultiAsset;1367    VersionedMultiAssets: VersionedMultiAssets;1368    VersionedMultiLocation: VersionedMultiLocation;1369    VersionedResponse: VersionedResponse;1370    VersionedXcm: VersionedXcm;1371    VersionMigrationStage: VersionMigrationStage;1372    VestingInfo: VestingInfo;1373    VestingSchedule: VestingSchedule;1374    Vote: Vote;1375    VoteIndex: VoteIndex;1376    Voter: Voter;1377    VoterInfo: VoterInfo;1378    Votes: Votes;1379    VotesTo230: VotesTo230;1380    VoteThreshold: VoteThreshold;1381    VoteWeight: VoteWeight;1382    Voting: Voting;1383    VotingDelegating: VotingDelegating;1384    VotingDirect: VotingDirect;1385    VotingDirectVote: VotingDirectVote;1386    VouchingStatus: VouchingStatus;1387    VrfData: VrfData;1388    VrfOutput: VrfOutput;1389    VrfProof: VrfProof;1390    Weight: Weight;1391    WeightLimitV2: WeightLimitV2;1392    WeightMultiplier: WeightMultiplier;1393    WeightPerClass: WeightPerClass;1394    WeightToFeeCoefficient: WeightToFeeCoefficient;1395    WeightV1: WeightV1;1396    WeightV2: WeightV2;1397    WildFungibility: WildFungibility;1398    WildFungibilityV0: WildFungibilityV0;1399    WildFungibilityV1: WildFungibilityV1;1400    WildFungibilityV2: WildFungibilityV2;1401    WildMultiAsset: WildMultiAsset;1402    WildMultiAssetV1: WildMultiAssetV1;1403    WildMultiAssetV2: WildMultiAssetV2;1404    WinnersData: WinnersData;1405    WinnersData10: WinnersData10;1406    WinnersDataTuple: WinnersDataTuple;1407    WinnersDataTuple10: WinnersDataTuple10;1408    WinningData: WinningData;1409    WinningData10: WinningData10;1410    WinningDataEntry: WinningDataEntry;1411    WithdrawReasons: WithdrawReasons;1412    Xcm: Xcm;1413    XcmAssetId: XcmAssetId;1414    XcmDoubleEncoded: XcmDoubleEncoded;1415    XcmError: XcmError;1416    XcmErrorV0: XcmErrorV0;1417    XcmErrorV1: XcmErrorV1;1418    XcmErrorV2: XcmErrorV2;1419    XcmOrder: XcmOrder;1420    XcmOrderV0: XcmOrderV0;1421    XcmOrderV1: XcmOrderV1;1422    XcmOrderV2: XcmOrderV2;1423    XcmOrigin: XcmOrigin;1424    XcmOriginKind: XcmOriginKind;1425    XcmpMessageFormat: XcmpMessageFormat;1426    XcmV0: XcmV0;1427    XcmV0Junction: XcmV0Junction;1428    XcmV0JunctionBodyId: XcmV0JunctionBodyId;1429    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1430    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1431    XcmV0MultiAsset: XcmV0MultiAsset;1432    XcmV0MultiLocation: XcmV0MultiLocation;1433    XcmV0Order: XcmV0Order;1434    XcmV0OriginKind: XcmV0OriginKind;1435    XcmV0Response: XcmV0Response;1436    XcmV0Xcm: XcmV0Xcm;1437    XcmV1: XcmV1;1438    XcmV1Junction: XcmV1Junction;1439    XcmV1MultiAsset: XcmV1MultiAsset;1440    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1441    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1442    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1443    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1444    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1445    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1446    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1447    XcmV1MultiLocation: XcmV1MultiLocation;1448    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1449    XcmV1Order: XcmV1Order;1450    XcmV1Response: XcmV1Response;1451    XcmV1Xcm: XcmV1Xcm;1452    XcmV2: XcmV2;1453    XcmV2Instruction: XcmV2Instruction;1454    XcmV2Response: XcmV2Response;1455    XcmV2TraitsError: XcmV2TraitsError;1456    XcmV2TraitsOutcome: XcmV2TraitsOutcome;1457    XcmV2WeightLimit: XcmV2WeightLimit;1458    XcmV2Xcm: XcmV2Xcm;1459    XcmVersion: XcmVersion;1460    XcmVersionedMultiAsset: XcmVersionedMultiAsset;1461    XcmVersionedMultiAssets: XcmVersionedMultiAssets;1462    XcmVersionedMultiLocation: XcmVersionedMultiLocation;1463    XcmVersionedXcm: XcmVersionedXcm;1464  } // InterfaceTypes1465} // declare module
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -3,7 +3,7 @@
 
 import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
 import type { Event } from '@polkadot/types/interfaces/system';
 
 /** @name CumulusPalletDmpQueueCall */
@@ -11,14 +11,14 @@
   readonly isServiceOverweight: boolean;
   readonly asServiceOverweight: {
     readonly index: u64;
-    readonly weightLimit: Weight;
+    readonly weightLimit: u64;
   } & Struct;
   readonly type: 'ServiceOverweight';
 }
 
 /** @name CumulusPalletDmpQueueConfigData */
 export interface CumulusPalletDmpQueueConfigData extends Struct {
-  readonly maxIndividual: Weight;
+  readonly maxIndividual: SpWeightsWeightV2Weight;
 }
 
 /** @name CumulusPalletDmpQueueError */
@@ -46,19 +46,19 @@
   readonly isWeightExhausted: boolean;
   readonly asWeightExhausted: {
     readonly messageId: U8aFixed;
-    readonly remainingWeight: Weight;
-    readonly requiredWeight: Weight;
+    readonly remainingWeight: SpWeightsWeightV2Weight;
+    readonly requiredWeight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isOverweightEnqueued: boolean;
   readonly asOverweightEnqueued: {
     readonly messageId: U8aFixed;
     readonly overweightIndex: u64;
-    readonly requiredWeight: Weight;
+    readonly requiredWeight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isOverweightServiced: boolean;
   readonly asOverweightServiced: {
     readonly overweightIndex: u64;
-    readonly weightUsed: Weight;
+    readonly weightUsed: SpWeightsWeightV2Weight;
   } & Struct;
   readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
 }
@@ -122,7 +122,7 @@
   } & Struct;
   readonly isDownwardMessagesProcessed: boolean;
   readonly asDownwardMessagesProcessed: {
-    readonly weightUsed: Weight;
+    readonly weightUsed: SpWeightsWeightV2Weight;
     readonly dmqHead: H256;
   } & Struct;
   readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
@@ -166,7 +166,7 @@
   readonly isServiceOverweight: boolean;
   readonly asServiceOverweight: {
     readonly index: u64;
-    readonly weightLimit: Weight;
+    readonly weightLimit: u64;
   } & Struct;
   readonly isSuspendXcmExecution: boolean;
   readonly isResumeXcmExecution: boolean;
@@ -184,15 +184,15 @@
   } & Struct;
   readonly isUpdateThresholdWeight: boolean;
   readonly asUpdateThresholdWeight: {
-    readonly new_: Weight;
+    readonly new_: u64;
   } & Struct;
   readonly isUpdateWeightRestrictDecay: boolean;
   readonly asUpdateWeightRestrictDecay: {
-    readonly new_: Weight;
+    readonly new_: u64;
   } & Struct;
   readonly isUpdateXcmpMaxIndividualWeight: boolean;
   readonly asUpdateXcmpMaxIndividualWeight: {
-    readonly new_: Weight;
+    readonly new_: u64;
   } & Struct;
   readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
 }
@@ -212,13 +212,13 @@
   readonly isSuccess: boolean;
   readonly asSuccess: {
     readonly messageHash: Option<H256>;
-    readonly weight: Weight;
+    readonly weight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isFail: boolean;
   readonly asFail: {
     readonly messageHash: Option<H256>;
     readonly error: XcmV2TraitsError;
-    readonly weight: Weight;
+    readonly weight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isBadVersion: boolean;
   readonly asBadVersion: {
@@ -241,12 +241,12 @@
     readonly sender: u32;
     readonly sentAt: u32;
     readonly index: u64;
-    readonly required: Weight;
+    readonly required: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isOverweightServiced: boolean;
   readonly asOverweightServiced: {
     readonly index: u64;
-    readonly used: Weight;
+    readonly used: SpWeightsWeightV2Weight;
   } & Struct;
   readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
 }
@@ -286,9 +286,9 @@
   readonly suspendThreshold: u32;
   readonly dropThreshold: u32;
   readonly resumeThreshold: u32;
-  readonly thresholdWeight: Weight;
-  readonly weightRestrictDecay: Weight;
-  readonly xcmpMaxIndividualWeight: Weight;
+  readonly thresholdWeight: SpWeightsWeightV2Weight;
+  readonly weightRestrictDecay: SpWeightsWeightV2Weight;
+  readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
 }
 
 /** @name CumulusPrimitivesParachainInherentParachainInherentData */
@@ -511,7 +511,7 @@
 
 /** @name FrameSupportDispatchDispatchInfo */
 export interface FrameSupportDispatchDispatchInfo extends Struct {
-  readonly weight: Weight;
+  readonly weight: SpWeightsWeightV2Weight;
   readonly class: FrameSupportDispatchDispatchClass;
   readonly paysFee: FrameSupportDispatchPays;
 }
@@ -532,9 +532,9 @@
 
 /** @name FrameSupportDispatchPerDispatchClassWeight */
 export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
-  readonly normal: Weight;
-  readonly operational: Weight;
-  readonly mandatory: Weight;
+  readonly normal: SpWeightsWeightV2Weight;
+  readonly operational: SpWeightsWeightV2Weight;
+  readonly mandatory: SpWeightsWeightV2Weight;
 }
 
 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */
@@ -688,17 +688,17 @@
 
 /** @name FrameSystemLimitsBlockWeights */
 export interface FrameSystemLimitsBlockWeights extends Struct {
-  readonly baseBlock: Weight;
-  readonly maxBlock: Weight;
+  readonly baseBlock: SpWeightsWeightV2Weight;
+  readonly maxBlock: SpWeightsWeightV2Weight;
   readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
 }
 
 /** @name FrameSystemLimitsWeightsPerClass */
 export interface FrameSystemLimitsWeightsPerClass extends Struct {
-  readonly baseExtrinsic: Weight;
-  readonly maxExtrinsic: Option<Weight>;
-  readonly maxTotal: Option<Weight>;
-  readonly reserved: Option<Weight>;
+  readonly baseExtrinsic: SpWeightsWeightV2Weight;
+  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
+  readonly maxTotal: Option<SpWeightsWeightV2Weight>;
+  readonly reserved: Option<SpWeightsWeightV2Weight>;
 }
 
 /** @name FrameSystemPhase */
@@ -954,13 +954,13 @@
     readonly currencyId: PalletForeignAssetsAssetIds;
     readonly amount: u128;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeight: u64;
+    readonly destWeightLimit: XcmV2WeightLimit;
   } & Struct;
   readonly isTransferMultiasset: boolean;
   readonly asTransferMultiasset: {
     readonly asset: XcmVersionedMultiAsset;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeight: u64;
+    readonly destWeightLimit: XcmV2WeightLimit;
   } & Struct;
   readonly isTransferWithFee: boolean;
   readonly asTransferWithFee: {
@@ -968,28 +968,28 @@
     readonly amount: u128;
     readonly fee: u128;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeight: u64;
+    readonly destWeightLimit: XcmV2WeightLimit;
   } & Struct;
   readonly isTransferMultiassetWithFee: boolean;
   readonly asTransferMultiassetWithFee: {
     readonly asset: XcmVersionedMultiAsset;
     readonly fee: XcmVersionedMultiAsset;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeight: u64;
+    readonly destWeightLimit: XcmV2WeightLimit;
   } & Struct;
   readonly isTransferMulticurrencies: boolean;
   readonly asTransferMulticurrencies: {
     readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;
     readonly feeItem: u32;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeight: u64;
+    readonly destWeightLimit: XcmV2WeightLimit;
   } & Struct;
   readonly isTransferMultiassets: boolean;
   readonly asTransferMultiassets: {
     readonly assets: XcmVersionedMultiAssets;
     readonly feeItem: u32;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeight: u64;
+    readonly destWeightLimit: XcmV2WeightLimit;
   } & Struct;
   readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
 }
@@ -1960,7 +1960,7 @@
   readonly isSudoUncheckedWeight: boolean;
   readonly asSudoUncheckedWeight: {
     readonly call: Call;
-    readonly weight: Weight;
+    readonly weight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isSetKey: boolean;
   readonly asSetKey: {
@@ -2504,7 +2504,7 @@
   readonly isExecute: boolean;
   readonly asExecute: {
     readonly message: XcmVersionedXcm;
-    readonly maxWeight: Weight;
+    readonly maxWeight: u64;
   } & Struct;
   readonly isForceXcmVersion: boolean;
   readonly asForceXcmVersion: {
@@ -2573,7 +2573,7 @@
   readonly isNotified: boolean;
   readonly asNotified: ITuple<[u64, u8, u8]>;
   readonly isNotifyOverweight: boolean;
-  readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;
+  readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;
   readonly isNotifyDispatchError: boolean;
   readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;
   readonly isNotifyDecodeFailed: boolean;
@@ -2594,7 +2594,9 @@
   readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;
   readonly isNotifyTargetMigrationFail: boolean;
   readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;
-  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
+  readonly isAssetsClaimed: boolean;
+  readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
 }
 
 /** @name PalletXcmOrigin */
@@ -2872,7 +2874,10 @@
   readonly asArithmetic: SpRuntimeArithmeticError;
   readonly isTransactional: boolean;
   readonly asTransactional: SpRuntimeTransactionalError;
-  readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
+  readonly isExhausted: boolean;
+  readonly isCorruption: boolean;
+  readonly isUnavailable: boolean;
+  readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
 }
 
 /** @name SpRuntimeModuleError */
@@ -2934,6 +2939,12 @@
   readonly write: u64;
 }
 
+/** @name SpWeightsWeightV2Weight */
+export interface SpWeightsWeightV2Weight extends Struct {
+  readonly refTime: Compact<u64>;
+  readonly proofSize: Compact<u64>;
+}
+
 /** @name UpDataStructsAccessMode */
 export interface UpDataStructsAccessMode extends Enum {
   readonly isNormal: boolean;
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -27,18 +27,25 @@
    * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
    **/
   FrameSupportDispatchPerDispatchClassWeight: {
-    normal: 'Weight',
-    operational: 'Weight',
-    mandatory: 'Weight'
+    normal: 'SpWeightsWeightV2Weight',
+    operational: 'SpWeightsWeightV2Weight',
+    mandatory: 'SpWeightsWeightV2Weight'
   },
   /**
-   * Lookup12: sp_runtime::generic::digest::Digest
+   * Lookup8: sp_weights::weight_v2::Weight
    **/
+  SpWeightsWeightV2Weight: {
+    refTime: 'Compact<u64>',
+    proofSize: 'Compact<u64>'
+  },
+  /**
+   * Lookup13: sp_runtime::generic::digest::Digest
+   **/
   SpRuntimeDigest: {
     logs: 'Vec<SpRuntimeDigestDigestItem>'
   },
   /**
-   * Lookup14: sp_runtime::generic::digest::DigestItem
+   * Lookup15: sp_runtime::generic::digest::DigestItem
    **/
   SpRuntimeDigestDigestItem: {
     _enum: {
@@ -54,7 +61,7 @@
     }
   },
   /**
-   * Lookup17: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
+   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
    **/
   FrameSystemEventRecord: {
     phase: 'FrameSystemPhase',
@@ -62,7 +69,7 @@
     topics: 'Vec<H256>'
   },
   /**
-   * Lookup19: frame_system::pallet::Event<T>
+   * Lookup20: frame_system::pallet::Event<T>
    **/
   FrameSystemEvent: {
     _enum: {
@@ -90,27 +97,27 @@
     }
   },
   /**
-   * Lookup20: frame_support::dispatch::DispatchInfo
+   * Lookup21: frame_support::dispatch::DispatchInfo
    **/
   FrameSupportDispatchDispatchInfo: {
-    weight: 'Weight',
+    weight: 'SpWeightsWeightV2Weight',
     class: 'FrameSupportDispatchDispatchClass',
     paysFee: 'FrameSupportDispatchPays'
   },
   /**
-   * Lookup21: frame_support::dispatch::DispatchClass
+   * Lookup22: frame_support::dispatch::DispatchClass
    **/
   FrameSupportDispatchDispatchClass: {
     _enum: ['Normal', 'Operational', 'Mandatory']
   },
   /**
-   * Lookup22: frame_support::dispatch::Pays
+   * Lookup23: frame_support::dispatch::Pays
    **/
   FrameSupportDispatchPays: {
     _enum: ['Yes', 'No']
   },
   /**
-   * Lookup23: sp_runtime::DispatchError
+   * Lookup24: sp_runtime::DispatchError
    **/
   SpRuntimeDispatchError: {
     _enum: {
@@ -123,36 +130,39 @@
       TooManyConsumers: 'Null',
       Token: 'SpRuntimeTokenError',
       Arithmetic: 'SpRuntimeArithmeticError',
-      Transactional: 'SpRuntimeTransactionalError'
+      Transactional: 'SpRuntimeTransactionalError',
+      Exhausted: 'Null',
+      Corruption: 'Null',
+      Unavailable: 'Null'
     }
   },
   /**
-   * Lookup24: sp_runtime::ModuleError
+   * Lookup25: sp_runtime::ModuleError
    **/
   SpRuntimeModuleError: {
     index: 'u8',
     error: '[u8;4]'
   },
   /**
-   * Lookup25: sp_runtime::TokenError
+   * Lookup26: sp_runtime::TokenError
    **/
   SpRuntimeTokenError: {
     _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
   },
   /**
-   * Lookup26: sp_runtime::ArithmeticError
+   * Lookup27: sp_runtime::ArithmeticError
    **/
   SpRuntimeArithmeticError: {
     _enum: ['Underflow', 'Overflow', 'DivisionByZero']
   },
   /**
-   * Lookup27: sp_runtime::TransactionalError
+   * Lookup28: sp_runtime::TransactionalError
    **/
   SpRuntimeTransactionalError: {
     _enum: ['LimitReached', 'NoLayer']
   },
   /**
-   * Lookup28: cumulus_pallet_parachain_system::pallet::Event<T>
+   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>
    **/
   CumulusPalletParachainSystemEvent: {
     _enum: {
@@ -168,13 +178,13 @@
         count: 'u32',
       },
       DownwardMessagesProcessed: {
-        weightUsed: 'Weight',
+        weightUsed: 'SpWeightsWeightV2Weight',
         dmqHead: 'H256'
       }
     }
   },
   /**
-   * Lookup29: pallet_balances::pallet::Event<T, I>
+   * Lookup30: pallet_balances::pallet::Event<T, I>
    **/
   PalletBalancesEvent: {
     _enum: {
@@ -225,13 +235,13 @@
     }
   },
   /**
-   * Lookup30: frame_support::traits::tokens::misc::BalanceStatus
+   * Lookup31: frame_support::traits::tokens::misc::BalanceStatus
    **/
   FrameSupportTokensMiscBalanceStatus: {
     _enum: ['Free', 'Reserved']
   },
   /**
-   * Lookup31: pallet_transaction_payment::pallet::Event<T>
+   * Lookup32: pallet_transaction_payment::pallet::Event<T>
    **/
   PalletTransactionPaymentEvent: {
     _enum: {
@@ -243,7 +253,7 @@
     }
   },
   /**
-   * Lookup32: pallet_treasury::pallet::Event<T, I>
+   * Lookup33: pallet_treasury::pallet::Event<T, I>
    **/
   PalletTreasuryEvent: {
     _enum: {
@@ -279,7 +289,7 @@
     }
   },
   /**
-   * Lookup33: pallet_sudo::pallet::Event<T>
+   * Lookup34: pallet_sudo::pallet::Event<T>
    **/
   PalletSudoEvent: {
     _enum: {
@@ -295,7 +305,7 @@
     }
   },
   /**
-   * Lookup37: orml_vesting::module::Event<T>
+   * Lookup38: orml_vesting::module::Event<T>
    **/
   OrmlVestingModuleEvent: {
     _enum: {
@@ -314,7 +324,7 @@
     }
   },
   /**
-   * Lookup38: orml_vesting::VestingSchedule<BlockNumber, Balance>
+   * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>
    **/
   OrmlVestingVestingSchedule: {
     start: 'u32',
@@ -323,7 +333,7 @@
     perPeriod: 'Compact<u128>'
   },
   /**
-   * Lookup40: orml_xtokens::module::Event<T>
+   * Lookup41: orml_xtokens::module::Event<T>
    **/
   OrmlXtokensModuleEvent: {
     _enum: {
@@ -336,18 +346,18 @@
     }
   },
   /**
-   * Lookup41: xcm::v1::multiasset::MultiAssets
+   * Lookup42: xcm::v1::multiasset::MultiAssets
    **/
   XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',
   /**
-   * Lookup43: xcm::v1::multiasset::MultiAsset
+   * Lookup44: xcm::v1::multiasset::MultiAsset
    **/
   XcmV1MultiAsset: {
     id: 'XcmV1MultiassetAssetId',
     fun: 'XcmV1MultiassetFungibility'
   },
   /**
-   * Lookup44: xcm::v1::multiasset::AssetId
+   * Lookup45: xcm::v1::multiasset::AssetId
    **/
   XcmV1MultiassetAssetId: {
     _enum: {
@@ -356,14 +366,14 @@
     }
   },
   /**
-   * Lookup45: xcm::v1::multilocation::MultiLocation
+   * Lookup46: xcm::v1::multilocation::MultiLocation
    **/
   XcmV1MultiLocation: {
     parents: 'u8',
     interior: 'XcmV1MultilocationJunctions'
   },
   /**
-   * Lookup46: xcm::v1::multilocation::Junctions
+   * Lookup47: xcm::v1::multilocation::Junctions
    **/
   XcmV1MultilocationJunctions: {
     _enum: {
@@ -379,7 +389,7 @@
     }
   },
   /**
-   * Lookup47: xcm::v1::junction::Junction
+   * Lookup48: xcm::v1::junction::Junction
    **/
   XcmV1Junction: {
     _enum: {
@@ -407,7 +417,7 @@
     }
   },
   /**
-   * Lookup49: xcm::v0::junction::NetworkId
+   * Lookup50: xcm::v0::junction::NetworkId
    **/
   XcmV0JunctionNetworkId: {
     _enum: {
@@ -576,12 +586,12 @@
     _enum: {
       Success: {
         messageHash: 'Option<H256>',
-        weight: 'Weight',
+        weight: 'SpWeightsWeightV2Weight',
       },
       Fail: {
         messageHash: 'Option<H256>',
         error: 'XcmV2TraitsError',
-        weight: 'Weight',
+        weight: 'SpWeightsWeightV2Weight',
       },
       BadVersion: {
         messageHash: 'Option<H256>',
@@ -599,11 +609,11 @@
         sender: 'u32',
         sentAt: 'u32',
         index: 'u64',
-        required: 'Weight',
+        required: 'SpWeightsWeightV2Weight',
       },
       OverweightServiced: {
         index: 'u64',
-        used: 'Weight'
+        used: 'SpWeightsWeightV2Weight'
       }
     }
   },
@@ -650,7 +660,7 @@
       UnexpectedResponse: '(XcmV1MultiLocation,u64)',
       ResponseReady: '(u64,XcmV2Response)',
       Notified: '(u64,u8,u8)',
-      NotifyOverweight: '(u64,u8,u8,Weight,Weight)',
+      NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',
       NotifyDispatchError: '(u64,u8,u8)',
       NotifyDecodeFailed: '(u64,u8,u8)',
       InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',
@@ -660,7 +670,8 @@
       VersionChangeNotified: '(XcmV1MultiLocation,u32)',
       SupportedVersionChanged: '(XcmV1MultiLocation,u32)',
       NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',
-      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'
+      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',
+      AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'
     }
   },
   /**
@@ -963,17 +974,17 @@
       },
       WeightExhausted: {
         messageId: '[u8;32]',
-        remainingWeight: 'Weight',
-        requiredWeight: 'Weight',
+        remainingWeight: 'SpWeightsWeightV2Weight',
+        requiredWeight: 'SpWeightsWeightV2Weight',
       },
       OverweightEnqueued: {
         messageId: '[u8;32]',
         overweightIndex: 'u64',
-        requiredWeight: 'Weight',
+        requiredWeight: 'SpWeightsWeightV2Weight',
       },
       OverweightServiced: {
         overweightIndex: 'u64',
-        weightUsed: 'Weight'
+        weightUsed: 'SpWeightsWeightV2Weight'
       }
     }
   },
@@ -1394,8 +1405,8 @@
    * Lookup133: frame_system::limits::BlockWeights
    **/
   FrameSystemLimitsBlockWeights: {
-    baseBlock: 'Weight',
-    maxBlock: 'Weight',
+    baseBlock: 'SpWeightsWeightV2Weight',
+    maxBlock: 'SpWeightsWeightV2Weight',
     perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
   },
   /**
@@ -1410,10 +1421,10 @@
    * Lookup135: frame_system::limits::WeightsPerClass
    **/
   FrameSystemLimitsWeightsPerClass: {
-    baseExtrinsic: 'Weight',
-    maxExtrinsic: 'Option<Weight>',
-    maxTotal: 'Option<Weight>',
-    reserved: 'Option<Weight>'
+    baseExtrinsic: 'SpWeightsWeightV2Weight',
+    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
+    maxTotal: 'Option<SpWeightsWeightV2Weight>',
+    reserved: 'Option<SpWeightsWeightV2Weight>'
   },
   /**
    * Lookup137: frame_system::limits::BlockLength
@@ -1700,7 +1711,7 @@
       },
       sudo_unchecked_weight: {
         call: 'Call',
-        weight: 'Weight',
+        weight: 'SpWeightsWeightV2Weight',
       },
       set_key: {
         _alias: {
@@ -1742,37 +1753,37 @@
         currencyId: 'PalletForeignAssetsAssetIds',
         amount: 'u128',
         dest: 'XcmVersionedMultiLocation',
-        destWeight: 'u64',
+        destWeightLimit: 'XcmV2WeightLimit',
       },
       transfer_multiasset: {
         asset: 'XcmVersionedMultiAsset',
         dest: 'XcmVersionedMultiLocation',
-        destWeight: 'u64',
+        destWeightLimit: 'XcmV2WeightLimit',
       },
       transfer_with_fee: {
         currencyId: 'PalletForeignAssetsAssetIds',
         amount: 'u128',
         fee: 'u128',
         dest: 'XcmVersionedMultiLocation',
-        destWeight: 'u64',
+        destWeightLimit: 'XcmV2WeightLimit',
       },
       transfer_multiasset_with_fee: {
         asset: 'XcmVersionedMultiAsset',
         fee: 'XcmVersionedMultiAsset',
         dest: 'XcmVersionedMultiLocation',
-        destWeight: 'u64',
+        destWeightLimit: 'XcmV2WeightLimit',
       },
       transfer_multicurrencies: {
         currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',
         feeItem: 'u32',
         dest: 'XcmVersionedMultiLocation',
-        destWeight: 'u64',
+        destWeightLimit: 'XcmV2WeightLimit',
       },
       transfer_multiassets: {
         assets: 'XcmVersionedMultiAssets',
         feeItem: 'u32',
         dest: 'XcmVersionedMultiLocation',
-        destWeight: 'u64'
+        destWeightLimit: 'XcmV2WeightLimit'
       }
     }
   },
@@ -1826,7 +1837,7 @@
     _enum: {
       service_overweight: {
         index: 'u64',
-        weightLimit: 'Weight',
+        weightLimit: 'u64',
       },
       suspend_xcm_execution: 'Null',
       resume_xcm_execution: 'Null',
@@ -1852,19 +1863,19 @@
         _alias: {
           new_: 'new',
         },
-        new_: 'Weight',
+        new_: 'u64',
       },
       update_weight_restrict_decay: {
         _alias: {
           new_: 'new',
         },
-        new_: 'Weight',
+        new_: 'u64',
       },
       update_xcmp_max_individual_weight: {
         _alias: {
           new_: 'new',
         },
-        new_: 'Weight'
+        new_: 'u64'
       }
     }
   },
@@ -1891,7 +1902,7 @@
       },
       execute: {
         message: 'XcmVersionedXcm',
-        maxWeight: 'Weight',
+        maxWeight: 'u64',
       },
       force_xcm_version: {
         location: 'XcmV1MultiLocation',
@@ -2161,7 +2172,7 @@
     _enum: {
       service_overweight: {
         index: 'u64',
-        weightLimit: 'Weight'
+        weightLimit: 'u64'
       }
     }
   },
@@ -3059,9 +3070,9 @@
     suspendThreshold: 'u32',
     dropThreshold: 'u32',
     resumeThreshold: 'u32',
-    thresholdWeight: 'Weight',
-    weightRestrictDecay: 'Weight',
-    xcmpMaxIndividualWeight: 'Weight'
+    thresholdWeight: 'SpWeightsWeightV2Weight',
+    weightRestrictDecay: 'SpWeightsWeightV2Weight',
+    xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
   },
   /**
    * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
@@ -3083,7 +3094,7 @@
    * Lookup372: cumulus_pallet_dmp_queue::ConfigData
    **/
   CumulusPalletDmpQueueConfigData: {
-    maxIndividual: 'Weight'
+    maxIndividual: 'SpWeightsWeightV2Weight'
   },
   /**
    * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, 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, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, 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';
+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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, 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, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, 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, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, 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 {
@@ -215,6 +215,7 @@
     SpTrieStorageProof: SpTrieStorageProof;
     SpVersionRuntimeVersion: SpVersionRuntimeVersion;
     SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
+    SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
     UpDataStructsAccessMode: UpDataStructsAccessMode;
     UpDataStructsCollection: UpDataStructsCollection;
     UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -7,7 +7,7 @@
 
 import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
 import type { Event } from '@polkadot/types/interfaces/system';
 
 declare module '@polkadot/types/lookup' {
@@ -30,17 +30,23 @@
 
   /** @name FrameSupportDispatchPerDispatchClassWeight (7) */
   interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
-    readonly normal: Weight;
-    readonly operational: Weight;
-    readonly mandatory: Weight;
+    readonly normal: SpWeightsWeightV2Weight;
+    readonly operational: SpWeightsWeightV2Weight;
+    readonly mandatory: SpWeightsWeightV2Weight;
   }
 
-  /** @name SpRuntimeDigest (12) */
+  /** @name SpWeightsWeightV2Weight (8) */
+  interface SpWeightsWeightV2Weight extends Struct {
+    readonly refTime: Compact<u64>;
+    readonly proofSize: Compact<u64>;
+  }
+
+  /** @name SpRuntimeDigest (13) */
   interface SpRuntimeDigest extends Struct {
     readonly logs: Vec<SpRuntimeDigestDigestItem>;
   }
 
-  /** @name SpRuntimeDigestDigestItem (14) */
+  /** @name SpRuntimeDigestDigestItem (15) */
   interface SpRuntimeDigestDigestItem extends Enum {
     readonly isOther: boolean;
     readonly asOther: Bytes;
@@ -54,14 +60,14 @@
     readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
   }
 
-  /** @name FrameSystemEventRecord (17) */
+  /** @name FrameSystemEventRecord (18) */
   interface FrameSystemEventRecord extends Struct {
     readonly phase: FrameSystemPhase;
     readonly event: Event;
     readonly topics: Vec<H256>;
   }
 
-  /** @name FrameSystemEvent (19) */
+  /** @name FrameSystemEvent (20) */
   interface FrameSystemEvent extends Enum {
     readonly isExtrinsicSuccess: boolean;
     readonly asExtrinsicSuccess: {
@@ -89,14 +95,14 @@
     readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
   }
 
-  /** @name FrameSupportDispatchDispatchInfo (20) */
+  /** @name FrameSupportDispatchDispatchInfo (21) */
   interface FrameSupportDispatchDispatchInfo extends Struct {
-    readonly weight: Weight;
+    readonly weight: SpWeightsWeightV2Weight;
     readonly class: FrameSupportDispatchDispatchClass;
     readonly paysFee: FrameSupportDispatchPays;
   }
 
-  /** @name FrameSupportDispatchDispatchClass (21) */
+  /** @name FrameSupportDispatchDispatchClass (22) */
   interface FrameSupportDispatchDispatchClass extends Enum {
     readonly isNormal: boolean;
     readonly isOperational: boolean;
@@ -104,14 +110,14 @@
     readonly type: 'Normal' | 'Operational' | 'Mandatory';
   }
 
-  /** @name FrameSupportDispatchPays (22) */
+  /** @name FrameSupportDispatchPays (23) */
   interface FrameSupportDispatchPays extends Enum {
     readonly isYes: boolean;
     readonly isNo: boolean;
     readonly type: 'Yes' | 'No';
   }
 
-  /** @name SpRuntimeDispatchError (23) */
+  /** @name SpRuntimeDispatchError (24) */
   interface SpRuntimeDispatchError extends Enum {
     readonly isOther: boolean;
     readonly isCannotLookup: boolean;
@@ -127,16 +133,19 @@
     readonly asArithmetic: SpRuntimeArithmeticError;
     readonly isTransactional: boolean;
     readonly asTransactional: SpRuntimeTransactionalError;
-    readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
+    readonly isExhausted: boolean;
+    readonly isCorruption: boolean;
+    readonly isUnavailable: boolean;
+    readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
   }
 
-  /** @name SpRuntimeModuleError (24) */
+  /** @name SpRuntimeModuleError (25) */
   interface SpRuntimeModuleError extends Struct {
     readonly index: u8;
     readonly error: U8aFixed;
   }
 
-  /** @name SpRuntimeTokenError (25) */
+  /** @name SpRuntimeTokenError (26) */
   interface SpRuntimeTokenError extends Enum {
     readonly isNoFunds: boolean;
     readonly isWouldDie: boolean;
@@ -148,7 +157,7 @@
     readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
   }
 
-  /** @name SpRuntimeArithmeticError (26) */
+  /** @name SpRuntimeArithmeticError (27) */
   interface SpRuntimeArithmeticError extends Enum {
     readonly isUnderflow: boolean;
     readonly isOverflow: boolean;
@@ -156,14 +165,14 @@
     readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
   }
 
-  /** @name SpRuntimeTransactionalError (27) */
+  /** @name SpRuntimeTransactionalError (28) */
   interface SpRuntimeTransactionalError extends Enum {
     readonly isLimitReached: boolean;
     readonly isNoLayer: boolean;
     readonly type: 'LimitReached' | 'NoLayer';
   }
 
-  /** @name CumulusPalletParachainSystemEvent (28) */
+  /** @name CumulusPalletParachainSystemEvent (29) */
   interface CumulusPalletParachainSystemEvent extends Enum {
     readonly isValidationFunctionStored: boolean;
     readonly isValidationFunctionApplied: boolean;
@@ -181,13 +190,13 @@
     } & Struct;
     readonly isDownwardMessagesProcessed: boolean;
     readonly asDownwardMessagesProcessed: {
-      readonly weightUsed: Weight;
+      readonly weightUsed: SpWeightsWeightV2Weight;
       readonly dmqHead: H256;
     } & Struct;
     readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
   }
 
-  /** @name PalletBalancesEvent (29) */
+  /** @name PalletBalancesEvent (30) */
   interface PalletBalancesEvent extends Enum {
     readonly isEndowed: boolean;
     readonly asEndowed: {
@@ -246,14 +255,14 @@
     readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
   }
 
-  /** @name FrameSupportTokensMiscBalanceStatus (30) */
+  /** @name FrameSupportTokensMiscBalanceStatus (31) */
   interface FrameSupportTokensMiscBalanceStatus extends Enum {
     readonly isFree: boolean;
     readonly isReserved: boolean;
     readonly type: 'Free' | 'Reserved';
   }
 
-  /** @name PalletTransactionPaymentEvent (31) */
+  /** @name PalletTransactionPaymentEvent (32) */
   interface PalletTransactionPaymentEvent extends Enum {
     readonly isTransactionFeePaid: boolean;
     readonly asTransactionFeePaid: {
@@ -264,7 +273,7 @@
     readonly type: 'TransactionFeePaid';
   }
 
-  /** @name PalletTreasuryEvent (32) */
+  /** @name PalletTreasuryEvent (33) */
   interface PalletTreasuryEvent extends Enum {
     readonly isProposed: boolean;
     readonly asProposed: {
@@ -306,7 +315,7 @@
     readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';
   }
 
-  /** @name PalletSudoEvent (33) */
+  /** @name PalletSudoEvent (34) */
   interface PalletSudoEvent extends Enum {
     readonly isSudid: boolean;
     readonly asSudid: {
@@ -323,7 +332,7 @@
     readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
   }
 
-  /** @name OrmlVestingModuleEvent (37) */
+  /** @name OrmlVestingModuleEvent (38) */
   interface OrmlVestingModuleEvent extends Enum {
     readonly isVestingScheduleAdded: boolean;
     readonly asVestingScheduleAdded: {
@@ -343,7 +352,7 @@
     readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
   }
 
-  /** @name OrmlVestingVestingSchedule (38) */
+  /** @name OrmlVestingVestingSchedule (39) */
   interface OrmlVestingVestingSchedule extends Struct {
     readonly start: u32;
     readonly period: u32;
@@ -351,7 +360,7 @@
     readonly perPeriod: Compact<u128>;
   }
 
-  /** @name OrmlXtokensModuleEvent (40) */
+  /** @name OrmlXtokensModuleEvent (41) */
   interface OrmlXtokensModuleEvent extends Enum {
     readonly isTransferredMultiAssets: boolean;
     readonly asTransferredMultiAssets: {
@@ -363,16 +372,16 @@
     readonly type: 'TransferredMultiAssets';
   }
 
-  /** @name XcmV1MultiassetMultiAssets (41) */
+  /** @name XcmV1MultiassetMultiAssets (42) */
   interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
 
-  /** @name XcmV1MultiAsset (43) */
+  /** @name XcmV1MultiAsset (44) */
   interface XcmV1MultiAsset extends Struct {
     readonly id: XcmV1MultiassetAssetId;
     readonly fun: XcmV1MultiassetFungibility;
   }
 
-  /** @name XcmV1MultiassetAssetId (44) */
+  /** @name XcmV1MultiassetAssetId (45) */
   interface XcmV1MultiassetAssetId extends Enum {
     readonly isConcrete: boolean;
     readonly asConcrete: XcmV1MultiLocation;
@@ -381,13 +390,13 @@
     readonly type: 'Concrete' | 'Abstract';
   }
 
-  /** @name XcmV1MultiLocation (45) */
+  /** @name XcmV1MultiLocation (46) */
   interface XcmV1MultiLocation extends Struct {
     readonly parents: u8;
     readonly interior: XcmV1MultilocationJunctions;
   }
 
-  /** @name XcmV1MultilocationJunctions (46) */
+  /** @name XcmV1MultilocationJunctions (47) */
   interface XcmV1MultilocationJunctions extends Enum {
     readonly isHere: boolean;
     readonly isX1: boolean;
@@ -409,7 +418,7 @@
     readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
   }
 
-  /** @name XcmV1Junction (47) */
+  /** @name XcmV1Junction (48) */
   interface XcmV1Junction extends Enum {
     readonly isParachain: boolean;
     readonly asParachain: Compact<u32>;
@@ -443,7 +452,7 @@
     readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
   }
 
-  /** @name XcmV0JunctionNetworkId (49) */
+  /** @name XcmV0JunctionNetworkId (50) */
   interface XcmV0JunctionNetworkId extends Enum {
     readonly isAny: boolean;
     readonly isNamed: boolean;
@@ -628,13 +637,13 @@
     readonly isSuccess: boolean;
     readonly asSuccess: {
       readonly messageHash: Option<H256>;
-      readonly weight: Weight;
+      readonly weight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isFail: boolean;
     readonly asFail: {
       readonly messageHash: Option<H256>;
       readonly error: XcmV2TraitsError;
-      readonly weight: Weight;
+      readonly weight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isBadVersion: boolean;
     readonly asBadVersion: {
@@ -657,12 +666,12 @@
       readonly sender: u32;
       readonly sentAt: u32;
       readonly index: u64;
-      readonly required: Weight;
+      readonly required: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isOverweightServiced: boolean;
     readonly asOverweightServiced: {
       readonly index: u64;
-      readonly used: Weight;
+      readonly used: SpWeightsWeightV2Weight;
     } & Struct;
     readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
   }
@@ -713,7 +722,7 @@
     readonly isNotified: boolean;
     readonly asNotified: ITuple<[u64, u8, u8]>;
     readonly isNotifyOverweight: boolean;
-    readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;
+    readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;
     readonly isNotifyDispatchError: boolean;
     readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;
     readonly isNotifyDecodeFailed: boolean;
@@ -734,7 +743,9 @@
     readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;
     readonly isNotifyTargetMigrationFail: boolean;
     readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;
-    readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
+    readonly isAssetsClaimed: boolean;
+    readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+    readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
   }
 
   /** @name XcmV2TraitsOutcome (67) */
@@ -1081,19 +1092,19 @@
     readonly isWeightExhausted: boolean;
     readonly asWeightExhausted: {
       readonly messageId: U8aFixed;
-      readonly remainingWeight: Weight;
-      readonly requiredWeight: Weight;
+      readonly remainingWeight: SpWeightsWeightV2Weight;
+      readonly requiredWeight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isOverweightEnqueued: boolean;
     readonly asOverweightEnqueued: {
       readonly messageId: U8aFixed;
       readonly overweightIndex: u64;
-      readonly requiredWeight: Weight;
+      readonly requiredWeight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isOverweightServiced: boolean;
     readonly asOverweightServiced: {
       readonly overweightIndex: u64;
-      readonly weightUsed: Weight;
+      readonly weightUsed: SpWeightsWeightV2Weight;
     } & Struct;
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
   }
@@ -1560,8 +1571,8 @@
 
   /** @name FrameSystemLimitsBlockWeights (133) */
   interface FrameSystemLimitsBlockWeights extends Struct {
-    readonly baseBlock: Weight;
-    readonly maxBlock: Weight;
+    readonly baseBlock: SpWeightsWeightV2Weight;
+    readonly maxBlock: SpWeightsWeightV2Weight;
     readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
   }
 
@@ -1574,10 +1585,10 @@
 
   /** @name FrameSystemLimitsWeightsPerClass (135) */
   interface FrameSystemLimitsWeightsPerClass extends Struct {
-    readonly baseExtrinsic: Weight;
-    readonly maxExtrinsic: Option<Weight>;
-    readonly maxTotal: Option<Weight>;
-    readonly reserved: Option<Weight>;
+    readonly baseExtrinsic: SpWeightsWeightV2Weight;
+    readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
+    readonly maxTotal: Option<SpWeightsWeightV2Weight>;
+    readonly reserved: Option<SpWeightsWeightV2Weight>;
   }
 
   /** @name FrameSystemLimitsBlockLength (137) */
@@ -1882,7 +1893,7 @@
     readonly isSudoUncheckedWeight: boolean;
     readonly asSudoUncheckedWeight: {
       readonly call: Call;
-      readonly weight: Weight;
+      readonly weight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isSetKey: boolean;
     readonly asSetKey: {
@@ -1923,13 +1934,13 @@
       readonly currencyId: PalletForeignAssetsAssetIds;
       readonly amount: u128;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeight: u64;
+      readonly destWeightLimit: XcmV2WeightLimit;
     } & Struct;
     readonly isTransferMultiasset: boolean;
     readonly asTransferMultiasset: {
       readonly asset: XcmVersionedMultiAsset;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeight: u64;
+      readonly destWeightLimit: XcmV2WeightLimit;
     } & Struct;
     readonly isTransferWithFee: boolean;
     readonly asTransferWithFee: {
@@ -1937,28 +1948,28 @@
       readonly amount: u128;
       readonly fee: u128;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeight: u64;
+      readonly destWeightLimit: XcmV2WeightLimit;
     } & Struct;
     readonly isTransferMultiassetWithFee: boolean;
     readonly asTransferMultiassetWithFee: {
       readonly asset: XcmVersionedMultiAsset;
       readonly fee: XcmVersionedMultiAsset;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeight: u64;
+      readonly destWeightLimit: XcmV2WeightLimit;
     } & Struct;
     readonly isTransferMulticurrencies: boolean;
     readonly asTransferMulticurrencies: {
       readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;
       readonly feeItem: u32;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeight: u64;
+      readonly destWeightLimit: XcmV2WeightLimit;
     } & Struct;
     readonly isTransferMultiassets: boolean;
     readonly asTransferMultiassets: {
       readonly assets: XcmVersionedMultiAssets;
       readonly feeItem: u32;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeight: u64;
+      readonly destWeightLimit: XcmV2WeightLimit;
     } & Struct;
     readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
   }
@@ -2014,7 +2025,7 @@
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
       readonly index: u64;
-      readonly weightLimit: Weight;
+      readonly weightLimit: u64;
     } & Struct;
     readonly isSuspendXcmExecution: boolean;
     readonly isResumeXcmExecution: boolean;
@@ -2032,15 +2043,15 @@
     } & Struct;
     readonly isUpdateThresholdWeight: boolean;
     readonly asUpdateThresholdWeight: {
-      readonly new_: Weight;
+      readonly new_: u64;
     } & Struct;
     readonly isUpdateWeightRestrictDecay: boolean;
     readonly asUpdateWeightRestrictDecay: {
-      readonly new_: Weight;
+      readonly new_: u64;
     } & Struct;
     readonly isUpdateXcmpMaxIndividualWeight: boolean;
     readonly asUpdateXcmpMaxIndividualWeight: {
-      readonly new_: Weight;
+      readonly new_: u64;
     } & Struct;
     readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
   }
@@ -2069,7 +2080,7 @@
     readonly isExecute: boolean;
     readonly asExecute: {
       readonly message: XcmVersionedXcm;
-      readonly maxWeight: Weight;
+      readonly maxWeight: u64;
     } & Struct;
     readonly isForceXcmVersion: boolean;
     readonly asForceXcmVersion: {
@@ -2372,7 +2383,7 @@
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
       readonly index: u64;
-      readonly weightLimit: Weight;
+      readonly weightLimit: u64;
     } & Struct;
     readonly type: 'ServiceOverweight';
   }
@@ -3331,9 +3342,9 @@
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
     readonly resumeThreshold: u32;
-    readonly thresholdWeight: Weight;
-    readonly weightRestrictDecay: Weight;
-    readonly xcmpMaxIndividualWeight: Weight;
+    readonly thresholdWeight: SpWeightsWeightV2Weight;
+    readonly weightRestrictDecay: SpWeightsWeightV2Weight;
+    readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
   }
 
   /** @name CumulusPalletXcmpQueueError (369) */
@@ -3369,7 +3380,7 @@
 
   /** @name CumulusPalletDmpQueueConfigData (372) */
   interface CumulusPalletDmpQueueConfigData extends Struct {
-    readonly maxIndividual: Weight;
+    readonly maxIndividual: SpWeightsWeightV2Weight;
   }
 
   /** @name CumulusPalletDmpQueuePageIndexData (373) */
modifiedtests/yarn.lockdiffbeforeafterboth
--- a/tests/yarn.lock
+++ b/tests/yarn.lock
@@ -17,47 +17,47 @@
   dependencies:
     "@babel/highlight" "^7.18.6"
 
-"@babel/compat-data@^7.19.3":
-  version "7.19.4"
-  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747"
-  integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==
+"@babel/compat-data@^7.20.0":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
+  integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
 
-"@babel/core@^7.19.3":
-  version "7.19.6"
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f"
-  integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==
+"@babel/core@^7.20.2":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"
+  integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==
   dependencies:
     "@ampproject/remapping" "^2.1.0"
     "@babel/code-frame" "^7.18.6"
-    "@babel/generator" "^7.19.6"
-    "@babel/helper-compilation-targets" "^7.19.3"
-    "@babel/helper-module-transforms" "^7.19.6"
-    "@babel/helpers" "^7.19.4"
-    "@babel/parser" "^7.19.6"
+    "@babel/generator" "^7.20.5"
+    "@babel/helper-compilation-targets" "^7.20.0"
+    "@babel/helper-module-transforms" "^7.20.2"
+    "@babel/helpers" "^7.20.5"
+    "@babel/parser" "^7.20.5"
     "@babel/template" "^7.18.10"
-    "@babel/traverse" "^7.19.6"
-    "@babel/types" "^7.19.4"
+    "@babel/traverse" "^7.20.5"
+    "@babel/types" "^7.20.5"
     convert-source-map "^1.7.0"
     debug "^4.1.0"
     gensync "^1.0.0-beta.2"
     json5 "^2.2.1"
     semver "^6.3.0"
 
-"@babel/generator@^7.19.6":
-  version "7.19.6"
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.6.tgz#9e481a3fe9ca6261c972645ae3904ec0f9b34a1d"
-  integrity sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==
+"@babel/generator@^7.20.5":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95"
+  integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==
   dependencies:
-    "@babel/types" "^7.19.4"
+    "@babel/types" "^7.20.5"
     "@jridgewell/gen-mapping" "^0.3.2"
     jsesc "^2.5.1"
 
-"@babel/helper-compilation-targets@^7.19.3":
-  version "7.19.3"
-  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca"
-  integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==
+"@babel/helper-compilation-targets@^7.20.0":
+  version "7.20.0"
+  resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
+  integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
   dependencies:
-    "@babel/compat-data" "^7.19.3"
+    "@babel/compat-data" "^7.20.0"
     "@babel/helper-validator-option" "^7.18.6"
     browserslist "^4.21.3"
     semver "^6.3.0"
@@ -89,26 +89,26 @@
   dependencies:
     "@babel/types" "^7.18.6"
 
-"@babel/helper-module-transforms@^7.19.6":
-  version "7.19.6"
-  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f"
-  integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==
+"@babel/helper-module-transforms@^7.20.2":
+  version "7.20.2"
+  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
+  integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
   dependencies:
     "@babel/helper-environment-visitor" "^7.18.9"
     "@babel/helper-module-imports" "^7.18.6"
-    "@babel/helper-simple-access" "^7.19.4"
+    "@babel/helper-simple-access" "^7.20.2"
     "@babel/helper-split-export-declaration" "^7.18.6"
     "@babel/helper-validator-identifier" "^7.19.1"
     "@babel/template" "^7.18.10"
-    "@babel/traverse" "^7.19.6"
-    "@babel/types" "^7.19.4"
+    "@babel/traverse" "^7.20.1"
+    "@babel/types" "^7.20.2"
 
-"@babel/helper-simple-access@^7.19.4":
-  version "7.19.4"
-  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"
-  integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==
+"@babel/helper-simple-access@^7.20.2":
+  version "7.20.2"
+  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
+  integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
   dependencies:
-    "@babel/types" "^7.19.4"
+    "@babel/types" "^7.20.2"
 
 "@babel/helper-split-export-declaration@^7.18.6":
   version "7.18.6"
@@ -132,14 +132,14 @@
   resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
   integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
 
-"@babel/helpers@^7.19.4":
-  version "7.19.4"
-  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5"
-  integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==
+"@babel/helpers@^7.20.5":
+  version "7.20.6"
+  resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763"
+  integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==
   dependencies:
     "@babel/template" "^7.18.10"
-    "@babel/traverse" "^7.19.4"
-    "@babel/types" "^7.19.4"
+    "@babel/traverse" "^7.20.5"
+    "@babel/types" "^7.20.5"
 
 "@babel/highlight@^7.18.6":
   version "7.18.6"
@@ -150,11 +150,16 @@
     chalk "^2.0.0"
     js-tokens "^4.0.0"
 
-"@babel/parser@^7.18.10", "@babel/parser@^7.19.6":
+"@babel/parser@^7.18.10":
   version "7.19.6"
   resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8"
   integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==
 
+"@babel/parser@^7.20.5":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
+  integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
+
 "@babel/register@^7.18.9":
   version "7.18.9"
   resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"
@@ -166,12 +171,12 @@
     pirates "^4.0.5"
     source-map-support "^0.5.16"
 
-"@babel/runtime@^7.18.9", "@babel/runtime@^7.19.4":
-  version "7.19.4"
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78"
-  integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==
+"@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6":
+  version "7.20.6"
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
+  integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
   dependencies:
-    regenerator-runtime "^0.13.4"
+    regenerator-runtime "^0.13.11"
 
 "@babel/template@^7.18.10":
   version "7.18.10"
@@ -182,23 +187,23 @@
     "@babel/parser" "^7.18.10"
     "@babel/types" "^7.18.10"
 
-"@babel/traverse@^7.19.4", "@babel/traverse@^7.19.6":
-  version "7.19.6"
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.6.tgz#7b4c865611df6d99cb131eec2e8ac71656a490dc"
-  integrity sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==
+"@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"
+  integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==
   dependencies:
     "@babel/code-frame" "^7.18.6"
-    "@babel/generator" "^7.19.6"
+    "@babel/generator" "^7.20.5"
     "@babel/helper-environment-visitor" "^7.18.9"
     "@babel/helper-function-name" "^7.19.0"
     "@babel/helper-hoist-variables" "^7.18.6"
     "@babel/helper-split-export-declaration" "^7.18.6"
-    "@babel/parser" "^7.19.6"
-    "@babel/types" "^7.19.4"
+    "@babel/parser" "^7.20.5"
+    "@babel/types" "^7.20.5"
     debug "^4.1.0"
     globals "^11.1.0"
 
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.4":
+"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":
   version "7.19.4"
   resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"
   integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==
@@ -207,6 +212,15 @@
     "@babel/helper-validator-identifier" "^7.19.1"
     to-fast-properties "^2.0.0"
 
+"@babel/types@^7.20.2", "@babel/types@^7.20.5":
+  version "7.20.5"
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
+  integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
+  dependencies:
+    "@babel/helper-string-parser" "^7.19.4"
+    "@babel/helper-validator-identifier" "^7.19.1"
+    to-fast-properties "^2.0.0"
+
 "@cspotcode/source-map-support@^0.8.0":
   version "0.8.1"
   resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
@@ -520,352 +534,352 @@
     "@nodelib/fs.scandir" "2.1.5"
     fastq "^1.6.0"
 
-"@polkadot/api-augment@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.5.2.tgz#55168dd112517028fea5f2ab9c54ea627e43ac3a"
-  integrity sha512-dH6QMY8Z3zI6CrgSU3eSe6f0KWDb5PYGztg/FXGPrjh7Vjic7syWZ1LD6zaHJAFWDp80BEdEXfqr4lConrCKGg==
+"@polkadot/api-augment@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.9.4.tgz#cb09d8edfc3a5d61c6519f30a2f02b1bb939c9f6"
+  integrity sha512-+T9YWw5kEi7AkSoS2UfE1nrVeJUtD92elQBZ3bMMkfM1geKWhSnvBLyTMn6kFmNXTfK0qt8YKS1pwbux7cC9tg==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/api-base" "9.5.2"
-    "@polkadot/rpc-augment" "9.5.2"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-augment" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/api-base" "9.9.4"
+    "@polkadot/rpc-augment" "9.9.4"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-augment" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/util" "^10.1.14"
 
-"@polkadot/api-base@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.5.2.tgz#ac0a6b5546a54bcc753ac55c9f033caa9f8b4e5c"
-  integrity sha512-BBsH9SLB1FHgjdiU32cZX1puL3Eh8IjOJHjRsO/5SdttciQhF5g/u/m/mM/55qnlXmffI9s2Jre18G0XtVU9Aw==
+"@polkadot/api-base@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.9.4.tgz#eccc645b60485bfe64a5e6a9ebb3195d2011c0ee"
+  integrity sha512-G1DcxcMeGcvaAAA3u5Tbf70zE5aIuAPEAXnptFMF0lvJz4O6CM8k8ZZFTSk25hjsYlnx8WI1FTc97q4/tKie+Q==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/rpc-core" "9.5.2"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/rpc-core" "9.9.4"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/util" "^10.1.14"
     rxjs "^7.5.7"
 
-"@polkadot/api-derive@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.5.2.tgz#c0412cfc13fa71f93b315d126b12b5ab38e6438c"
-  integrity sha512-kWn12dlqfIES1trNLd3O1i2qa4T97v/co1VMCgVstICwCt3+mGZgpxkMqQqPiWHagKEVeBNoAn+h8eOiQlbujA==
+"@polkadot/api-derive@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.9.4.tgz#0eedd9c604be2425d8a1adcf048446184a5aaec9"
+  integrity sha512-3ka7GzY4QbI3d/DHjQ9SjfDOTDxeU8gM2Dn31BP1oFzGwdFe2GZhDIE//lR5S6UDVxNNlgWz4927AunOQcuAmg==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/api" "9.5.2"
-    "@polkadot/api-augment" "9.5.2"
-    "@polkadot/api-base" "9.5.2"
-    "@polkadot/rpc-core" "9.5.2"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/util" "^10.1.11"
-    "@polkadot/util-crypto" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/api" "9.9.4"
+    "@polkadot/api-augment" "9.9.4"
+    "@polkadot/api-base" "9.9.4"
+    "@polkadot/rpc-core" "9.9.4"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/util" "^10.1.14"
+    "@polkadot/util-crypto" "^10.1.14"
     rxjs "^7.5.7"
 
-"@polkadot/api@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.5.2.tgz#cef83928e47c393fbebf2788bc86841b6ab37a41"
-  integrity sha512-iEF/E8vQan3fHmIEl3bX7Yn/1jQLlvSDwPOxiQdj4tIcF36HX6vCbkdhQKRif0CNYES58TA9EKFiCNg81k+kXw==
+"@polkadot/api@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.9.4.tgz#a4899d7497644378a94e0cc6fcbf73a5e2d31b92"
+  integrity sha512-ze7W/DXsPHsixrFOACzugDQqezzrUGGX1Z2JOl6z+V8pd+ZKLSecsKJFUzf4yoBT82ArITYPtRVx/Dq9b9K2dA==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/api-augment" "9.5.2"
-    "@polkadot/api-base" "9.5.2"
-    "@polkadot/api-derive" "9.5.2"
-    "@polkadot/keyring" "^10.1.11"
-    "@polkadot/rpc-augment" "9.5.2"
-    "@polkadot/rpc-core" "9.5.2"
-    "@polkadot/rpc-provider" "9.5.2"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-augment" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/types-create" "9.5.2"
-    "@polkadot/types-known" "9.5.2"
-    "@polkadot/util" "^10.1.11"
-    "@polkadot/util-crypto" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/api-augment" "9.9.4"
+    "@polkadot/api-base" "9.9.4"
+    "@polkadot/api-derive" "9.9.4"
+    "@polkadot/keyring" "^10.1.14"
+    "@polkadot/rpc-augment" "9.9.4"
+    "@polkadot/rpc-core" "9.9.4"
+    "@polkadot/rpc-provider" "9.9.4"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-augment" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/types-create" "9.9.4"
+    "@polkadot/types-known" "9.9.4"
+    "@polkadot/util" "^10.1.14"
+    "@polkadot/util-crypto" "^10.1.14"
     eventemitter3 "^4.0.7"
     rxjs "^7.5.7"
 
-"@polkadot/keyring@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.1.11.tgz#a3fed011b0c8826ea2097e04f7189e9be66fbf98"
-  integrity sha512-Nv8cZaOA/KbdslDMTklJ58+y+UPpic3+oMQoozuq48Ccjv7WeW2BX47XM/RNE8nYFg6EHa6Whfm4IFaFb8s7ag==
+"@polkadot/keyring@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"
+  integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/util" "10.1.11"
-    "@polkadot/util-crypto" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/util" "10.2.1"
+    "@polkadot/util-crypto" "10.2.1"
 
-"@polkadot/networks@10.1.11", "@polkadot/networks@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.1.11.tgz#96a5d6c80228f4beada9154cca0f60a63198e7f4"
-  integrity sha512-4FfOVETXwh6PL6wd6fYJMkRSQKm+xUw3vR5rHqcAnB696FpMFPPErc6asgZ9lYMyzNJRY3yG86HQpFhtCv1nGA==
+"@polkadot/networks@10.2.1", "@polkadot/networks@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"
+  integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/util" "10.1.11"
-    "@substrate/ss58-registry" "^1.33.0"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/util" "10.2.1"
+    "@substrate/ss58-registry" "^1.35.0"
 
-"@polkadot/rpc-augment@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.5.2.tgz#739cc3ed2f86f4318432e38381a2cc780dc64f1e"
-  integrity sha512-QAcunC7p/T4xy6e4m0Q1c9tiVYxnm+S9o10tmtx0K4qXzrc/4I2/tsw3nEGi3BzJhvMpFondSQGcJ3gyLwpmVA==
+"@polkadot/rpc-augment@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.9.4.tgz#82a1473143cb9ec1183e01babcfe7ac396ad456b"
+  integrity sha512-67zGQAhJuXd/CZlwDZTgxNt3xGtsDwLvLvyFrHuNjJNM0KGCyt/OpQHVBlyZ6xfII0WZpccASN6P2MxsGTMnKw==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/rpc-core" "9.5.2"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/rpc-core" "9.9.4"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/util" "^10.1.14"
 
-"@polkadot/rpc-core@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.5.2.tgz#1a00868038b6c07fe8f58bd0a6cc9519d14001cc"
-  integrity sha512-4PbNz0GEp3FXYOnsS7mDHZy9DNVBOl56fq8vs09rLkEkrrvGkHmCvabEEWL7OPbwBzwzsCxdgI+IdkVTUKXPkQ==
+"@polkadot/rpc-core@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.9.4.tgz#30cb94dfb9438ef54f6ab9367bc533fa6934dbc5"
+  integrity sha512-DxhJcq1GAi+28nLMqhTksNMqTX40bGNhYuyQyy/to39VxizAjx+lyAHAMfzG9lvPnTIi2KzXif2pCdWq3AgJag==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/rpc-augment" "9.5.2"
-    "@polkadot/rpc-provider" "9.5.2"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/rpc-augment" "9.9.4"
+    "@polkadot/rpc-provider" "9.9.4"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/util" "^10.1.14"
     rxjs "^7.5.7"
 
-"@polkadot/rpc-provider@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.5.2.tgz#3e38ea4c3639180f12270b6fe8cbcabf728aaf1d"
-  integrity sha512-Sn2jfvAsvQcl35o0up8JR/XbDMS/3YVDEN2sFuzXtiD77W2njukItbZT+BolfAW+biAUs3bNomump5k/YLiLKg==
+"@polkadot/rpc-provider@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.9.4.tgz#dab6d72e83e325dc170e03d0edf5f7bec07c0293"
+  integrity sha512-aUkPtlYukAOFX3FkUgLw3MNy+T0mCiCX7va3PIts9ggK4vl14NFZHurCZq+5ANvknRU4WG8P5teurH9Rd9oDjQ==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/keyring" "^10.1.11"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-support" "9.5.2"
-    "@polkadot/util" "^10.1.11"
-    "@polkadot/util-crypto" "^10.1.11"
-    "@polkadot/x-fetch" "^10.1.11"
-    "@polkadot/x-global" "^10.1.11"
-    "@polkadot/x-ws" "^10.1.11"
-    "@substrate/connect" "0.7.14"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/keyring" "^10.1.14"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-support" "9.9.4"
+    "@polkadot/util" "^10.1.14"
+    "@polkadot/util-crypto" "^10.1.14"
+    "@polkadot/x-fetch" "^10.1.14"
+    "@polkadot/x-global" "^10.1.14"
+    "@polkadot/x-ws" "^10.1.14"
+    "@substrate/connect" "0.7.17"
     eventemitter3 "^4.0.7"
     mock-socket "^9.1.5"
     nock "^13.2.9"
 
-"@polkadot/typegen@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.5.2.tgz#b4f3b5eca69c70cc496c8cd3b7804df32282c336"
-  integrity sha512-DIiicI3VzbqkfjthvHhLYCaElkaKB/qM+P0mGDmb3+NgttJQsH2Sqy/zsT/mjr07hAB1gXf4dhCmj0QQBiR1og==
+"@polkadot/typegen@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.9.4.tgz#24ee3122c338a359d5776e1c728160ffaaffe6b9"
+  integrity sha512-uIPD3r9QCvTtz5JHQaO5T2q36U9PrmrutHXbHWWzswsWU6lxkGjIiwUOdV+IUemeQx85GVOAPInU+BnwdhPUpA==
   dependencies:
-    "@babel/core" "^7.19.3"
+    "@babel/core" "^7.20.2"
     "@babel/register" "^7.18.9"
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/api" "9.5.2"
-    "@polkadot/api-augment" "9.5.2"
-    "@polkadot/rpc-augment" "9.5.2"
-    "@polkadot/rpc-provider" "9.5.2"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-augment" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/types-create" "9.5.2"
-    "@polkadot/types-support" "9.5.2"
-    "@polkadot/util" "^10.1.11"
-    "@polkadot/util-crypto" "^10.1.11"
-    "@polkadot/x-ws" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/api" "9.9.4"
+    "@polkadot/api-augment" "9.9.4"
+    "@polkadot/rpc-augment" "9.9.4"
+    "@polkadot/rpc-provider" "9.9.4"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-augment" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/types-create" "9.9.4"
+    "@polkadot/types-support" "9.9.4"
+    "@polkadot/util" "^10.1.14"
+    "@polkadot/util-crypto" "^10.1.14"
+    "@polkadot/x-ws" "^10.1.14"
     handlebars "^4.7.7"
     websocket "^1.0.34"
-    yargs "^17.6.0"
+    yargs "^17.6.2"
 
-"@polkadot/types-augment@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.5.2.tgz#d9e77756b0e36455d708f5af8265ef011ddf8d91"
-  integrity sha512-LDJdv/84sECwA0R5lK85/orxjoozJe3+2jeLjRiKr8S6qm9XRfz0wLCSF866kpSGBZ4B1dYBUhzjoSu95y2Jug==
+"@polkadot/types-augment@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.9.4.tgz#08a2a89c0b8000ef156a0ed41f5eb7aa55cc1bb1"
+  integrity sha512-mQNc0kxt3zM6SC+5hJbsg03fxEFpn5nakki+loE2mNsWr1g+rR7LECagAZ4wT2gvdbzWuY/LlRYyDQxe0PwdZg==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/util" "^10.1.14"
 
-"@polkadot/types-codec@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.5.2.tgz#345c38ccef17651b8cabd159a42810893b5e7e44"
-  integrity sha512-FJPjE3ceTGTcadeC8d5C+aSR8SLKuQrXKIBmMNBky+WwzEo0vufRqxFWcPLxAOEeeUPgBXS967tP15+UU4psGA==
+"@polkadot/types-codec@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.9.4.tgz#1219a6b453dab8e53a0d376f13394b02964c7665"
+  integrity sha512-uSHoQQcj4813c9zNkDDH897K6JB0OznTrH5WeZ1wxpjML7lkuTJ2t/GQE9e4q5Ycl7YePZsvEp2qlc3GwrVm/w==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/util" "^10.1.11"
-    "@polkadot/x-bigint" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/util" "^10.1.14"
+    "@polkadot/x-bigint" "^10.1.14"
 
-"@polkadot/types-create@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.5.2.tgz#a85dcb794ea11e5d528baa34b65e57cfafc905cf"
-  integrity sha512-YbplL8K0LqUEHoV3FgZ5B83oVV67KGbLXsWHVVaUZBPsmtXJXrbBfSyJgl/80I2n4lXEBmg3sFAYMbaSTvL05A==
+"@polkadot/types-create@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.9.4.tgz#d2d3d0e4c3cd4a0a4581dcb418a8f6bec657b986"
+  integrity sha512-EOxLryRQ4JVRSRnIMXk3Tjry1tyegNuWK8OUj51A1wHrX76DF9chME27bXUP4d7el1pjqPuQ9/l+/928GG386g==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/util" "^10.1.14"
 
-"@polkadot/types-known@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.5.2.tgz#a71fd08932b1643bbf346321472ed48ab1ade215"
-  integrity sha512-iNaGOF6dGiTvy3Ns8Z7WNjYD1SGnZiapDAKPH4brPuJqMpN6/FxYpfPSSOKx+IJEamsdINcaggb87eWyPxH8CA==
+"@polkadot/types-known@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.9.4.tgz#d30fa2c5c964b76b748413004758d05eb8f0e8f9"
+  integrity sha512-BaKXkg3yZLDv31g0CZPJsZDXX01VTjkQ0tmW9U6fmccEq3zHlxbUiXf3aKlwKRJyDWiEOxr4cQ4GT8jj6uEIuA==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/networks" "^10.1.11"
-    "@polkadot/types" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/types-create" "9.5.2"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/networks" "^10.1.14"
+    "@polkadot/types" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/types-create" "9.9.4"
+    "@polkadot/util" "^10.1.14"
 
-"@polkadot/types-support@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.5.2.tgz#f2990d19cbd78c24e5b7116466fb1d89f93a8ca7"
-  integrity sha512-Zdbl5fvGQjUkyE1r67vhyPEqLUwlZ35GCnkoobY9MgN6gylhSjNue/shpG4uGsEjWVQL7GkFkrPiwtzDArVilg==
+"@polkadot/types-support@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.9.4.tgz#3f2eb1097a268bdd280d36fb53b7cdc98a5e238c"
+  integrity sha512-vjhdD7B5kdTLhm2iO0QAb7fM4D2ojNUVVocOJotC9NULYtoC+PkPvkvFbw7VQ1H3u7yxyZfWloMtBnCsIp5EAA==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/util" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/util" "^10.1.14"
 
-"@polkadot/types@9.5.2":
-  version "9.5.2"
-  resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.5.2.tgz#33ab2caea08f084141a01038adbe53ed69ab7d9c"
-  integrity sha512-6C5xzOrMK+fu0JMOlSO+8dPDhpwKPOaKMv3v5BMvBEWtDNKM81/QQoAoYT7DSVXq/V16icSFxPs9IWC+6Qq5ag==
+"@polkadot/types@9.9.4":
+  version "9.9.4"
+  resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.9.4.tgz#a1b38174f5a9e2aa97612157d12faffd905b126e"
+  integrity sha512-/LJ029S0AtKzvV9JoQtIIeHRP/Xoq8MZmDfdHUEgThRd+uvtQzFyGmcupe4EzX0p5VAx93DUFQKm8vUdHE39Tw==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/keyring" "^10.1.11"
-    "@polkadot/types-augment" "9.5.2"
-    "@polkadot/types-codec" "9.5.2"
-    "@polkadot/types-create" "9.5.2"
-    "@polkadot/util" "^10.1.11"
-    "@polkadot/util-crypto" "^10.1.11"
+    "@babel/runtime" "^7.20.1"
+    "@polkadot/keyring" "^10.1.14"
+    "@polkadot/types-augment" "9.9.4"
+    "@polkadot/types-codec" "9.9.4"
+    "@polkadot/types-create" "9.9.4"
+    "@polkadot/util" "^10.1.14"
+    "@polkadot/util-crypto" "^10.1.14"
     rxjs "^7.5.7"
 
-"@polkadot/util-crypto@10.1.11", "@polkadot/util-crypto@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.1.11.tgz#e59bdc8e1e2bd98a115e2e2ed45461e68a14a48c"
-  integrity sha512-wG63frIMAR5T/HXGM0SFNzZZdk7qDBsfLXfn6PIZiXCCCsdEYPzS5WltB7fkhicYpbePJ7VgdCAddj1l4IcGyg==
+"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"
+  integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==
   dependencies:
-    "@babel/runtime" "^7.19.4"
+    "@babel/runtime" "^7.20.6"
     "@noble/hashes" "1.1.3"
     "@noble/secp256k1" "1.7.0"
-    "@polkadot/networks" "10.1.11"
-    "@polkadot/util" "10.1.11"
-    "@polkadot/wasm-crypto" "^6.3.1"
-    "@polkadot/x-bigint" "10.1.11"
-    "@polkadot/x-randomvalues" "10.1.11"
+    "@polkadot/networks" "10.2.1"
+    "@polkadot/util" "10.2.1"
+    "@polkadot/wasm-crypto" "^6.4.1"
+    "@polkadot/x-bigint" "10.2.1"
+    "@polkadot/x-randomvalues" "10.2.1"
     "@scure/base" "1.1.1"
     ed2curve "^0.3.0"
     tweetnacl "^1.0.3"
 
-"@polkadot/util@10.1.11", "@polkadot/util@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.1.11.tgz#22bcdabbd7a0d266417f6569cc655f516d371a82"
-  integrity sha512-6m51lw6g6ilqO/k4BQY7rD0lYM9NCnC4FiM7CEEUc7j8q86qxdcZ88zdNldkhNsTIQnfmCtkK3GRzZW6VYrbUw==
+"@polkadot/util@10.2.1", "@polkadot/util@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"
+  integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/x-bigint" "10.1.11"
-    "@polkadot/x-global" "10.1.11"
-    "@polkadot/x-textdecoder" "10.1.11"
-    "@polkadot/x-textencoder" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/x-bigint" "10.2.1"
+    "@polkadot/x-global" "10.2.1"
+    "@polkadot/x-textdecoder" "10.2.1"
+    "@polkadot/x-textencoder" "10.2.1"
     "@types/bn.js" "^5.1.1"
     bn.js "^5.2.1"
 
-"@polkadot/wasm-bridge@6.3.1":
-  version "6.3.1"
-  resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.3.1.tgz#439fa78e80947a7cb695443e1f64b25c30bb1487"
-  integrity sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==
+"@polkadot/wasm-bridge@6.4.1":
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.4.1.tgz#e97915dd67ba543ec3381299c2a5b9330686e27e"
+  integrity sha512-QZDvz6dsUlbYsaMV5biZgZWkYH9BC5AfhT0f0/knv8+LrbAoQdP3Asbvddw8vyU9sbpuCHXrd4bDLBwUCRfrBQ==
   dependencies:
-    "@babel/runtime" "^7.18.9"
+    "@babel/runtime" "^7.20.6"
 
-"@polkadot/wasm-crypto-asmjs@6.3.1":
-  version "6.3.1"
-  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.3.1.tgz#e8f469c9cf4a7709c8131a96f857291953f3e30a"
-  integrity sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==
+"@polkadot/wasm-crypto-asmjs@6.4.1":
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.4.1.tgz#3cc76bbda5ea4a7a860982c64f9565907b312253"
+  integrity sha512-UxZTwuBZlnODGIQdCsE2Sn/jU0O2xrNQ/TkhRFELfkZXEXTNu4lw6NpaKq7Iey4L+wKd8h4lT3VPVkMcPBLOvA==
   dependencies:
-    "@babel/runtime" "^7.18.9"
+    "@babel/runtime" "^7.20.6"
 
-"@polkadot/wasm-crypto-init@6.3.1":
-  version "6.3.1"
-  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.3.1.tgz#b590220c53c94b9a54d5dc236d0cbe943db76706"
-  integrity sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==
+"@polkadot/wasm-crypto-init@6.4.1":
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.4.1.tgz#4d9ab0030db52cf177bf707ef8e77aa4ca721668"
+  integrity sha512-1ALagSi/nfkyFaH6JDYfy/QbicVbSn99K8PV9rctDUfxc7P06R7CoqbjGQ4OMPX6w1WYVPU7B4jPHGLYBlVuMw==
   dependencies:
-    "@babel/runtime" "^7.18.9"
-    "@polkadot/wasm-bridge" "6.3.1"
-    "@polkadot/wasm-crypto-asmjs" "6.3.1"
-    "@polkadot/wasm-crypto-wasm" "6.3.1"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/wasm-bridge" "6.4.1"
+    "@polkadot/wasm-crypto-asmjs" "6.4.1"
+    "@polkadot/wasm-crypto-wasm" "6.4.1"
 
-"@polkadot/wasm-crypto-wasm@6.3.1":
-  version "6.3.1"
-  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.3.1.tgz#67f720e7f9694fef096abe9d60abbac02e032383"
-  integrity sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==
+"@polkadot/wasm-crypto-wasm@6.4.1":
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.4.1.tgz#97180f80583b18f6a13c1054fa5f7e8da40b1028"
+  integrity sha512-3VV9ZGzh0ZY3SmkkSw+0TRXxIpiO0nB8lFwlRgcwaCihwrvLfRnH9GI8WE12mKsHVjWTEVR3ogzILJxccAUjDA==
   dependencies:
-    "@babel/runtime" "^7.18.9"
-    "@polkadot/wasm-util" "6.3.1"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/wasm-util" "6.4.1"
 
-"@polkadot/wasm-crypto@^6.3.1":
-  version "6.3.1"
-  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.3.1.tgz#63f5798aca2b2ff0696f190e6862d9781d8f280c"
-  integrity sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==
+"@polkadot/wasm-crypto@^6.4.1":
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.4.1.tgz#79310e23ad1ca62362ba893db6a8567154c2536a"
+  integrity sha512-FH+dcDPdhSLJvwL0pMLtn/LIPd62QDPODZRCmDyw+pFjLOMaRBc7raomWUOqyRWJTnqVf/iscc2rLVLNMyt7ag==
   dependencies:
-    "@babel/runtime" "^7.18.9"
-    "@polkadot/wasm-bridge" "6.3.1"
-    "@polkadot/wasm-crypto-asmjs" "6.3.1"
-    "@polkadot/wasm-crypto-init" "6.3.1"
-    "@polkadot/wasm-crypto-wasm" "6.3.1"
-    "@polkadot/wasm-util" "6.3.1"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/wasm-bridge" "6.4.1"
+    "@polkadot/wasm-crypto-asmjs" "6.4.1"
+    "@polkadot/wasm-crypto-init" "6.4.1"
+    "@polkadot/wasm-crypto-wasm" "6.4.1"
+    "@polkadot/wasm-util" "6.4.1"
 
-"@polkadot/wasm-util@6.3.1":
-  version "6.3.1"
-  resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.3.1.tgz#439ebb68a436317af388ed6438b8f879df3afcda"
-  integrity sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==
+"@polkadot/wasm-util@6.4.1":
+  version "6.4.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.4.1.tgz#74aecc85bec427a9225d9874685944ea3dc3ab76"
+  integrity sha512-Uwo+WpEsDmFExWC5kTNvsVhvqXMZEKf4gUHXFn4c6Xz4lmieRT5g+1bO1KJ21pl4msuIgdV3Bksfs/oiqMFqlw==
   dependencies:
-    "@babel/runtime" "^7.18.9"
+    "@babel/runtime" "^7.20.6"
 
-"@polkadot/x-bigint@10.1.11", "@polkadot/x-bigint@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.1.11.tgz#7d62ce10cccd55b86a415342db95b9feeb099776"
-  integrity sha512-TC4KZ+ni/SJhcf/LIwD49C/kwvACu0nCchETNO+sAfJ7COXZwHDUJXVXmwN5PgkQxwsWsKKuJmzR/Fi1bgMWnQ==
+"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"
+  integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/x-global" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/x-global" "10.2.1"
 
-"@polkadot/x-fetch@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.1.11.tgz#8f579bb166096c977acff91a40b3848fb5581900"
-  integrity sha512-WtyUr9itVD9BLnxCUloJ1iwrXOY/lnlEShEYKHcSm6MIHtbJolePd3v1+o5mOX+bdDbHXhPZnH8anCCqDNDRqg==
+"@polkadot/x-fetch@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"
+  integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/x-global" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/x-global" "10.2.1"
     "@types/node-fetch" "^2.6.2"
-    node-fetch "^3.2.10"
+    node-fetch "^3.3.0"
 
-"@polkadot/x-global@10.1.11", "@polkadot/x-global@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.1.11.tgz#37dda3ef1cebfd14c68c69279ae6521957817866"
-  integrity sha512-bWz5gdcELy6+xfr27R1GE5MPX4nfVlchzHQH+DR6OBbSi9g/PeycQAvFB6IkTmP+YEbNNtIpxnSP37zoUaG3xw==
+"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"
+  integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==
   dependencies:
-    "@babel/runtime" "^7.19.4"
+    "@babel/runtime" "^7.20.6"
 
-"@polkadot/x-randomvalues@10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.1.11.tgz#f9e088f8b400770d3e53ba9e0c0f0d464047f89e"
-  integrity sha512-V2V37f5hoM5B32eCpGw87Lwstin2+ArXhOZ8ENKncbQLXzbF9yTODueDoA5Vt0MJCs2CDP9cyiCYykcanqVkxg==
+"@polkadot/x-randomvalues@10.2.1":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.2.1.tgz#1c463625c0b7cf775e94594f522eb21a5229b42e"
+  integrity sha512-bEwG6j/+HMZ5LIkyzRbTB0N1Wz2lHyxP25pPFgHFqGqon/KZoRN5kxOwEJ1DpPJIv+9PVn5tt7bc4R3qsaZ93g==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/x-global" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/x-global" "10.2.1"
 
-"@polkadot/x-textdecoder@10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.1.11.tgz#314c79e27545a41fe0494a26196bf2dff5cfcb5d"
-  integrity sha512-QZqie04SR6pAj260PaLBfZUGXWKI357t4ROVJhpaj06qc1zrk1V8Mwkr49+WzjAPFEOqo70HWnzXmPNCH4dQiw==
+"@polkadot/x-textdecoder@10.2.1":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.2.1.tgz#c1778ef35e2aa8db8f11bbe31a5bbf5e46017d7d"
+  integrity sha512-hpFmrdv/rrSM4UNaV8TJBgMtwXsYlNgBTSUmnKWwJIN3PhOUeYxl1qIbPchxGbJBc35WviJCZe7rlLja9JvFcw==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/x-global" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/x-global" "10.2.1"
 
-"@polkadot/x-textencoder@10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.1.11.tgz#23b18b3ffbc649572728aa37d7787432bb3a03b5"
-  integrity sha512-UX+uV9AbDID81waaG/NvTkkf7ZNVW7HSHaddgbWjQEVW2Ex4ByccBarY5jEi6cErEPKfzCamKhgXflu0aV9LWw==
+"@polkadot/x-textencoder@10.2.1":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.2.1.tgz#c09562c73a44659243075d43b007b5c1b39c57a8"
+  integrity sha512-4gMyY6DCH34KA++bawu/zlUJ0/8+aZJsurwjRBbkdfOS2uLo0K+vJ5GBevAhl0VSznM36ptfh/MpkIBKK/6R0g==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/x-global" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/x-global" "10.2.1"
 
-"@polkadot/x-ws@^10.1.11":
-  version "10.1.11"
-  resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.1.11.tgz#7431ad72064d56519d4293278f03ae97b9ea9271"
-  integrity sha512-EUbL/R1A/NxYf6Rnb1M7U9yeTuo5r4y2vcQllE5aBLaQ0cFnRykHzlmZlVX1E7O5uy3lYVdxWC7sNgxItIWkWA==
+"@polkadot/x-ws@^10.1.14":
+  version "10.2.1"
+  resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"
+  integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==
   dependencies:
-    "@babel/runtime" "^7.19.4"
-    "@polkadot/x-global" "10.1.11"
+    "@babel/runtime" "^7.20.6"
+    "@polkadot/x-global" "10.2.1"
     "@types/websocket" "^1.0.5"
     websocket "^1.0.34"
 
@@ -884,27 +898,27 @@
   resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz#fa5738039586c648013caa6a0c95c43265dbe77d"
   integrity sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==
 
-"@substrate/connect@0.7.14":
-  version "0.7.14"
-  resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.14.tgz#c090e952e9cdd93185a94d24fbc424ea20fe7bbe"
-  integrity sha512-uW5uBmihpivshmmmw+rsg7qOV0KqVSep4rWOXFMP8aFQinvmqw4JqxP21og4H/7JZxttYUBFQVsdtXHGKJ0aVQ==
+"@substrate/connect@0.7.17":
+  version "0.7.17"
+  resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.17.tgz#b76ce23d24255e89028db81b3cb280c7f86db72e"
+  integrity sha512-s0XBmGpUCFWZFa+TS0TEvOKtWjJP2uT4xKmvzApH8INB5xbz79wqWFX6WWh3AlK/X1P0Smt+RVEH7HQiLJAYAw==
   dependencies:
     "@substrate/connect-extension-protocol" "^1.0.1"
-    "@substrate/smoldot-light" "0.6.34"
+    "@substrate/smoldot-light" "0.7.7"
     eventemitter3 "^4.0.7"
 
-"@substrate/smoldot-light@0.6.34":
-  version "0.6.34"
-  resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.6.34.tgz#273dba622102281fd0fdb0e375198bff2ec584c3"
-  integrity sha512-+HK9MaJ0HelJmpf4YYR+salJ7dhVBltmhGlyz5l8OXS9DW18fe0Z2wxEo8P5kX9CUxlCXEb8J9JBRQAYBPHbwQ==
+"@substrate/smoldot-light@0.7.7":
+  version "0.7.7"
+  resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.7.7.tgz#ee5f89bb25af64d2014d97548b959b7da4c67f08"
+  integrity sha512-ksxeAed6dIUtYSl0f8ehgWQjwXnpDGTIJt+WVRIGt3OObZkA96ZdBWx0xP7GrXZtj37u4n/Y1z7TyTm4bwQvrw==
   dependencies:
     pako "^2.0.4"
     ws "^8.8.1"
 
-"@substrate/ss58-registry@^1.33.0":
-  version "1.33.0"
-  resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.33.0.tgz#b93218fc86405769716b02f0ce5e61df221b37ae"
-  integrity sha512-DztMuMcEfu+tJrtIQIIp5gO8/XJZ8N8UwPObDCSNgrp7trtSkPJAUFB9qXaReXtN9UvTcVBMTWk6VPfFi04Wkg==
+"@substrate/ss58-registry@^1.35.0":
+  version "1.36.0"
+  resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.36.0.tgz#22b59fa85cacc0bdf40aa5d8131a377c1b5a8dd8"
+  integrity sha512-YfQIpe2bIvGg/XWNByycznbOiAknMvpYaUpQJ2sLmNT/OwPx7XjEXk7dLShccuiQDoOQt3trTtF3Frz/Tjv6Fg==
 
 "@szmarczak/http-timer@^4.0.5":
   version "4.0.6"
@@ -3679,10 +3693,10 @@
   dependencies:
     whatwg-url "^5.0.0"
 
-node-fetch@^3.2.10:
-  version "3.2.10"
-  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8"
-  integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==
+node-fetch@^3.3.0:
+  version "3.3.0"
+  resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.0.tgz#37e71db4ecc257057af828d523a7243d651d91e4"
+  integrity sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==
   dependencies:
     data-uri-to-buffer "^4.0.0"
     fetch-blob "^3.1.4"
@@ -4078,10 +4092,10 @@
   dependencies:
     picomatch "^2.2.1"
 
-regenerator-runtime@^0.13.4:
-  version "0.13.10"
-  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee"
-  integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==
+regenerator-runtime@^0.13.11:
+  version "0.13.11"
+  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+  integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
 
 regexp.prototype.flags@^1.4.3:
   version "1.4.3"
@@ -5170,7 +5184,7 @@
   resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
   integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
 
-yargs-parser@^21.0.0:
+yargs-parser@^21.1.1:
   version "21.1.1"
   resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
   integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
@@ -5198,10 +5212,10 @@
     y18n "^5.0.5"
     yargs-parser "^20.2.2"
 
-yargs@^17.6.0:
-  version "17.6.0"
-  resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c"
-  integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==
+yargs@^17.6.2:
+  version "17.6.2"
+  resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541"
+  integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==
   dependencies:
     cliui "^8.0.1"
     escalade "^3.1.1"
@@ -5209,7 +5223,7 @@
     require-directory "^2.1.1"
     string-width "^4.2.3"
     y18n "^5.0.5"
-    yargs-parser "^21.0.0"
+    yargs-parser "^21.1.1"
 
 yn@3.1.1:
   version "3.1.1"