difftreelog
chore regenerate types / update yarn.lock
in: master
13 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { Codec } from '@polkadot/types-codec/types';10import type { Codec } from '@polkadot/types-codec/types';11import type { H160, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';131314export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;1515110 /**110 /**111 * The maximum weight that may be scheduled per block for any dispatchables.111 * The maximum weight that may be scheduled per block for any dispatchables.112 **/112 **/113 maximumWeight: Weight & AugmentedConst<ApiType>;113 maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;114 /**114 /**115 * The maximum number of scheduled calls in the queue for a single block.115 * The maximum number of scheduled calls in the queue for a single block.116 **/116 **/tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth54 * A vesting schedule already exists for this account54 * A vesting schedule already exists for this account55 **/55 **/56 ExistingVestingSchedule: AugmentedError<ApiType>;56 ExistingVestingSchedule: AugmentedError<ApiType>;57 /**57 /**58 * Balance too low to send value58 * Balance too low to send value.59 **/59 **/60 InsufficientBalance: AugmentedError<ApiType>;60 InsufficientBalance: AugmentedError<ApiType>;61 /**61 /**62 * Transfer/payment would kill account62 * Transfer/payment would kill account385 * Not Fungible item data used to mint in Fungible collection.385 * Not Fungible item data used to mint in Fungible collection.386 **/386 **/387 NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;387 NotFungibleDataUsedToMintFungibleCollectionToken: AugmentedError<ApiType>;388 /**388 /**389 * Setting approval for all is not allowed.389 * Setting allowance for all is not allowed.390 **/390 **/391 SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;391 SettingAllowanceForAllNotAllowed: AugmentedError<ApiType>;392 /**392 /**393 * Setting item properties is not allowed.393 * Setting item properties is not allowed.tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';12import 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';131314export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;14export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1515188 /**188 /**189 * Downward message is overweight and was placed in the overweight queue.189 * Downward message is overweight and was placed in the overweight queue.190 **/190 **/191 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: Weight }>;191 OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;192 /**192 /**193 * Downward message from the overweight queue was executed.193 * Downward message from the overweight queue was executed.194 **/194 **/195 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: Weight], { overweightIndex: u64, weightUsed: Weight }>;195 OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;196 /**196 /**197 * Downward message is unsupported version of XCM.197 * Downward message is unsupported version of XCM.198 **/198 **/199 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;199 UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;200 /**200 /**201 * The weight limit for handling downward messages was reached.201 * The weight limit for handling downward messages was reached.202 **/202 **/203 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight], { messageId: U8aFixed, remainingWeight: Weight, requiredWeight: Weight }>;203 WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;204 /**204 /**205 * Generic event205 * Generic event206 **/206 **/304 /**304 /**305 * Downward messages were processed using the given weight.305 * Downward messages were processed using the given weight.306 **/306 **/307 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: Weight, dmqHead: H256], { weightUsed: Weight, dmqHead: H256 }>;307 DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;308 /**308 /**309 * Some downward messages have been received and will be processed.309 * Some downward messages have been received and will be processed.310 **/310 **/331 [key: string]: AugmentedEvent<ApiType>;331 [key: string]: AugmentedEvent<ApiType>;332 };332 };333 polkadotXcm: {333 polkadotXcm: {334 /**335 * Some assets have been claimed from an asset trap336 * 337 * \[ hash, origin, assets \]338 **/339 AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;334 /**340 /**335 * Some assets have been placed in an asset trap.341 * Some assets have been placed in an asset trap.336 * 342 * 392 * 398 * 393 * \[ id, pallet index, call index, actual weight, max budgeted weight \]399 * \[ id, pallet index, call index, actual weight, max budgeted weight \]394 **/400 **/395 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, Weight, Weight]>;401 NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;396 /**402 /**397 * A given location which had a version change subscription was dropped owing to an error403 * A given location which had a version change subscription was dropped owing to an error398 * migrating the location to our new XCM format.404 * migrating the location to our new XCM format.800 /**806 /**801 * Some XCM failed.807 * Some XCM failed.802 **/808 **/803 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: Weight }>;809 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;804 /**810 /**805 * An XCM exceeded the individual message weight budget.811 * An XCM exceeded the individual message weight budget.806 **/812 **/807 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: Weight], { sender: u32, sentAt: u32, index: u64, required: Weight }>;813 OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;808 /**814 /**809 * An XCM from the overweight queue was executed with the given actual weight used.815 * An XCM from the overweight queue was executed with the given actual weight used.810 **/816 **/811 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: Weight], { index: u64, used: Weight }>;817 OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;812 /**818 /**813 * Some XCM was executed ok.819 * Some XCM was executed ok.814 **/820 **/815 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: Weight], { messageHash: Option<H256>, weight: Weight }>;821 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;816 /**822 /**817 * An upward message was sent to the relay chain.823 * An upward message was sent to the relay chain.818 **/824 **/tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import 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';12import 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';13import type { Observable } from '@polkadot/types/types';13import type { Observable } from '@polkadot/types/types';141415export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;566 * The weight we reserve at the beginning of the block for processing DMP messages. This566 * The weight we reserve at the beginning of the block for processing DMP messages. This567 * overrides the amount set in the Config trait.567 * overrides the amount set in the Config trait.568 **/568 **/569 reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;569 reservedDmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<SpWeightsWeightV2Weight>>, []> & QueryableStorageEntry<ApiType, []>;570 /**570 /**571 * The weight we reserve at the beginning of the block for processing XCMP messages. This571 * The weight we reserve at the beginning of the block for processing XCMP messages. This572 * overrides the amount set in the Config trait.572 * overrides the amount set in the Config trait.573 **/573 **/574 reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<Weight>>, []> & QueryableStorageEntry<ApiType, []>;574 reservedXcmpWeightOverride: AugmentedQuery<ApiType, () => Observable<Option<SpWeightsWeightV2Weight>>, []> & QueryableStorageEntry<ApiType, []>;575 /**575 /**576 * An option which indicates if the relay-chain restricts signalling a validation code upgrade.576 * An option which indicates if the relay-chain restricts signalling a validation code upgrade.577 * In other words, if this is `Some` and [`NewValidationCode`] is `Some` then the produced577 * In other words, if this is `Some` and [`NewValidationCode`] is `Some` then the producedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth16import type { BlockHash } from '@polkadot/types/interfaces/chain';16import type { BlockHash } from '@polkadot/types/interfaces/chain';17import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';17import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';18import type { AuthorityId } from '@polkadot/types/interfaces/consensus';18import type { AuthorityId } from '@polkadot/types/interfaces/consensus';19import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';19import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';20import type { BlockStats } from '@polkadot/types/interfaces/dev';20import type { BlockStats } from '@polkadot/types/interfaces/dev';21import type { CreatedBlock } from '@polkadot/types/interfaces/engine';21import type { CreatedBlock } from '@polkadot/types/interfaces/engine';22import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';22import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';23import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';23import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';24import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';24import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';25import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';25import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';26import type { StorageKind } from '@polkadot/types/interfaces/offchain';26import type { StorageKind } from '@polkadot/types/interfaces/offchain';27import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';27import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';28import type { RpcMethods } from '@polkadot/types/interfaces/rpc';28import type { RpcMethods } from '@polkadot/types/interfaces/rpc';29import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';29import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';30import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';30import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';174 * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead174 * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead175 * Instantiate a new contract175 * Instantiate a new contract176 **/176 **/177 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>>;177 instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;178 /**178 /**179 * @deprecated Not available in newer versions of the contracts interfaces179 * @deprecated Not available in newer versions of the contracts interfaces180 * Returns the projected time a given contract will be able to sustain paying its rent180 * Returns the projected time a given contract will be able to sustain paying its rent425 localStorageSet: AugmentedRpc<(kind: StorageKind | 'PERSISTENT' | 'LOCAL' | number | Uint8Array, key: Bytes | string | Uint8Array, value: Bytes | string | Uint8Array) => Observable<Null>>;425 localStorageSet: AugmentedRpc<(kind: StorageKind | 'PERSISTENT' | 'LOCAL' | number | Uint8Array, key: Bytes | string | Uint8Array, value: Bytes | string | Uint8Array) => Observable<Null>>;426 };426 };427 payment: {427 payment: {428 /**428 /**429 * Query the detailed fee of a given encoded extrinsic429 * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead430 * Query the detailed fee of a given encoded extrinsic430 **/431 **/431 queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;432 queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;432 /**433 /**433 * Retrieves the fee information for an encoded extrinsic434 * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead435 * Retrieves the fee information for an encoded extrinsic434 **/436 **/435 queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;437 queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;436 };438 };437 rmrk: {439 rmrk: {438 /**440 /**tests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth229 **/229 **/230 [key: string]: DecoratedCallBase<ApiType>;230 [key: string]: DecoratedCallBase<ApiType>;231 };231 };232 /** 0x37c8bb1350a9a2a8/1 */232 /** 0x37c8bb1350a9a2a8/2 */233 transactionPaymentApi: {233 transactionPaymentApi: {234 /**234 /**235 * The transaction fee details235 * The transaction fee detailstests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';12import 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';12import 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';131314export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;243 * Events:243 * Events:244 * - `OverweightServiced`: On success.244 * - `OverweightServiced`: On success.245 **/245 **/246 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;246 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;247 /**247 /**248 * Generic tx248 * Generic tx249 **/249 **/383 * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully383 * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully384 * to completion; only that *some* of it was executed.384 * to completion; only that *some* of it was executed.385 **/385 **/386 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, Weight]>;386 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;387 /**387 /**388 * Set a safe XCM version (the version that XCM should be encoded with if the most recent388 * Set a safe XCM version (the version that XCM should be encoded with if the most recent389 * version a destination can accept is unknown).389 * version a destination can accept is unknown).953 * - The weight of this call is defined by the caller.953 * - The weight of this call is defined by the caller.954 * # </weight>954 * # </weight>955 **/955 **/956 sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, Weight]>;956 sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;957 /**957 /**958 * Generic tx958 * Generic tx959 **/959 **/1759 * Events:1759 * Events:1760 * - `OverweightServiced`: On success.1760 * - `OverweightServiced`: On success.1761 **/1761 **/1762 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Weight]>;1762 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;1763 /**1763 /**1764 * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.1764 * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.1765 * 1765 * 1796 * - `origin`: Must pass `Root`.1796 * - `origin`: Must pass `Root`.1797 * - `new`: Desired value for `QueueConfigData.threshold_weight`1797 * - `new`: Desired value for `QueueConfigData.threshold_weight`1798 **/1798 **/1799 updateThresholdWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;1799 updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1800 /**1800 /**1801 * Overwrites the speed to which the available weight approaches the maximum weight.1801 * Overwrites the speed to which the available weight approaches the maximum weight.1802 * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.1802 * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.1803 * 1803 * 1804 * - `origin`: Must pass `Root`.1804 * - `origin`: Must pass `Root`.1805 * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.1805 * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.1806 **/1806 **/1807 updateWeightRestrictDecay: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;1807 updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1808 /**1808 /**1809 * Overwrite the maximum amount of weight any individual message may consume.1809 * Overwrite the maximum amount of weight any individual message may consume.1810 * Messages above this weight go into the overweight queue and may only be serviced explicitly.1810 * Messages above this weight go into the overweight queue and may only be serviced explicitly.1811 * 1811 * 1812 * - `origin`: Must pass `Root`.1812 * - `origin`: Must pass `Root`.1813 * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.1813 * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.1814 **/1814 **/1815 updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: Weight | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Weight]>;1815 updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1816 /**1816 /**1817 * Generic tx1817 * Generic tx1818 **/1818 **/1819 [key: string]: SubmittableExtrinsicFunction<ApiType>;1819 [key: string]: SubmittableExtrinsicFunction<ApiType>;1820 };1820 };1821 xTokens: {1821 xTokens: {1822 /**1822 /**1823 * Transfer native currencies.1823 * Transfer native currencies.1824 * 1824 * 1825 * `dest_weight` is the weight for XCM execution on the dest chain, and1825 * `dest_weight_limit` is the weight for XCM execution on the dest1826 * it would be charged from the transferred assets. If set below1826 * chain, and it would be charged from the transferred assets. If set1827 * requirements, the execution may fail and assets wouldn't be1827 * below requirements, the execution may fail and assets wouldn't be1828 * received.1828 * received.1829 * 1829 * 1830 * It's a no-op if any error on local XCM execution or message sending.1830 * It's a no-op if any error on local XCM execution or message sending.1831 * Note sending assets out per se doesn't guarantee they would be1831 * Note sending assets out per se doesn't guarantee they would be1832 * received. Receiving depends on if the XCM message could be delivered1832 * received. Receiving depends on if the XCM message could be delivered1833 * by the network, and if the receiving chain would handle1833 * by the network, and if the receiving chain would handle1834 * messages correctly.1834 * messages correctly.1835 **/1835 **/1836 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]>;1836 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]>;1837 /**1837 /**1838 * Transfer `MultiAsset`.1838 * Transfer `MultiAsset`.1839 * 1839 * 1840 * `dest_weight` is the weight for XCM execution on the dest chain, and1840 * `dest_weight_limit` is the weight for XCM execution on the dest1841 * it would be charged from the transferred assets. If set below1841 * chain, and it would be charged from the transferred assets. If set1842 * requirements, the execution may fail and assets wouldn't be1842 * below requirements, the execution may fail and assets wouldn't be1843 * received.1843 * received.1844 * 1844 * 1845 * It's a no-op if any error on local XCM execution or message sending.1845 * It's a no-op if any error on local XCM execution or message sending.1846 * Note sending assets out per se doesn't guarantee they would be1846 * Note sending assets out per se doesn't guarantee they would be1847 * received. Receiving depends on if the XCM message could be delivered1847 * received. Receiving depends on if the XCM message could be delivered1848 * by the network, and if the receiving chain would handle1848 * by the network, and if the receiving chain would handle1849 * messages correctly.1849 * messages correctly.1850 **/1850 **/1851 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]>;1851 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]>;1852 /**1852 /**1853 * Transfer several `MultiAsset` specifying the item to be used as fee1853 * Transfer several `MultiAsset` specifying the item to be used as fee1854 * 1854 * 1855 * `dest_weight` is the weight for XCM execution on the dest chain, and1855 * `dest_weight_limit` is the weight for XCM execution on the dest1856 * it would be charged from the transferred assets. If set below1856 * chain, and it would be charged from the transferred assets. If set1857 * requirements, the execution may fail and assets wouldn't be1857 * below requirements, the execution may fail and assets wouldn't be1858 * received.1858 * received.1859 * 1859 * 1860 * `fee_item` is index of the MultiAssets that we want to use for1860 * `fee_item` is index of the MultiAssets that we want to use for1861 * payment1861 * payment1862 * 1862 * 1863 * It's a no-op if any error on local XCM execution or message sending.1863 * It's a no-op if any error on local XCM execution or message sending.1864 * Note sending assets out per se doesn't guarantee they would be1864 * Note sending assets out per se doesn't guarantee they would be1865 * received. Receiving depends on if the XCM message could be delivered1865 * received. Receiving depends on if the XCM message could be delivered1866 * by the network, and if the receiving chain would handle1866 * by the network, and if the receiving chain would handle1867 * messages correctly.1867 * messages correctly.1868 **/1868 **/1869 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]>;1869 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]>;1870 /**1870 /**1871 * Transfer `MultiAsset` specifying the fee and amount as separate.1871 * Transfer `MultiAsset` specifying the fee and amount as separate.1872 * 1872 * 1873 * `dest_weight` is the weight for XCM execution on the dest chain, and1873 * `dest_weight_limit` is the weight for XCM execution on the dest1874 * it would be charged from the transferred assets. If set below1874 * chain, and it would be charged from the transferred assets. If set1875 * requirements, the execution may fail and assets wouldn't be1875 * below requirements, the execution may fail and assets wouldn't be1876 * received.1876 * received.1877 * 1877 * 1878 * `fee` is the multiasset to be spent to pay for execution in1878 * `fee` is the multiasset to be spent to pay for execution in1879 * destination chain. Both fee and amount will be subtracted form the1879 * destination chain. Both fee and amount will be subtracted form the1880 * callers balance For now we only accept fee and asset having the same1880 * callers balance For now we only accept fee and asset having the same1881 * `MultiLocation` id.1881 * `MultiLocation` id.1882 * 1882 * 1883 * If `fee` is not high enough to cover for the execution costs in the1883 * If `fee` is not high enough to cover for the execution costs in the1884 * destination chain, then the assets will be trapped in the1884 * destination chain, then the assets will be trapped in the1885 * destination chain1885 * destination chain1886 * 1886 * 1887 * It's a no-op if any error on local XCM execution or message sending.1887 * It's a no-op if any error on local XCM execution or message sending.1888 * Note sending assets out per se doesn't guarantee they would be1888 * Note sending assets out per se doesn't guarantee they would be1889 * received. Receiving depends on if the XCM message could be delivered1889 * received. Receiving depends on if the XCM message could be delivered1890 * by the network, and if the receiving chain would handle1890 * by the network, and if the receiving chain would handle1891 * messages correctly.1891 * messages correctly.1892 **/1892 **/1893 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]>;1893 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]>;1894 /**1894 /**1895 * Transfer several currencies specifying the item to be used as fee1895 * Transfer several currencies specifying the item to be used as fee1896 * 1896 * 1897 * `dest_weight` is the weight for XCM execution on the dest chain, and1897 * `dest_weight_limit` is the weight for XCM execution on the dest1898 * it would be charged from the transferred assets. If set below1898 * chain, and it would be charged from the transferred assets. If set1899 * requirements, the execution may fail and assets wouldn't be1899 * below requirements, the execution may fail and assets wouldn't be1900 * received.1900 * received.1901 * 1901 * 1902 * `fee_item` is index of the currencies tuple that we want to use for1902 * `fee_item` is index of the currencies tuple that we want to use for1903 * payment1903 * payment1904 * 1904 * 1905 * It's a no-op if any error on local XCM execution or message sending.1905 * It's a no-op if any error on local XCM execution or message sending.1906 * Note sending assets out per se doesn't guarantee they would be1906 * Note sending assets out per se doesn't guarantee they would be1907 * received. Receiving depends on if the XCM message could be delivered1907 * received. Receiving depends on if the XCM message could be delivered1908 * by the network, and if the receiving chain would handle1908 * by the network, and if the receiving chain would handle1909 * messages correctly.1909 * messages correctly.1910 **/1910 **/1911 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]>;1911 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]>;1912 /**1912 /**1913 * Transfer native currencies specifying the fee and amount as1913 * Transfer native currencies specifying the fee and amount as1914 * separate.1914 * separate.1915 * 1915 * 1916 * `dest_weight` is the weight for XCM execution on the dest chain, and1916 * `dest_weight_limit` is the weight for XCM execution on the dest1917 * it would be charged from the transferred assets. If set below1917 * chain, and it would be charged from the transferred assets. If set1918 * requirements, the execution may fail and assets wouldn't be1918 * below requirements, the execution may fail and assets wouldn't be1919 * received.1919 * received.1920 * 1920 * 1921 * `fee` is the amount to be spent to pay for execution in destination1921 * `fee` is the amount to be spent to pay for execution in destination1922 * chain. Both fee and amount will be subtracted form the callers1922 * chain. Both fee and amount will be subtracted form the callers1923 * balance.1923 * balance.1924 * 1924 * 1925 * If `fee` is not high enough to cover for the execution costs in the1925 * If `fee` is not high enough to cover for the execution costs in the1926 * destination chain, then the assets will be trapped in the1926 * destination chain, then the assets will be trapped in the1927 * destination chain1927 * destination chain1928 * 1928 * 1929 * It's a no-op if any error on local XCM execution or message sending.1929 * It's a no-op if any error on local XCM execution or message sending.1930 * Note sending assets out per se doesn't guarantee they would be1930 * Note sending assets out per se doesn't guarantee they would be1931 * received. Receiving depends on if the XCM message could be delivered1931 * received. Receiving depends on if the XCM message could be delivered1932 * by the network, and if the receiving chain would handle1932 * by the network, and if the receiving chain would handle1933 * messages correctly.1933 * messages correctly.1934 **/1934 **/1935 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]>;1935 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]>;1936 /**1936 /**1937 * Generic tx1937 * Generic tx1938 **/1938 **/tests/src/interfaces/augment-types.tsdiffbeforeafterboth5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';778import 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';8import 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';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';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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';24import type { StatementKind } from '@polkadot/types/interfaces/claims';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';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';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';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';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';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';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';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';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';273 ContractExecResultTo255: ContractExecResultTo255;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractExecResultU64: ContractExecResultU64;276 ContractInfo: ContractInfo;277 ContractInfo: ContractInfo;277 ContractInstantiateResult: ContractInstantiateResult;278 ContractInstantiateResult: ContractInstantiateResult;278 ContractInstantiateResultTo267: ContractInstantiateResultTo267;279 ContractInstantiateResultTo267: ContractInstantiateResultTo267;279 ContractInstantiateResultTo299: ContractInstantiateResultTo299;280 ContractInstantiateResultTo299: ContractInstantiateResultTo299;281 ContractInstantiateResultU64: ContractInstantiateResultU64;280 ContractLayoutArray: ContractLayoutArray;282 ContractLayoutArray: ContractLayoutArray;281 ContractLayoutCell: ContractLayoutCell;283 ContractLayoutCell: ContractLayoutCell;282 ContractLayoutEnum: ContractLayoutEnum;284 ContractLayoutEnum: ContractLayoutEnum;1067 RpcMethods: RpcMethods;1069 RpcMethods: RpcMethods;1068 RuntimeDbWeight: RuntimeDbWeight;1070 RuntimeDbWeight: RuntimeDbWeight;1069 RuntimeDispatchInfo: RuntimeDispatchInfo;1071 RuntimeDispatchInfo: RuntimeDispatchInfo;1072 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1073 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1070 RuntimeVersion: RuntimeVersion;1074 RuntimeVersion: RuntimeVersion;1071 RuntimeVersionApi: RuntimeVersionApi;1075 RuntimeVersionApi: RuntimeVersionApi;1072 RuntimeVersionPartial: RuntimeVersionPartial;1076 RuntimeVersionPartial: RuntimeVersionPartial;1198 SpTrieStorageProof: SpTrieStorageProof;1202 SpTrieStorageProof: SpTrieStorageProof;1199 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1203 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1200 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1204 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1205 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1201 Sr25519Signature: Sr25519Signature;1206 Sr25519Signature: Sr25519Signature;1202 StakingLedger: StakingLedger;1207 StakingLedger: StakingLedger;1203 StakingLedgerTo223: StakingLedgerTo223;1208 StakingLedgerTo223: StakingLedgerTo223;tests/src/interfaces/default/types.tsdiffbeforeafterboth334import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';4import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';7import type { Event } from '@polkadot/types/interfaces/system';889/** @name CumulusPalletDmpQueueCall */9/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {12 readonly asServiceOverweight: {13 readonly index: u64;13 readonly index: u64;14 readonly weightLimit: Weight;14 readonly weightLimit: u64;15 } & Struct;15 } & Struct;16 readonly type: 'ServiceOverweight';16 readonly type: 'ServiceOverweight';17}17}181819/** @name CumulusPalletDmpQueueConfigData */19/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: Weight;21 readonly maxIndividual: SpWeightsWeightV2Weight;22}22}232324/** @name CumulusPalletDmpQueueError */24/** @name CumulusPalletDmpQueueError */46 readonly isWeightExhausted: boolean;46 readonly isWeightExhausted: boolean;47 readonly asWeightExhausted: {47 readonly asWeightExhausted: {48 readonly messageId: U8aFixed;48 readonly messageId: U8aFixed;49 readonly remainingWeight: Weight;49 readonly remainingWeight: SpWeightsWeightV2Weight;50 readonly requiredWeight: Weight;50 readonly requiredWeight: SpWeightsWeightV2Weight;51 } & Struct;51 } & Struct;52 readonly isOverweightEnqueued: boolean;52 readonly isOverweightEnqueued: boolean;53 readonly asOverweightEnqueued: {53 readonly asOverweightEnqueued: {54 readonly messageId: U8aFixed;54 readonly messageId: U8aFixed;55 readonly overweightIndex: u64;55 readonly overweightIndex: u64;56 readonly requiredWeight: Weight;56 readonly requiredWeight: SpWeightsWeightV2Weight;57 } & Struct;57 } & Struct;58 readonly isOverweightServiced: boolean;58 readonly isOverweightServiced: boolean;59 readonly asOverweightServiced: {59 readonly asOverweightServiced: {60 readonly overweightIndex: u64;60 readonly overweightIndex: u64;61 readonly weightUsed: Weight;61 readonly weightUsed: SpWeightsWeightV2Weight;62 } & Struct;62 } & Struct;63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}64}122 } & Struct;122 } & Struct;123 readonly isDownwardMessagesProcessed: boolean;123 readonly isDownwardMessagesProcessed: boolean;124 readonly asDownwardMessagesProcessed: {124 readonly asDownwardMessagesProcessed: {125 readonly weightUsed: Weight;125 readonly weightUsed: SpWeightsWeightV2Weight;126 readonly dmqHead: H256;126 readonly dmqHead: H256;127 } & Struct;127 } & Struct;128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';166 readonly isServiceOverweight: boolean;166 readonly isServiceOverweight: boolean;167 readonly asServiceOverweight: {167 readonly asServiceOverweight: {168 readonly index: u64;168 readonly index: u64;169 readonly weightLimit: Weight;169 readonly weightLimit: u64;170 } & Struct;170 } & Struct;171 readonly isSuspendXcmExecution: boolean;171 readonly isSuspendXcmExecution: boolean;172 readonly isResumeXcmExecution: boolean;172 readonly isResumeXcmExecution: boolean;184 } & Struct;184 } & Struct;185 readonly isUpdateThresholdWeight: boolean;185 readonly isUpdateThresholdWeight: boolean;186 readonly asUpdateThresholdWeight: {186 readonly asUpdateThresholdWeight: {187 readonly new_: Weight;187 readonly new_: u64;188 } & Struct;188 } & Struct;189 readonly isUpdateWeightRestrictDecay: boolean;189 readonly isUpdateWeightRestrictDecay: boolean;190 readonly asUpdateWeightRestrictDecay: {190 readonly asUpdateWeightRestrictDecay: {191 readonly new_: Weight;191 readonly new_: u64;192 } & Struct;192 } & Struct;193 readonly isUpdateXcmpMaxIndividualWeight: boolean;193 readonly isUpdateXcmpMaxIndividualWeight: boolean;194 readonly asUpdateXcmpMaxIndividualWeight: {194 readonly asUpdateXcmpMaxIndividualWeight: {195 readonly new_: Weight;195 readonly new_: u64;196 } & Struct;196 } & Struct;197 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';197 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198}198}212 readonly isSuccess: boolean;212 readonly isSuccess: boolean;213 readonly asSuccess: {213 readonly asSuccess: {214 readonly messageHash: Option<H256>;214 readonly messageHash: Option<H256>;215 readonly weight: Weight;215 readonly weight: SpWeightsWeightV2Weight;216 } & Struct;216 } & Struct;217 readonly isFail: boolean;217 readonly isFail: boolean;218 readonly asFail: {218 readonly asFail: {219 readonly messageHash: Option<H256>;219 readonly messageHash: Option<H256>;220 readonly error: XcmV2TraitsError;220 readonly error: XcmV2TraitsError;221 readonly weight: Weight;221 readonly weight: SpWeightsWeightV2Weight;222 } & Struct;222 } & Struct;223 readonly isBadVersion: boolean;223 readonly isBadVersion: boolean;224 readonly asBadVersion: {224 readonly asBadVersion: {241 readonly sender: u32;241 readonly sender: u32;242 readonly sentAt: u32;242 readonly sentAt: u32;243 readonly index: u64;243 readonly index: u64;244 readonly required: Weight;244 readonly required: SpWeightsWeightV2Weight;245 } & Struct;245 } & Struct;246 readonly isOverweightServiced: boolean;246 readonly isOverweightServiced: boolean;247 readonly asOverweightServiced: {247 readonly asOverweightServiced: {248 readonly index: u64;248 readonly index: u64;249 readonly used: Weight;249 readonly used: SpWeightsWeightV2Weight;250 } & Struct;250 } & Struct;251 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';251 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';252}252}286 readonly suspendThreshold: u32;286 readonly suspendThreshold: u32;287 readonly dropThreshold: u32;287 readonly dropThreshold: u32;288 readonly resumeThreshold: u32;288 readonly resumeThreshold: u32;289 readonly thresholdWeight: Weight;289 readonly thresholdWeight: SpWeightsWeightV2Weight;290 readonly weightRestrictDecay: Weight;290 readonly weightRestrictDecay: SpWeightsWeightV2Weight;291 readonly xcmpMaxIndividualWeight: Weight;291 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;292}292}293293294/** @name CumulusPrimitivesParachainInherentParachainInherentData */294/** @name CumulusPrimitivesParachainInherentParachainInherentData */511511512/** @name FrameSupportDispatchDispatchInfo */512/** @name FrameSupportDispatchDispatchInfo */513export interface FrameSupportDispatchDispatchInfo extends Struct {513export interface FrameSupportDispatchDispatchInfo extends Struct {514 readonly weight: Weight;514 readonly weight: SpWeightsWeightV2Weight;515 readonly class: FrameSupportDispatchDispatchClass;515 readonly class: FrameSupportDispatchDispatchClass;516 readonly paysFee: FrameSupportDispatchPays;516 readonly paysFee: FrameSupportDispatchPays;517}517}532532533/** @name FrameSupportDispatchPerDispatchClassWeight */533/** @name FrameSupportDispatchPerDispatchClassWeight */534export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {534export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {535 readonly normal: Weight;535 readonly normal: SpWeightsWeightV2Weight;536 readonly operational: Weight;536 readonly operational: SpWeightsWeightV2Weight;537 readonly mandatory: Weight;537 readonly mandatory: SpWeightsWeightV2Weight;538}538}539539540/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */540/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */688688689/** @name FrameSystemLimitsBlockWeights */689/** @name FrameSystemLimitsBlockWeights */690export interface FrameSystemLimitsBlockWeights extends Struct {690export interface FrameSystemLimitsBlockWeights extends Struct {691 readonly baseBlock: Weight;691 readonly baseBlock: SpWeightsWeightV2Weight;692 readonly maxBlock: Weight;692 readonly maxBlock: SpWeightsWeightV2Weight;693 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;693 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;694}694}695695696/** @name FrameSystemLimitsWeightsPerClass */696/** @name FrameSystemLimitsWeightsPerClass */697export interface FrameSystemLimitsWeightsPerClass extends Struct {697export interface FrameSystemLimitsWeightsPerClass extends Struct {698 readonly baseExtrinsic: Weight;698 readonly baseExtrinsic: SpWeightsWeightV2Weight;699 readonly maxExtrinsic: Option<Weight>;699 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;700 readonly maxTotal: Option<Weight>;700 readonly maxTotal: Option<SpWeightsWeightV2Weight>;701 readonly reserved: Option<Weight>;701 readonly reserved: Option<SpWeightsWeightV2Weight>;702}702}703703704/** @name FrameSystemPhase */704/** @name FrameSystemPhase */954 readonly currencyId: PalletForeignAssetsAssetIds;954 readonly currencyId: PalletForeignAssetsAssetIds;955 readonly amount: u128;955 readonly amount: u128;956 readonly dest: XcmVersionedMultiLocation;956 readonly dest: XcmVersionedMultiLocation;957 readonly destWeight: u64;957 readonly destWeightLimit: XcmV2WeightLimit;958 } & Struct;958 } & Struct;959 readonly isTransferMultiasset: boolean;959 readonly isTransferMultiasset: boolean;960 readonly asTransferMultiasset: {960 readonly asTransferMultiasset: {961 readonly asset: XcmVersionedMultiAsset;961 readonly asset: XcmVersionedMultiAsset;962 readonly dest: XcmVersionedMultiLocation;962 readonly dest: XcmVersionedMultiLocation;963 readonly destWeight: u64;963 readonly destWeightLimit: XcmV2WeightLimit;964 } & Struct;964 } & Struct;965 readonly isTransferWithFee: boolean;965 readonly isTransferWithFee: boolean;966 readonly asTransferWithFee: {966 readonly asTransferWithFee: {967 readonly currencyId: PalletForeignAssetsAssetIds;967 readonly currencyId: PalletForeignAssetsAssetIds;968 readonly amount: u128;968 readonly amount: u128;969 readonly fee: u128;969 readonly fee: u128;970 readonly dest: XcmVersionedMultiLocation;970 readonly dest: XcmVersionedMultiLocation;971 readonly destWeight: u64;971 readonly destWeightLimit: XcmV2WeightLimit;972 } & Struct;972 } & Struct;973 readonly isTransferMultiassetWithFee: boolean;973 readonly isTransferMultiassetWithFee: boolean;974 readonly asTransferMultiassetWithFee: {974 readonly asTransferMultiassetWithFee: {975 readonly asset: XcmVersionedMultiAsset;975 readonly asset: XcmVersionedMultiAsset;976 readonly fee: XcmVersionedMultiAsset;976 readonly fee: XcmVersionedMultiAsset;977 readonly dest: XcmVersionedMultiLocation;977 readonly dest: XcmVersionedMultiLocation;978 readonly destWeight: u64;978 readonly destWeightLimit: XcmV2WeightLimit;979 } & Struct;979 } & Struct;980 readonly isTransferMulticurrencies: boolean;980 readonly isTransferMulticurrencies: boolean;981 readonly asTransferMulticurrencies: {981 readonly asTransferMulticurrencies: {982 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;982 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;983 readonly feeItem: u32;983 readonly feeItem: u32;984 readonly dest: XcmVersionedMultiLocation;984 readonly dest: XcmVersionedMultiLocation;985 readonly destWeight: u64;985 readonly destWeightLimit: XcmV2WeightLimit;986 } & Struct;986 } & Struct;987 readonly isTransferMultiassets: boolean;987 readonly isTransferMultiassets: boolean;988 readonly asTransferMultiassets: {988 readonly asTransferMultiassets: {989 readonly assets: XcmVersionedMultiAssets;989 readonly assets: XcmVersionedMultiAssets;990 readonly feeItem: u32;990 readonly feeItem: u32;991 readonly dest: XcmVersionedMultiLocation;991 readonly dest: XcmVersionedMultiLocation;992 readonly destWeight: u64;992 readonly destWeightLimit: XcmV2WeightLimit;993 } & Struct;993 } & Struct;994 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';994 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';995}995}1960 readonly isSudoUncheckedWeight: boolean;1960 readonly isSudoUncheckedWeight: boolean;1961 readonly asSudoUncheckedWeight: {1961 readonly asSudoUncheckedWeight: {1962 readonly call: Call;1962 readonly call: Call;1963 readonly weight: Weight;1963 readonly weight: SpWeightsWeightV2Weight;1964 } & Struct;1964 } & Struct;1965 readonly isSetKey: boolean;1965 readonly isSetKey: boolean;1966 readonly asSetKey: {1966 readonly asSetKey: {2504 readonly isExecute: boolean;2504 readonly isExecute: boolean;2505 readonly asExecute: {2505 readonly asExecute: {2506 readonly message: XcmVersionedXcm;2506 readonly message: XcmVersionedXcm;2507 readonly maxWeight: Weight;2507 readonly maxWeight: u64;2508 } & Struct;2508 } & Struct;2509 readonly isForceXcmVersion: boolean;2509 readonly isForceXcmVersion: boolean;2510 readonly asForceXcmVersion: {2510 readonly asForceXcmVersion: {2573 readonly isNotified: boolean;2573 readonly isNotified: boolean;2574 readonly asNotified: ITuple<[u64, u8, u8]>;2574 readonly asNotified: ITuple<[u64, u8, u8]>;2575 readonly isNotifyOverweight: boolean;2575 readonly isNotifyOverweight: boolean;2576 readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;2576 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2577 readonly isNotifyDispatchError: boolean;2577 readonly isNotifyDispatchError: boolean;2578 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2578 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2579 readonly isNotifyDecodeFailed: boolean;2579 readonly isNotifyDecodeFailed: boolean;2594 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2594 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2595 readonly isNotifyTargetMigrationFail: boolean;2595 readonly isNotifyTargetMigrationFail: boolean;2596 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2596 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2597 readonly isAssetsClaimed: boolean;2598 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2597 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2599 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2598}2600}259926012600/** @name PalletXcmOrigin */2602/** @name PalletXcmOrigin */2872 readonly asArithmetic: SpRuntimeArithmeticError;2874 readonly asArithmetic: SpRuntimeArithmeticError;2873 readonly isTransactional: boolean;2875 readonly isTransactional: boolean;2874 readonly asTransactional: SpRuntimeTransactionalError;2876 readonly asTransactional: SpRuntimeTransactionalError;2877 readonly isExhausted: boolean;2878 readonly isCorruption: boolean;2879 readonly isUnavailable: boolean;2875 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2880 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2876}2881}287728822878/** @name SpRuntimeModuleError */2883/** @name SpRuntimeModuleError */2934 readonly write: u64;2939 readonly write: u64;2935}2940}29412942/** @name SpWeightsWeightV2Weight */2943export interface SpWeightsWeightV2Weight extends Struct {2944 readonly refTime: Compact<u64>;2945 readonly proofSize: Compact<u64>;2946}293629472937/** @name UpDataStructsAccessMode */2948/** @name UpDataStructsAccessMode */2938export interface UpDataStructsAccessMode extends Enum {2949export interface UpDataStructsAccessMode extends Enum {tests/src/interfaces/lookup.tsdiffbeforeafterboth27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28 **/28 **/29 FrameSupportDispatchPerDispatchClassWeight: {29 FrameSupportDispatchPerDispatchClassWeight: {30 normal: 'Weight',30 normal: 'SpWeightsWeightV2Weight',31 operational: 'Weight',31 operational: 'SpWeightsWeightV2Weight',32 mandatory: 'Weight'32 mandatory: 'SpWeightsWeightV2Weight'33 },33 },34 /**35 * Lookup8: sp_weights::weight_v2::Weight36 **/37 SpWeightsWeightV2Weight: {38 refTime: 'Compact<u64>',39 proofSize: 'Compact<u64>'40 },34 /**41 /**35 * Lookup12: sp_runtime::generic::digest::Digest42 * Lookup13: sp_runtime::generic::digest::Digest36 **/43 **/37 SpRuntimeDigest: {44 SpRuntimeDigest: {38 logs: 'Vec<SpRuntimeDigestDigestItem>'45 logs: 'Vec<SpRuntimeDigestDigestItem>'39 },46 },40 /**47 /**41 * Lookup14: sp_runtime::generic::digest::DigestItem48 * Lookup15: sp_runtime::generic::digest::DigestItem42 **/49 **/43 SpRuntimeDigestDigestItem: {50 SpRuntimeDigestDigestItem: {44 _enum: {51 _enum: {45 Other: 'Bytes',52 Other: 'Bytes',53 RuntimeEnvironmentUpdated: 'Null'60 RuntimeEnvironmentUpdated: 'Null'54 }61 }55 },62 },56 /**63 /**57 * Lookup17: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>64 * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>58 **/65 **/59 FrameSystemEventRecord: {66 FrameSystemEventRecord: {60 phase: 'FrameSystemPhase',67 phase: 'FrameSystemPhase',61 event: 'Event',68 event: 'Event',62 topics: 'Vec<H256>'69 topics: 'Vec<H256>'63 },70 },64 /**71 /**65 * Lookup19: frame_system::pallet::Event<T>72 * Lookup20: frame_system::pallet::Event<T>66 **/73 **/67 FrameSystemEvent: {74 FrameSystemEvent: {68 _enum: {75 _enum: {69 ExtrinsicSuccess: {76 ExtrinsicSuccess: {89 }96 }90 }97 }91 },98 },92 /**99 /**93 * Lookup20: frame_support::dispatch::DispatchInfo100 * Lookup21: frame_support::dispatch::DispatchInfo94 **/101 **/95 FrameSupportDispatchDispatchInfo: {102 FrameSupportDispatchDispatchInfo: {96 weight: 'Weight',103 weight: 'SpWeightsWeightV2Weight',97 class: 'FrameSupportDispatchDispatchClass',104 class: 'FrameSupportDispatchDispatchClass',98 paysFee: 'FrameSupportDispatchPays'105 paysFee: 'FrameSupportDispatchPays'99 },106 },100 /**107 /**101 * Lookup21: frame_support::dispatch::DispatchClass108 * Lookup22: frame_support::dispatch::DispatchClass102 **/109 **/103 FrameSupportDispatchDispatchClass: {110 FrameSupportDispatchDispatchClass: {104 _enum: ['Normal', 'Operational', 'Mandatory']111 _enum: ['Normal', 'Operational', 'Mandatory']105 },112 },106 /**113 /**107 * Lookup22: frame_support::dispatch::Pays114 * Lookup23: frame_support::dispatch::Pays108 **/115 **/109 FrameSupportDispatchPays: {116 FrameSupportDispatchPays: {110 _enum: ['Yes', 'No']117 _enum: ['Yes', 'No']111 },118 },112 /**119 /**113 * Lookup23: sp_runtime::DispatchError120 * Lookup24: sp_runtime::DispatchError114 **/121 **/115 SpRuntimeDispatchError: {122 SpRuntimeDispatchError: {116 _enum: {123 _enum: {117 Other: 'Null',124 Other: 'Null',123 TooManyConsumers: 'Null',130 TooManyConsumers: 'Null',124 Token: 'SpRuntimeTokenError',131 Token: 'SpRuntimeTokenError',125 Arithmetic: 'SpRuntimeArithmeticError',132 Arithmetic: 'SpRuntimeArithmeticError',126 Transactional: 'SpRuntimeTransactionalError'133 Transactional: 'SpRuntimeTransactionalError',134 Exhausted: 'Null',135 Corruption: 'Null',136 Unavailable: 'Null'127 }137 }128 },138 },129 /**139 /**130 * Lookup24: sp_runtime::ModuleError140 * Lookup25: sp_runtime::ModuleError131 **/141 **/132 SpRuntimeModuleError: {142 SpRuntimeModuleError: {133 index: 'u8',143 index: 'u8',134 error: '[u8;4]'144 error: '[u8;4]'135 },145 },136 /**146 /**137 * Lookup25: sp_runtime::TokenError147 * Lookup26: sp_runtime::TokenError138 **/148 **/139 SpRuntimeTokenError: {149 SpRuntimeTokenError: {140 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']150 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']141 },151 },142 /**152 /**143 * Lookup26: sp_runtime::ArithmeticError153 * Lookup27: sp_runtime::ArithmeticError144 **/154 **/145 SpRuntimeArithmeticError: {155 SpRuntimeArithmeticError: {146 _enum: ['Underflow', 'Overflow', 'DivisionByZero']156 _enum: ['Underflow', 'Overflow', 'DivisionByZero']147 },157 },148 /**158 /**149 * Lookup27: sp_runtime::TransactionalError159 * Lookup28: sp_runtime::TransactionalError150 **/160 **/151 SpRuntimeTransactionalError: {161 SpRuntimeTransactionalError: {152 _enum: ['LimitReached', 'NoLayer']162 _enum: ['LimitReached', 'NoLayer']153 },163 },154 /**164 /**155 * Lookup28: cumulus_pallet_parachain_system::pallet::Event<T>165 * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>156 **/166 **/157 CumulusPalletParachainSystemEvent: {167 CumulusPalletParachainSystemEvent: {158 _enum: {168 _enum: {159 ValidationFunctionStored: 'Null',169 ValidationFunctionStored: 'Null',168 count: 'u32',178 count: 'u32',169 },179 },170 DownwardMessagesProcessed: {180 DownwardMessagesProcessed: {171 weightUsed: 'Weight',181 weightUsed: 'SpWeightsWeightV2Weight',172 dmqHead: 'H256'182 dmqHead: 'H256'173 }183 }174 }184 }175 },185 },176 /**186 /**177 * Lookup29: pallet_balances::pallet::Event<T, I>187 * Lookup30: pallet_balances::pallet::Event<T, I>178 **/188 **/179 PalletBalancesEvent: {189 PalletBalancesEvent: {180 _enum: {190 _enum: {181 Endowed: {191 Endowed: {224 }234 }225 }235 }226 },236 },227 /**237 /**228 * Lookup30: frame_support::traits::tokens::misc::BalanceStatus238 * Lookup31: frame_support::traits::tokens::misc::BalanceStatus229 **/239 **/230 FrameSupportTokensMiscBalanceStatus: {240 FrameSupportTokensMiscBalanceStatus: {231 _enum: ['Free', 'Reserved']241 _enum: ['Free', 'Reserved']232 },242 },233 /**243 /**234 * Lookup31: pallet_transaction_payment::pallet::Event<T>244 * Lookup32: pallet_transaction_payment::pallet::Event<T>235 **/245 **/236 PalletTransactionPaymentEvent: {246 PalletTransactionPaymentEvent: {237 _enum: {247 _enum: {238 TransactionFeePaid: {248 TransactionFeePaid: {242 }252 }243 }253 }244 },254 },245 /**255 /**246 * Lookup32: pallet_treasury::pallet::Event<T, I>256 * Lookup33: pallet_treasury::pallet::Event<T, I>247 **/257 **/248 PalletTreasuryEvent: {258 PalletTreasuryEvent: {249 _enum: {259 _enum: {250 Proposed: {260 Proposed: {278 }288 }279 }289 }280 },290 },281 /**291 /**282 * Lookup33: pallet_sudo::pallet::Event<T>292 * Lookup34: pallet_sudo::pallet::Event<T>283 **/293 **/284 PalletSudoEvent: {294 PalletSudoEvent: {285 _enum: {295 _enum: {286 Sudid: {296 Sudid: {294 }304 }295 }305 }296 },306 },297 /**307 /**298 * Lookup37: orml_vesting::module::Event<T>308 * Lookup38: orml_vesting::module::Event<T>299 **/309 **/300 OrmlVestingModuleEvent: {310 OrmlVestingModuleEvent: {301 _enum: {311 _enum: {302 VestingScheduleAdded: {312 VestingScheduleAdded: {313 }323 }314 }324 }315 },325 },316 /**326 /**317 * Lookup38: orml_vesting::VestingSchedule<BlockNumber, Balance>327 * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>318 **/328 **/319 OrmlVestingVestingSchedule: {329 OrmlVestingVestingSchedule: {320 start: 'u32',330 start: 'u32',321 period: 'u32',331 period: 'u32',322 periodCount: 'u32',332 periodCount: 'u32',323 perPeriod: 'Compact<u128>'333 perPeriod: 'Compact<u128>'324 },334 },325 /**335 /**326 * Lookup40: orml_xtokens::module::Event<T>336 * Lookup41: orml_xtokens::module::Event<T>327 **/337 **/328 OrmlXtokensModuleEvent: {338 OrmlXtokensModuleEvent: {329 _enum: {339 _enum: {330 TransferredMultiAssets: {340 TransferredMultiAssets: {335 }345 }336 }346 }337 },347 },338 /**348 /**339 * Lookup41: xcm::v1::multiasset::MultiAssets349 * Lookup42: xcm::v1::multiasset::MultiAssets340 **/350 **/341 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',351 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',342 /**352 /**343 * Lookup43: xcm::v1::multiasset::MultiAsset353 * Lookup44: xcm::v1::multiasset::MultiAsset344 **/354 **/345 XcmV1MultiAsset: {355 XcmV1MultiAsset: {346 id: 'XcmV1MultiassetAssetId',356 id: 'XcmV1MultiassetAssetId',347 fun: 'XcmV1MultiassetFungibility'357 fun: 'XcmV1MultiassetFungibility'348 },358 },349 /**359 /**350 * Lookup44: xcm::v1::multiasset::AssetId360 * Lookup45: xcm::v1::multiasset::AssetId351 **/361 **/352 XcmV1MultiassetAssetId: {362 XcmV1MultiassetAssetId: {353 _enum: {363 _enum: {354 Concrete: 'XcmV1MultiLocation',364 Concrete: 'XcmV1MultiLocation',355 Abstract: 'Bytes'365 Abstract: 'Bytes'356 }366 }357 },367 },358 /**368 /**359 * Lookup45: xcm::v1::multilocation::MultiLocation369 * Lookup46: xcm::v1::multilocation::MultiLocation360 **/370 **/361 XcmV1MultiLocation: {371 XcmV1MultiLocation: {362 parents: 'u8',372 parents: 'u8',363 interior: 'XcmV1MultilocationJunctions'373 interior: 'XcmV1MultilocationJunctions'364 },374 },365 /**375 /**366 * Lookup46: xcm::v1::multilocation::Junctions376 * Lookup47: xcm::v1::multilocation::Junctions367 **/377 **/368 XcmV1MultilocationJunctions: {378 XcmV1MultilocationJunctions: {369 _enum: {379 _enum: {370 Here: 'Null',380 Here: 'Null',378 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'388 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'379 }389 }380 },390 },381 /**391 /**382 * Lookup47: xcm::v1::junction::Junction392 * Lookup48: xcm::v1::junction::Junction383 **/393 **/384 XcmV1Junction: {394 XcmV1Junction: {385 _enum: {395 _enum: {386 Parachain: 'Compact<u32>',396 Parachain: 'Compact<u32>',406 }416 }407 }417 }408 },418 },409 /**419 /**410 * Lookup49: xcm::v0::junction::NetworkId420 * Lookup50: xcm::v0::junction::NetworkId411 **/421 **/412 XcmV0JunctionNetworkId: {422 XcmV0JunctionNetworkId: {413 _enum: {423 _enum: {414 Any: 'Null',424 Any: 'Null',576 _enum: {586 _enum: {577 Success: {587 Success: {578 messageHash: 'Option<H256>',588 messageHash: 'Option<H256>',579 weight: 'Weight',589 weight: 'SpWeightsWeightV2Weight',580 },590 },581 Fail: {591 Fail: {582 messageHash: 'Option<H256>',592 messageHash: 'Option<H256>',583 error: 'XcmV2TraitsError',593 error: 'XcmV2TraitsError',584 weight: 'Weight',594 weight: 'SpWeightsWeightV2Weight',585 },595 },586 BadVersion: {596 BadVersion: {587 messageHash: 'Option<H256>',597 messageHash: 'Option<H256>',599 sender: 'u32',609 sender: 'u32',600 sentAt: 'u32',610 sentAt: 'u32',601 index: 'u64',611 index: 'u64',602 required: 'Weight',612 required: 'SpWeightsWeightV2Weight',603 },613 },604 OverweightServiced: {614 OverweightServiced: {605 index: 'u64',615 index: 'u64',606 used: 'Weight'616 used: 'SpWeightsWeightV2Weight'607 }617 }608 }618 }609 },619 },650 UnexpectedResponse: '(XcmV1MultiLocation,u64)',660 UnexpectedResponse: '(XcmV1MultiLocation,u64)',651 ResponseReady: '(u64,XcmV2Response)',661 ResponseReady: '(u64,XcmV2Response)',652 Notified: '(u64,u8,u8)',662 Notified: '(u64,u8,u8)',653 NotifyOverweight: '(u64,u8,u8,Weight,Weight)',663 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',654 NotifyDispatchError: '(u64,u8,u8)',664 NotifyDispatchError: '(u64,u8,u8)',655 NotifyDecodeFailed: '(u64,u8,u8)',665 NotifyDecodeFailed: '(u64,u8,u8)',656 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',666 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',660 VersionChangeNotified: '(XcmV1MultiLocation,u32)',670 VersionChangeNotified: '(XcmV1MultiLocation,u32)',661 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',671 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',662 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',672 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',663 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'673 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',674 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'664 }675 }665 },676 },666 /**677 /**963 },974 },964 WeightExhausted: {975 WeightExhausted: {965 messageId: '[u8;32]',976 messageId: '[u8;32]',966 remainingWeight: 'Weight',977 remainingWeight: 'SpWeightsWeightV2Weight',967 requiredWeight: 'Weight',978 requiredWeight: 'SpWeightsWeightV2Weight',968 },979 },969 OverweightEnqueued: {980 OverweightEnqueued: {970 messageId: '[u8;32]',981 messageId: '[u8;32]',971 overweightIndex: 'u64',982 overweightIndex: 'u64',972 requiredWeight: 'Weight',983 requiredWeight: 'SpWeightsWeightV2Weight',973 },984 },974 OverweightServiced: {985 OverweightServiced: {975 overweightIndex: 'u64',986 overweightIndex: 'u64',976 weightUsed: 'Weight'987 weightUsed: 'SpWeightsWeightV2Weight'977 }988 }978 }989 }979 },990 },1394 * Lookup133: frame_system::limits::BlockWeights1405 * Lookup133: frame_system::limits::BlockWeights1395 **/1406 **/1396 FrameSystemLimitsBlockWeights: {1407 FrameSystemLimitsBlockWeights: {1397 baseBlock: 'Weight',1408 baseBlock: 'SpWeightsWeightV2Weight',1398 maxBlock: 'Weight',1409 maxBlock: 'SpWeightsWeightV2Weight',1399 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1410 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1400 },1411 },1401 /**1412 /**1410 * Lookup135: frame_system::limits::WeightsPerClass1421 * Lookup135: frame_system::limits::WeightsPerClass1411 **/1422 **/1412 FrameSystemLimitsWeightsPerClass: {1423 FrameSystemLimitsWeightsPerClass: {1413 baseExtrinsic: 'Weight',1424 baseExtrinsic: 'SpWeightsWeightV2Weight',1414 maxExtrinsic: 'Option<Weight>',1425 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1415 maxTotal: 'Option<Weight>',1426 maxTotal: 'Option<SpWeightsWeightV2Weight>',1416 reserved: 'Option<Weight>'1427 reserved: 'Option<SpWeightsWeightV2Weight>'1417 },1428 },1418 /**1429 /**1419 * Lookup137: frame_system::limits::BlockLength1430 * Lookup137: frame_system::limits::BlockLength1700 },1711 },1701 sudo_unchecked_weight: {1712 sudo_unchecked_weight: {1702 call: 'Call',1713 call: 'Call',1703 weight: 'Weight',1714 weight: 'SpWeightsWeightV2Weight',1704 },1715 },1705 set_key: {1716 set_key: {1706 _alias: {1717 _alias: {1742 currencyId: 'PalletForeignAssetsAssetIds',1753 currencyId: 'PalletForeignAssetsAssetIds',1743 amount: 'u128',1754 amount: 'u128',1744 dest: 'XcmVersionedMultiLocation',1755 dest: 'XcmVersionedMultiLocation',1745 destWeight: 'u64',1756 destWeightLimit: 'XcmV2WeightLimit',1746 },1757 },1747 transfer_multiasset: {1758 transfer_multiasset: {1748 asset: 'XcmVersionedMultiAsset',1759 asset: 'XcmVersionedMultiAsset',1749 dest: 'XcmVersionedMultiLocation',1760 dest: 'XcmVersionedMultiLocation',1750 destWeight: 'u64',1761 destWeightLimit: 'XcmV2WeightLimit',1751 },1762 },1752 transfer_with_fee: {1763 transfer_with_fee: {1753 currencyId: 'PalletForeignAssetsAssetIds',1764 currencyId: 'PalletForeignAssetsAssetIds',1754 amount: 'u128',1765 amount: 'u128',1755 fee: 'u128',1766 fee: 'u128',1756 dest: 'XcmVersionedMultiLocation',1767 dest: 'XcmVersionedMultiLocation',1757 destWeight: 'u64',1768 destWeightLimit: 'XcmV2WeightLimit',1758 },1769 },1759 transfer_multiasset_with_fee: {1770 transfer_multiasset_with_fee: {1760 asset: 'XcmVersionedMultiAsset',1771 asset: 'XcmVersionedMultiAsset',1761 fee: 'XcmVersionedMultiAsset',1772 fee: 'XcmVersionedMultiAsset',1762 dest: 'XcmVersionedMultiLocation',1773 dest: 'XcmVersionedMultiLocation',1763 destWeight: 'u64',1774 destWeightLimit: 'XcmV2WeightLimit',1764 },1775 },1765 transfer_multicurrencies: {1776 transfer_multicurrencies: {1766 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1777 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1767 feeItem: 'u32',1778 feeItem: 'u32',1768 dest: 'XcmVersionedMultiLocation',1779 dest: 'XcmVersionedMultiLocation',1769 destWeight: 'u64',1780 destWeightLimit: 'XcmV2WeightLimit',1770 },1781 },1771 transfer_multiassets: {1782 transfer_multiassets: {1772 assets: 'XcmVersionedMultiAssets',1783 assets: 'XcmVersionedMultiAssets',1773 feeItem: 'u32',1784 feeItem: 'u32',1774 dest: 'XcmVersionedMultiLocation',1785 dest: 'XcmVersionedMultiLocation',1775 destWeight: 'u64'1786 destWeightLimit: 'XcmV2WeightLimit'1776 }1787 }1777 }1788 }1778 },1789 },1826 _enum: {1837 _enum: {1827 service_overweight: {1838 service_overweight: {1828 index: 'u64',1839 index: 'u64',1829 weightLimit: 'Weight',1840 weightLimit: 'u64',1830 },1841 },1831 suspend_xcm_execution: 'Null',1842 suspend_xcm_execution: 'Null',1832 resume_xcm_execution: 'Null',1843 resume_xcm_execution: 'Null',1852 _alias: {1863 _alias: {1853 new_: 'new',1864 new_: 'new',1854 },1865 },1855 new_: 'Weight',1866 new_: 'u64',1856 },1867 },1857 update_weight_restrict_decay: {1868 update_weight_restrict_decay: {1858 _alias: {1869 _alias: {1859 new_: 'new',1870 new_: 'new',1860 },1871 },1861 new_: 'Weight',1872 new_: 'u64',1862 },1873 },1863 update_xcmp_max_individual_weight: {1874 update_xcmp_max_individual_weight: {1864 _alias: {1875 _alias: {1865 new_: 'new',1876 new_: 'new',1866 },1877 },1867 new_: 'Weight'1878 new_: 'u64'1868 }1879 }1869 }1880 }1870 },1881 },1891 },1902 },1892 execute: {1903 execute: {1893 message: 'XcmVersionedXcm',1904 message: 'XcmVersionedXcm',1894 maxWeight: 'Weight',1905 maxWeight: 'u64',1895 },1906 },1896 force_xcm_version: {1907 force_xcm_version: {1897 location: 'XcmV1MultiLocation',1908 location: 'XcmV1MultiLocation',2161 _enum: {2172 _enum: {2162 service_overweight: {2173 service_overweight: {2163 index: 'u64',2174 index: 'u64',2164 weightLimit: 'Weight'2175 weightLimit: 'u64'2165 }2176 }2166 }2177 }2167 },2178 },3059 suspendThreshold: 'u32',3070 suspendThreshold: 'u32',3060 dropThreshold: 'u32',3071 dropThreshold: 'u32',3061 resumeThreshold: 'u32',3072 resumeThreshold: 'u32',3062 thresholdWeight: 'Weight',3073 thresholdWeight: 'SpWeightsWeightV2Weight',3063 weightRestrictDecay: 'Weight',3074 weightRestrictDecay: 'SpWeightsWeightV2Weight',3064 xcmpMaxIndividualWeight: 'Weight'3075 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3065 },3076 },3066 /**3077 /**3067 * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>3078 * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>3083 * Lookup372: cumulus_pallet_dmp_queue::ConfigData3094 * Lookup372: cumulus_pallet_dmp_queue::ConfigData3084 **/3095 **/3085 CumulusPalletDmpQueueConfigData: {3096 CumulusPalletDmpQueueConfigData: {3086 maxIndividual: 'Weight'3097 maxIndividual: 'SpWeightsWeightV2Weight'3087 },3098 },3088 /**3099 /**3089 * Lookup373: cumulus_pallet_dmp_queue::PageIndexData3100 * Lookup373: cumulus_pallet_dmp_queue::PageIndexDatatests/src/interfaces/registry.tsdiffbeforeafterboth5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';778import 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';8import 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';9910declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {11 interface InterfaceTypes {11 interface InterfaceTypes {215 SpTrieStorageProof: SpTrieStorageProof;215 SpTrieStorageProof: SpTrieStorageProof;216 SpVersionRuntimeVersion: SpVersionRuntimeVersion;216 SpVersionRuntimeVersion: SpVersionRuntimeVersion;217 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;217 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;218 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;218 UpDataStructsAccessMode: UpDataStructsAccessMode;219 UpDataStructsAccessMode: UpDataStructsAccessMode;219 UpDataStructsCollection: UpDataStructsCollection;220 UpDataStructsCollection: UpDataStructsCollection;220 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;221 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;tests/src/interfaces/types-lookup.tsdiffbeforeafterboth778import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';8import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';11import type { Event } from '@polkadot/types/interfaces/system';121213declare module '@polkadot/types/lookup' {13declare module '@polkadot/types/lookup' {303031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */31 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: Weight;33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }374338 /** @name SpRuntimeDigest (12) */44 /** @name SpRuntimeDigest (13) */39 interface SpRuntimeDigest extends Struct {45 interface SpRuntimeDigest extends Struct {40 readonly logs: Vec<SpRuntimeDigestDigestItem>;46 readonly logs: Vec<SpRuntimeDigestDigestItem>;41 }47 }424843 /** @name SpRuntimeDigestDigestItem (14) */49 /** @name SpRuntimeDigestDigestItem (15) */44 interface SpRuntimeDigestDigestItem extends Enum {50 interface SpRuntimeDigestDigestItem extends Enum {45 readonly isOther: boolean;51 readonly isOther: boolean;46 readonly asOther: Bytes;52 readonly asOther: Bytes;54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';55 }61 }566257 /** @name FrameSystemEventRecord (17) */63 /** @name FrameSystemEventRecord (18) */58 interface FrameSystemEventRecord extends Struct {64 interface FrameSystemEventRecord extends Struct {59 readonly phase: FrameSystemPhase;65 readonly phase: FrameSystemPhase;60 readonly event: Event;66 readonly event: Event;61 readonly topics: Vec<H256>;67 readonly topics: Vec<H256>;62 }68 }636964 /** @name FrameSystemEvent (19) */70 /** @name FrameSystemEvent (20) */65 interface FrameSystemEvent extends Enum {71 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;72 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {73 readonly asExtrinsicSuccess: {89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }96 }919792 /** @name FrameSupportDispatchDispatchInfo (20) */98 /** @name FrameSupportDispatchDispatchInfo (21) */93 interface FrameSupportDispatchDispatchInfo extends Struct {99 interface FrameSupportDispatchDispatchInfo extends Struct {94 readonly weight: Weight;100 readonly weight: SpWeightsWeightV2Weight;95 readonly class: FrameSupportDispatchDispatchClass;101 readonly class: FrameSupportDispatchDispatchClass;96 readonly paysFee: FrameSupportDispatchPays;102 readonly paysFee: FrameSupportDispatchPays;97 }103 }9810499 /** @name FrameSupportDispatchDispatchClass (21) */105 /** @name FrameSupportDispatchDispatchClass (22) */100 interface FrameSupportDispatchDispatchClass extends Enum {106 interface FrameSupportDispatchDispatchClass extends Enum {101 readonly isNormal: boolean;107 readonly isNormal: boolean;102 readonly isOperational: boolean;108 readonly isOperational: boolean;103 readonly isMandatory: boolean;109 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';110 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }111 }106112107 /** @name FrameSupportDispatchPays (22) */113 /** @name FrameSupportDispatchPays (23) */108 interface FrameSupportDispatchPays extends Enum {114 interface FrameSupportDispatchPays extends Enum {109 readonly isYes: boolean;115 readonly isYes: boolean;110 readonly isNo: boolean;116 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';117 readonly type: 'Yes' | 'No';112 }118 }113119114 /** @name SpRuntimeDispatchError (23) */120 /** @name SpRuntimeDispatchError (24) */115 interface SpRuntimeDispatchError extends Enum {121 interface SpRuntimeDispatchError extends Enum {116 readonly isOther: boolean;122 readonly isOther: boolean;117 readonly isCannotLookup: boolean;123 readonly isCannotLookup: boolean;127 readonly asArithmetic: SpRuntimeArithmeticError;133 readonly asArithmetic: SpRuntimeArithmeticError;128 readonly isTransactional: boolean;134 readonly isTransactional: boolean;129 readonly asTransactional: SpRuntimeTransactionalError;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';131 }140 }132141133 /** @name SpRuntimeModuleError (24) */142 /** @name SpRuntimeModuleError (25) */134 interface SpRuntimeModuleError extends Struct {143 interface SpRuntimeModuleError extends Struct {135 readonly index: u8;144 readonly index: u8;136 readonly error: U8aFixed;145 readonly error: U8aFixed;137 }146 }138147139 /** @name SpRuntimeTokenError (25) */148 /** @name SpRuntimeTokenError (26) */140 interface SpRuntimeTokenError extends Enum {149 interface SpRuntimeTokenError extends Enum {141 readonly isNoFunds: boolean;150 readonly isNoFunds: boolean;142 readonly isWouldDie: boolean;151 readonly isWouldDie: boolean;148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';149 }158 }150159151 /** @name SpRuntimeArithmeticError (26) */160 /** @name SpRuntimeArithmeticError (27) */152 interface SpRuntimeArithmeticError extends Enum {161 interface SpRuntimeArithmeticError extends Enum {153 readonly isUnderflow: boolean;162 readonly isUnderflow: boolean;154 readonly isOverflow: boolean;163 readonly isOverflow: boolean;155 readonly isDivisionByZero: boolean;164 readonly isDivisionByZero: boolean;156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';157 }166 }158167159 /** @name SpRuntimeTransactionalError (27) */168 /** @name SpRuntimeTransactionalError (28) */160 interface SpRuntimeTransactionalError extends Enum {169 interface SpRuntimeTransactionalError extends Enum {161 readonly isLimitReached: boolean;170 readonly isLimitReached: boolean;162 readonly isNoLayer: boolean;171 readonly isNoLayer: boolean;163 readonly type: 'LimitReached' | 'NoLayer';172 readonly type: 'LimitReached' | 'NoLayer';164 }173 }165174166 /** @name CumulusPalletParachainSystemEvent (28) */175 /** @name CumulusPalletParachainSystemEvent (29) */167 interface CumulusPalletParachainSystemEvent extends Enum {176 interface CumulusPalletParachainSystemEvent extends Enum {168 readonly isValidationFunctionStored: boolean;177 readonly isValidationFunctionStored: boolean;169 readonly isValidationFunctionApplied: boolean;178 readonly isValidationFunctionApplied: boolean;181 } & Struct;190 } & Struct;182 readonly isDownwardMessagesProcessed: boolean;191 readonly isDownwardMessagesProcessed: boolean;183 readonly asDownwardMessagesProcessed: {192 readonly asDownwardMessagesProcessed: {184 readonly weightUsed: Weight;193 readonly weightUsed: SpWeightsWeightV2Weight;185 readonly dmqHead: H256;194 readonly dmqHead: H256;186 } & Struct;195 } & Struct;187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';188 }197 }189198190 /** @name PalletBalancesEvent (29) */199 /** @name PalletBalancesEvent (30) */191 interface PalletBalancesEvent extends Enum {200 interface PalletBalancesEvent extends Enum {192 readonly isEndowed: boolean;201 readonly isEndowed: boolean;193 readonly asEndowed: {202 readonly asEndowed: {246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';247 }256 }248257249 /** @name FrameSupportTokensMiscBalanceStatus (30) */258 /** @name FrameSupportTokensMiscBalanceStatus (31) */250 interface FrameSupportTokensMiscBalanceStatus extends Enum {259 interface FrameSupportTokensMiscBalanceStatus extends Enum {251 readonly isFree: boolean;260 readonly isFree: boolean;252 readonly isReserved: boolean;261 readonly isReserved: boolean;253 readonly type: 'Free' | 'Reserved';262 readonly type: 'Free' | 'Reserved';254 }263 }255264256 /** @name PalletTransactionPaymentEvent (31) */265 /** @name PalletTransactionPaymentEvent (32) */257 interface PalletTransactionPaymentEvent extends Enum {266 interface PalletTransactionPaymentEvent extends Enum {258 readonly isTransactionFeePaid: boolean;267 readonly isTransactionFeePaid: boolean;259 readonly asTransactionFeePaid: {268 readonly asTransactionFeePaid: {264 readonly type: 'TransactionFeePaid';273 readonly type: 'TransactionFeePaid';265 }274 }266275267 /** @name PalletTreasuryEvent (32) */276 /** @name PalletTreasuryEvent (33) */268 interface PalletTreasuryEvent extends Enum {277 interface PalletTreasuryEvent extends Enum {269 readonly isProposed: boolean;278 readonly isProposed: boolean;270 readonly asProposed: {279 readonly asProposed: {306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';307 }316 }308317309 /** @name PalletSudoEvent (33) */318 /** @name PalletSudoEvent (34) */310 interface PalletSudoEvent extends Enum {319 interface PalletSudoEvent extends Enum {311 readonly isSudid: boolean;320 readonly isSudid: boolean;312 readonly asSudid: {321 readonly asSudid: {323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';324 }333 }325334326 /** @name OrmlVestingModuleEvent (37) */335 /** @name OrmlVestingModuleEvent (38) */327 interface OrmlVestingModuleEvent extends Enum {336 interface OrmlVestingModuleEvent extends Enum {328 readonly isVestingScheduleAdded: boolean;337 readonly isVestingScheduleAdded: boolean;329 readonly asVestingScheduleAdded: {338 readonly asVestingScheduleAdded: {343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';344 }353 }345354346 /** @name OrmlVestingVestingSchedule (38) */355 /** @name OrmlVestingVestingSchedule (39) */347 interface OrmlVestingVestingSchedule extends Struct {356 interface OrmlVestingVestingSchedule extends Struct {348 readonly start: u32;357 readonly start: u32;349 readonly period: u32;358 readonly period: u32;350 readonly periodCount: u32;359 readonly periodCount: u32;351 readonly perPeriod: Compact<u128>;360 readonly perPeriod: Compact<u128>;352 }361 }353362354 /** @name OrmlXtokensModuleEvent (40) */363 /** @name OrmlXtokensModuleEvent (41) */355 interface OrmlXtokensModuleEvent extends Enum {364 interface OrmlXtokensModuleEvent extends Enum {356 readonly isTransferredMultiAssets: boolean;365 readonly isTransferredMultiAssets: boolean;357 readonly asTransferredMultiAssets: {366 readonly asTransferredMultiAssets: {363 readonly type: 'TransferredMultiAssets';372 readonly type: 'TransferredMultiAssets';364 }373 }365374366 /** @name XcmV1MultiassetMultiAssets (41) */375 /** @name XcmV1MultiassetMultiAssets (42) */367 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}368377369 /** @name XcmV1MultiAsset (43) */378 /** @name XcmV1MultiAsset (44) */370 interface XcmV1MultiAsset extends Struct {379 interface XcmV1MultiAsset extends Struct {371 readonly id: XcmV1MultiassetAssetId;380 readonly id: XcmV1MultiassetAssetId;372 readonly fun: XcmV1MultiassetFungibility;381 readonly fun: XcmV1MultiassetFungibility;373 }382 }374383375 /** @name XcmV1MultiassetAssetId (44) */384 /** @name XcmV1MultiassetAssetId (45) */376 interface XcmV1MultiassetAssetId extends Enum {385 interface XcmV1MultiassetAssetId extends Enum {377 readonly isConcrete: boolean;386 readonly isConcrete: boolean;378 readonly asConcrete: XcmV1MultiLocation;387 readonly asConcrete: XcmV1MultiLocation;381 readonly type: 'Concrete' | 'Abstract';390 readonly type: 'Concrete' | 'Abstract';382 }391 }383392384 /** @name XcmV1MultiLocation (45) */393 /** @name XcmV1MultiLocation (46) */385 interface XcmV1MultiLocation extends Struct {394 interface XcmV1MultiLocation extends Struct {386 readonly parents: u8;395 readonly parents: u8;387 readonly interior: XcmV1MultilocationJunctions;396 readonly interior: XcmV1MultilocationJunctions;388 }397 }389398390 /** @name XcmV1MultilocationJunctions (46) */399 /** @name XcmV1MultilocationJunctions (47) */391 interface XcmV1MultilocationJunctions extends Enum {400 interface XcmV1MultilocationJunctions extends Enum {392 readonly isHere: boolean;401 readonly isHere: boolean;393 readonly isX1: boolean;402 readonly isX1: boolean;409 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';410 }419 }411420412 /** @name XcmV1Junction (47) */421 /** @name XcmV1Junction (48) */413 interface XcmV1Junction extends Enum {422 interface XcmV1Junction extends Enum {414 readonly isParachain: boolean;423 readonly isParachain: boolean;415 readonly asParachain: Compact<u32>;424 readonly asParachain: Compact<u32>;443 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';444 }453 }445454446 /** @name XcmV0JunctionNetworkId (49) */455 /** @name XcmV0JunctionNetworkId (50) */447 interface XcmV0JunctionNetworkId extends Enum {456 interface XcmV0JunctionNetworkId extends Enum {448 readonly isAny: boolean;457 readonly isAny: boolean;449 readonly isNamed: boolean;458 readonly isNamed: boolean;628 readonly isSuccess: boolean;637 readonly isSuccess: boolean;629 readonly asSuccess: {638 readonly asSuccess: {630 readonly messageHash: Option<H256>;639 readonly messageHash: Option<H256>;631 readonly weight: Weight;640 readonly weight: SpWeightsWeightV2Weight;632 } & Struct;641 } & Struct;633 readonly isFail: boolean;642 readonly isFail: boolean;634 readonly asFail: {643 readonly asFail: {635 readonly messageHash: Option<H256>;644 readonly messageHash: Option<H256>;636 readonly error: XcmV2TraitsError;645 readonly error: XcmV2TraitsError;637 readonly weight: Weight;646 readonly weight: SpWeightsWeightV2Weight;638 } & Struct;647 } & Struct;639 readonly isBadVersion: boolean;648 readonly isBadVersion: boolean;640 readonly asBadVersion: {649 readonly asBadVersion: {657 readonly sender: u32;666 readonly sender: u32;658 readonly sentAt: u32;667 readonly sentAt: u32;659 readonly index: u64;668 readonly index: u64;660 readonly required: Weight;669 readonly required: SpWeightsWeightV2Weight;661 } & Struct;670 } & Struct;662 readonly isOverweightServiced: boolean;671 readonly isOverweightServiced: boolean;663 readonly asOverweightServiced: {672 readonly asOverweightServiced: {664 readonly index: u64;673 readonly index: u64;665 readonly used: Weight;674 readonly used: SpWeightsWeightV2Weight;666 } & Struct;675 } & Struct;667 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';668 }677 }713 readonly isNotified: boolean;722 readonly isNotified: boolean;714 readonly asNotified: ITuple<[u64, u8, u8]>;723 readonly asNotified: ITuple<[u64, u8, u8]>;715 readonly isNotifyOverweight: boolean;724 readonly isNotifyOverweight: boolean;716 readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;717 readonly isNotifyDispatchError: boolean;726 readonly isNotifyDispatchError: boolean;718 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;719 readonly isNotifyDecodeFailed: boolean;728 readonly isNotifyDecodeFailed: boolean;734 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;735 readonly isNotifyTargetMigrationFail: boolean;744 readonly isNotifyTargetMigrationFail: boolean;736 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;737 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';738 }749 }739750740 /** @name XcmV2TraitsOutcome (67) */751 /** @name XcmV2TraitsOutcome (67) */1081 readonly isWeightExhausted: boolean;1092 readonly isWeightExhausted: boolean;1082 readonly asWeightExhausted: {1093 readonly asWeightExhausted: {1083 readonly messageId: U8aFixed;1094 readonly messageId: U8aFixed;1084 readonly remainingWeight: Weight;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1085 readonly requiredWeight: Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1086 } & Struct;1097 } & Struct;1087 readonly isOverweightEnqueued: boolean;1098 readonly isOverweightEnqueued: boolean;1088 readonly asOverweightEnqueued: {1099 readonly asOverweightEnqueued: {1089 readonly messageId: U8aFixed;1100 readonly messageId: U8aFixed;1090 readonly overweightIndex: u64;1101 readonly overweightIndex: u64;1091 readonly requiredWeight: Weight;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1092 } & Struct;1103 } & Struct;1093 readonly isOverweightServiced: boolean;1104 readonly isOverweightServiced: boolean;1094 readonly asOverweightServiced: {1105 readonly asOverweightServiced: {1095 readonly overweightIndex: u64;1106 readonly overweightIndex: u64;1096 readonly weightUsed: Weight;1107 readonly weightUsed: SpWeightsWeightV2Weight;1097 } & Struct;1108 } & Struct;1098 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1099 }1110 }156015711561 /** @name FrameSystemLimitsBlockWeights (133) */1572 /** @name FrameSystemLimitsBlockWeights (133) */1562 interface FrameSystemLimitsBlockWeights extends Struct {1573 interface FrameSystemLimitsBlockWeights extends Struct {1563 readonly baseBlock: Weight;1574 readonly baseBlock: SpWeightsWeightV2Weight;1564 readonly maxBlock: Weight;1575 readonly maxBlock: SpWeightsWeightV2Weight;1565 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1576 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1566 }1577 }15671578157415851575 /** @name FrameSystemLimitsWeightsPerClass (135) */1586 /** @name FrameSystemLimitsWeightsPerClass (135) */1576 interface FrameSystemLimitsWeightsPerClass extends Struct {1587 interface FrameSystemLimitsWeightsPerClass extends Struct {1577 readonly baseExtrinsic: Weight;1588 readonly baseExtrinsic: SpWeightsWeightV2Weight;1578 readonly maxExtrinsic: Option<Weight>;1589 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1579 readonly maxTotal: Option<Weight>;1590 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1580 readonly reserved: Option<Weight>;1591 readonly reserved: Option<SpWeightsWeightV2Weight>;1581 }1592 }158215931583 /** @name FrameSystemLimitsBlockLength (137) */1594 /** @name FrameSystemLimitsBlockLength (137) */1882 readonly isSudoUncheckedWeight: boolean;1893 readonly isSudoUncheckedWeight: boolean;1883 readonly asSudoUncheckedWeight: {1894 readonly asSudoUncheckedWeight: {1884 readonly call: Call;1895 readonly call: Call;1885 readonly weight: Weight;1896 readonly weight: SpWeightsWeightV2Weight;1886 } & Struct;1897 } & Struct;1887 readonly isSetKey: boolean;1898 readonly isSetKey: boolean;1888 readonly asSetKey: {1899 readonly asSetKey: {1923 readonly currencyId: PalletForeignAssetsAssetIds;1934 readonly currencyId: PalletForeignAssetsAssetIds;1924 readonly amount: u128;1935 readonly amount: u128;1925 readonly dest: XcmVersionedMultiLocation;1936 readonly dest: XcmVersionedMultiLocation;1926 readonly destWeight: u64;1937 readonly destWeightLimit: XcmV2WeightLimit;1927 } & Struct;1938 } & Struct;1928 readonly isTransferMultiasset: boolean;1939 readonly isTransferMultiasset: boolean;1929 readonly asTransferMultiasset: {1940 readonly asTransferMultiasset: {1930 readonly asset: XcmVersionedMultiAsset;1941 readonly asset: XcmVersionedMultiAsset;1931 readonly dest: XcmVersionedMultiLocation;1942 readonly dest: XcmVersionedMultiLocation;1932 readonly destWeight: u64;1943 readonly destWeightLimit: XcmV2WeightLimit;1933 } & Struct;1944 } & Struct;1934 readonly isTransferWithFee: boolean;1945 readonly isTransferWithFee: boolean;1935 readonly asTransferWithFee: {1946 readonly asTransferWithFee: {1936 readonly currencyId: PalletForeignAssetsAssetIds;1947 readonly currencyId: PalletForeignAssetsAssetIds;1937 readonly amount: u128;1948 readonly amount: u128;1938 readonly fee: u128;1949 readonly fee: u128;1939 readonly dest: XcmVersionedMultiLocation;1950 readonly dest: XcmVersionedMultiLocation;1940 readonly destWeight: u64;1951 readonly destWeightLimit: XcmV2WeightLimit;1941 } & Struct;1952 } & Struct;1942 readonly isTransferMultiassetWithFee: boolean;1953 readonly isTransferMultiassetWithFee: boolean;1943 readonly asTransferMultiassetWithFee: {1954 readonly asTransferMultiassetWithFee: {1944 readonly asset: XcmVersionedMultiAsset;1955 readonly asset: XcmVersionedMultiAsset;1945 readonly fee: XcmVersionedMultiAsset;1956 readonly fee: XcmVersionedMultiAsset;1946 readonly dest: XcmVersionedMultiLocation;1957 readonly dest: XcmVersionedMultiLocation;1947 readonly destWeight: u64;1958 readonly destWeightLimit: XcmV2WeightLimit;1948 } & Struct;1959 } & Struct;1949 readonly isTransferMulticurrencies: boolean;1960 readonly isTransferMulticurrencies: boolean;1950 readonly asTransferMulticurrencies: {1961 readonly asTransferMulticurrencies: {1951 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1962 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1952 readonly feeItem: u32;1963 readonly feeItem: u32;1953 readonly dest: XcmVersionedMultiLocation;1964 readonly dest: XcmVersionedMultiLocation;1954 readonly destWeight: u64;1965 readonly destWeightLimit: XcmV2WeightLimit;1955 } & Struct;1966 } & Struct;1956 readonly isTransferMultiassets: boolean;1967 readonly isTransferMultiassets: boolean;1957 readonly asTransferMultiassets: {1968 readonly asTransferMultiassets: {1958 readonly assets: XcmVersionedMultiAssets;1969 readonly assets: XcmVersionedMultiAssets;1959 readonly feeItem: u32;1970 readonly feeItem: u32;1960 readonly dest: XcmVersionedMultiLocation;1971 readonly dest: XcmVersionedMultiLocation;1961 readonly destWeight: u64;1972 readonly destWeightLimit: XcmV2WeightLimit;1962 } & Struct;1973 } & Struct;1963 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1974 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1964 }1975 }2014 readonly isServiceOverweight: boolean;2025 readonly isServiceOverweight: boolean;2015 readonly asServiceOverweight: {2026 readonly asServiceOverweight: {2016 readonly index: u64;2027 readonly index: u64;2017 readonly weightLimit: Weight;2028 readonly weightLimit: u64;2018 } & Struct;2029 } & Struct;2019 readonly isSuspendXcmExecution: boolean;2030 readonly isSuspendXcmExecution: boolean;2020 readonly isResumeXcmExecution: boolean;2031 readonly isResumeXcmExecution: boolean;2032 } & Struct;2043 } & Struct;2033 readonly isUpdateThresholdWeight: boolean;2044 readonly isUpdateThresholdWeight: boolean;2034 readonly asUpdateThresholdWeight: {2045 readonly asUpdateThresholdWeight: {2035 readonly new_: Weight;2046 readonly new_: u64;2036 } & Struct;2047 } & Struct;2037 readonly isUpdateWeightRestrictDecay: boolean;2048 readonly isUpdateWeightRestrictDecay: boolean;2038 readonly asUpdateWeightRestrictDecay: {2049 readonly asUpdateWeightRestrictDecay: {2039 readonly new_: Weight;2050 readonly new_: u64;2040 } & Struct;2051 } & Struct;2041 readonly isUpdateXcmpMaxIndividualWeight: boolean;2052 readonly isUpdateXcmpMaxIndividualWeight: boolean;2042 readonly asUpdateXcmpMaxIndividualWeight: {2053 readonly asUpdateXcmpMaxIndividualWeight: {2043 readonly new_: Weight;2054 readonly new_: u64;2044 } & Struct;2055 } & Struct;2045 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2056 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2046 }2057 }2069 readonly isExecute: boolean;2080 readonly isExecute: boolean;2070 readonly asExecute: {2081 readonly asExecute: {2071 readonly message: XcmVersionedXcm;2082 readonly message: XcmVersionedXcm;2072 readonly maxWeight: Weight;2083 readonly maxWeight: u64;2073 } & Struct;2084 } & Struct;2074 readonly isForceXcmVersion: boolean;2085 readonly isForceXcmVersion: boolean;2075 readonly asForceXcmVersion: {2086 readonly asForceXcmVersion: {2372 readonly isServiceOverweight: boolean;2383 readonly isServiceOverweight: boolean;2373 readonly asServiceOverweight: {2384 readonly asServiceOverweight: {2374 readonly index: u64;2385 readonly index: u64;2375 readonly weightLimit: Weight;2386 readonly weightLimit: u64;2376 } & Struct;2387 } & Struct;2377 readonly type: 'ServiceOverweight';2388 readonly type: 'ServiceOverweight';2378 }2389 }3331 readonly suspendThreshold: u32;3342 readonly suspendThreshold: u32;3332 readonly dropThreshold: u32;3343 readonly dropThreshold: u32;3333 readonly resumeThreshold: u32;3344 readonly resumeThreshold: u32;3334 readonly thresholdWeight: Weight;3345 readonly thresholdWeight: SpWeightsWeightV2Weight;3335 readonly weightRestrictDecay: Weight;3346 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3336 readonly xcmpMaxIndividualWeight: Weight;3347 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3337 }3348 }333833493339 /** @name CumulusPalletXcmpQueueError (369) */3350 /** @name CumulusPalletXcmpQueueError (369) */336933803370 /** @name CumulusPalletDmpQueueConfigData (372) */3381 /** @name CumulusPalletDmpQueueConfigData (372) */3371 interface CumulusPalletDmpQueueConfigData extends Struct {3382 interface CumulusPalletDmpQueueConfigData extends Struct {3372 readonly maxIndividual: Weight;3383 readonly maxIndividual: SpWeightsWeightV2Weight;3373 }3384 }337433853375 /** @name CumulusPalletDmpQueuePageIndexData (373) */3386 /** @name CumulusPalletDmpQueuePageIndexData (373) */tests/yarn.lockdiffbeforeafterboth17 dependencies:17 dependencies:18 "@babel/highlight" "^7.18.6"18 "@babel/highlight" "^7.18.6"191920"@babel/compat-data@^7.19.3":20"@babel/compat-data@^7.20.0":21 version "7.19.4"21 version "7.20.5"22 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747"22 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"23 integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==23 integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==242425"@babel/core@^7.19.3":25"@babel/core@^7.20.2":26 version "7.19.6"26 version "7.20.5"27 resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f"27 resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"28 integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==28 integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==29 dependencies:29 dependencies:30 "@ampproject/remapping" "^2.1.0"30 "@ampproject/remapping" "^2.1.0"31 "@babel/code-frame" "^7.18.6"31 "@babel/code-frame" "^7.18.6"32 "@babel/generator" "^7.19.6"32 "@babel/generator" "^7.20.5"33 "@babel/helper-compilation-targets" "^7.19.3"33 "@babel/helper-compilation-targets" "^7.20.0"34 "@babel/helper-module-transforms" "^7.19.6"34 "@babel/helper-module-transforms" "^7.20.2"35 "@babel/helpers" "^7.19.4"35 "@babel/helpers" "^7.20.5"36 "@babel/parser" "^7.19.6"36 "@babel/parser" "^7.20.5"37 "@babel/template" "^7.18.10"37 "@babel/template" "^7.18.10"38 "@babel/traverse" "^7.19.6"38 "@babel/traverse" "^7.20.5"39 "@babel/types" "^7.19.4"39 "@babel/types" "^7.20.5"40 convert-source-map "^1.7.0"40 convert-source-map "^1.7.0"41 debug "^4.1.0"41 debug "^4.1.0"42 gensync "^1.0.0-beta.2"42 gensync "^1.0.0-beta.2"43 json5 "^2.2.1"43 json5 "^2.2.1"44 semver "^6.3.0"44 semver "^6.3.0"454546"@babel/generator@^7.19.6":46"@babel/generator@^7.20.5":47 version "7.19.6"47 version "7.20.5"48 resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.6.tgz#9e481a3fe9ca6261c972645ae3904ec0f9b34a1d"48 resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95"49 integrity sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==49 integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==50 dependencies:50 dependencies:51 "@babel/types" "^7.19.4"51 "@babel/types" "^7.20.5"52 "@jridgewell/gen-mapping" "^0.3.2"52 "@jridgewell/gen-mapping" "^0.3.2"53 jsesc "^2.5.1"53 jsesc "^2.5.1"545455"@babel/helper-compilation-targets@^7.19.3":55"@babel/helper-compilation-targets@^7.20.0":56 version "7.19.3"56 version "7.20.0"57 resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca"57 resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"58 integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==58 integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==59 dependencies:59 dependencies:60 "@babel/compat-data" "^7.19.3"60 "@babel/compat-data" "^7.20.0"61 "@babel/helper-validator-option" "^7.18.6"61 "@babel/helper-validator-option" "^7.18.6"62 browserslist "^4.21.3"62 browserslist "^4.21.3"63 semver "^6.3.0"63 semver "^6.3.0"89 dependencies:89 dependencies:90 "@babel/types" "^7.18.6"90 "@babel/types" "^7.18.6"919192"@babel/helper-module-transforms@^7.19.6":92"@babel/helper-module-transforms@^7.20.2":93 version "7.19.6"93 version "7.20.2"94 resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f"94 resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"95 integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==95 integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==96 dependencies:96 dependencies:97 "@babel/helper-environment-visitor" "^7.18.9"97 "@babel/helper-environment-visitor" "^7.18.9"98 "@babel/helper-module-imports" "^7.18.6"98 "@babel/helper-module-imports" "^7.18.6"99 "@babel/helper-simple-access" "^7.19.4"99 "@babel/helper-simple-access" "^7.20.2"100 "@babel/helper-split-export-declaration" "^7.18.6"100 "@babel/helper-split-export-declaration" "^7.18.6"101 "@babel/helper-validator-identifier" "^7.19.1"101 "@babel/helper-validator-identifier" "^7.19.1"102 "@babel/template" "^7.18.10"102 "@babel/template" "^7.18.10"103 "@babel/traverse" "^7.19.6"103 "@babel/traverse" "^7.20.1"104 "@babel/types" "^7.19.4"104 "@babel/types" "^7.20.2"105105106"@babel/helper-simple-access@^7.19.4":106"@babel/helper-simple-access@^7.20.2":107 version "7.19.4"107 version "7.20.2"108 resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7"108 resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"109 integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==109 integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==110 dependencies:110 dependencies:111 "@babel/types" "^7.19.4"111 "@babel/types" "^7.20.2"112112113"@babel/helper-split-export-declaration@^7.18.6":113"@babel/helper-split-export-declaration@^7.18.6":114 version "7.18.6"114 version "7.18.6"132 resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"132 resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"133 integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==133 integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==134134135"@babel/helpers@^7.19.4":135"@babel/helpers@^7.20.5":136 version "7.19.4"136 version "7.20.6"137 resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5"137 resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763"138 integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==138 integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==139 dependencies:139 dependencies:140 "@babel/template" "^7.18.10"140 "@babel/template" "^7.18.10"141 "@babel/traverse" "^7.19.4"141 "@babel/traverse" "^7.20.5"142 "@babel/types" "^7.19.4"142 "@babel/types" "^7.20.5"143143144"@babel/highlight@^7.18.6":144"@babel/highlight@^7.18.6":145 version "7.18.6"145 version "7.18.6"150 chalk "^2.0.0"150 chalk "^2.0.0"151 js-tokens "^4.0.0"151 js-tokens "^4.0.0"152152153"@babel/parser@^7.18.10", "@babel/parser@^7.19.6":153"@babel/parser@^7.18.10":154 version "7.19.6"154 version "7.19.6"155 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8"155 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8"156 integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==156 integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==157157158"@babel/parser@^7.20.5":159 version "7.20.5"160 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"161 integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==162158"@babel/register@^7.18.9":163"@babel/register@^7.18.9":159 version "7.18.9"164 version "7.18.9"160 resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"165 resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"166 pirates "^4.0.5"171 pirates "^4.0.5"167 source-map-support "^0.5.16"172 source-map-support "^0.5.16"168173169"@babel/runtime@^7.18.9", "@babel/runtime@^7.19.4":174"@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6":170 version "7.19.4"175 version "7.20.6"171 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78"176 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"172 integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==177 integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==173 dependencies:178 dependencies:174 regenerator-runtime "^0.13.4"179 regenerator-runtime "^0.13.11"175180176"@babel/template@^7.18.10":181"@babel/template@^7.18.10":177 version "7.18.10"182 version "7.18.10"182 "@babel/parser" "^7.18.10"187 "@babel/parser" "^7.18.10"183 "@babel/types" "^7.18.10"188 "@babel/types" "^7.18.10"184189185"@babel/traverse@^7.19.4", "@babel/traverse@^7.19.6":190"@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5":186 version "7.19.6"191 version "7.20.5"187 resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.6.tgz#7b4c865611df6d99cb131eec2e8ac71656a490dc"192 resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"188 integrity sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==193 integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==189 dependencies:194 dependencies:190 "@babel/code-frame" "^7.18.6"195 "@babel/code-frame" "^7.18.6"191 "@babel/generator" "^7.19.6"196 "@babel/generator" "^7.20.5"192 "@babel/helper-environment-visitor" "^7.18.9"197 "@babel/helper-environment-visitor" "^7.18.9"193 "@babel/helper-function-name" "^7.19.0"198 "@babel/helper-function-name" "^7.19.0"194 "@babel/helper-hoist-variables" "^7.18.6"199 "@babel/helper-hoist-variables" "^7.18.6"195 "@babel/helper-split-export-declaration" "^7.18.6"200 "@babel/helper-split-export-declaration" "^7.18.6"196 "@babel/parser" "^7.19.6"201 "@babel/parser" "^7.20.5"197 "@babel/types" "^7.19.4"202 "@babel/types" "^7.20.5"198 debug "^4.1.0"203 debug "^4.1.0"199 globals "^11.1.0"204 globals "^11.1.0"200205201"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.4":206"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":202 version "7.19.4"207 version "7.19.4"203 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"208 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"204 integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==209 integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==207 "@babel/helper-validator-identifier" "^7.19.1"212 "@babel/helper-validator-identifier" "^7.19.1"208 to-fast-properties "^2.0.0"213 to-fast-properties "^2.0.0"209214215"@babel/types@^7.20.2", "@babel/types@^7.20.5":216 version "7.20.5"217 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"218 integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==219 dependencies:220 "@babel/helper-string-parser" "^7.19.4"221 "@babel/helper-validator-identifier" "^7.19.1"222 to-fast-properties "^2.0.0"223210"@cspotcode/source-map-support@^0.8.0":224"@cspotcode/source-map-support@^0.8.0":211 version "0.8.1"225 version "0.8.1"212 resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"226 resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"520 "@nodelib/fs.scandir" "2.1.5"534 "@nodelib/fs.scandir" "2.1.5"521 fastq "^1.6.0"535 fastq "^1.6.0"522536523"@polkadot/api-augment@9.5.2":537"@polkadot/api-augment@9.9.4":524 version "9.5.2"538 version "9.9.4"525 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.5.2.tgz#55168dd112517028fea5f2ab9c54ea627e43ac3a"539 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.9.4.tgz#cb09d8edfc3a5d61c6519f30a2f02b1bb939c9f6"526 integrity sha512-dH6QMY8Z3zI6CrgSU3eSe6f0KWDb5PYGztg/FXGPrjh7Vjic7syWZ1LD6zaHJAFWDp80BEdEXfqr4lConrCKGg==540 integrity sha512-+T9YWw5kEi7AkSoS2UfE1nrVeJUtD92elQBZ3bMMkfM1geKWhSnvBLyTMn6kFmNXTfK0qt8YKS1pwbux7cC9tg==527 dependencies:541 dependencies:528 "@babel/runtime" "^7.19.4"542 "@babel/runtime" "^7.20.1"529 "@polkadot/api-base" "9.5.2"543 "@polkadot/api-base" "9.9.4"530 "@polkadot/rpc-augment" "9.5.2"544 "@polkadot/rpc-augment" "9.9.4"531 "@polkadot/types" "9.5.2"545 "@polkadot/types" "9.9.4"532 "@polkadot/types-augment" "9.5.2"546 "@polkadot/types-augment" "9.9.4"533 "@polkadot/types-codec" "9.5.2"547 "@polkadot/types-codec" "9.9.4"534 "@polkadot/util" "^10.1.11"548 "@polkadot/util" "^10.1.14"535549536"@polkadot/api-base@9.5.2":550"@polkadot/api-base@9.9.4":537 version "9.5.2"551 version "9.9.4"538 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.5.2.tgz#ac0a6b5546a54bcc753ac55c9f033caa9f8b4e5c"552 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.9.4.tgz#eccc645b60485bfe64a5e6a9ebb3195d2011c0ee"539 integrity sha512-BBsH9SLB1FHgjdiU32cZX1puL3Eh8IjOJHjRsO/5SdttciQhF5g/u/m/mM/55qnlXmffI9s2Jre18G0XtVU9Aw==553 integrity sha512-G1DcxcMeGcvaAAA3u5Tbf70zE5aIuAPEAXnptFMF0lvJz4O6CM8k8ZZFTSk25hjsYlnx8WI1FTc97q4/tKie+Q==540 dependencies:554 dependencies:541 "@babel/runtime" "^7.19.4"555 "@babel/runtime" "^7.20.1"542 "@polkadot/rpc-core" "9.5.2"556 "@polkadot/rpc-core" "9.9.4"543 "@polkadot/types" "9.5.2"557 "@polkadot/types" "9.9.4"544 "@polkadot/util" "^10.1.11"558 "@polkadot/util" "^10.1.14"545 rxjs "^7.5.7"559 rxjs "^7.5.7"546560547"@polkadot/api-derive@9.5.2":561"@polkadot/api-derive@9.9.4":548 version "9.5.2"562 version "9.9.4"549 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.5.2.tgz#c0412cfc13fa71f93b315d126b12b5ab38e6438c"563 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.9.4.tgz#0eedd9c604be2425d8a1adcf048446184a5aaec9"550 integrity sha512-kWn12dlqfIES1trNLd3O1i2qa4T97v/co1VMCgVstICwCt3+mGZgpxkMqQqPiWHagKEVeBNoAn+h8eOiQlbujA==564 integrity sha512-3ka7GzY4QbI3d/DHjQ9SjfDOTDxeU8gM2Dn31BP1oFzGwdFe2GZhDIE//lR5S6UDVxNNlgWz4927AunOQcuAmg==551 dependencies:565 dependencies:552 "@babel/runtime" "^7.19.4"566 "@babel/runtime" "^7.20.1"553 "@polkadot/api" "9.5.2"567 "@polkadot/api" "9.9.4"554 "@polkadot/api-augment" "9.5.2"568 "@polkadot/api-augment" "9.9.4"555 "@polkadot/api-base" "9.5.2"569 "@polkadot/api-base" "9.9.4"556 "@polkadot/rpc-core" "9.5.2"570 "@polkadot/rpc-core" "9.9.4"557 "@polkadot/types" "9.5.2"571 "@polkadot/types" "9.9.4"558 "@polkadot/types-codec" "9.5.2"572 "@polkadot/types-codec" "9.9.4"559 "@polkadot/util" "^10.1.11"573 "@polkadot/util" "^10.1.14"560 "@polkadot/util-crypto" "^10.1.11"574 "@polkadot/util-crypto" "^10.1.14"561 rxjs "^7.5.7"575 rxjs "^7.5.7"562576563"@polkadot/api@9.5.2":577"@polkadot/api@9.9.4":564 version "9.5.2"578 version "9.9.4"565 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.5.2.tgz#cef83928e47c393fbebf2788bc86841b6ab37a41"579 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.9.4.tgz#a4899d7497644378a94e0cc6fcbf73a5e2d31b92"566 integrity sha512-iEF/E8vQan3fHmIEl3bX7Yn/1jQLlvSDwPOxiQdj4tIcF36HX6vCbkdhQKRif0CNYES58TA9EKFiCNg81k+kXw==580 integrity sha512-ze7W/DXsPHsixrFOACzugDQqezzrUGGX1Z2JOl6z+V8pd+ZKLSecsKJFUzf4yoBT82ArITYPtRVx/Dq9b9K2dA==567 dependencies:581 dependencies:568 "@babel/runtime" "^7.19.4"582 "@babel/runtime" "^7.20.1"569 "@polkadot/api-augment" "9.5.2"583 "@polkadot/api-augment" "9.9.4"570 "@polkadot/api-base" "9.5.2"584 "@polkadot/api-base" "9.9.4"571 "@polkadot/api-derive" "9.5.2"585 "@polkadot/api-derive" "9.9.4"572 "@polkadot/keyring" "^10.1.11"586 "@polkadot/keyring" "^10.1.14"573 "@polkadot/rpc-augment" "9.5.2"587 "@polkadot/rpc-augment" "9.9.4"574 "@polkadot/rpc-core" "9.5.2"588 "@polkadot/rpc-core" "9.9.4"575 "@polkadot/rpc-provider" "9.5.2"589 "@polkadot/rpc-provider" "9.9.4"576 "@polkadot/types" "9.5.2"590 "@polkadot/types" "9.9.4"577 "@polkadot/types-augment" "9.5.2"591 "@polkadot/types-augment" "9.9.4"578 "@polkadot/types-codec" "9.5.2"592 "@polkadot/types-codec" "9.9.4"579 "@polkadot/types-create" "9.5.2"593 "@polkadot/types-create" "9.9.4"580 "@polkadot/types-known" "9.5.2"594 "@polkadot/types-known" "9.9.4"581 "@polkadot/util" "^10.1.11"595 "@polkadot/util" "^10.1.14"582 "@polkadot/util-crypto" "^10.1.11"596 "@polkadot/util-crypto" "^10.1.14"583 eventemitter3 "^4.0.7"597 eventemitter3 "^4.0.7"584 rxjs "^7.5.7"598 rxjs "^7.5.7"585599586"@polkadot/keyring@^10.1.11":600"@polkadot/keyring@^10.1.14":587 version "10.1.11"601 version "10.2.1"588 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.1.11.tgz#a3fed011b0c8826ea2097e04f7189e9be66fbf98"602 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"589 integrity sha512-Nv8cZaOA/KbdslDMTklJ58+y+UPpic3+oMQoozuq48Ccjv7WeW2BX47XM/RNE8nYFg6EHa6Whfm4IFaFb8s7ag==603 integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==590 dependencies:604 dependencies:591 "@babel/runtime" "^7.19.4"605 "@babel/runtime" "^7.20.6"592 "@polkadot/util" "10.1.11"606 "@polkadot/util" "10.2.1"593 "@polkadot/util-crypto" "10.1.11"607 "@polkadot/util-crypto" "10.2.1"594608595"@polkadot/networks@10.1.11", "@polkadot/networks@^10.1.11":609"@polkadot/networks@10.2.1", "@polkadot/networks@^10.1.14":596 version "10.1.11"610 version "10.2.1"597 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.1.11.tgz#96a5d6c80228f4beada9154cca0f60a63198e7f4"611 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"598 integrity sha512-4FfOVETXwh6PL6wd6fYJMkRSQKm+xUw3vR5rHqcAnB696FpMFPPErc6asgZ9lYMyzNJRY3yG86HQpFhtCv1nGA==612 integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==599 dependencies:613 dependencies:600 "@babel/runtime" "^7.19.4"614 "@babel/runtime" "^7.20.6"601 "@polkadot/util" "10.1.11"615 "@polkadot/util" "10.2.1"602 "@substrate/ss58-registry" "^1.33.0"616 "@substrate/ss58-registry" "^1.35.0"603617604"@polkadot/rpc-augment@9.5.2":618"@polkadot/rpc-augment@9.9.4":605 version "9.5.2"619 version "9.9.4"606 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.5.2.tgz#739cc3ed2f86f4318432e38381a2cc780dc64f1e"620 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.9.4.tgz#82a1473143cb9ec1183e01babcfe7ac396ad456b"607 integrity sha512-QAcunC7p/T4xy6e4m0Q1c9tiVYxnm+S9o10tmtx0K4qXzrc/4I2/tsw3nEGi3BzJhvMpFondSQGcJ3gyLwpmVA==621 integrity sha512-67zGQAhJuXd/CZlwDZTgxNt3xGtsDwLvLvyFrHuNjJNM0KGCyt/OpQHVBlyZ6xfII0WZpccASN6P2MxsGTMnKw==608 dependencies:622 dependencies:609 "@babel/runtime" "^7.19.4"623 "@babel/runtime" "^7.20.1"610 "@polkadot/rpc-core" "9.5.2"624 "@polkadot/rpc-core" "9.9.4"611 "@polkadot/types" "9.5.2"625 "@polkadot/types" "9.9.4"612 "@polkadot/types-codec" "9.5.2"626 "@polkadot/types-codec" "9.9.4"613 "@polkadot/util" "^10.1.11"627 "@polkadot/util" "^10.1.14"614628615"@polkadot/rpc-core@9.5.2":629"@polkadot/rpc-core@9.9.4":616 version "9.5.2"630 version "9.9.4"617 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.5.2.tgz#1a00868038b6c07fe8f58bd0a6cc9519d14001cc"631 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.9.4.tgz#30cb94dfb9438ef54f6ab9367bc533fa6934dbc5"618 integrity sha512-4PbNz0GEp3FXYOnsS7mDHZy9DNVBOl56fq8vs09rLkEkrrvGkHmCvabEEWL7OPbwBzwzsCxdgI+IdkVTUKXPkQ==632 integrity sha512-DxhJcq1GAi+28nLMqhTksNMqTX40bGNhYuyQyy/to39VxizAjx+lyAHAMfzG9lvPnTIi2KzXif2pCdWq3AgJag==619 dependencies:633 dependencies:620 "@babel/runtime" "^7.19.4"634 "@babel/runtime" "^7.20.1"621 "@polkadot/rpc-augment" "9.5.2"635 "@polkadot/rpc-augment" "9.9.4"622 "@polkadot/rpc-provider" "9.5.2"636 "@polkadot/rpc-provider" "9.9.4"623 "@polkadot/types" "9.5.2"637 "@polkadot/types" "9.9.4"624 "@polkadot/util" "^10.1.11"638 "@polkadot/util" "^10.1.14"625 rxjs "^7.5.7"639 rxjs "^7.5.7"626640627"@polkadot/rpc-provider@9.5.2":641"@polkadot/rpc-provider@9.9.4":628 version "9.5.2"642 version "9.9.4"629 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.5.2.tgz#3e38ea4c3639180f12270b6fe8cbcabf728aaf1d"643 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.9.4.tgz#dab6d72e83e325dc170e03d0edf5f7bec07c0293"630 integrity sha512-Sn2jfvAsvQcl35o0up8JR/XbDMS/3YVDEN2sFuzXtiD77W2njukItbZT+BolfAW+biAUs3bNomump5k/YLiLKg==644 integrity sha512-aUkPtlYukAOFX3FkUgLw3MNy+T0mCiCX7va3PIts9ggK4vl14NFZHurCZq+5ANvknRU4WG8P5teurH9Rd9oDjQ==631 dependencies:645 dependencies:632 "@babel/runtime" "^7.19.4"646 "@babel/runtime" "^7.20.1"633 "@polkadot/keyring" "^10.1.11"647 "@polkadot/keyring" "^10.1.14"634 "@polkadot/types" "9.5.2"648 "@polkadot/types" "9.9.4"635 "@polkadot/types-support" "9.5.2"649 "@polkadot/types-support" "9.9.4"636 "@polkadot/util" "^10.1.11"650 "@polkadot/util" "^10.1.14"637 "@polkadot/util-crypto" "^10.1.11"651 "@polkadot/util-crypto" "^10.1.14"638 "@polkadot/x-fetch" "^10.1.11"652 "@polkadot/x-fetch" "^10.1.14"639 "@polkadot/x-global" "^10.1.11"653 "@polkadot/x-global" "^10.1.14"640 "@polkadot/x-ws" "^10.1.11"654 "@polkadot/x-ws" "^10.1.14"641 "@substrate/connect" "0.7.14"655 "@substrate/connect" "0.7.17"642 eventemitter3 "^4.0.7"656 eventemitter3 "^4.0.7"643 mock-socket "^9.1.5"657 mock-socket "^9.1.5"644 nock "^13.2.9"658 nock "^13.2.9"645659646"@polkadot/typegen@9.5.2":660"@polkadot/typegen@9.9.4":647 version "9.5.2"661 version "9.9.4"648 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.5.2.tgz#b4f3b5eca69c70cc496c8cd3b7804df32282c336"662 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.9.4.tgz#24ee3122c338a359d5776e1c728160ffaaffe6b9"649 integrity sha512-DIiicI3VzbqkfjthvHhLYCaElkaKB/qM+P0mGDmb3+NgttJQsH2Sqy/zsT/mjr07hAB1gXf4dhCmj0QQBiR1og==663 integrity sha512-uIPD3r9QCvTtz5JHQaO5T2q36U9PrmrutHXbHWWzswsWU6lxkGjIiwUOdV+IUemeQx85GVOAPInU+BnwdhPUpA==650 dependencies:664 dependencies:651 "@babel/core" "^7.19.3"665 "@babel/core" "^7.20.2"652 "@babel/register" "^7.18.9"666 "@babel/register" "^7.18.9"653 "@babel/runtime" "^7.19.4"667 "@babel/runtime" "^7.20.1"654 "@polkadot/api" "9.5.2"668 "@polkadot/api" "9.9.4"655 "@polkadot/api-augment" "9.5.2"669 "@polkadot/api-augment" "9.9.4"656 "@polkadot/rpc-augment" "9.5.2"670 "@polkadot/rpc-augment" "9.9.4"657 "@polkadot/rpc-provider" "9.5.2"671 "@polkadot/rpc-provider" "9.9.4"658 "@polkadot/types" "9.5.2"672 "@polkadot/types" "9.9.4"659 "@polkadot/types-augment" "9.5.2"673 "@polkadot/types-augment" "9.9.4"660 "@polkadot/types-codec" "9.5.2"674 "@polkadot/types-codec" "9.9.4"661 "@polkadot/types-create" "9.5.2"675 "@polkadot/types-create" "9.9.4"662 "@polkadot/types-support" "9.5.2"676 "@polkadot/types-support" "9.9.4"663 "@polkadot/util" "^10.1.11"677 "@polkadot/util" "^10.1.14"664 "@polkadot/util-crypto" "^10.1.11"678 "@polkadot/util-crypto" "^10.1.14"665 "@polkadot/x-ws" "^10.1.11"679 "@polkadot/x-ws" "^10.1.14"666 handlebars "^4.7.7"680 handlebars "^4.7.7"667 websocket "^1.0.34"681 websocket "^1.0.34"668 yargs "^17.6.0"682 yargs "^17.6.2"669683670"@polkadot/types-augment@9.5.2":684"@polkadot/types-augment@9.9.4":671 version "9.5.2"685 version "9.9.4"672 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.5.2.tgz#d9e77756b0e36455d708f5af8265ef011ddf8d91"686 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.9.4.tgz#08a2a89c0b8000ef156a0ed41f5eb7aa55cc1bb1"673 integrity sha512-LDJdv/84sECwA0R5lK85/orxjoozJe3+2jeLjRiKr8S6qm9XRfz0wLCSF866kpSGBZ4B1dYBUhzjoSu95y2Jug==687 integrity sha512-mQNc0kxt3zM6SC+5hJbsg03fxEFpn5nakki+loE2mNsWr1g+rR7LECagAZ4wT2gvdbzWuY/LlRYyDQxe0PwdZg==674 dependencies:688 dependencies:675 "@babel/runtime" "^7.19.4"689 "@babel/runtime" "^7.20.1"676 "@polkadot/types" "9.5.2"690 "@polkadot/types" "9.9.4"677 "@polkadot/types-codec" "9.5.2"691 "@polkadot/types-codec" "9.9.4"678 "@polkadot/util" "^10.1.11"692 "@polkadot/util" "^10.1.14"679693680"@polkadot/types-codec@9.5.2":694"@polkadot/types-codec@9.9.4":681 version "9.5.2"695 version "9.9.4"682 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.5.2.tgz#345c38ccef17651b8cabd159a42810893b5e7e44"696 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.9.4.tgz#1219a6b453dab8e53a0d376f13394b02964c7665"683 integrity sha512-FJPjE3ceTGTcadeC8d5C+aSR8SLKuQrXKIBmMNBky+WwzEo0vufRqxFWcPLxAOEeeUPgBXS967tP15+UU4psGA==697 integrity sha512-uSHoQQcj4813c9zNkDDH897K6JB0OznTrH5WeZ1wxpjML7lkuTJ2t/GQE9e4q5Ycl7YePZsvEp2qlc3GwrVm/w==684 dependencies:698 dependencies:685 "@babel/runtime" "^7.19.4"699 "@babel/runtime" "^7.20.1"686 "@polkadot/util" "^10.1.11"700 "@polkadot/util" "^10.1.14"687 "@polkadot/x-bigint" "^10.1.11"701 "@polkadot/x-bigint" "^10.1.14"688702689"@polkadot/types-create@9.5.2":703"@polkadot/types-create@9.9.4":690 version "9.5.2"704 version "9.9.4"691 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.5.2.tgz#a85dcb794ea11e5d528baa34b65e57cfafc905cf"705 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.9.4.tgz#d2d3d0e4c3cd4a0a4581dcb418a8f6bec657b986"692 integrity sha512-YbplL8K0LqUEHoV3FgZ5B83oVV67KGbLXsWHVVaUZBPsmtXJXrbBfSyJgl/80I2n4lXEBmg3sFAYMbaSTvL05A==706 integrity sha512-EOxLryRQ4JVRSRnIMXk3Tjry1tyegNuWK8OUj51A1wHrX76DF9chME27bXUP4d7el1pjqPuQ9/l+/928GG386g==693 dependencies:707 dependencies:694 "@babel/runtime" "^7.19.4"708 "@babel/runtime" "^7.20.1"695 "@polkadot/types-codec" "9.5.2"709 "@polkadot/types-codec" "9.9.4"696 "@polkadot/util" "^10.1.11"710 "@polkadot/util" "^10.1.14"697711698"@polkadot/types-known@9.5.2":712"@polkadot/types-known@9.9.4":699 version "9.5.2"713 version "9.9.4"700 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.5.2.tgz#a71fd08932b1643bbf346321472ed48ab1ade215"714 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.9.4.tgz#d30fa2c5c964b76b748413004758d05eb8f0e8f9"701 integrity sha512-iNaGOF6dGiTvy3Ns8Z7WNjYD1SGnZiapDAKPH4brPuJqMpN6/FxYpfPSSOKx+IJEamsdINcaggb87eWyPxH8CA==715 integrity sha512-BaKXkg3yZLDv31g0CZPJsZDXX01VTjkQ0tmW9U6fmccEq3zHlxbUiXf3aKlwKRJyDWiEOxr4cQ4GT8jj6uEIuA==702 dependencies:716 dependencies:703 "@babel/runtime" "^7.19.4"717 "@babel/runtime" "^7.20.1"704 "@polkadot/networks" "^10.1.11"718 "@polkadot/networks" "^10.1.14"705 "@polkadot/types" "9.5.2"719 "@polkadot/types" "9.9.4"706 "@polkadot/types-codec" "9.5.2"720 "@polkadot/types-codec" "9.9.4"707 "@polkadot/types-create" "9.5.2"721 "@polkadot/types-create" "9.9.4"708 "@polkadot/util" "^10.1.11"722 "@polkadot/util" "^10.1.14"709723710"@polkadot/types-support@9.5.2":724"@polkadot/types-support@9.9.4":711 version "9.5.2"725 version "9.9.4"712 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.5.2.tgz#f2990d19cbd78c24e5b7116466fb1d89f93a8ca7"726 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.9.4.tgz#3f2eb1097a268bdd280d36fb53b7cdc98a5e238c"713 integrity sha512-Zdbl5fvGQjUkyE1r67vhyPEqLUwlZ35GCnkoobY9MgN6gylhSjNue/shpG4uGsEjWVQL7GkFkrPiwtzDArVilg==727 integrity sha512-vjhdD7B5kdTLhm2iO0QAb7fM4D2ojNUVVocOJotC9NULYtoC+PkPvkvFbw7VQ1H3u7yxyZfWloMtBnCsIp5EAA==714 dependencies:728 dependencies:715 "@babel/runtime" "^7.19.4"729 "@babel/runtime" "^7.20.1"716 "@polkadot/util" "^10.1.11"730 "@polkadot/util" "^10.1.14"717731718"@polkadot/types@9.5.2":732"@polkadot/types@9.9.4":719 version "9.5.2"733 version "9.9.4"720 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.5.2.tgz#33ab2caea08f084141a01038adbe53ed69ab7d9c"734 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.9.4.tgz#a1b38174f5a9e2aa97612157d12faffd905b126e"721 integrity sha512-6C5xzOrMK+fu0JMOlSO+8dPDhpwKPOaKMv3v5BMvBEWtDNKM81/QQoAoYT7DSVXq/V16icSFxPs9IWC+6Qq5ag==735 integrity sha512-/LJ029S0AtKzvV9JoQtIIeHRP/Xoq8MZmDfdHUEgThRd+uvtQzFyGmcupe4EzX0p5VAx93DUFQKm8vUdHE39Tw==722 dependencies:736 dependencies:723 "@babel/runtime" "^7.19.4"737 "@babel/runtime" "^7.20.1"724 "@polkadot/keyring" "^10.1.11"738 "@polkadot/keyring" "^10.1.14"725 "@polkadot/types-augment" "9.5.2"739 "@polkadot/types-augment" "9.9.4"726 "@polkadot/types-codec" "9.5.2"740 "@polkadot/types-codec" "9.9.4"727 "@polkadot/types-create" "9.5.2"741 "@polkadot/types-create" "9.9.4"728 "@polkadot/util" "^10.1.11"742 "@polkadot/util" "^10.1.14"729 "@polkadot/util-crypto" "^10.1.11"743 "@polkadot/util-crypto" "^10.1.14"730 rxjs "^7.5.7"744 rxjs "^7.5.7"731745732"@polkadot/util-crypto@10.1.11", "@polkadot/util-crypto@^10.1.11":746"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.1.14":733 version "10.1.11"747 version "10.2.1"734 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.1.11.tgz#e59bdc8e1e2bd98a115e2e2ed45461e68a14a48c"748 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"735 integrity sha512-wG63frIMAR5T/HXGM0SFNzZZdk7qDBsfLXfn6PIZiXCCCsdEYPzS5WltB7fkhicYpbePJ7VgdCAddj1l4IcGyg==749 integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==736 dependencies:750 dependencies:737 "@babel/runtime" "^7.19.4"751 "@babel/runtime" "^7.20.6"738 "@noble/hashes" "1.1.3"752 "@noble/hashes" "1.1.3"739 "@noble/secp256k1" "1.7.0"753 "@noble/secp256k1" "1.7.0"740 "@polkadot/networks" "10.1.11"754 "@polkadot/networks" "10.2.1"741 "@polkadot/util" "10.1.11"755 "@polkadot/util" "10.2.1"742 "@polkadot/wasm-crypto" "^6.3.1"756 "@polkadot/wasm-crypto" "^6.4.1"743 "@polkadot/x-bigint" "10.1.11"757 "@polkadot/x-bigint" "10.2.1"744 "@polkadot/x-randomvalues" "10.1.11"758 "@polkadot/x-randomvalues" "10.2.1"745 "@scure/base" "1.1.1"759 "@scure/base" "1.1.1"746 ed2curve "^0.3.0"760 ed2curve "^0.3.0"747 tweetnacl "^1.0.3"761 tweetnacl "^1.0.3"748762749"@polkadot/util@10.1.11", "@polkadot/util@^10.1.11":763"@polkadot/util@10.2.1", "@polkadot/util@^10.1.14":750 version "10.1.11"764 version "10.2.1"751 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.1.11.tgz#22bcdabbd7a0d266417f6569cc655f516d371a82"765 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"752 integrity sha512-6m51lw6g6ilqO/k4BQY7rD0lYM9NCnC4FiM7CEEUc7j8q86qxdcZ88zdNldkhNsTIQnfmCtkK3GRzZW6VYrbUw==766 integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==753 dependencies:767 dependencies:754 "@babel/runtime" "^7.19.4"768 "@babel/runtime" "^7.20.6"755 "@polkadot/x-bigint" "10.1.11"769 "@polkadot/x-bigint" "10.2.1"756 "@polkadot/x-global" "10.1.11"770 "@polkadot/x-global" "10.2.1"757 "@polkadot/x-textdecoder" "10.1.11"771 "@polkadot/x-textdecoder" "10.2.1"758 "@polkadot/x-textencoder" "10.1.11"772 "@polkadot/x-textencoder" "10.2.1"759 "@types/bn.js" "^5.1.1"773 "@types/bn.js" "^5.1.1"760 bn.js "^5.2.1"774 bn.js "^5.2.1"761775762"@polkadot/wasm-bridge@6.3.1":776"@polkadot/wasm-bridge@6.4.1":763 version "6.3.1"777 version "6.4.1"764 resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.3.1.tgz#439fa78e80947a7cb695443e1f64b25c30bb1487"778 resolved "https://registry.yarnpkg.com/@polkadot/wasm-bridge/-/wasm-bridge-6.4.1.tgz#e97915dd67ba543ec3381299c2a5b9330686e27e"765 integrity sha512-1TYkHsb9AEFhU9uZj3biEnN2yKQNzdrwSjiTvfCYnt97pnEkKsZI6cku+YPZQv5w/x9CQa5Yua9e2DVVZSivGA==779 integrity sha512-QZDvz6dsUlbYsaMV5biZgZWkYH9BC5AfhT0f0/knv8+LrbAoQdP3Asbvddw8vyU9sbpuCHXrd4bDLBwUCRfrBQ==766 dependencies:780 dependencies:767 "@babel/runtime" "^7.18.9"781 "@babel/runtime" "^7.20.6"768782769"@polkadot/wasm-crypto-asmjs@6.3.1":783"@polkadot/wasm-crypto-asmjs@6.4.1":770 version "6.3.1"784 version "6.4.1"771 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.3.1.tgz#e8f469c9cf4a7709c8131a96f857291953f3e30a"785 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-asmjs/-/wasm-crypto-asmjs-6.4.1.tgz#3cc76bbda5ea4a7a860982c64f9565907b312253"772 integrity sha512-zbombRfA5v/mUWQQhgg2YwaxhRmxRIrvskw65x+lruax3b6xPBFDs7yplopiJU3r8h2pTgQvX/DUksvqz2TCRQ==786 integrity sha512-UxZTwuBZlnODGIQdCsE2Sn/jU0O2xrNQ/TkhRFELfkZXEXTNu4lw6NpaKq7Iey4L+wKd8h4lT3VPVkMcPBLOvA==773 dependencies:787 dependencies:774 "@babel/runtime" "^7.18.9"788 "@babel/runtime" "^7.20.6"775789776"@polkadot/wasm-crypto-init@6.3.1":790"@polkadot/wasm-crypto-init@6.4.1":777 version "6.3.1"791 version "6.4.1"778 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.3.1.tgz#b590220c53c94b9a54d5dc236d0cbe943db76706"792 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-init/-/wasm-crypto-init-6.4.1.tgz#4d9ab0030db52cf177bf707ef8e77aa4ca721668"779 integrity sha512-9yaUBcu+snwjJLmPPGl3cyGRQ1afyFGm16qzTM0sgG/ZCfUlK4uk8KWZe+sBUKgoxb2oXY7Y4WklKgQI1YBdfw==793 integrity sha512-1ALagSi/nfkyFaH6JDYfy/QbicVbSn99K8PV9rctDUfxc7P06R7CoqbjGQ4OMPX6w1WYVPU7B4jPHGLYBlVuMw==780 dependencies:794 dependencies:781 "@babel/runtime" "^7.18.9"795 "@babel/runtime" "^7.20.6"782 "@polkadot/wasm-bridge" "6.3.1"796 "@polkadot/wasm-bridge" "6.4.1"783 "@polkadot/wasm-crypto-asmjs" "6.3.1"797 "@polkadot/wasm-crypto-asmjs" "6.4.1"784 "@polkadot/wasm-crypto-wasm" "6.3.1"798 "@polkadot/wasm-crypto-wasm" "6.4.1"785799786"@polkadot/wasm-crypto-wasm@6.3.1":800"@polkadot/wasm-crypto-wasm@6.4.1":787 version "6.3.1"801 version "6.4.1"788 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.3.1.tgz#67f720e7f9694fef096abe9d60abbac02e032383"802 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto-wasm/-/wasm-crypto-wasm-6.4.1.tgz#97180f80583b18f6a13c1054fa5f7e8da40b1028"789 integrity sha512-idSlzKGVzCfeCMRHsacRvqwojSaTadFxL/Dbls4z1thvfa3U9Ku0d2qVtlwg7Hj+tYWDiuP8Kygs+6bQwfs0XA==803 integrity sha512-3VV9ZGzh0ZY3SmkkSw+0TRXxIpiO0nB8lFwlRgcwaCihwrvLfRnH9GI8WE12mKsHVjWTEVR3ogzILJxccAUjDA==790 dependencies:804 dependencies:791 "@babel/runtime" "^7.18.9"805 "@babel/runtime" "^7.20.6"792 "@polkadot/wasm-util" "6.3.1"806 "@polkadot/wasm-util" "6.4.1"793807794"@polkadot/wasm-crypto@^6.3.1":808"@polkadot/wasm-crypto@^6.4.1":795 version "6.3.1"809 version "6.4.1"796 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.3.1.tgz#63f5798aca2b2ff0696f190e6862d9781d8f280c"810 resolved "https://registry.yarnpkg.com/@polkadot/wasm-crypto/-/wasm-crypto-6.4.1.tgz#79310e23ad1ca62362ba893db6a8567154c2536a"797 integrity sha512-OO8h0qeVkqp4xYZaRVl4iuWOEtq282pNBHDKb6SOJuI2g59eWGcKh4EQU9Me2VP6qzojIqptrkrVt7KQXC68gA==811 integrity sha512-FH+dcDPdhSLJvwL0pMLtn/LIPd62QDPODZRCmDyw+pFjLOMaRBc7raomWUOqyRWJTnqVf/iscc2rLVLNMyt7ag==798 dependencies:812 dependencies:799 "@babel/runtime" "^7.18.9"813 "@babel/runtime" "^7.20.6"800 "@polkadot/wasm-bridge" "6.3.1"814 "@polkadot/wasm-bridge" "6.4.1"801 "@polkadot/wasm-crypto-asmjs" "6.3.1"815 "@polkadot/wasm-crypto-asmjs" "6.4.1"802 "@polkadot/wasm-crypto-init" "6.3.1"816 "@polkadot/wasm-crypto-init" "6.4.1"803 "@polkadot/wasm-crypto-wasm" "6.3.1"817 "@polkadot/wasm-crypto-wasm" "6.4.1"804 "@polkadot/wasm-util" "6.3.1"818 "@polkadot/wasm-util" "6.4.1"805819806"@polkadot/wasm-util@6.3.1":820"@polkadot/wasm-util@6.4.1":807 version "6.3.1"821 version "6.4.1"808 resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.3.1.tgz#439ebb68a436317af388ed6438b8f879df3afcda"822 resolved "https://registry.yarnpkg.com/@polkadot/wasm-util/-/wasm-util-6.4.1.tgz#74aecc85bec427a9225d9874685944ea3dc3ab76"809 integrity sha512-12oAv5J7Yoc9m6jixrSaQCxpOkWOyzHx3DMC8qmLjRiwdBWxqLmImOVRVnFsbaxqSbhBIHRuJphVxWE+GZETDg==823 integrity sha512-Uwo+WpEsDmFExWC5kTNvsVhvqXMZEKf4gUHXFn4c6Xz4lmieRT5g+1bO1KJ21pl4msuIgdV3Bksfs/oiqMFqlw==810 dependencies:824 dependencies:811 "@babel/runtime" "^7.18.9"825 "@babel/runtime" "^7.20.6"812826813"@polkadot/x-bigint@10.1.11", "@polkadot/x-bigint@^10.1.11":827"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.1.14":814 version "10.1.11"828 version "10.2.1"815 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.1.11.tgz#7d62ce10cccd55b86a415342db95b9feeb099776"829 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"816 integrity sha512-TC4KZ+ni/SJhcf/LIwD49C/kwvACu0nCchETNO+sAfJ7COXZwHDUJXVXmwN5PgkQxwsWsKKuJmzR/Fi1bgMWnQ==830 integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==817 dependencies:831 dependencies:818 "@babel/runtime" "^7.19.4"832 "@babel/runtime" "^7.20.6"819 "@polkadot/x-global" "10.1.11"833 "@polkadot/x-global" "10.2.1"820834821"@polkadot/x-fetch@^10.1.11":835"@polkadot/x-fetch@^10.1.14":822 version "10.1.11"836 version "10.2.1"823 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.1.11.tgz#8f579bb166096c977acff91a40b3848fb5581900"837 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"824 integrity sha512-WtyUr9itVD9BLnxCUloJ1iwrXOY/lnlEShEYKHcSm6MIHtbJolePd3v1+o5mOX+bdDbHXhPZnH8anCCqDNDRqg==838 integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==825 dependencies:839 dependencies:826 "@babel/runtime" "^7.19.4"840 "@babel/runtime" "^7.20.6"827 "@polkadot/x-global" "10.1.11"841 "@polkadot/x-global" "10.2.1"828 "@types/node-fetch" "^2.6.2"842 "@types/node-fetch" "^2.6.2"829 node-fetch "^3.2.10"843 node-fetch "^3.3.0"830844831"@polkadot/x-global@10.1.11", "@polkadot/x-global@^10.1.11":845"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.1.14":832 version "10.1.11"846 version "10.2.1"833 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.1.11.tgz#37dda3ef1cebfd14c68c69279ae6521957817866"847 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"834 integrity sha512-bWz5gdcELy6+xfr27R1GE5MPX4nfVlchzHQH+DR6OBbSi9g/PeycQAvFB6IkTmP+YEbNNtIpxnSP37zoUaG3xw==848 integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==835 dependencies:849 dependencies:836 "@babel/runtime" "^7.19.4"850 "@babel/runtime" "^7.20.6"837851838"@polkadot/x-randomvalues@10.1.11":852"@polkadot/x-randomvalues@10.2.1":839 version "10.1.11"853 version "10.2.1"840 resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.1.11.tgz#f9e088f8b400770d3e53ba9e0c0f0d464047f89e"854 resolved "https://registry.yarnpkg.com/@polkadot/x-randomvalues/-/x-randomvalues-10.2.1.tgz#1c463625c0b7cf775e94594f522eb21a5229b42e"841 integrity sha512-V2V37f5hoM5B32eCpGw87Lwstin2+ArXhOZ8ENKncbQLXzbF9yTODueDoA5Vt0MJCs2CDP9cyiCYykcanqVkxg==855 integrity sha512-bEwG6j/+HMZ5LIkyzRbTB0N1Wz2lHyxP25pPFgHFqGqon/KZoRN5kxOwEJ1DpPJIv+9PVn5tt7bc4R3qsaZ93g==842 dependencies:856 dependencies:843 "@babel/runtime" "^7.19.4"857 "@babel/runtime" "^7.20.6"844 "@polkadot/x-global" "10.1.11"858 "@polkadot/x-global" "10.2.1"845859846"@polkadot/x-textdecoder@10.1.11":860"@polkadot/x-textdecoder@10.2.1":847 version "10.1.11"861 version "10.2.1"848 resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.1.11.tgz#314c79e27545a41fe0494a26196bf2dff5cfcb5d"862 resolved "https://registry.yarnpkg.com/@polkadot/x-textdecoder/-/x-textdecoder-10.2.1.tgz#c1778ef35e2aa8db8f11bbe31a5bbf5e46017d7d"849 integrity sha512-QZqie04SR6pAj260PaLBfZUGXWKI357t4ROVJhpaj06qc1zrk1V8Mwkr49+WzjAPFEOqo70HWnzXmPNCH4dQiw==863 integrity sha512-hpFmrdv/rrSM4UNaV8TJBgMtwXsYlNgBTSUmnKWwJIN3PhOUeYxl1qIbPchxGbJBc35WviJCZe7rlLja9JvFcw==850 dependencies:864 dependencies:851 "@babel/runtime" "^7.19.4"865 "@babel/runtime" "^7.20.6"852 "@polkadot/x-global" "10.1.11"866 "@polkadot/x-global" "10.2.1"853867854"@polkadot/x-textencoder@10.1.11":868"@polkadot/x-textencoder@10.2.1":855 version "10.1.11"869 version "10.2.1"856 resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.1.11.tgz#23b18b3ffbc649572728aa37d7787432bb3a03b5"870 resolved "https://registry.yarnpkg.com/@polkadot/x-textencoder/-/x-textencoder-10.2.1.tgz#c09562c73a44659243075d43b007b5c1b39c57a8"857 integrity sha512-UX+uV9AbDID81waaG/NvTkkf7ZNVW7HSHaddgbWjQEVW2Ex4ByccBarY5jEi6cErEPKfzCamKhgXflu0aV9LWw==871 integrity sha512-4gMyY6DCH34KA++bawu/zlUJ0/8+aZJsurwjRBbkdfOS2uLo0K+vJ5GBevAhl0VSznM36ptfh/MpkIBKK/6R0g==858 dependencies:872 dependencies:859 "@babel/runtime" "^7.19.4"873 "@babel/runtime" "^7.20.6"860 "@polkadot/x-global" "10.1.11"874 "@polkadot/x-global" "10.2.1"861875862"@polkadot/x-ws@^10.1.11":876"@polkadot/x-ws@^10.1.14":863 version "10.1.11"877 version "10.2.1"864 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.1.11.tgz#7431ad72064d56519d4293278f03ae97b9ea9271"878 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"865 integrity sha512-EUbL/R1A/NxYf6Rnb1M7U9yeTuo5r4y2vcQllE5aBLaQ0cFnRykHzlmZlVX1E7O5uy3lYVdxWC7sNgxItIWkWA==879 integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==866 dependencies:880 dependencies:867 "@babel/runtime" "^7.19.4"881 "@babel/runtime" "^7.20.6"868 "@polkadot/x-global" "10.1.11"882 "@polkadot/x-global" "10.2.1"869 "@types/websocket" "^1.0.5"883 "@types/websocket" "^1.0.5"870 websocket "^1.0.34"884 websocket "^1.0.34"871885884 resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz#fa5738039586c648013caa6a0c95c43265dbe77d"898 resolved "https://registry.yarnpkg.com/@substrate/connect-extension-protocol/-/connect-extension-protocol-1.0.1.tgz#fa5738039586c648013caa6a0c95c43265dbe77d"885 integrity sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==899 integrity sha512-161JhCC1csjH3GE5mPLEd7HbWtwNSPJBg3p1Ksz9SFlTzj/bgEwudiRN2y5i0MoLGCIJRYKyKGMxVnd29PzNjg==886900887"@substrate/connect@0.7.14":901"@substrate/connect@0.7.17":888 version "0.7.14"902 version "0.7.17"889 resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.14.tgz#c090e952e9cdd93185a94d24fbc424ea20fe7bbe"903 resolved "https://registry.yarnpkg.com/@substrate/connect/-/connect-0.7.17.tgz#b76ce23d24255e89028db81b3cb280c7f86db72e"890 integrity sha512-uW5uBmihpivshmmmw+rsg7qOV0KqVSep4rWOXFMP8aFQinvmqw4JqxP21og4H/7JZxttYUBFQVsdtXHGKJ0aVQ==904 integrity sha512-s0XBmGpUCFWZFa+TS0TEvOKtWjJP2uT4xKmvzApH8INB5xbz79wqWFX6WWh3AlK/X1P0Smt+RVEH7HQiLJAYAw==891 dependencies:905 dependencies:892 "@substrate/connect-extension-protocol" "^1.0.1"906 "@substrate/connect-extension-protocol" "^1.0.1"893 "@substrate/smoldot-light" "0.6.34"907 "@substrate/smoldot-light" "0.7.7"894 eventemitter3 "^4.0.7"908 eventemitter3 "^4.0.7"895909896"@substrate/smoldot-light@0.6.34":910"@substrate/smoldot-light@0.7.7":897 version "0.6.34"911 version "0.7.7"898 resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.6.34.tgz#273dba622102281fd0fdb0e375198bff2ec584c3"912 resolved "https://registry.yarnpkg.com/@substrate/smoldot-light/-/smoldot-light-0.7.7.tgz#ee5f89bb25af64d2014d97548b959b7da4c67f08"899 integrity sha512-+HK9MaJ0HelJmpf4YYR+salJ7dhVBltmhGlyz5l8OXS9DW18fe0Z2wxEo8P5kX9CUxlCXEb8J9JBRQAYBPHbwQ==913 integrity sha512-ksxeAed6dIUtYSl0f8ehgWQjwXnpDGTIJt+WVRIGt3OObZkA96ZdBWx0xP7GrXZtj37u4n/Y1z7TyTm4bwQvrw==900 dependencies:914 dependencies:901 pako "^2.0.4"915 pako "^2.0.4"902 ws "^8.8.1"916 ws "^8.8.1"903917904"@substrate/ss58-registry@^1.33.0":918"@substrate/ss58-registry@^1.35.0":905 version "1.33.0"919 version "1.36.0"906 resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.33.0.tgz#b93218fc86405769716b02f0ce5e61df221b37ae"920 resolved "https://registry.yarnpkg.com/@substrate/ss58-registry/-/ss58-registry-1.36.0.tgz#22b59fa85cacc0bdf40aa5d8131a377c1b5a8dd8"907 integrity sha512-DztMuMcEfu+tJrtIQIIp5gO8/XJZ8N8UwPObDCSNgrp7trtSkPJAUFB9qXaReXtN9UvTcVBMTWk6VPfFi04Wkg==921 integrity sha512-YfQIpe2bIvGg/XWNByycznbOiAknMvpYaUpQJ2sLmNT/OwPx7XjEXk7dLShccuiQDoOQt3trTtF3Frz/Tjv6Fg==908922909"@szmarczak/http-timer@^4.0.5":923"@szmarczak/http-timer@^4.0.5":910 version "4.0.6"924 version "4.0.6"3679 dependencies:3693 dependencies:3680 whatwg-url "^5.0.0"3694 whatwg-url "^5.0.0"368136953682node-fetch@^3.2.10:3696node-fetch@^3.3.0:3683 version "3.2.10"3697 version "3.3.0"3684 resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.2.10.tgz#e8347f94b54ae18b57c9c049ef641cef398a85c8"3698 resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.3.0.tgz#37e71db4ecc257057af828d523a7243d651d91e4"3685 integrity sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==3699 integrity sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==3686 dependencies:3700 dependencies:3687 data-uri-to-buffer "^4.0.0"3701 data-uri-to-buffer "^4.0.0"3688 fetch-blob "^3.1.4"3702 fetch-blob "^3.1.4"4078 dependencies:4092 dependencies:4079 picomatch "^2.2.1"4093 picomatch "^2.2.1"408040944081regenerator-runtime@^0.13.4:4095regenerator-runtime@^0.13.11:4082 version "0.13.10"4096 version "0.13.11"4083 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee"4097 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"4084 integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==4098 integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==408540994086regexp.prototype.flags@^1.4.3:4100regexp.prototype.flags@^1.4.3:4087 version "1.4.3"4101 version "1.4.3"5170 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"5184 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"5171 integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==5185 integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==517251865173yargs-parser@^21.0.0:5187yargs-parser@^21.1.1:5174 version "21.1.1"5188 version "21.1.1"5175 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"5189 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"5176 integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==5190 integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==5198 y18n "^5.0.5"5212 y18n "^5.0.5"5199 yargs-parser "^20.2.2"5213 yargs-parser "^20.2.2"520052145201yargs@^17.6.0:5215yargs@^17.6.2:5202 version "17.6.0"5216 version "17.6.2"5203 resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c"5217 resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541"5204 integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g==5218 integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==5205 dependencies:5219 dependencies:5206 cliui "^8.0.1"5220 cliui "^8.0.1"5207 escalade "^3.1.1"5221 escalade "^3.1.1"5208 get-caller-file "^2.0.5"5222 get-caller-file "^2.0.5"5209 require-directory "^2.1.1"5223 require-directory "^2.1.1"5210 string-width "^4.2.3"5224 string-width "^4.2.3"5211 y18n "^5.0.5"5225 y18n "^5.0.5"5212 yargs-parser "^21.0.0"5226 yargs-parser "^21.1.1"521352275214yn@3.1.1:5228yn@3.1.1:5215 version "3.1.1"5229 version "3.1.1"