git.delta.rocks / unique-network / refs/commits / 27a93db3a4a4

difftreelog

chore(tests) fix dependabot warnings + up polkadot API version

Fahrrader2022-12-14parent: #b9f8b76.patch.diff
in: master

14 files changed

modifiedtests/package.jsondiffbeforeafterboth
4 "description": "Unique Chain Tests",4 "description": "Unique Chain Tests",
5 "main": "",5 "main": "",
6 "devDependencies": {6 "devDependencies": {
7 "@polkadot/typegen": "9.9.4",7 "@polkadot/typegen": "9.10.2",
8 "@types/chai": "^4.3.3",8 "@types/chai": "^4.3.3",
9 "@types/chai-as-promised": "^7.1.5",9 "@types/chai-as-promised": "^7.1.5",
10 "@types/chai-like": "^1.1.1",10 "@types/chai-like": "^1.1.1",
114 "license": "SEE LICENSE IN ../LICENSE",114 "license": "SEE LICENSE IN ../LICENSE",
115 "homepage": "",115 "homepage": "",
116 "dependencies": {116 "dependencies": {
117 "@polkadot/api": "9.9.4",117 "@polkadot/api": "9.10.2",
118 "@polkadot/util": "10.2.1",
118 "@polkadot/util-crypto": "10.2.1",119 "@polkadot/util-crypto": "10.2.1",
119 "chai-as-promised": "^7.1.1",120 "chai-as-promised": "^7.1.1",
120 "chai-like": "^1.1.1",121 "chai-like": "^1.1.1",
121 "csv-writer": "^1.6.0",122 "csv-writer": "^1.6.0",
122 "find-process": "^1.4.7",123 "find-process": "^1.4.7",
123 "solc": "0.8.17",124 "solc": "0.8.17",
124 "web3": "^1.8.0"125 "web3": "^1.8.0"
125 }126 },
127 "resolutions": {
128 "decode-uri-component": "^0.2.1"
129 }
126}130}
127131
modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
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 } from '@polkadot/types/interfaces/runtime';11import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
1313
14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
1515
107 **/107 **/
108 [key: string]: Codec;108 [key: string]: Codec;
109 };109 };
110 scheduler: {
111 /**
112 * The maximum weight that may be scheduled per block for any dispatchables.
113 **/
114 maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
115 /**
116 * The maximum number of scheduled calls in the queue for a single block.
117 **/
118 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
119 /**
120 * Generic const
121 **/
122 [key: string]: Codec;
123 };
124 system: {110 system: {
125 /**111 /**
126 * Maximum number of block number to block hash mappings to keep (oldest pruned first).112 * Maximum number of block number to block hash mappings to keep (oldest pruned first).
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
674 **/674 **/
675 [key: string]: AugmentedError<ApiType>;675 [key: string]: AugmentedError<ApiType>;
676 };676 };
677 scheduler: {
678 /**
679 * There is no place for a new task in the agenda
680 **/
681 AgendaIsExhausted: AugmentedError<ApiType>;
682 /**
683 * Failed to schedule a call
684 **/
685 FailedToSchedule: AugmentedError<ApiType>;
686 /**
687 * Attempt to use a non-named function on a named task.
688 **/
689 Named: AugmentedError<ApiType>;
690 /**
691 * Cannot find the scheduled call.
692 **/
693 NotFound: AugmentedError<ApiType>;
694 /**
695 * Scheduled call preimage is not found
696 **/
697 PreimageNotFound: AugmentedError<ApiType>;
698 /**
699 * Scheduled call is corrupted
700 **/
701 ScheduledCallCorrupted: AugmentedError<ApiType>;
702 /**
703 * Given target block number is in the past.
704 **/
705 TargetBlockNumberInPast: AugmentedError<ApiType>;
706 /**
707 * Scheduled call is too big
708 **/
709 TooBigScheduledCall: AugmentedError<ApiType>;
710 /**
711 * Generic error
712 **/
713 [key: string]: AugmentedError<ApiType>;
714 };
715 structure: {677 structure: {
716 /**678 /**
717 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.679 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
77
8import 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';
11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';10import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
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';11import 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';
1312
527 **/526 **/
528 [key: string]: AugmentedEvent<ApiType>;527 [key: string]: AugmentedEvent<ApiType>;
529 };528 };
530 scheduler: {
531 /**
532 * The call for the provided hash was not found so the task has been aborted.
533 **/
534 CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
535 /**
536 * Canceled some task.
537 **/
538 Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
539 /**
540 * Dispatched some task.
541 **/
542 Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
543 /**
544 * The given task can never be executed since it is overweight.
545 **/
546 PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
547 /**
548 * Scheduled task's priority has changed
549 **/
550 PriorityChanged: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, priority: u8], { task: ITuple<[u32, u32]>, priority: u8 }>;
551 /**
552 * Scheduled some task.
553 **/
554 Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
555 /**
556 * Generic event
557 **/
558 [key: string]: AugmentedEvent<ApiType>;
559 };
560 structure: {529 structure: {
561 /**530 /**
562 * Executed call on behalf of the token.531 * Executed call on behalf of the token.
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/storage';6import '@polkadot/api-base/types/storage';
77
8import 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, 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 } 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, SpWeightsWeightV2Weight, 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, PalletTransactionPaymentReleases, PalletTreasuryProposal, 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';
1414
15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
633 * Used to enumerate tokens owned by account.633 * Used to enumerate tokens owned by account.
634 **/634 **/
635 owned: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]>;635 owned: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, u32]>;
636 /**
637 * Token data, used to partially describe a token.
638 **/
639 tokenData: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<PalletRefungibleItemData>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
640 /**636 /**
641 * Amount of pieces a refungible token is split into.637 * Amount of pieces a refungible token is split into.
642 **/638 **/
686 **/682 **/
687 [key: string]: QueryableStorageEntry<ApiType>;683 [key: string]: QueryableStorageEntry<ApiType>;
688 };684 };
689 scheduler: {
690 /**
691 * Items to be executed, indexed by the block number that they should be executed on.
692 **/
693 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<PalletUniqueSchedulerV2BlockAgenda>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
694 /**
695 * It contains the block number from which we should service tasks.
696 * It's used for delaying the servicing of future blocks' agendas if we had overweight tasks.
697 **/
698 incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
699 /**
700 * Lookup from a name to the block number and index of the task.
701 **/
702 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
703 /**
704 * Generic query
705 **/
706 [key: string]: QueryableStorageEntry<ApiType>;
707 };
708 structure: {685 structure: {
709 /**686 /**
710 * Generic query687 * Generic query
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
16import 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` instead
175 * Instantiate a new contract175 * Instantiate a new contract
176 **/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 interfaces
180 * 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 rent
425 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` instead
430 * Query the detailed fee of a given encoded extrinsic
430 **/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` instead
435 * Retrieves the fee information for an encoded extrinsic
434 **/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 /**
modifiedtests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/calls';6import '@polkadot/api-base/types/calls';
77
8import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';
9import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u64 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, u64 } from '@polkadot/types-codec';
10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
11import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';11import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';
12import type { BlockHash } from '@polkadot/types/interfaces/chain';12import type { BlockHash } from '@polkadot/types/interfaces/chain';
16import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';16import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';
17import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';17import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
18import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';18import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
19import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
19import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';20import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';
20import type { RuntimeVersion } from '@polkadot/types/interfaces/state';21import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
21import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';22import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';
228 **/229 **/
229 [key: string]: DecoratedCallBase<ApiType>;230 [key: string]: DecoratedCallBase<ApiType>;
230 };231 };
232 /** 0x37c8bb1350a9a2a8/2 */
233 transactionPaymentApi: {
234 /**
235 * The transaction fee details
236 **/
237 queryFeeDetails: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<FeeDetails>>;
238 /**
239 * The transaction info
240 **/
241 queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
242 /**
243 * Generic call
244 **/
245 [key: string]: DecoratedCallBase<ApiType>;
246 };
231 } // AugmentedCalls247 } // AugmentedCalls
232} // declare module248} // declare module
233249
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/submittable';6import '@polkadot/api-base/types/submittable';
77
8import 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, 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 } 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, SpWeightsWeightV2Weight, 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';
838 **/838 **/
839 [key: string]: SubmittableExtrinsicFunction<ApiType>;839 [key: string]: SubmittableExtrinsicFunction<ApiType>;
840 };840 };
841 scheduler: {
842 /**
843 * Cancel an anonymously scheduled task.
844 *
845 * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
846 **/
847 cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
848 /**
849 * Cancel a named scheduled task.
850 *
851 * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
852 **/
853 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
854 /**
855 * Change a named task's priority.
856 *
857 * Only the `T::PrioritySetOrigin` is allowed to change the task's priority.
858 **/
859 changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;
860 /**
861 * Anonymously schedule a task.
862 *
863 * Only `T::ScheduleOrigin` is allowed to schedule a task.
864 * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
865 **/
866 schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
867 /**
868 * Anonymously schedule a task after a delay.
869 *
870 * # <weight>
871 * Same as [`schedule`].
872 * # </weight>
873 **/
874 scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
875 /**
876 * Schedule a named task.
877 *
878 * Only `T::ScheduleOrigin` is allowed to schedule a task.
879 * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
880 **/
881 scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
882 /**
883 * Schedule a named task after a delay.
884 *
885 * Only `T::ScheduleOrigin` is allowed to schedule a task.
886 * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
887 *
888 * # <weight>
889 * Same as [`schedule_named`](Self::schedule_named).
890 * # </weight>
891 **/
892 scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
893 /**
894 * Generic tx
895 **/
896 [key: string]: SubmittableExtrinsicFunction<ApiType>;
897 };
898 structure: {841 structure: {
899 /**842 /**
900 * Generic tx843 * Generic tx
1033 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;976 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
1034 incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;977 incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
1035 justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;978 justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
1036 selfCancelingInc: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, maxTestValue: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32]>;
1037 setTestValue: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;979 setTestValue: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
1038 setTestValueAndRollback: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;980 setTestValueAndRollback: AugmentedSubmittable<(value: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
1039 /**981 /**
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
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, 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';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, 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, 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, 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, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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;
328 CumulusPalletXcmCall: CumulusPalletXcmCall;330 CumulusPalletXcmCall: CumulusPalletXcmCall;
329 CumulusPalletXcmError: CumulusPalletXcmError;331 CumulusPalletXcmError: CumulusPalletXcmError;
330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;332 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
331 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
332 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;333 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
333 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;334 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
334 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;335 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
524 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;525 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
525 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;526 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
526 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;527 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
527 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
528 FrameSupportPalletId: FrameSupportPalletId;528 FrameSupportPalletId: FrameSupportPalletId;
529 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;529 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
530 FrameSystemAccountInfo: FrameSystemAccountInfo;530 FrameSystemAccountInfo: FrameSystemAccountInfo;
771 OffenceDetails: OffenceDetails;771 OffenceDetails: OffenceDetails;
772 Offender: Offender;772 Offender: Offender;
773 OldV1SessionInfo: OldV1SessionInfo;773 OldV1SessionInfo: OldV1SessionInfo;
774 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
775 OpalRuntimeRuntime: OpalRuntimeRuntime;774 OpalRuntimeRuntime: OpalRuntimeRuntime;
776 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;775 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
777 OpaqueCall: OpaqueCall;776 OpaqueCall: OpaqueCall;
839 PalletEthereumError: PalletEthereumError;838 PalletEthereumError: PalletEthereumError;
840 PalletEthereumEvent: PalletEthereumEvent;839 PalletEthereumEvent: PalletEthereumEvent;
841 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;840 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
842 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
843 PalletEventMetadataLatest: PalletEventMetadataLatest;841 PalletEventMetadataLatest: PalletEventMetadataLatest;
844 PalletEventMetadataV14: PalletEventMetadataV14;842 PalletEventMetadataV14: PalletEventMetadataV14;
845 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;843 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
870 PalletNonfungibleError: PalletNonfungibleError;868 PalletNonfungibleError: PalletNonfungibleError;
871 PalletNonfungibleItemData: PalletNonfungibleItemData;869 PalletNonfungibleItemData: PalletNonfungibleItemData;
872 PalletRefungibleError: PalletRefungibleError;870 PalletRefungibleError: PalletRefungibleError;
873 PalletRefungibleItemData: PalletRefungibleItemData;
874 PalletRmrkCoreCall: PalletRmrkCoreCall;871 PalletRmrkCoreCall: PalletRmrkCoreCall;
875 PalletRmrkCoreError: PalletRmrkCoreError;872 PalletRmrkCoreError: PalletRmrkCoreError;
876 PalletRmrkCoreEvent: PalletRmrkCoreEvent;873 PalletRmrkCoreEvent: PalletRmrkCoreEvent;
900 PalletTreasuryProposal: PalletTreasuryProposal;897 PalletTreasuryProposal: PalletTreasuryProposal;
901 PalletUniqueCall: PalletUniqueCall;898 PalletUniqueCall: PalletUniqueCall;
902 PalletUniqueError: PalletUniqueError;899 PalletUniqueError: PalletUniqueError;
903 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
904 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
905 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
906 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
907 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
908 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
909 PalletVersion: PalletVersion;900 PalletVersion: PalletVersion;
910 PalletXcmCall: PalletXcmCall;901 PalletXcmCall: PalletXcmCall;
911 PalletXcmError: PalletXcmError;902 PalletXcmError: PalletXcmError;
912 PalletXcmEvent: PalletXcmEvent;903 PalletXcmEvent: PalletXcmEvent;
913 PalletXcmOrigin: PalletXcmOrigin;
914 ParachainDispatchOrigin: ParachainDispatchOrigin;904 ParachainDispatchOrigin: ParachainDispatchOrigin;
915 ParachainInherentData: ParachainInherentData;905 ParachainInherentData: ParachainInherentData;
916 ParachainProposal: ParachainProposal;906 ParachainProposal: ParachainProposal;
1066 RpcMethods: RpcMethods;1056 RpcMethods: RpcMethods;
1067 RuntimeDbWeight: RuntimeDbWeight;1057 RuntimeDbWeight: RuntimeDbWeight;
1068 RuntimeDispatchInfo: RuntimeDispatchInfo;1058 RuntimeDispatchInfo: RuntimeDispatchInfo;
1059 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
1060 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
1069 RuntimeVersion: RuntimeVersion;1061 RuntimeVersion: RuntimeVersion;
1070 RuntimeVersionApi: RuntimeVersionApi;1062 RuntimeVersionApi: RuntimeVersionApi;
1071 RuntimeVersionPartial: RuntimeVersionPartial;1063 RuntimeVersionPartial: RuntimeVersionPartial;
1184 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1176 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
1185 SpCoreEd25519Signature: SpCoreEd25519Signature;1177 SpCoreEd25519Signature: SpCoreEd25519Signature;
1186 SpCoreSr25519Signature: SpCoreSr25519Signature;1178 SpCoreSr25519Signature: SpCoreSr25519Signature;
1187 SpCoreVoid: SpCoreVoid;
1188 SpecVersion: SpecVersion;1179 SpecVersion: SpecVersion;
1189 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1180 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
1190 SpRuntimeDigest: SpRuntimeDigest;1181 SpRuntimeDigest: SpRuntimeDigest;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
154}154}
155
156/** @name CumulusPalletXcmOrigin */
157export interface CumulusPalletXcmOrigin extends Enum {
158 readonly isRelay: boolean;
159 readonly isSiblingParachain: boolean;
160 readonly asSiblingParachain: u32;
161 readonly type: 'Relay' | 'SiblingParachain';
162}
163155
164/** @name CumulusPalletXcmpQueueCall */156/** @name CumulusPalletXcmpQueueCall */
165export interface CumulusPalletXcmpQueueCall extends Enum {157export interface CumulusPalletXcmpQueueCall extends Enum {
544 readonly mandatory: FrameSystemLimitsWeightsPerClass;536 readonly mandatory: FrameSystemLimitsWeightsPerClass;
545}537}
546
547/** @name FrameSupportDispatchRawOrigin */
548export interface FrameSupportDispatchRawOrigin extends Enum {
549 readonly isRoot: boolean;
550 readonly isSigned: boolean;
551 readonly asSigned: AccountId32;
552 readonly isNone: boolean;
553 readonly type: 'Root' | 'Signed' | 'None';
554}
555538
556/** @name FrameSupportPalletId */539/** @name FrameSupportPalletId */
557export interface FrameSupportPalletId extends U8aFixed {}540export interface FrameSupportPalletId extends U8aFixed {}
710 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';693 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
711}694}
712
713/** @name OpalRuntimeOriginCaller */
714export interface OpalRuntimeOriginCaller extends Enum {
715 readonly isSystem: boolean;
716 readonly asSystem: FrameSupportDispatchRawOrigin;
717 readonly isVoid: boolean;
718 readonly asVoid: SpCoreVoid;
719 readonly isPolkadotXcm: boolean;
720 readonly asPolkadotXcm: PalletXcmOrigin;
721 readonly isCumulusXcm: boolean;
722 readonly asCumulusXcm: CumulusPalletXcmOrigin;
723 readonly isEthereum: boolean;
724 readonly asEthereum: PalletEthereumRawOrigin;
725 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
726}
727695
728/** @name OpalRuntimeRuntime */696/** @name OpalRuntimeRuntime */
729export interface OpalRuntimeRuntime extends Null {}697export interface OpalRuntimeRuntime extends Null {}
1371/** @name PalletEthereumFakeTransactionFinalizer */1339/** @name PalletEthereumFakeTransactionFinalizer */
1372export interface PalletEthereumFakeTransactionFinalizer extends Null {}1340export interface PalletEthereumFakeTransactionFinalizer extends Null {}
1373
1374/** @name PalletEthereumRawOrigin */
1375export interface PalletEthereumRawOrigin extends Enum {
1376 readonly isEthereumTransaction: boolean;
1377 readonly asEthereumTransaction: H160;
1378 readonly type: 'EthereumTransaction';
1379}
13801341
1381/** @name PalletEvmAccountBasicCrossAccountIdRepr */1342/** @name PalletEvmAccountBasicCrossAccountIdRepr */
1382export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1343export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1684 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1645 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
1685}1646}
1686
1687/** @name PalletRefungibleItemData */
1688export interface PalletRefungibleItemData extends Struct {
1689 readonly constData: Bytes;
1690}
16911647
1692/** @name PalletRmrkCoreCall */1648/** @name PalletRmrkCoreCall */
1693export interface PalletRmrkCoreCall extends Enum {1649export interface PalletRmrkCoreCall extends Enum {
2041 readonly value: u32;1997 readonly value: u32;
2042 } & Struct;1998 } & Struct;
2043 readonly isIncTestValue: boolean;1999 readonly isIncTestValue: boolean;
2044 readonly isSelfCancelingInc: boolean;
2045 readonly asSelfCancelingInc: {
2046 readonly id: U8aFixed;
2047 readonly maxTestValue: u32;
2048 } & Struct;
2049 readonly isJustTakeFee: boolean;2000 readonly isJustTakeFee: boolean;
2050 readonly isBatchAll: boolean;2001 readonly isBatchAll: boolean;
2051 readonly asBatchAll: {2002 readonly asBatchAll: {
2052 readonly calls: Vec<Call>;2003 readonly calls: Vec<Call>;
2053 } & Struct;2004 } & Struct;
2054 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';2005 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
2055}2006}
20562007
2057/** @name PalletTestUtilsError */2008/** @name PalletTestUtilsError */
2355 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2306 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
2356}2307}
2357
2358/** @name PalletUniqueSchedulerV2BlockAgenda */
2359export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
2360 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
2361 readonly freePlaces: u32;
2362}
2363
2364/** @name PalletUniqueSchedulerV2Call */
2365export interface PalletUniqueSchedulerV2Call extends Enum {
2366 readonly isSchedule: boolean;
2367 readonly asSchedule: {
2368 readonly when: u32;
2369 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2370 readonly priority: Option<u8>;
2371 readonly call: Call;
2372 } & Struct;
2373 readonly isCancel: boolean;
2374 readonly asCancel: {
2375 readonly when: u32;
2376 readonly index: u32;
2377 } & Struct;
2378 readonly isScheduleNamed: boolean;
2379 readonly asScheduleNamed: {
2380 readonly id: U8aFixed;
2381 readonly when: u32;
2382 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2383 readonly priority: Option<u8>;
2384 readonly call: Call;
2385 } & Struct;
2386 readonly isCancelNamed: boolean;
2387 readonly asCancelNamed: {
2388 readonly id: U8aFixed;
2389 } & Struct;
2390 readonly isScheduleAfter: boolean;
2391 readonly asScheduleAfter: {
2392 readonly after: u32;
2393 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2394 readonly priority: Option<u8>;
2395 readonly call: Call;
2396 } & Struct;
2397 readonly isScheduleNamedAfter: boolean;
2398 readonly asScheduleNamedAfter: {
2399 readonly id: U8aFixed;
2400 readonly after: u32;
2401 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2402 readonly priority: Option<u8>;
2403 readonly call: Call;
2404 } & Struct;
2405 readonly isChangeNamedPriority: boolean;
2406 readonly asChangeNamedPriority: {
2407 readonly id: U8aFixed;
2408 readonly priority: u8;
2409 } & Struct;
2410 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
2411}
2412
2413/** @name PalletUniqueSchedulerV2Error */
2414export interface PalletUniqueSchedulerV2Error extends Enum {
2415 readonly isFailedToSchedule: boolean;
2416 readonly isAgendaIsExhausted: boolean;
2417 readonly isScheduledCallCorrupted: boolean;
2418 readonly isPreimageNotFound: boolean;
2419 readonly isTooBigScheduledCall: boolean;
2420 readonly isNotFound: boolean;
2421 readonly isTargetBlockNumberInPast: boolean;
2422 readonly isNamed: boolean;
2423 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
2424}
2425
2426/** @name PalletUniqueSchedulerV2Event */
2427export interface PalletUniqueSchedulerV2Event extends Enum {
2428 readonly isScheduled: boolean;
2429 readonly asScheduled: {
2430 readonly when: u32;
2431 readonly index: u32;
2432 } & Struct;
2433 readonly isCanceled: boolean;
2434 readonly asCanceled: {
2435 readonly when: u32;
2436 readonly index: u32;
2437 } & Struct;
2438 readonly isDispatched: boolean;
2439 readonly asDispatched: {
2440 readonly task: ITuple<[u32, u32]>;
2441 readonly id: Option<U8aFixed>;
2442 readonly result: Result<Null, SpRuntimeDispatchError>;
2443 } & Struct;
2444 readonly isPriorityChanged: boolean;
2445 readonly asPriorityChanged: {
2446 readonly task: ITuple<[u32, u32]>;
2447 readonly priority: u8;
2448 } & Struct;
2449 readonly isCallUnavailable: boolean;
2450 readonly asCallUnavailable: {
2451 readonly task: ITuple<[u32, u32]>;
2452 readonly id: Option<U8aFixed>;
2453 } & Struct;
2454 readonly isPermanentlyOverweight: boolean;
2455 readonly asPermanentlyOverweight: {
2456 readonly task: ITuple<[u32, u32]>;
2457 readonly id: Option<U8aFixed>;
2458 } & Struct;
2459 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
2460}
2461
2462/** @name PalletUniqueSchedulerV2Scheduled */
2463export interface PalletUniqueSchedulerV2Scheduled extends Struct {
2464 readonly maybeId: Option<U8aFixed>;
2465 readonly priority: u8;
2466 readonly call: PalletUniqueSchedulerV2ScheduledCall;
2467 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2468 readonly origin: OpalRuntimeOriginCaller;
2469}
2470
2471/** @name PalletUniqueSchedulerV2ScheduledCall */
2472export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
2473 readonly isInline: boolean;
2474 readonly asInline: Bytes;
2475 readonly isPreimageLookup: boolean;
2476 readonly asPreimageLookup: {
2477 readonly hash_: H256;
2478 readonly unboundedLen: u32;
2479 } & Struct;
2480 readonly type: 'Inline' | 'PreimageLookup';
2481}
24822308
2483/** @name PalletXcmCall */2309/** @name PalletXcmCall */
2484export interface PalletXcmCall extends Enum {2310export interface PalletXcmCall extends Enum {
2599 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2425 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
2600}2426}
2601
2602/** @name PalletXcmOrigin */
2603export interface PalletXcmOrigin extends Enum {
2604 readonly isXcm: boolean;
2605 readonly asXcm: XcmV1MultiLocation;
2606 readonly isResponse: boolean;
2607 readonly asResponse: XcmV1MultiLocation;
2608 readonly type: 'Xcm' | 'Response';
2609}
26102427
2611/** @name PhantomTypeUpDataStructs */2428/** @name PhantomTypeUpDataStructs */
2612export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}2429export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
2828/** @name SpCoreSr25519Signature */2645/** @name SpCoreSr25519Signature */
2829export interface SpCoreSr25519Signature extends U8aFixed {}2646export interface SpCoreSr25519Signature extends U8aFixed {}
2830
2831/** @name SpCoreVoid */
2832export interface SpCoreVoid extends Null {}
28332647
2834/** @name SpRuntimeArithmeticError */2648/** @name SpRuntimeArithmeticError */
2835export interface SpRuntimeArithmeticError extends Enum {2649export interface SpRuntimeArithmeticError extends Enum {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
988 }988 }
989 }989 }
990 },990 },
991 /**
992 * Lookup89: pallet_unique_scheduler_v2::pallet::Event<T>
993 **/
994 PalletUniqueSchedulerV2Event: {
995 _enum: {
996 Scheduled: {
997 when: 'u32',
998 index: 'u32',
999 },
1000 Canceled: {
1001 when: 'u32',
1002 index: 'u32',
1003 },
1004 Dispatched: {
1005 task: '(u32,u32)',
1006 id: 'Option<[u8;32]>',
1007 result: 'Result<Null, SpRuntimeDispatchError>',
1008 },
1009 PriorityChanged: {
1010 task: '(u32,u32)',
1011 priority: 'u8',
1012 },
1013 CallUnavailable: {
1014 task: '(u32,u32)',
1015 id: 'Option<[u8;32]>',
1016 },
1017 PermanentlyOverweight: {
1018 task: '(u32,u32)',
1019 id: 'Option<[u8;32]>'
1020 }
1021 }
1022 },
1023 /**991 /**
1024 * Lookup92: pallet_common::pallet::Event<T>992 * Lookup89: pallet_common::pallet::Event<T>
1025 **/993 **/
1026 PalletCommonEvent: {994 PalletCommonEvent: {
1027 _enum: {995 _enum: {
1028 CollectionCreated: '(u32,u8,AccountId32)',996 CollectionCreated: '(u32,u8,AccountId32)',
1049 CollectionSponsorRemoved: 'u32'1017 CollectionSponsorRemoved: 'u32'
1050 }1018 }
1051 },1019 },
1052 /**1020 /**
1053 * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1021 * Lookup92: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
1054 **/1022 **/
1055 PalletEvmAccountBasicCrossAccountIdRepr: {1023 PalletEvmAccountBasicCrossAccountIdRepr: {
1056 _enum: {1024 _enum: {
1057 Substrate: 'AccountId32',1025 Substrate: 'AccountId32',
1058 Ethereum: 'H160'1026 Ethereum: 'H160'
1059 }1027 }
1060 },1028 },
1061 /**1029 /**
1062 * Lookup99: pallet_structure::pallet::Event<T>1030 * Lookup96: pallet_structure::pallet::Event<T>
1063 **/1031 **/
1064 PalletStructureEvent: {1032 PalletStructureEvent: {
1065 _enum: {1033 _enum: {
1066 Executed: 'Result<Null, SpRuntimeDispatchError>'1034 Executed: 'Result<Null, SpRuntimeDispatchError>'
1067 }1035 }
1068 },1036 },
1069 /**1037 /**
1070 * Lookup100: pallet_rmrk_core::pallet::Event<T>1038 * Lookup97: pallet_rmrk_core::pallet::Event<T>
1071 **/1039 **/
1072 PalletRmrkCoreEvent: {1040 PalletRmrkCoreEvent: {
1073 _enum: {1041 _enum: {
1074 CollectionCreated: {1042 CollectionCreated: {
1143 }1111 }
1144 }1112 }
1145 },1113 },
1146 /**1114 /**
1147 * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1115 * Lookup98: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
1148 **/1116 **/
1149 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1117 RmrkTraitsNftAccountIdOrCollectionNftTuple: {
1150 _enum: {1118 _enum: {
1151 AccountId: 'AccountId32',1119 AccountId: 'AccountId32',
1152 CollectionAndNftTuple: '(u32,u32)'1120 CollectionAndNftTuple: '(u32,u32)'
1153 }1121 }
1154 },1122 },
1155 /**1123 /**
1156 * Lookup105: pallet_rmrk_equip::pallet::Event<T>1124 * Lookup102: pallet_rmrk_equip::pallet::Event<T>
1157 **/1125 **/
1158 PalletRmrkEquipEvent: {1126 PalletRmrkEquipEvent: {
1159 _enum: {1127 _enum: {
1160 BaseCreated: {1128 BaseCreated: {
1167 }1135 }
1168 }1136 }
1169 },1137 },
1170 /**1138 /**
1171 * Lookup106: pallet_app_promotion::pallet::Event<T>1139 * Lookup103: pallet_app_promotion::pallet::Event<T>
1172 **/1140 **/
1173 PalletAppPromotionEvent: {1141 PalletAppPromotionEvent: {
1174 _enum: {1142 _enum: {
1175 StakingRecalculation: '(AccountId32,u128,u128)',1143 StakingRecalculation: '(AccountId32,u128,u128)',
1178 SetAdmin: 'AccountId32'1146 SetAdmin: 'AccountId32'
1179 }1147 }
1180 },1148 },
1181 /**1149 /**
1182 * Lookup107: pallet_foreign_assets::module::Event<T>1150 * Lookup104: pallet_foreign_assets::module::Event<T>
1183 **/1151 **/
1184 PalletForeignAssetsModuleEvent: {1152 PalletForeignAssetsModuleEvent: {
1185 _enum: {1153 _enum: {
1186 ForeignAssetRegistered: {1154 ForeignAssetRegistered: {
1203 }1171 }
1204 }1172 }
1205 },1173 },
1206 /**1174 /**
1207 * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>1175 * Lookup105: pallet_foreign_assets::module::AssetMetadata<Balance>
1208 **/1176 **/
1209 PalletForeignAssetsModuleAssetMetadata: {1177 PalletForeignAssetsModuleAssetMetadata: {
1210 name: 'Bytes',1178 name: 'Bytes',
1211 symbol: 'Bytes',1179 symbol: 'Bytes',
1212 decimals: 'u8',1180 decimals: 'u8',
1213 minimalBalance: 'u128'1181 minimalBalance: 'u128'
1214 },1182 },
1215 /**1183 /**
1216 * Lookup109: pallet_evm::pallet::Event<T>1184 * Lookup106: pallet_evm::pallet::Event<T>
1217 **/1185 **/
1218 PalletEvmEvent: {1186 PalletEvmEvent: {
1219 _enum: {1187 _enum: {
1220 Log: {1188 Log: {
1234 }1202 }
1235 }1203 }
1236 },1204 },
1237 /**1205 /**
1238 * Lookup110: ethereum::log::Log1206 * Lookup107: ethereum::log::Log
1239 **/1207 **/
1240 EthereumLog: {1208 EthereumLog: {
1241 address: 'H160',1209 address: 'H160',
1242 topics: 'Vec<H256>',1210 topics: 'Vec<H256>',
1243 data: 'Bytes'1211 data: 'Bytes'
1244 },1212 },
1245 /**1213 /**
1246 * Lookup112: pallet_ethereum::pallet::Event1214 * Lookup109: pallet_ethereum::pallet::Event
1247 **/1215 **/
1248 PalletEthereumEvent: {1216 PalletEthereumEvent: {
1249 _enum: {1217 _enum: {
1250 Executed: {1218 Executed: {
1255 }1223 }
1256 }1224 }
1257 },1225 },
1258 /**1226 /**
1259 * Lookup113: evm_core::error::ExitReason1227 * Lookup110: evm_core::error::ExitReason
1260 **/1228 **/
1261 EvmCoreErrorExitReason: {1229 EvmCoreErrorExitReason: {
1262 _enum: {1230 _enum: {
1263 Succeed: 'EvmCoreErrorExitSucceed',1231 Succeed: 'EvmCoreErrorExitSucceed',
1266 Fatal: 'EvmCoreErrorExitFatal'1234 Fatal: 'EvmCoreErrorExitFatal'
1267 }1235 }
1268 },1236 },
1269 /**1237 /**
1270 * Lookup114: evm_core::error::ExitSucceed1238 * Lookup111: evm_core::error::ExitSucceed
1271 **/1239 **/
1272 EvmCoreErrorExitSucceed: {1240 EvmCoreErrorExitSucceed: {
1273 _enum: ['Stopped', 'Returned', 'Suicided']1241 _enum: ['Stopped', 'Returned', 'Suicided']
1274 },1242 },
1275 /**1243 /**
1276 * Lookup115: evm_core::error::ExitError1244 * Lookup112: evm_core::error::ExitError
1277 **/1245 **/
1278 EvmCoreErrorExitError: {1246 EvmCoreErrorExitError: {
1279 _enum: {1247 _enum: {
1280 StackUnderflow: 'Null',1248 StackUnderflow: 'Null',
1294 InvalidCode: 'Null'1262 InvalidCode: 'Null'
1295 }1263 }
1296 },1264 },
1297 /**1265 /**
1298 * Lookup118: evm_core::error::ExitRevert1266 * Lookup115: evm_core::error::ExitRevert
1299 **/1267 **/
1300 EvmCoreErrorExitRevert: {1268 EvmCoreErrorExitRevert: {
1301 _enum: ['Reverted']1269 _enum: ['Reverted']
1302 },1270 },
1303 /**1271 /**
1304 * Lookup119: evm_core::error::ExitFatal1272 * Lookup116: evm_core::error::ExitFatal
1305 **/1273 **/
1306 EvmCoreErrorExitFatal: {1274 EvmCoreErrorExitFatal: {
1307 _enum: {1275 _enum: {
1308 NotSupported: 'Null',1276 NotSupported: 'Null',
1311 Other: 'Text'1279 Other: 'Text'
1312 }1280 }
1313 },1281 },
1314 /**1282 /**
1315 * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>1283 * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>
1316 **/1284 **/
1317 PalletEvmContractHelpersEvent: {1285 PalletEvmContractHelpersEvent: {
1318 _enum: {1286 _enum: {
1319 ContractSponsorSet: '(H160,AccountId32)',1287 ContractSponsorSet: '(H160,AccountId32)',
1320 ContractSponsorshipConfirmed: '(H160,AccountId32)',1288 ContractSponsorshipConfirmed: '(H160,AccountId32)',
1321 ContractSponsorRemoved: 'H160'1289 ContractSponsorRemoved: 'H160'
1322 }1290 }
1323 },1291 },
1324 /**1292 /**
1325 * Lookup121: pallet_evm_migration::pallet::Event<T>1293 * Lookup118: pallet_evm_migration::pallet::Event<T>
1326 **/1294 **/
1327 PalletEvmMigrationEvent: {1295 PalletEvmMigrationEvent: {
1328 _enum: ['TestEvent']1296 _enum: ['TestEvent']
1329 },1297 },
1330 /**1298 /**
1331 * Lookup122: pallet_maintenance::pallet::Event<T>1299 * Lookup119: pallet_maintenance::pallet::Event<T>
1332 **/1300 **/
1333 PalletMaintenanceEvent: {1301 PalletMaintenanceEvent: {
1334 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1302 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
1335 },1303 },
1336 /**1304 /**
1337 * Lookup123: pallet_test_utils::pallet::Event<T>1305 * Lookup120: pallet_test_utils::pallet::Event<T>
1338 **/1306 **/
1339 PalletTestUtilsEvent: {1307 PalletTestUtilsEvent: {
1340 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1308 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
1341 },1309 },
1342 /**1310 /**
1343 * Lookup124: frame_system::Phase1311 * Lookup121: frame_system::Phase
1344 **/1312 **/
1345 FrameSystemPhase: {1313 FrameSystemPhase: {
1346 _enum: {1314 _enum: {
1347 ApplyExtrinsic: 'u32',1315 ApplyExtrinsic: 'u32',
1348 Finalization: 'Null',1316 Finalization: 'Null',
1349 Initialization: 'Null'1317 Initialization: 'Null'
1350 }1318 }
1351 },1319 },
1352 /**1320 /**
1353 * Lookup126: frame_system::LastRuntimeUpgradeInfo1321 * Lookup124: frame_system::LastRuntimeUpgradeInfo
1354 **/1322 **/
1355 FrameSystemLastRuntimeUpgradeInfo: {1323 FrameSystemLastRuntimeUpgradeInfo: {
1356 specVersion: 'Compact<u32>',1324 specVersion: 'Compact<u32>',
1357 specName: 'Text'1325 specName: 'Text'
1358 },1326 },
1359 /**1327 /**
1360 * Lookup127: frame_system::pallet::Call<T>1328 * Lookup125: frame_system::pallet::Call<T>
1361 **/1329 **/
1362 FrameSystemCall: {1330 FrameSystemCall: {
1363 _enum: {1331 _enum: {
1364 fill_block: {1332 fill_block: {
1394 }1362 }
1395 }1363 }
1396 },1364 },
1397 /**1365 /**
1398 * Lookup132: frame_system::limits::BlockWeights1366 * Lookup130: frame_system::limits::BlockWeights
1399 **/1367 **/
1400 FrameSystemLimitsBlockWeights: {1368 FrameSystemLimitsBlockWeights: {
1401 baseBlock: 'SpWeightsWeightV2Weight',1369 baseBlock: 'SpWeightsWeightV2Weight',
1402 maxBlock: 'SpWeightsWeightV2Weight',1370 maxBlock: 'SpWeightsWeightV2Weight',
1403 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1371 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
1404 },1372 },
1405 /**1373 /**
1406 * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1374 * Lookup131: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1407 **/1375 **/
1408 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1376 FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1409 normal: 'FrameSystemLimitsWeightsPerClass',1377 normal: 'FrameSystemLimitsWeightsPerClass',
1410 operational: 'FrameSystemLimitsWeightsPerClass',1378 operational: 'FrameSystemLimitsWeightsPerClass',
1411 mandatory: 'FrameSystemLimitsWeightsPerClass'1379 mandatory: 'FrameSystemLimitsWeightsPerClass'
1412 },1380 },
1413 /**1381 /**
1414 * Lookup134: frame_system::limits::WeightsPerClass1382 * Lookup132: frame_system::limits::WeightsPerClass
1415 **/1383 **/
1416 FrameSystemLimitsWeightsPerClass: {1384 FrameSystemLimitsWeightsPerClass: {
1417 baseExtrinsic: 'SpWeightsWeightV2Weight',1385 baseExtrinsic: 'SpWeightsWeightV2Weight',
1418 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1386 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
1419 maxTotal: 'Option<SpWeightsWeightV2Weight>',1387 maxTotal: 'Option<SpWeightsWeightV2Weight>',
1420 reserved: 'Option<SpWeightsWeightV2Weight>'1388 reserved: 'Option<SpWeightsWeightV2Weight>'
1421 },1389 },
1422 /**1390 /**
1423 * Lookup136: frame_system::limits::BlockLength1391 * Lookup134: frame_system::limits::BlockLength
1424 **/1392 **/
1425 FrameSystemLimitsBlockLength: {1393 FrameSystemLimitsBlockLength: {
1426 max: 'FrameSupportDispatchPerDispatchClassU32'1394 max: 'FrameSupportDispatchPerDispatchClassU32'
1427 },1395 },
1428 /**1396 /**
1429 * Lookup137: frame_support::dispatch::PerDispatchClass<T>1397 * Lookup135: frame_support::dispatch::PerDispatchClass<T>
1430 **/1398 **/
1431 FrameSupportDispatchPerDispatchClassU32: {1399 FrameSupportDispatchPerDispatchClassU32: {
1432 normal: 'u32',1400 normal: 'u32',
1433 operational: 'u32',1401 operational: 'u32',
1434 mandatory: 'u32'1402 mandatory: 'u32'
1435 },1403 },
1436 /**1404 /**
1437 * Lookup138: sp_weights::RuntimeDbWeight1405 * Lookup136: sp_weights::RuntimeDbWeight
1438 **/1406 **/
1439 SpWeightsRuntimeDbWeight: {1407 SpWeightsRuntimeDbWeight: {
1440 read: 'u64',1408 read: 'u64',
1441 write: 'u64'1409 write: 'u64'
1442 },1410 },
1443 /**1411 /**
1444 * Lookup139: sp_version::RuntimeVersion1412 * Lookup137: sp_version::RuntimeVersion
1445 **/1413 **/
1446 SpVersionRuntimeVersion: {1414 SpVersionRuntimeVersion: {
1447 specName: 'Text',1415 specName: 'Text',
1448 implName: 'Text',1416 implName: 'Text',
1453 transactionVersion: 'u32',1421 transactionVersion: 'u32',
1454 stateVersion: 'u8'1422 stateVersion: 'u8'
1455 },1423 },
1456 /**1424 /**
1457 * Lookup144: frame_system::pallet::Error<T>1425 * Lookup142: frame_system::pallet::Error<T>
1458 **/1426 **/
1459 FrameSystemError: {1427 FrameSystemError: {
1460 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1428 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
1461 },1429 },
1462 /**1430 /**
1463 * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1431 * Lookup143: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
1464 **/1432 **/
1465 PolkadotPrimitivesV2PersistedValidationData: {1433 PolkadotPrimitivesV2PersistedValidationData: {
1466 parentHead: 'Bytes',1434 parentHead: 'Bytes',
1467 relayParentNumber: 'u32',1435 relayParentNumber: 'u32',
1468 relayParentStorageRoot: 'H256',1436 relayParentStorageRoot: 'H256',
1469 maxPovSize: 'u32'1437 maxPovSize: 'u32'
1470 },1438 },
1471 /**1439 /**
1472 * Lookup148: polkadot_primitives::v2::UpgradeRestriction1440 * Lookup146: polkadot_primitives::v2::UpgradeRestriction
1473 **/1441 **/
1474 PolkadotPrimitivesV2UpgradeRestriction: {1442 PolkadotPrimitivesV2UpgradeRestriction: {
1475 _enum: ['Present']1443 _enum: ['Present']
1476 },1444 },
1477 /**1445 /**
1478 * Lookup149: sp_trie::storage_proof::StorageProof1446 * Lookup147: sp_trie::storage_proof::StorageProof
1479 **/1447 **/
1480 SpTrieStorageProof: {1448 SpTrieStorageProof: {
1481 trieNodes: 'BTreeSet<Bytes>'1449 trieNodes: 'BTreeSet<Bytes>'
1482 },1450 },
1483 /**1451 /**
1484 * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1452 * Lookup149: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
1485 **/1453 **/
1486 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1454 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
1487 dmqMqcHead: 'H256',1455 dmqMqcHead: 'H256',
1488 relayDispatchQueueSize: '(u32,u32)',1456 relayDispatchQueueSize: '(u32,u32)',
1489 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1457 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
1490 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1458 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
1491 },1459 },
1492 /**1460 /**
1493 * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel1461 * Lookup152: polkadot_primitives::v2::AbridgedHrmpChannel
1494 **/1462 **/
1495 PolkadotPrimitivesV2AbridgedHrmpChannel: {1463 PolkadotPrimitivesV2AbridgedHrmpChannel: {
1496 maxCapacity: 'u32',1464 maxCapacity: 'u32',
1497 maxTotalSize: 'u32',1465 maxTotalSize: 'u32',
1500 totalSize: 'u32',1468 totalSize: 'u32',
1501 mqcHead: 'Option<H256>'1469 mqcHead: 'Option<H256>'
1502 },1470 },
1503 /**1471 /**
1504 * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration1472 * Lookup153: polkadot_primitives::v2::AbridgedHostConfiguration
1505 **/1473 **/
1506 PolkadotPrimitivesV2AbridgedHostConfiguration: {1474 PolkadotPrimitivesV2AbridgedHostConfiguration: {
1507 maxCodeSize: 'u32',1475 maxCodeSize: 'u32',
1508 maxHeadDataSize: 'u32',1476 maxHeadDataSize: 'u32',
1514 validationUpgradeCooldown: 'u32',1482 validationUpgradeCooldown: 'u32',
1515 validationUpgradeDelay: 'u32'1483 validationUpgradeDelay: 'u32'
1516 },1484 },
1517 /**1485 /**
1518 * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1486 * Lookup159: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
1519 **/1487 **/
1520 PolkadotCorePrimitivesOutboundHrmpMessage: {1488 PolkadotCorePrimitivesOutboundHrmpMessage: {
1521 recipient: 'u32',1489 recipient: 'u32',
1522 data: 'Bytes'1490 data: 'Bytes'
1523 },1491 },
1524 /**1492 /**
1525 * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>1493 * Lookup160: cumulus_pallet_parachain_system::pallet::Call<T>
1526 **/1494 **/
1527 CumulusPalletParachainSystemCall: {1495 CumulusPalletParachainSystemCall: {
1528 _enum: {1496 _enum: {
1529 set_validation_data: {1497 set_validation_data: {
1540 }1508 }
1541 }1509 }
1542 },1510 },
1543 /**1511 /**
1544 * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData1512 * Lookup161: cumulus_primitives_parachain_inherent::ParachainInherentData
1545 **/1513 **/
1546 CumulusPrimitivesParachainInherentParachainInherentData: {1514 CumulusPrimitivesParachainInherentParachainInherentData: {
1547 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1515 validationData: 'PolkadotPrimitivesV2PersistedValidationData',
1548 relayChainState: 'SpTrieStorageProof',1516 relayChainState: 'SpTrieStorageProof',
1549 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1517 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
1550 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1518 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
1551 },1519 },
1552 /**1520 /**
1553 * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1521 * Lookup163: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
1554 **/1522 **/
1555 PolkadotCorePrimitivesInboundDownwardMessage: {1523 PolkadotCorePrimitivesInboundDownwardMessage: {
1556 sentAt: 'u32',1524 sentAt: 'u32',
1557 msg: 'Bytes'1525 msg: 'Bytes'
1558 },1526 },
1559 /**1527 /**
1560 * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1528 * Lookup166: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
1561 **/1529 **/
1562 PolkadotCorePrimitivesInboundHrmpMessage: {1530 PolkadotCorePrimitivesInboundHrmpMessage: {
1563 sentAt: 'u32',1531 sentAt: 'u32',
1564 data: 'Bytes'1532 data: 'Bytes'
1565 },1533 },
1566 /**1534 /**
1567 * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>1535 * Lookup169: cumulus_pallet_parachain_system::pallet::Error<T>
1568 **/1536 **/
1569 CumulusPalletParachainSystemError: {1537 CumulusPalletParachainSystemError: {
1570 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1538 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
1571 },1539 },
1572 /**1540 /**
1573 * Lookup173: pallet_balances::BalanceLock<Balance>1541 * Lookup171: pallet_balances::BalanceLock<Balance>
1574 **/1542 **/
1575 PalletBalancesBalanceLock: {1543 PalletBalancesBalanceLock: {
1576 id: '[u8;8]',1544 id: '[u8;8]',
1577 amount: 'u128',1545 amount: 'u128',
1578 reasons: 'PalletBalancesReasons'1546 reasons: 'PalletBalancesReasons'
1579 },1547 },
1580 /**1548 /**
1581 * Lookup174: pallet_balances::Reasons1549 * Lookup172: pallet_balances::Reasons
1582 **/1550 **/
1583 PalletBalancesReasons: {1551 PalletBalancesReasons: {
1584 _enum: ['Fee', 'Misc', 'All']1552 _enum: ['Fee', 'Misc', 'All']
1585 },1553 },
1586 /**1554 /**
1587 * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>1555 * Lookup175: pallet_balances::ReserveData<ReserveIdentifier, Balance>
1588 **/1556 **/
1589 PalletBalancesReserveData: {1557 PalletBalancesReserveData: {
1590 id: '[u8;16]',1558 id: '[u8;16]',
1591 amount: 'u128'1559 amount: 'u128'
1592 },1560 },
1593 /**1561 /**
1594 * Lookup179: pallet_balances::Releases1562 * Lookup177: pallet_balances::Releases
1595 **/1563 **/
1596 PalletBalancesReleases: {1564 PalletBalancesReleases: {
1597 _enum: ['V1_0_0', 'V2_0_0']1565 _enum: ['V1_0_0', 'V2_0_0']
1598 },1566 },
1599 /**1567 /**
1600 * Lookup180: pallet_balances::pallet::Call<T, I>1568 * Lookup178: pallet_balances::pallet::Call<T, I>
1601 **/1569 **/
1602 PalletBalancesCall: {1570 PalletBalancesCall: {
1603 _enum: {1571 _enum: {
1604 transfer: {1572 transfer: {
1629 }1597 }
1630 }1598 }
1631 },1599 },
1632 /**1600 /**
1633 * Lookup183: pallet_balances::pallet::Error<T, I>1601 * Lookup181: pallet_balances::pallet::Error<T, I>
1634 **/1602 **/
1635 PalletBalancesError: {1603 PalletBalancesError: {
1636 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1604 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
1637 },1605 },
1638 /**1606 /**
1639 * Lookup185: pallet_timestamp::pallet::Call<T>1607 * Lookup183: pallet_timestamp::pallet::Call<T>
1640 **/1608 **/
1641 PalletTimestampCall: {1609 PalletTimestampCall: {
1642 _enum: {1610 _enum: {
1643 set: {1611 set: {
1644 now: 'Compact<u64>'1612 now: 'Compact<u64>'
1645 }1613 }
1646 }1614 }
1647 },1615 },
1648 /**1616 /**
1649 * Lookup187: pallet_transaction_payment::Releases1617 * Lookup185: pallet_transaction_payment::Releases
1650 **/1618 **/
1651 PalletTransactionPaymentReleases: {1619 PalletTransactionPaymentReleases: {
1652 _enum: ['V1Ancient', 'V2']1620 _enum: ['V1Ancient', 'V2']
1653 },1621 },
1654 /**1622 /**
1655 * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1623 * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
1656 **/1624 **/
1657 PalletTreasuryProposal: {1625 PalletTreasuryProposal: {
1658 proposer: 'AccountId32',1626 proposer: 'AccountId32',
1659 value: 'u128',1627 value: 'u128',
1660 beneficiary: 'AccountId32',1628 beneficiary: 'AccountId32',
1661 bond: 'u128'1629 bond: 'u128'
1662 },1630 },
1663 /**1631 /**
1664 * Lookup191: pallet_treasury::pallet::Call<T, I>1632 * Lookup189: pallet_treasury::pallet::Call<T, I>
1665 **/1633 **/
1666 PalletTreasuryCall: {1634 PalletTreasuryCall: {
1667 _enum: {1635 _enum: {
1668 propose_spend: {1636 propose_spend: {
1684 }1652 }
1685 }1653 }
1686 },1654 },
1687 /**1655 /**
1688 * Lookup194: frame_support::PalletId1656 * Lookup192: frame_support::PalletId
1689 **/1657 **/
1690 FrameSupportPalletId: '[u8;8]',1658 FrameSupportPalletId: '[u8;8]',
1691 /**1659 /**
1692 * Lookup195: pallet_treasury::pallet::Error<T, I>1660 * Lookup193: pallet_treasury::pallet::Error<T, I>
1693 **/1661 **/
1694 PalletTreasuryError: {1662 PalletTreasuryError: {
1695 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1663 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
1696 },1664 },
1697 /**1665 /**
1698 * Lookup196: pallet_sudo::pallet::Call<T>1666 * Lookup194: pallet_sudo::pallet::Call<T>
1699 **/1667 **/
1700 PalletSudoCall: {1668 PalletSudoCall: {
1701 _enum: {1669 _enum: {
1702 sudo: {1670 sudo: {
1718 }1686 }
1719 }1687 }
1720 },1688 },
1721 /**1689 /**
1722 * Lookup198: orml_vesting::module::Call<T>1690 * Lookup196: orml_vesting::module::Call<T>
1723 **/1691 **/
1724 OrmlVestingModuleCall: {1692 OrmlVestingModuleCall: {
1725 _enum: {1693 _enum: {
1726 claim: 'Null',1694 claim: 'Null',
1737 }1705 }
1738 }1706 }
1739 },1707 },
1740 /**1708 /**
1741 * Lookup200: orml_xtokens::module::Call<T>1709 * Lookup198: orml_xtokens::module::Call<T>
1742 **/1710 **/
1743 OrmlXtokensModuleCall: {1711 OrmlXtokensModuleCall: {
1744 _enum: {1712 _enum: {
1745 transfer: {1713 transfer: {
1780 }1748 }
1781 }1749 }
1782 },1750 },
1783 /**1751 /**
1784 * Lookup201: xcm::VersionedMultiAsset1752 * Lookup199: xcm::VersionedMultiAsset
1785 **/1753 **/
1786 XcmVersionedMultiAsset: {1754 XcmVersionedMultiAsset: {
1787 _enum: {1755 _enum: {
1788 V0: 'XcmV0MultiAsset',1756 V0: 'XcmV0MultiAsset',
1789 V1: 'XcmV1MultiAsset'1757 V1: 'XcmV1MultiAsset'
1790 }1758 }
1791 },1759 },
1792 /**1760 /**
1793 * Lookup204: orml_tokens::module::Call<T>1761 * Lookup202: orml_tokens::module::Call<T>
1794 **/1762 **/
1795 OrmlTokensModuleCall: {1763 OrmlTokensModuleCall: {
1796 _enum: {1764 _enum: {
1797 transfer: {1765 transfer: {
1823 }1791 }
1824 }1792 }
1825 },1793 },
1826 /**1794 /**
1827 * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>1795 * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>
1828 **/1796 **/
1829 CumulusPalletXcmpQueueCall: {1797 CumulusPalletXcmpQueueCall: {
1830 _enum: {1798 _enum: {
1831 service_overweight: {1799 service_overweight: {
1872 }1840 }
1873 }1841 }
1874 },1842 },
1875 /**1843 /**
1876 * Lookup206: pallet_xcm::pallet::Call<T>1844 * Lookup204: pallet_xcm::pallet::Call<T>
1877 **/1845 **/
1878 PalletXcmCall: {1846 PalletXcmCall: {
1879 _enum: {1847 _enum: {
1880 send: {1848 send: {
1926 }1894 }
1927 }1895 }
1928 },1896 },
1929 /**1897 /**
1930 * Lookup207: xcm::VersionedXcm<RuntimeCall>1898 * Lookup205: xcm::VersionedXcm<RuntimeCall>
1931 **/1899 **/
1932 XcmVersionedXcm: {1900 XcmVersionedXcm: {
1933 _enum: {1901 _enum: {
1934 V0: 'XcmV0Xcm',1902 V0: 'XcmV0Xcm',
1935 V1: 'XcmV1Xcm',1903 V1: 'XcmV1Xcm',
1936 V2: 'XcmV2Xcm'1904 V2: 'XcmV2Xcm'
1937 }1905 }
1938 },1906 },
1939 /**1907 /**
1940 * Lookup208: xcm::v0::Xcm<RuntimeCall>1908 * Lookup206: xcm::v0::Xcm<RuntimeCall>
1941 **/1909 **/
1942 XcmV0Xcm: {1910 XcmV0Xcm: {
1943 _enum: {1911 _enum: {
1944 WithdrawAsset: {1912 WithdrawAsset: {
1990 }1958 }
1991 }1959 }
1992 },1960 },
1993 /**1961 /**
1994 * Lookup210: xcm::v0::order::Order<RuntimeCall>1962 * Lookup208: xcm::v0::order::Order<RuntimeCall>
1995 **/1963 **/
1996 XcmV0Order: {1964 XcmV0Order: {
1997 _enum: {1965 _enum: {
1998 Null: 'Null',1966 Null: 'Null',
2033 }2001 }
2034 }2002 }
2035 },2003 },
2036 /**2004 /**
2037 * Lookup212: xcm::v0::Response2005 * Lookup210: xcm::v0::Response
2038 **/2006 **/
2039 XcmV0Response: {2007 XcmV0Response: {
2040 _enum: {2008 _enum: {
2041 Assets: 'Vec<XcmV0MultiAsset>'2009 Assets: 'Vec<XcmV0MultiAsset>'
2042 }2010 }
2043 },2011 },
2044 /**2012 /**
2045 * Lookup213: xcm::v1::Xcm<RuntimeCall>2013 * Lookup211: xcm::v1::Xcm<RuntimeCall>
2046 **/2014 **/
2047 XcmV1Xcm: {2015 XcmV1Xcm: {
2048 _enum: {2016 _enum: {
2049 WithdrawAsset: {2017 WithdrawAsset: {
2100 UnsubscribeVersion: 'Null'2068 UnsubscribeVersion: 'Null'
2101 }2069 }
2102 },2070 },
2103 /**2071 /**
2104 * Lookup215: xcm::v1::order::Order<RuntimeCall>2072 * Lookup213: xcm::v1::order::Order<RuntimeCall>
2105 **/2073 **/
2106 XcmV1Order: {2074 XcmV1Order: {
2107 _enum: {2075 _enum: {
2108 Noop: 'Null',2076 Noop: 'Null',
2145 }2113 }
2146 }2114 }
2147 },2115 },
2148 /**2116 /**
2149 * Lookup217: xcm::v1::Response2117 * Lookup215: xcm::v1::Response
2150 **/2118 **/
2151 XcmV1Response: {2119 XcmV1Response: {
2152 _enum: {2120 _enum: {
2153 Assets: 'XcmV1MultiassetMultiAssets',2121 Assets: 'XcmV1MultiassetMultiAssets',
2154 Version: 'u32'2122 Version: 'u32'
2155 }2123 }
2156 },2124 },
2157 /**2125 /**
2158 * Lookup231: cumulus_pallet_xcm::pallet::Call<T>2126 * Lookup229: cumulus_pallet_xcm::pallet::Call<T>
2159 **/2127 **/
2160 CumulusPalletXcmCall: 'Null',2128 CumulusPalletXcmCall: 'Null',
2161 /**2129 /**
2162 * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>2130 * Lookup230: cumulus_pallet_dmp_queue::pallet::Call<T>
2163 **/2131 **/
2164 CumulusPalletDmpQueueCall: {2132 CumulusPalletDmpQueueCall: {
2165 _enum: {2133 _enum: {
2166 service_overweight: {2134 service_overweight: {
2169 }2137 }
2170 }2138 }
2171 },2139 },
2172 /**2140 /**
2173 * Lookup233: pallet_inflation::pallet::Call<T>2141 * Lookup231: pallet_inflation::pallet::Call<T>
2174 **/2142 **/
2175 PalletInflationCall: {2143 PalletInflationCall: {
2176 _enum: {2144 _enum: {
2177 start_inflation: {2145 start_inflation: {
2178 inflationStartRelayBlock: 'u32'2146 inflationStartRelayBlock: 'u32'
2179 }2147 }
2180 }2148 }
2181 },2149 },
2182 /**2150 /**
2183 * Lookup234: pallet_unique::Call<T>2151 * Lookup232: pallet_unique::Call<T>
2184 **/2152 **/
2185 PalletUniqueCall: {2153 PalletUniqueCall: {
2186 _enum: {2154 _enum: {
2187 create_collection: {2155 create_collection: {
2316 }2284 }
2317 }2285 }
2318 },2286 },
2319 /**2287 /**
2320 * Lookup239: up_data_structs::CollectionMode2288 * Lookup237: up_data_structs::CollectionMode
2321 **/2289 **/
2322 UpDataStructsCollectionMode: {2290 UpDataStructsCollectionMode: {
2323 _enum: {2291 _enum: {
2324 NFT: 'Null',2292 NFT: 'Null',
2325 Fungible: 'u8',2293 Fungible: 'u8',
2326 ReFungible: 'Null'2294 ReFungible: 'Null'
2327 }2295 }
2328 },2296 },
2329 /**2297 /**
2330 * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2298 * Lookup238: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
2331 **/2299 **/
2332 UpDataStructsCreateCollectionData: {2300 UpDataStructsCreateCollectionData: {
2333 mode: 'UpDataStructsCollectionMode',2301 mode: 'UpDataStructsCollectionMode',
2334 access: 'Option<UpDataStructsAccessMode>',2302 access: 'Option<UpDataStructsAccessMode>',
2341 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2309 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
2342 properties: 'Vec<UpDataStructsProperty>'2310 properties: 'Vec<UpDataStructsProperty>'
2343 },2311 },
2344 /**2312 /**
2345 * Lookup242: up_data_structs::AccessMode2313 * Lookup240: up_data_structs::AccessMode
2346 **/2314 **/
2347 UpDataStructsAccessMode: {2315 UpDataStructsAccessMode: {
2348 _enum: ['Normal', 'AllowList']2316 _enum: ['Normal', 'AllowList']
2349 },2317 },
2350 /**2318 /**
2351 * Lookup244: up_data_structs::CollectionLimits2319 * Lookup242: up_data_structs::CollectionLimits
2352 **/2320 **/
2353 UpDataStructsCollectionLimits: {2321 UpDataStructsCollectionLimits: {
2354 accountTokenOwnershipLimit: 'Option<u32>',2322 accountTokenOwnershipLimit: 'Option<u32>',
2355 sponsoredDataSize: 'Option<u32>',2323 sponsoredDataSize: 'Option<u32>',
2361 ownerCanDestroy: 'Option<bool>',2329 ownerCanDestroy: 'Option<bool>',
2362 transfersEnabled: 'Option<bool>'2330 transfersEnabled: 'Option<bool>'
2363 },2331 },
2364 /**2332 /**
2365 * Lookup246: up_data_structs::SponsoringRateLimit2333 * Lookup244: up_data_structs::SponsoringRateLimit
2366 **/2334 **/
2367 UpDataStructsSponsoringRateLimit: {2335 UpDataStructsSponsoringRateLimit: {
2368 _enum: {2336 _enum: {
2369 SponsoringDisabled: 'Null',2337 SponsoringDisabled: 'Null',
2370 Blocks: 'u32'2338 Blocks: 'u32'
2371 }2339 }
2372 },2340 },
2373 /**2341 /**
2374 * Lookup249: up_data_structs::CollectionPermissions2342 * Lookup247: up_data_structs::CollectionPermissions
2375 **/2343 **/
2376 UpDataStructsCollectionPermissions: {2344 UpDataStructsCollectionPermissions: {
2377 access: 'Option<UpDataStructsAccessMode>',2345 access: 'Option<UpDataStructsAccessMode>',
2378 mintMode: 'Option<bool>',2346 mintMode: 'Option<bool>',
2379 nesting: 'Option<UpDataStructsNestingPermissions>'2347 nesting: 'Option<UpDataStructsNestingPermissions>'
2380 },2348 },
2381 /**2349 /**
2382 * Lookup251: up_data_structs::NestingPermissions2350 * Lookup249: up_data_structs::NestingPermissions
2383 **/2351 **/
2384 UpDataStructsNestingPermissions: {2352 UpDataStructsNestingPermissions: {
2385 tokenOwner: 'bool',2353 tokenOwner: 'bool',
2386 collectionAdmin: 'bool',2354 collectionAdmin: 'bool',
2387 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2355 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
2388 },2356 },
2389 /**2357 /**
2390 * Lookup253: up_data_structs::OwnerRestrictedSet2358 * Lookup251: up_data_structs::OwnerRestrictedSet
2391 **/2359 **/
2392 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2360 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2393 /**2361 /**
2394 * Lookup258: up_data_structs::PropertyKeyPermission2362 * Lookup256: up_data_structs::PropertyKeyPermission
2395 **/2363 **/
2396 UpDataStructsPropertyKeyPermission: {2364 UpDataStructsPropertyKeyPermission: {
2397 key: 'Bytes',2365 key: 'Bytes',
2398 permission: 'UpDataStructsPropertyPermission'2366 permission: 'UpDataStructsPropertyPermission'
2399 },2367 },
2400 /**2368 /**
2401 * Lookup259: up_data_structs::PropertyPermission2369 * Lookup257: up_data_structs::PropertyPermission
2402 **/2370 **/
2403 UpDataStructsPropertyPermission: {2371 UpDataStructsPropertyPermission: {
2404 mutable: 'bool',2372 mutable: 'bool',
2405 collectionAdmin: 'bool',2373 collectionAdmin: 'bool',
2406 tokenOwner: 'bool'2374 tokenOwner: 'bool'
2407 },2375 },
2408 /**2376 /**
2409 * Lookup262: up_data_structs::Property2377 * Lookup260: up_data_structs::Property
2410 **/2378 **/
2411 UpDataStructsProperty: {2379 UpDataStructsProperty: {
2412 key: 'Bytes',2380 key: 'Bytes',
2413 value: 'Bytes'2381 value: 'Bytes'
2414 },2382 },
2415 /**2383 /**
2416 * Lookup265: up_data_structs::CreateItemData2384 * Lookup263: up_data_structs::CreateItemData
2417 **/2385 **/
2418 UpDataStructsCreateItemData: {2386 UpDataStructsCreateItemData: {
2419 _enum: {2387 _enum: {
2420 NFT: 'UpDataStructsCreateNftData',2388 NFT: 'UpDataStructsCreateNftData',
2421 Fungible: 'UpDataStructsCreateFungibleData',2389 Fungible: 'UpDataStructsCreateFungibleData',
2422 ReFungible: 'UpDataStructsCreateReFungibleData'2390 ReFungible: 'UpDataStructsCreateReFungibleData'
2423 }2391 }
2424 },2392 },
2425 /**2393 /**
2426 * Lookup266: up_data_structs::CreateNftData2394 * Lookup264: up_data_structs::CreateNftData
2427 **/2395 **/
2428 UpDataStructsCreateNftData: {2396 UpDataStructsCreateNftData: {
2429 properties: 'Vec<UpDataStructsProperty>'2397 properties: 'Vec<UpDataStructsProperty>'
2430 },2398 },
2431 /**2399 /**
2432 * Lookup267: up_data_structs::CreateFungibleData2400 * Lookup265: up_data_structs::CreateFungibleData
2433 **/2401 **/
2434 UpDataStructsCreateFungibleData: {2402 UpDataStructsCreateFungibleData: {
2435 value: 'u128'2403 value: 'u128'
2436 },2404 },
2437 /**2405 /**
2438 * Lookup268: up_data_structs::CreateReFungibleData2406 * Lookup266: up_data_structs::CreateReFungibleData
2439 **/2407 **/
2440 UpDataStructsCreateReFungibleData: {2408 UpDataStructsCreateReFungibleData: {
2441 pieces: 'u128',2409 pieces: 'u128',
2442 properties: 'Vec<UpDataStructsProperty>'2410 properties: 'Vec<UpDataStructsProperty>'
2443 },2411 },
2444 /**2412 /**
2445 * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2413 * Lookup269: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2446 **/2414 **/
2447 UpDataStructsCreateItemExData: {2415 UpDataStructsCreateItemExData: {
2448 _enum: {2416 _enum: {
2449 NFT: 'Vec<UpDataStructsCreateNftExData>',2417 NFT: 'Vec<UpDataStructsCreateNftExData>',
2452 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2420 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'
2453 }2421 }
2454 },2422 },
2455 /**2423 /**
2456 * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2424 * Lookup271: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2457 **/2425 **/
2458 UpDataStructsCreateNftExData: {2426 UpDataStructsCreateNftExData: {
2459 properties: 'Vec<UpDataStructsProperty>',2427 properties: 'Vec<UpDataStructsProperty>',
2460 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2428 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2461 },2429 },
2462 /**2430 /**
2463 * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2431 * Lookup278: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2464 **/2432 **/
2465 UpDataStructsCreateRefungibleExSingleOwner: {2433 UpDataStructsCreateRefungibleExSingleOwner: {
2466 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2434 user: 'PalletEvmAccountBasicCrossAccountIdRepr',
2467 pieces: 'u128',2435 pieces: 'u128',
2468 properties: 'Vec<UpDataStructsProperty>'2436 properties: 'Vec<UpDataStructsProperty>'
2469 },2437 },
2470 /**2438 /**
2471 * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2439 * Lookup280: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2472 **/2440 **/
2473 UpDataStructsCreateRefungibleExMultipleOwners: {2441 UpDataStructsCreateRefungibleExMultipleOwners: {
2474 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2442 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
2475 properties: 'Vec<UpDataStructsProperty>'2443 properties: 'Vec<UpDataStructsProperty>'
2476 },2444 },
2477 /**
2478 * Lookup283: pallet_unique_scheduler_v2::pallet::Call<T>
2479 **/
2480 PalletUniqueSchedulerV2Call: {
2481 _enum: {
2482 schedule: {
2483 when: 'u32',
2484 maybePeriodic: 'Option<(u32,u32)>',
2485 priority: 'Option<u8>',
2486 call: 'Call',
2487 },
2488 cancel: {
2489 when: 'u32',
2490 index: 'u32',
2491 },
2492 schedule_named: {
2493 id: '[u8;32]',
2494 when: 'u32',
2495 maybePeriodic: 'Option<(u32,u32)>',
2496 priority: 'Option<u8>',
2497 call: 'Call',
2498 },
2499 cancel_named: {
2500 id: '[u8;32]',
2501 },
2502 schedule_after: {
2503 after: 'u32',
2504 maybePeriodic: 'Option<(u32,u32)>',
2505 priority: 'Option<u8>',
2506 call: 'Call',
2507 },
2508 schedule_named_after: {
2509 id: '[u8;32]',
2510 after: 'u32',
2511 maybePeriodic: 'Option<(u32,u32)>',
2512 priority: 'Option<u8>',
2513 call: 'Call',
2514 },
2515 change_named_priority: {
2516 id: '[u8;32]',
2517 priority: 'u8'
2518 }
2519 }
2520 },
2521 /**2445 /**
2522 * Lookup286: pallet_configuration::pallet::Call<T>2446 * Lookup281: pallet_configuration::pallet::Call<T>
2523 **/2447 **/
2524 PalletConfigurationCall: {2448 PalletConfigurationCall: {
2525 _enum: {2449 _enum: {
2526 set_weight_to_fee_coefficient_override: {2450 set_weight_to_fee_coefficient_override: {
2534 }2458 }
2535 }2459 }
2536 },2460 },
2537 /**2461 /**
2538 * Lookup291: pallet_template_transaction_payment::Call<T>2462 * Lookup286: pallet_template_transaction_payment::Call<T>
2539 **/2463 **/
2540 PalletTemplateTransactionPaymentCall: 'Null',2464 PalletTemplateTransactionPaymentCall: 'Null',
2541 /**2465 /**
2542 * Lookup292: pallet_structure::pallet::Call<T>2466 * Lookup287: pallet_structure::pallet::Call<T>
2543 **/2467 **/
2544 PalletStructureCall: 'Null',2468 PalletStructureCall: 'Null',
2545 /**2469 /**
2546 * Lookup293: pallet_rmrk_core::pallet::Call<T>2470 * Lookup288: pallet_rmrk_core::pallet::Call<T>
2547 **/2471 **/
2548 PalletRmrkCoreCall: {2472 PalletRmrkCoreCall: {
2549 _enum: {2473 _enum: {
2550 create_collection: {2474 create_collection: {
2633 }2557 }
2634 }2558 }
2635 },2559 },
2636 /**2560 /**
2637 * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2561 * Lookup294: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2638 **/2562 **/
2639 RmrkTraitsResourceResourceTypes: {2563 RmrkTraitsResourceResourceTypes: {
2640 _enum: {2564 _enum: {
2641 Basic: 'RmrkTraitsResourceBasicResource',2565 Basic: 'RmrkTraitsResourceBasicResource',
2642 Composable: 'RmrkTraitsResourceComposableResource',2566 Composable: 'RmrkTraitsResourceComposableResource',
2643 Slot: 'RmrkTraitsResourceSlotResource'2567 Slot: 'RmrkTraitsResourceSlotResource'
2644 }2568 }
2645 },2569 },
2646 /**2570 /**
2647 * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2571 * Lookup296: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2648 **/2572 **/
2649 RmrkTraitsResourceBasicResource: {2573 RmrkTraitsResourceBasicResource: {
2650 src: 'Option<Bytes>',2574 src: 'Option<Bytes>',
2651 metadata: 'Option<Bytes>',2575 metadata: 'Option<Bytes>',
2652 license: 'Option<Bytes>',2576 license: 'Option<Bytes>',
2653 thumb: 'Option<Bytes>'2577 thumb: 'Option<Bytes>'
2654 },2578 },
2655 /**2579 /**
2656 * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2580 * Lookup298: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2657 **/2581 **/
2658 RmrkTraitsResourceComposableResource: {2582 RmrkTraitsResourceComposableResource: {
2659 parts: 'Vec<u32>',2583 parts: 'Vec<u32>',
2660 base: 'u32',2584 base: 'u32',
2663 license: 'Option<Bytes>',2587 license: 'Option<Bytes>',
2664 thumb: 'Option<Bytes>'2588 thumb: 'Option<Bytes>'
2665 },2589 },
2666 /**2590 /**
2667 * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2591 * Lookup299: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2668 **/2592 **/
2669 RmrkTraitsResourceSlotResource: {2593 RmrkTraitsResourceSlotResource: {
2670 base: 'u32',2594 base: 'u32',
2671 src: 'Option<Bytes>',2595 src: 'Option<Bytes>',
2674 license: 'Option<Bytes>',2598 license: 'Option<Bytes>',
2675 thumb: 'Option<Bytes>'2599 thumb: 'Option<Bytes>'
2676 },2600 },
2677 /**2601 /**
2678 * Lookup307: pallet_rmrk_equip::pallet::Call<T>2602 * Lookup302: pallet_rmrk_equip::pallet::Call<T>
2679 **/2603 **/
2680 PalletRmrkEquipCall: {2604 PalletRmrkEquipCall: {
2681 _enum: {2605 _enum: {
2682 create_base: {2606 create_base: {
2695 }2619 }
2696 }2620 }
2697 },2621 },
2698 /**2622 /**
2699 * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2623 * Lookup305: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2700 **/2624 **/
2701 RmrkTraitsPartPartType: {2625 RmrkTraitsPartPartType: {
2702 _enum: {2626 _enum: {
2703 FixedPart: 'RmrkTraitsPartFixedPart',2627 FixedPart: 'RmrkTraitsPartFixedPart',
2704 SlotPart: 'RmrkTraitsPartSlotPart'2628 SlotPart: 'RmrkTraitsPartSlotPart'
2705 }2629 }
2706 },2630 },
2707 /**2631 /**
2708 * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2632 * Lookup307: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2709 **/2633 **/
2710 RmrkTraitsPartFixedPart: {2634 RmrkTraitsPartFixedPart: {
2711 id: 'u32',2635 id: 'u32',
2712 z: 'u32',2636 z: 'u32',
2713 src: 'Bytes'2637 src: 'Bytes'
2714 },2638 },
2715 /**2639 /**
2716 * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2640 * Lookup308: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2717 **/2641 **/
2718 RmrkTraitsPartSlotPart: {2642 RmrkTraitsPartSlotPart: {
2719 id: 'u32',2643 id: 'u32',
2720 equippable: 'RmrkTraitsPartEquippableList',2644 equippable: 'RmrkTraitsPartEquippableList',
2721 src: 'Bytes',2645 src: 'Bytes',
2722 z: 'u32'2646 z: 'u32'
2723 },2647 },
2724 /**2648 /**
2725 * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2649 * Lookup309: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2726 **/2650 **/
2727 RmrkTraitsPartEquippableList: {2651 RmrkTraitsPartEquippableList: {
2728 _enum: {2652 _enum: {
2729 All: 'Null',2653 All: 'Null',
2730 Empty: 'Null',2654 Empty: 'Null',
2731 Custom: 'Vec<u32>'2655 Custom: 'Vec<u32>'
2732 }2656 }
2733 },2657 },
2734 /**2658 /**
2735 * Lookup316: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>2659 * Lookup311: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
2736 **/2660 **/
2737 RmrkTraitsTheme: {2661 RmrkTraitsTheme: {
2738 name: 'Bytes',2662 name: 'Bytes',
2739 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2663 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
2740 inherit: 'bool'2664 inherit: 'bool'
2741 },2665 },
2742 /**2666 /**
2743 * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2667 * Lookup313: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2744 **/2668 **/
2745 RmrkTraitsThemeThemeProperty: {2669 RmrkTraitsThemeThemeProperty: {
2746 key: 'Bytes',2670 key: 'Bytes',
2747 value: 'Bytes'2671 value: 'Bytes'
2748 },2672 },
2749 /**2673 /**
2750 * Lookup320: pallet_app_promotion::pallet::Call<T>2674 * Lookup315: pallet_app_promotion::pallet::Call<T>
2751 **/2675 **/
2752 PalletAppPromotionCall: {2676 PalletAppPromotionCall: {
2753 _enum: {2677 _enum: {
2754 set_admin_address: {2678 set_admin_address: {
2775 }2699 }
2776 }2700 }
2777 },2701 },
2778 /**2702 /**
2779 * Lookup321: pallet_foreign_assets::module::Call<T>2703 * Lookup317: pallet_foreign_assets::module::Call<T>
2780 **/2704 **/
2781 PalletForeignAssetsModuleCall: {2705 PalletForeignAssetsModuleCall: {
2782 _enum: {2706 _enum: {
2783 register_foreign_asset: {2707 register_foreign_asset: {
2792 }2716 }
2793 }2717 }
2794 },2718 },
2795 /**2719 /**
2796 * Lookup322: pallet_evm::pallet::Call<T>2720 * Lookup318: pallet_evm::pallet::Call<T>
2797 **/2721 **/
2798 PalletEvmCall: {2722 PalletEvmCall: {
2799 _enum: {2723 _enum: {
2800 withdraw: {2724 withdraw: {
2835 }2759 }
2836 }2760 }
2837 },2761 },
2838 /**2762 /**
2839 * Lookup328: pallet_ethereum::pallet::Call<T>2763 * Lookup324: pallet_ethereum::pallet::Call<T>
2840 **/2764 **/
2841 PalletEthereumCall: {2765 PalletEthereumCall: {
2842 _enum: {2766 _enum: {
2843 transact: {2767 transact: {
2844 transaction: 'EthereumTransactionTransactionV2'2768 transaction: 'EthereumTransactionTransactionV2'
2845 }2769 }
2846 }2770 }
2847 },2771 },
2848 /**2772 /**
2849 * Lookup329: ethereum::transaction::TransactionV22773 * Lookup325: ethereum::transaction::TransactionV2
2850 **/2774 **/
2851 EthereumTransactionTransactionV2: {2775 EthereumTransactionTransactionV2: {
2852 _enum: {2776 _enum: {
2853 Legacy: 'EthereumTransactionLegacyTransaction',2777 Legacy: 'EthereumTransactionLegacyTransaction',
2854 EIP2930: 'EthereumTransactionEip2930Transaction',2778 EIP2930: 'EthereumTransactionEip2930Transaction',
2855 EIP1559: 'EthereumTransactionEip1559Transaction'2779 EIP1559: 'EthereumTransactionEip1559Transaction'
2856 }2780 }
2857 },2781 },
2858 /**2782 /**
2859 * Lookup330: ethereum::transaction::LegacyTransaction2783 * Lookup326: ethereum::transaction::LegacyTransaction
2860 **/2784 **/
2861 EthereumTransactionLegacyTransaction: {2785 EthereumTransactionLegacyTransaction: {
2862 nonce: 'U256',2786 nonce: 'U256',
2863 gasPrice: 'U256',2787 gasPrice: 'U256',
2867 input: 'Bytes',2791 input: 'Bytes',
2868 signature: 'EthereumTransactionTransactionSignature'2792 signature: 'EthereumTransactionTransactionSignature'
2869 },2793 },
2870 /**2794 /**
2871 * Lookup331: ethereum::transaction::TransactionAction2795 * Lookup327: ethereum::transaction::TransactionAction
2872 **/2796 **/
2873 EthereumTransactionTransactionAction: {2797 EthereumTransactionTransactionAction: {
2874 _enum: {2798 _enum: {
2875 Call: 'H160',2799 Call: 'H160',
2876 Create: 'Null'2800 Create: 'Null'
2877 }2801 }
2878 },2802 },
2879 /**2803 /**
2880 * Lookup332: ethereum::transaction::TransactionSignature2804 * Lookup328: ethereum::transaction::TransactionSignature
2881 **/2805 **/
2882 EthereumTransactionTransactionSignature: {2806 EthereumTransactionTransactionSignature: {
2883 v: 'u64',2807 v: 'u64',
2884 r: 'H256',2808 r: 'H256',
2885 s: 'H256'2809 s: 'H256'
2886 },2810 },
2887 /**2811 /**
2888 * Lookup334: ethereum::transaction::EIP2930Transaction2812 * Lookup330: ethereum::transaction::EIP2930Transaction
2889 **/2813 **/
2890 EthereumTransactionEip2930Transaction: {2814 EthereumTransactionEip2930Transaction: {
2891 chainId: 'u64',2815 chainId: 'u64',
2892 nonce: 'U256',2816 nonce: 'U256',
2900 r: 'H256',2824 r: 'H256',
2901 s: 'H256'2825 s: 'H256'
2902 },2826 },
2903 /**2827 /**
2904 * Lookup336: ethereum::transaction::AccessListItem2828 * Lookup332: ethereum::transaction::AccessListItem
2905 **/2829 **/
2906 EthereumTransactionAccessListItem: {2830 EthereumTransactionAccessListItem: {
2907 address: 'H160',2831 address: 'H160',
2908 storageKeys: 'Vec<H256>'2832 storageKeys: 'Vec<H256>'
2909 },2833 },
2910 /**2834 /**
2911 * Lookup337: ethereum::transaction::EIP1559Transaction2835 * Lookup333: ethereum::transaction::EIP1559Transaction
2912 **/2836 **/
2913 EthereumTransactionEip1559Transaction: {2837 EthereumTransactionEip1559Transaction: {
2914 chainId: 'u64',2838 chainId: 'u64',
2915 nonce: 'U256',2839 nonce: 'U256',
2924 r: 'H256',2848 r: 'H256',
2925 s: 'H256'2849 s: 'H256'
2926 },2850 },
2927 /**2851 /**
2928 * Lookup338: pallet_evm_migration::pallet::Call<T>2852 * Lookup334: pallet_evm_migration::pallet::Call<T>
2929 **/2853 **/
2930 PalletEvmMigrationCall: {2854 PalletEvmMigrationCall: {
2931 _enum: {2855 _enum: {
2932 begin: {2856 begin: {
2948 }2872 }
2949 }2873 }
2950 },2874 },
2951 /**2875 /**
2952 * Lookup342: pallet_maintenance::pallet::Call<T>2876 * Lookup338: pallet_maintenance::pallet::Call<T>
2953 **/2877 **/
2954 PalletMaintenanceCall: {2878 PalletMaintenanceCall: {
2955 _enum: ['enable', 'disable']2879 _enum: ['enable', 'disable']
2956 },2880 },
2957 /**2881 /**
2958 * Lookup343: pallet_test_utils::pallet::Call<T>2882 * Lookup339: pallet_test_utils::pallet::Call<T>
2959 **/2883 **/
2960 PalletTestUtilsCall: {2884 PalletTestUtilsCall: {
2961 _enum: {2885 _enum: {
2962 enable: 'Null',2886 enable: 'Null',
2967 value: 'u32',2891 value: 'u32',
2968 },2892 },
2969 inc_test_value: 'Null',2893 inc_test_value: 'Null',
2970 self_canceling_inc: {
2971 id: '[u8;32]',
2972 maxTestValue: 'u32',
2973 },
2974 just_take_fee: 'Null',2894 just_take_fee: 'Null',
2975 batch_all: {2895 batch_all: {
2976 calls: 'Vec<Call>'2896 calls: 'Vec<Call>'
2977 }2897 }
2978 }2898 }
2979 },2899 },
2980 /**2900 /**
2981 * Lookup345: pallet_sudo::pallet::Error<T>2901 * Lookup341: pallet_sudo::pallet::Error<T>
2982 **/2902 **/
2983 PalletSudoError: {2903 PalletSudoError: {
2984 _enum: ['RequireSudo']2904 _enum: ['RequireSudo']
2985 },2905 },
2986 /**2906 /**
2987 * Lookup347: orml_vesting::module::Error<T>2907 * Lookup343: orml_vesting::module::Error<T>
2988 **/2908 **/
2989 OrmlVestingModuleError: {2909 OrmlVestingModuleError: {
2990 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2910 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
2991 },2911 },
2992 /**2912 /**
2993 * Lookup348: orml_xtokens::module::Error<T>2913 * Lookup344: orml_xtokens::module::Error<T>
2994 **/2914 **/
2995 OrmlXtokensModuleError: {2915 OrmlXtokensModuleError: {
2996 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2916 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
2997 },2917 },
2998 /**2918 /**
2999 * Lookup351: orml_tokens::BalanceLock<Balance>2919 * Lookup347: orml_tokens::BalanceLock<Balance>
3000 **/2920 **/
3001 OrmlTokensBalanceLock: {2921 OrmlTokensBalanceLock: {
3002 id: '[u8;8]',2922 id: '[u8;8]',
3003 amount: 'u128'2923 amount: 'u128'
3004 },2924 },
3005 /**2925 /**
3006 * Lookup353: orml_tokens::AccountData<Balance>2926 * Lookup349: orml_tokens::AccountData<Balance>
3007 **/2927 **/
3008 OrmlTokensAccountData: {2928 OrmlTokensAccountData: {
3009 free: 'u128',2929 free: 'u128',
3010 reserved: 'u128',2930 reserved: 'u128',
3011 frozen: 'u128'2931 frozen: 'u128'
3012 },2932 },
3013 /**2933 /**
3014 * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>2934 * Lookup351: orml_tokens::ReserveData<ReserveIdentifier, Balance>
3015 **/2935 **/
3016 OrmlTokensReserveData: {2936 OrmlTokensReserveData: {
3017 id: 'Null',2937 id: 'Null',
3018 amount: 'u128'2938 amount: 'u128'
3019 },2939 },
3020 /**2940 /**
3021 * Lookup357: orml_tokens::module::Error<T>2941 * Lookup353: orml_tokens::module::Error<T>
3022 **/2942 **/
3023 OrmlTokensModuleError: {2943 OrmlTokensModuleError: {
3024 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2944 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
3025 },2945 },
3026 /**2946 /**
3027 * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails2947 * Lookup355: cumulus_pallet_xcmp_queue::InboundChannelDetails
3028 **/2948 **/
3029 CumulusPalletXcmpQueueInboundChannelDetails: {2949 CumulusPalletXcmpQueueInboundChannelDetails: {
3030 sender: 'u32',2950 sender: 'u32',
3031 state: 'CumulusPalletXcmpQueueInboundState',2951 state: 'CumulusPalletXcmpQueueInboundState',
3032 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2952 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
3033 },2953 },
3034 /**2954 /**
3035 * Lookup360: cumulus_pallet_xcmp_queue::InboundState2955 * Lookup356: cumulus_pallet_xcmp_queue::InboundState
3036 **/2956 **/
3037 CumulusPalletXcmpQueueInboundState: {2957 CumulusPalletXcmpQueueInboundState: {
3038 _enum: ['Ok', 'Suspended']2958 _enum: ['Ok', 'Suspended']
3039 },2959 },
3040 /**2960 /**
3041 * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat2961 * Lookup359: polkadot_parachain::primitives::XcmpMessageFormat
3042 **/2962 **/
3043 PolkadotParachainPrimitivesXcmpMessageFormat: {2963 PolkadotParachainPrimitivesXcmpMessageFormat: {
3044 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2964 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
3045 },2965 },
3046 /**2966 /**
3047 * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails2967 * Lookup362: cumulus_pallet_xcmp_queue::OutboundChannelDetails
3048 **/2968 **/
3049 CumulusPalletXcmpQueueOutboundChannelDetails: {2969 CumulusPalletXcmpQueueOutboundChannelDetails: {
3050 recipient: 'u32',2970 recipient: 'u32',
3051 state: 'CumulusPalletXcmpQueueOutboundState',2971 state: 'CumulusPalletXcmpQueueOutboundState',
3052 signalsExist: 'bool',2972 signalsExist: 'bool',
3053 firstIndex: 'u16',2973 firstIndex: 'u16',
3054 lastIndex: 'u16'2974 lastIndex: 'u16'
3055 },2975 },
3056 /**2976 /**
3057 * Lookup367: cumulus_pallet_xcmp_queue::OutboundState2977 * Lookup363: cumulus_pallet_xcmp_queue::OutboundState
3058 **/2978 **/
3059 CumulusPalletXcmpQueueOutboundState: {2979 CumulusPalletXcmpQueueOutboundState: {
3060 _enum: ['Ok', 'Suspended']2980 _enum: ['Ok', 'Suspended']
3061 },2981 },
3062 /**2982 /**
3063 * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData2983 * Lookup365: cumulus_pallet_xcmp_queue::QueueConfigData
3064 **/2984 **/
3065 CumulusPalletXcmpQueueQueueConfigData: {2985 CumulusPalletXcmpQueueQueueConfigData: {
3066 suspendThreshold: 'u32',2986 suspendThreshold: 'u32',
3067 dropThreshold: 'u32',2987 dropThreshold: 'u32',
3070 weightRestrictDecay: 'SpWeightsWeightV2Weight',2990 weightRestrictDecay: 'SpWeightsWeightV2Weight',
3071 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'2991 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
3072 },2992 },
3073 /**2993 /**
3074 * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>2994 * Lookup367: cumulus_pallet_xcmp_queue::pallet::Error<T>
3075 **/2995 **/
3076 CumulusPalletXcmpQueueError: {2996 CumulusPalletXcmpQueueError: {
3077 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2997 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
3078 },2998 },
3079 /**2999 /**
3080 * Lookup372: pallet_xcm::pallet::Error<T>3000 * Lookup368: pallet_xcm::pallet::Error<T>
3081 **/3001 **/
3082 PalletXcmError: {3002 PalletXcmError: {
3083 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3003 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
3084 },3004 },
3085 /**3005 /**
3086 * Lookup373: cumulus_pallet_xcm::pallet::Error<T>3006 * Lookup369: cumulus_pallet_xcm::pallet::Error<T>
3087 **/3007 **/
3088 CumulusPalletXcmError: 'Null',3008 CumulusPalletXcmError: 'Null',
3089 /**3009 /**
3090 * Lookup374: cumulus_pallet_dmp_queue::ConfigData3010 * Lookup370: cumulus_pallet_dmp_queue::ConfigData
3091 **/3011 **/
3092 CumulusPalletDmpQueueConfigData: {3012 CumulusPalletDmpQueueConfigData: {
3093 maxIndividual: 'SpWeightsWeightV2Weight'3013 maxIndividual: 'SpWeightsWeightV2Weight'
3094 },3014 },
3095 /**3015 /**
3096 * Lookup375: cumulus_pallet_dmp_queue::PageIndexData3016 * Lookup371: cumulus_pallet_dmp_queue::PageIndexData
3097 **/3017 **/
3098 CumulusPalletDmpQueuePageIndexData: {3018 CumulusPalletDmpQueuePageIndexData: {
3099 beginUsed: 'u32',3019 beginUsed: 'u32',
3100 endUsed: 'u32',3020 endUsed: 'u32',
3101 overweightCount: 'u64'3021 overweightCount: 'u64'
3102 },3022 },
3103 /**3023 /**
3104 * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>3024 * Lookup374: cumulus_pallet_dmp_queue::pallet::Error<T>
3105 **/3025 **/
3106 CumulusPalletDmpQueueError: {3026 CumulusPalletDmpQueueError: {
3107 _enum: ['Unknown', 'OverLimit']3027 _enum: ['Unknown', 'OverLimit']
3108 },3028 },
3109 /**3029 /**
3110 * Lookup382: pallet_unique::Error<T>3030 * Lookup378: pallet_unique::Error<T>
3111 **/3031 **/
3112 PalletUniqueError: {3032 PalletUniqueError: {
3113 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3033 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
3114 },3034 },
3115 /**
3116 * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
3117 **/
3118 PalletUniqueSchedulerV2BlockAgenda: {
3119 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
3120 freePlaces: 'u32'
3121 },
3122 /**
3123 * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
3124 **/
3125 PalletUniqueSchedulerV2Scheduled: {
3126 maybeId: 'Option<[u8;32]>',
3127 priority: 'u8',
3128 call: 'PalletUniqueSchedulerV2ScheduledCall',
3129 maybePeriodic: 'Option<(u32,u32)>',
3130 origin: 'OpalRuntimeOriginCaller'
3131 },
3132 /**
3133 * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
3134 **/
3135 PalletUniqueSchedulerV2ScheduledCall: {
3136 _enum: {
3137 Inline: 'Bytes',
3138 PreimageLookup: {
3139 _alias: {
3140 hash_: 'hash',
3141 },
3142 hash_: 'H256',
3143 unboundedLen: 'u32'
3144 }
3145 }
3146 },
3147 /**
3148 * Lookup389: opal_runtime::OriginCaller
3149 **/
3150 OpalRuntimeOriginCaller: {
3151 _enum: {
3152 system: 'FrameSupportDispatchRawOrigin',
3153 __Unused1: 'Null',
3154 __Unused2: 'Null',
3155 __Unused3: 'Null',
3156 Void: 'SpCoreVoid',
3157 __Unused5: 'Null',
3158 __Unused6: 'Null',
3159 __Unused7: 'Null',
3160 __Unused8: 'Null',
3161 __Unused9: 'Null',
3162 __Unused10: 'Null',
3163 __Unused11: 'Null',
3164 __Unused12: 'Null',
3165 __Unused13: 'Null',
3166 __Unused14: 'Null',
3167 __Unused15: 'Null',
3168 __Unused16: 'Null',
3169 __Unused17: 'Null',
3170 __Unused18: 'Null',
3171 __Unused19: 'Null',
3172 __Unused20: 'Null',
3173 __Unused21: 'Null',
3174 __Unused22: 'Null',
3175 __Unused23: 'Null',
3176 __Unused24: 'Null',
3177 __Unused25: 'Null',
3178 __Unused26: 'Null',
3179 __Unused27: 'Null',
3180 __Unused28: 'Null',
3181 __Unused29: 'Null',
3182 __Unused30: 'Null',
3183 __Unused31: 'Null',
3184 __Unused32: 'Null',
3185 __Unused33: 'Null',
3186 __Unused34: 'Null',
3187 __Unused35: 'Null',
3188 __Unused36: 'Null',
3189 __Unused37: 'Null',
3190 __Unused38: 'Null',
3191 __Unused39: 'Null',
3192 __Unused40: 'Null',
3193 __Unused41: 'Null',
3194 __Unused42: 'Null',
3195 __Unused43: 'Null',
3196 __Unused44: 'Null',
3197 __Unused45: 'Null',
3198 __Unused46: 'Null',
3199 __Unused47: 'Null',
3200 __Unused48: 'Null',
3201 __Unused49: 'Null',
3202 __Unused50: 'Null',
3203 PolkadotXcm: 'PalletXcmOrigin',
3204 CumulusXcm: 'CumulusPalletXcmOrigin',
3205 __Unused53: 'Null',
3206 __Unused54: 'Null',
3207 __Unused55: 'Null',
3208 __Unused56: 'Null',
3209 __Unused57: 'Null',
3210 __Unused58: 'Null',
3211 __Unused59: 'Null',
3212 __Unused60: 'Null',
3213 __Unused61: 'Null',
3214 __Unused62: 'Null',
3215 __Unused63: 'Null',
3216 __Unused64: 'Null',
3217 __Unused65: 'Null',
3218 __Unused66: 'Null',
3219 __Unused67: 'Null',
3220 __Unused68: 'Null',
3221 __Unused69: 'Null',
3222 __Unused70: 'Null',
3223 __Unused71: 'Null',
3224 __Unused72: 'Null',
3225 __Unused73: 'Null',
3226 __Unused74: 'Null',
3227 __Unused75: 'Null',
3228 __Unused76: 'Null',
3229 __Unused77: 'Null',
3230 __Unused78: 'Null',
3231 __Unused79: 'Null',
3232 __Unused80: 'Null',
3233 __Unused81: 'Null',
3234 __Unused82: 'Null',
3235 __Unused83: 'Null',
3236 __Unused84: 'Null',
3237 __Unused85: 'Null',
3238 __Unused86: 'Null',
3239 __Unused87: 'Null',
3240 __Unused88: 'Null',
3241 __Unused89: 'Null',
3242 __Unused90: 'Null',
3243 __Unused91: 'Null',
3244 __Unused92: 'Null',
3245 __Unused93: 'Null',
3246 __Unused94: 'Null',
3247 __Unused95: 'Null',
3248 __Unused96: 'Null',
3249 __Unused97: 'Null',
3250 __Unused98: 'Null',
3251 __Unused99: 'Null',
3252 __Unused100: 'Null',
3253 Ethereum: 'PalletEthereumRawOrigin'
3254 }
3255 },
3256 /**
3257 * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
3258 **/
3259 FrameSupportDispatchRawOrigin: {
3260 _enum: {
3261 Root: 'Null',
3262 Signed: 'AccountId32',
3263 None: 'Null'
3264 }
3265 },
3266 /**
3267 * Lookup391: pallet_xcm::pallet::Origin
3268 **/
3269 PalletXcmOrigin: {
3270 _enum: {
3271 Xcm: 'XcmV1MultiLocation',
3272 Response: 'XcmV1MultiLocation'
3273 }
3274 },
3275 /**
3276 * Lookup392: cumulus_pallet_xcm::pallet::Origin
3277 **/
3278 CumulusPalletXcmOrigin: {
3279 _enum: {
3280 Relay: 'Null',
3281 SiblingParachain: 'u32'
3282 }
3283 },
3284 /**
3285 * Lookup393: pallet_ethereum::RawOrigin
3286 **/
3287 PalletEthereumRawOrigin: {
3288 _enum: {
3289 EthereumTransaction: 'H160'
3290 }
3291 },
3292 /**
3293 * Lookup394: sp_core::Void
3294 **/
3295 SpCoreVoid: 'Null',
3296 /**
3297 * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
3298 **/
3299 PalletUniqueSchedulerV2Error: {
3300 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
3301 },
3302 /**3035 /**
3303 * Lookup397: up_data_structs::Collection<sp_core::crypto::AccountId32>3036 * Lookup379: up_data_structs::Collection<sp_core::crypto::AccountId32>
3304 **/3037 **/
3305 UpDataStructsCollection: {3038 UpDataStructsCollection: {
3306 owner: 'AccountId32',3039 owner: 'AccountId32',
3307 mode: 'UpDataStructsCollectionMode',3040 mode: 'UpDataStructsCollectionMode',
3313 permissions: 'UpDataStructsCollectionPermissions',3046 permissions: 'UpDataStructsCollectionPermissions',
3314 flags: '[u8;1]'3047 flags: '[u8;1]'
3315 },3048 },
3316 /**3049 /**
3317 * Lookup398: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3050 * Lookup380: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
3318 **/3051 **/
3319 UpDataStructsSponsorshipStateAccountId32: {3052 UpDataStructsSponsorshipStateAccountId32: {
3320 _enum: {3053 _enum: {
3321 Disabled: 'Null',3054 Disabled: 'Null',
3322 Unconfirmed: 'AccountId32',3055 Unconfirmed: 'AccountId32',
3323 Confirmed: 'AccountId32'3056 Confirmed: 'AccountId32'
3324 }3057 }
3325 },3058 },
3326 /**3059 /**
3327 * Lookup400: up_data_structs::Properties3060 * Lookup382: up_data_structs::Properties
3328 **/3061 **/
3329 UpDataStructsProperties: {3062 UpDataStructsProperties: {
3330 map: 'UpDataStructsPropertiesMapBoundedVec',3063 map: 'UpDataStructsPropertiesMapBoundedVec',
3331 consumedSpace: 'u32',3064 consumedSpace: 'u32',
3332 spaceLimit: 'u32'3065 spaceLimit: 'u32'
3333 },3066 },
3334 /**3067 /**
3335 * Lookup401: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3068 * Lookup383: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3336 **/3069 **/
3337 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3070 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
3338 /**3071 /**
3339 * Lookup406: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3072 * Lookup388: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
3340 **/3073 **/
3341 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3074 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3342 /**3075 /**
3343 * Lookup413: up_data_structs::CollectionStats3076 * Lookup395: up_data_structs::CollectionStats
3344 **/3077 **/
3345 UpDataStructsCollectionStats: {3078 UpDataStructsCollectionStats: {
3346 created: 'u32',3079 created: 'u32',
3347 destroyed: 'u32',3080 destroyed: 'u32',
3348 alive: 'u32'3081 alive: 'u32'
3349 },3082 },
3350 /**3083 /**
3351 * Lookup414: up_data_structs::TokenChild3084 * Lookup396: up_data_structs::TokenChild
3352 **/3085 **/
3353 UpDataStructsTokenChild: {3086 UpDataStructsTokenChild: {
3354 token: 'u32',3087 token: 'u32',
3355 collection: 'u32'3088 collection: 'u32'
3356 },3089 },
3357 /**3090 /**
3358 * Lookup415: PhantomType::up_data_structs<T>3091 * Lookup397: PhantomType::up_data_structs<T>
3359 **/3092 **/
3360 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3093 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
3361 /**3094 /**
3362 * Lookup417: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3095 * Lookup399: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3363 **/3096 **/
3364 UpDataStructsTokenData: {3097 UpDataStructsTokenData: {
3365 properties: 'Vec<UpDataStructsProperty>',3098 properties: 'Vec<UpDataStructsProperty>',
3366 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3099 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3367 pieces: 'u128'3100 pieces: 'u128'
3368 },3101 },
3369 /**3102 /**
3370 * Lookup419: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3103 * Lookup401: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3371 **/3104 **/
3372 UpDataStructsRpcCollection: {3105 UpDataStructsRpcCollection: {
3373 owner: 'AccountId32',3106 owner: 'AccountId32',
3374 mode: 'UpDataStructsCollectionMode',3107 mode: 'UpDataStructsCollectionMode',
3383 readOnly: 'bool',3116 readOnly: 'bool',
3384 flags: 'UpDataStructsRpcCollectionFlags'3117 flags: 'UpDataStructsRpcCollectionFlags'
3385 },3118 },
3386 /**3119 /**
3387 * Lookup420: up_data_structs::RpcCollectionFlags3120 * Lookup402: up_data_structs::RpcCollectionFlags
3388 **/3121 **/
3389 UpDataStructsRpcCollectionFlags: {3122 UpDataStructsRpcCollectionFlags: {
3390 foreign: 'bool',3123 foreign: 'bool',
3391 erc721metadata: 'bool'3124 erc721metadata: 'bool'
3392 },3125 },
3393 /**3126 /**
3394 * Lookup421: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3127 * Lookup403: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
3395 **/3128 **/
3396 RmrkTraitsCollectionCollectionInfo: {3129 RmrkTraitsCollectionCollectionInfo: {
3397 issuer: 'AccountId32',3130 issuer: 'AccountId32',
3398 metadata: 'Bytes',3131 metadata: 'Bytes',
3399 max: 'Option<u32>',3132 max: 'Option<u32>',
3400 symbol: 'Bytes',3133 symbol: 'Bytes',
3401 nftsCount: 'u32'3134 nftsCount: 'u32'
3402 },3135 },
3403 /**3136 /**
3404 * Lookup422: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3137 * Lookup404: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3405 **/3138 **/
3406 RmrkTraitsNftNftInfo: {3139 RmrkTraitsNftNftInfo: {
3407 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3140 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
3408 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3141 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
3409 metadata: 'Bytes',3142 metadata: 'Bytes',
3410 equipped: 'bool',3143 equipped: 'bool',
3411 pending: 'bool'3144 pending: 'bool'
3412 },3145 },
3413 /**3146 /**
3414 * Lookup424: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3147 * Lookup406: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
3415 **/3148 **/
3416 RmrkTraitsNftRoyaltyInfo: {3149 RmrkTraitsNftRoyaltyInfo: {
3417 recipient: 'AccountId32',3150 recipient: 'AccountId32',
3418 amount: 'Permill'3151 amount: 'Permill'
3419 },3152 },
3420 /**3153 /**
3421 * Lookup425: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3154 * Lookup407: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3422 **/3155 **/
3423 RmrkTraitsResourceResourceInfo: {3156 RmrkTraitsResourceResourceInfo: {
3424 id: 'u32',3157 id: 'u32',
3425 resource: 'RmrkTraitsResourceResourceTypes',3158 resource: 'RmrkTraitsResourceResourceTypes',
3426 pending: 'bool',3159 pending: 'bool',
3427 pendingRemoval: 'bool'3160 pendingRemoval: 'bool'
3428 },3161 },
3429 /**3162 /**
3430 * Lookup426: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3163 * Lookup408: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3431 **/3164 **/
3432 RmrkTraitsPropertyPropertyInfo: {3165 RmrkTraitsPropertyPropertyInfo: {
3433 key: 'Bytes',3166 key: 'Bytes',
3434 value: 'Bytes'3167 value: 'Bytes'
3435 },3168 },
3436 /**3169 /**
3437 * Lookup427: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3170 * Lookup409: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3438 **/3171 **/
3439 RmrkTraitsBaseBaseInfo: {3172 RmrkTraitsBaseBaseInfo: {
3440 issuer: 'AccountId32',3173 issuer: 'AccountId32',
3441 baseType: 'Bytes',3174 baseType: 'Bytes',
3442 symbol: 'Bytes'3175 symbol: 'Bytes'
3443 },3176 },
3444 /**3177 /**
3445 * Lookup428: rmrk_traits::nft::NftChild3178 * Lookup410: rmrk_traits::nft::NftChild
3446 **/3179 **/
3447 RmrkTraitsNftNftChild: {3180 RmrkTraitsNftNftChild: {
3448 collectionId: 'u32',3181 collectionId: 'u32',
3449 nftId: 'u32'3182 nftId: 'u32'
3450 },3183 },
3451 /**3184 /**
3452 * Lookup430: pallet_common::pallet::Error<T>3185 * Lookup412: pallet_common::pallet::Error<T>
3453 **/3186 **/
3454 PalletCommonError: {3187 PalletCommonError: {
3455 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3188 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
3456 },3189 },
3457 /**3190 /**
3458 * Lookup432: pallet_fungible::pallet::Error<T>3191 * Lookup414: pallet_fungible::pallet::Error<T>
3459 **/3192 **/
3460 PalletFungibleError: {3193 PalletFungibleError: {
3461 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3194 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
3462 },3195 },
3463 /**
3464 * Lookup433: pallet_refungible::ItemData
3465 **/
3466 PalletRefungibleItemData: {
3467 constData: 'Bytes'
3468 },
3469 /**3196 /**
3470 * Lookup438: pallet_refungible::pallet::Error<T>3197 * Lookup418: pallet_refungible::pallet::Error<T>
3471 **/3198 **/
3472 PalletRefungibleError: {3199 PalletRefungibleError: {
3473 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3200 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3474 },3201 },
3475 /**3202 /**
3476 * Lookup439: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3203 * Lookup419: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3477 **/3204 **/
3478 PalletNonfungibleItemData: {3205 PalletNonfungibleItemData: {
3479 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3206 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3480 },3207 },
3481 /**3208 /**
3482 * Lookup441: up_data_structs::PropertyScope3209 * Lookup421: up_data_structs::PropertyScope
3483 **/3210 **/
3484 UpDataStructsPropertyScope: {3211 UpDataStructsPropertyScope: {
3485 _enum: ['None', 'Rmrk']3212 _enum: ['None', 'Rmrk']
3486 },3213 },
3487 /**3214 /**
3488 * Lookup443: pallet_nonfungible::pallet::Error<T>3215 * Lookup424: pallet_nonfungible::pallet::Error<T>
3489 **/3216 **/
3490 PalletNonfungibleError: {3217 PalletNonfungibleError: {
3491 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3218 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3492 },3219 },
3493 /**3220 /**
3494 * Lookup444: pallet_structure::pallet::Error<T>3221 * Lookup425: pallet_structure::pallet::Error<T>
3495 **/3222 **/
3496 PalletStructureError: {3223 PalletStructureError: {
3497 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3224 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
3498 },3225 },
3499 /**3226 /**
3500 * Lookup445: pallet_rmrk_core::pallet::Error<T>3227 * Lookup426: pallet_rmrk_core::pallet::Error<T>
3501 **/3228 **/
3502 PalletRmrkCoreError: {3229 PalletRmrkCoreError: {
3503 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3230 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
3504 },3231 },
3505 /**3232 /**
3506 * Lookup447: pallet_rmrk_equip::pallet::Error<T>3233 * Lookup428: pallet_rmrk_equip::pallet::Error<T>
3507 **/3234 **/
3508 PalletRmrkEquipError: {3235 PalletRmrkEquipError: {
3509 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3236 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
3510 },3237 },
3511 /**3238 /**
3512 * Lookup453: pallet_app_promotion::pallet::Error<T>3239 * Lookup434: pallet_app_promotion::pallet::Error<T>
3513 **/3240 **/
3514 PalletAppPromotionError: {3241 PalletAppPromotionError: {
3515 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3242 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
3516 },3243 },
3517 /**3244 /**
3518 * Lookup454: pallet_foreign_assets::module::Error<T>3245 * Lookup435: pallet_foreign_assets::module::Error<T>
3519 **/3246 **/
3520 PalletForeignAssetsModuleError: {3247 PalletForeignAssetsModuleError: {
3521 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3248 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3522 },3249 },
3523 /**3250 /**
3524 * Lookup456: pallet_evm::pallet::Error<T>3251 * Lookup437: pallet_evm::pallet::Error<T>
3525 **/3252 **/
3526 PalletEvmError: {3253 PalletEvmError: {
3527 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3254 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
3528 },3255 },
3529 /**3256 /**
3530 * Lookup459: fp_rpc::TransactionStatus3257 * Lookup440: fp_rpc::TransactionStatus
3531 **/3258 **/
3532 FpRpcTransactionStatus: {3259 FpRpcTransactionStatus: {
3533 transactionHash: 'H256',3260 transactionHash: 'H256',
3534 transactionIndex: 'u32',3261 transactionIndex: 'u32',
3538 logs: 'Vec<EthereumLog>',3265 logs: 'Vec<EthereumLog>',
3539 logsBloom: 'EthbloomBloom'3266 logsBloom: 'EthbloomBloom'
3540 },3267 },
3541 /**3268 /**
3542 * Lookup461: ethbloom::Bloom3269 * Lookup442: ethbloom::Bloom
3543 **/3270 **/
3544 EthbloomBloom: '[u8;256]',3271 EthbloomBloom: '[u8;256]',
3545 /**3272 /**
3546 * Lookup463: ethereum::receipt::ReceiptV33273 * Lookup444: ethereum::receipt::ReceiptV3
3547 **/3274 **/
3548 EthereumReceiptReceiptV3: {3275 EthereumReceiptReceiptV3: {
3549 _enum: {3276 _enum: {
3550 Legacy: 'EthereumReceiptEip658ReceiptData',3277 Legacy: 'EthereumReceiptEip658ReceiptData',
3551 EIP2930: 'EthereumReceiptEip658ReceiptData',3278 EIP2930: 'EthereumReceiptEip658ReceiptData',
3552 EIP1559: 'EthereumReceiptEip658ReceiptData'3279 EIP1559: 'EthereumReceiptEip658ReceiptData'
3553 }3280 }
3554 },3281 },
3555 /**3282 /**
3556 * Lookup464: ethereum::receipt::EIP658ReceiptData3283 * Lookup445: ethereum::receipt::EIP658ReceiptData
3557 **/3284 **/
3558 EthereumReceiptEip658ReceiptData: {3285 EthereumReceiptEip658ReceiptData: {
3559 statusCode: 'u8',3286 statusCode: 'u8',
3560 usedGas: 'U256',3287 usedGas: 'U256',
3561 logsBloom: 'EthbloomBloom',3288 logsBloom: 'EthbloomBloom',
3562 logs: 'Vec<EthereumLog>'3289 logs: 'Vec<EthereumLog>'
3563 },3290 },
3564 /**3291 /**
3565 * Lookup465: ethereum::block::Block<ethereum::transaction::TransactionV2>3292 * Lookup446: ethereum::block::Block<ethereum::transaction::TransactionV2>
3566 **/3293 **/
3567 EthereumBlock: {3294 EthereumBlock: {
3568 header: 'EthereumHeader',3295 header: 'EthereumHeader',
3569 transactions: 'Vec<EthereumTransactionTransactionV2>',3296 transactions: 'Vec<EthereumTransactionTransactionV2>',
3570 ommers: 'Vec<EthereumHeader>'3297 ommers: 'Vec<EthereumHeader>'
3571 },3298 },
3572 /**3299 /**
3573 * Lookup466: ethereum::header::Header3300 * Lookup447: ethereum::header::Header
3574 **/3301 **/
3575 EthereumHeader: {3302 EthereumHeader: {
3576 parentHash: 'H256',3303 parentHash: 'H256',
3577 ommersHash: 'H256',3304 ommersHash: 'H256',
3589 mixHash: 'H256',3316 mixHash: 'H256',
3590 nonce: 'EthereumTypesHashH64'3317 nonce: 'EthereumTypesHashH64'
3591 },3318 },
3592 /**3319 /**
3593 * Lookup467: ethereum_types::hash::H643320 * Lookup448: ethereum_types::hash::H64
3594 **/3321 **/
3595 EthereumTypesHashH64: '[u8;8]',3322 EthereumTypesHashH64: '[u8;8]',
3596 /**3323 /**
3597 * Lookup472: pallet_ethereum::pallet::Error<T>3324 * Lookup453: pallet_ethereum::pallet::Error<T>
3598 **/3325 **/
3599 PalletEthereumError: {3326 PalletEthereumError: {
3600 _enum: ['InvalidSignature', 'PreLogExists']3327 _enum: ['InvalidSignature', 'PreLogExists']
3601 },3328 },
3602 /**3329 /**
3603 * Lookup473: pallet_evm_coder_substrate::pallet::Error<T>3330 * Lookup454: pallet_evm_coder_substrate::pallet::Error<T>
3604 **/3331 **/
3605 PalletEvmCoderSubstrateError: {3332 PalletEvmCoderSubstrateError: {
3606 _enum: ['OutOfGas', 'OutOfFund']3333 _enum: ['OutOfGas', 'OutOfFund']
3607 },3334 },
3608 /**3335 /**
3609 * Lookup474: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3336 * Lookup455: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3610 **/3337 **/
3611 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3338 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3612 _enum: {3339 _enum: {
3613 Disabled: 'Null',3340 Disabled: 'Null',
3614 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3341 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3615 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3342 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3616 }3343 }
3617 },3344 },
3618 /**3345 /**
3619 * Lookup475: pallet_evm_contract_helpers::SponsoringModeT3346 * Lookup456: pallet_evm_contract_helpers::SponsoringModeT
3620 **/3347 **/
3621 PalletEvmContractHelpersSponsoringModeT: {3348 PalletEvmContractHelpersSponsoringModeT: {
3622 _enum: ['Disabled', 'Allowlisted', 'Generous']3349 _enum: ['Disabled', 'Allowlisted', 'Generous']
3623 },3350 },
3624 /**3351 /**
3625 * Lookup481: pallet_evm_contract_helpers::pallet::Error<T>3352 * Lookup462: pallet_evm_contract_helpers::pallet::Error<T>
3626 **/3353 **/
3627 PalletEvmContractHelpersError: {3354 PalletEvmContractHelpersError: {
3628 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3355 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3629 },3356 },
3630 /**3357 /**
3631 * Lookup482: pallet_evm_migration::pallet::Error<T>3358 * Lookup463: pallet_evm_migration::pallet::Error<T>
3632 **/3359 **/
3633 PalletEvmMigrationError: {3360 PalletEvmMigrationError: {
3634 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3361 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
3635 },3362 },
3636 /**3363 /**
3637 * Lookup483: pallet_maintenance::pallet::Error<T>3364 * Lookup464: pallet_maintenance::pallet::Error<T>
3638 **/3365 **/
3639 PalletMaintenanceError: 'Null',3366 PalletMaintenanceError: 'Null',
3640 /**3367 /**
3641 * Lookup484: pallet_test_utils::pallet::Error<T>3368 * Lookup465: pallet_test_utils::pallet::Error<T>
3642 **/3369 **/
3643 PalletTestUtilsError: {3370 PalletTestUtilsError: {
3644 _enum: ['TestPalletDisabled', 'TriggerRollback']3371 _enum: ['TestPalletDisabled', 'TriggerRollback']
3645 },3372 },
3646 /**3373 /**
3647 * Lookup486: sp_runtime::MultiSignature3374 * Lookup467: sp_runtime::MultiSignature
3648 **/3375 **/
3649 SpRuntimeMultiSignature: {3376 SpRuntimeMultiSignature: {
3650 _enum: {3377 _enum: {
3651 Ed25519: 'SpCoreEd25519Signature',3378 Ed25519: 'SpCoreEd25519Signature',
3652 Sr25519: 'SpCoreSr25519Signature',3379 Sr25519: 'SpCoreSr25519Signature',
3653 Ecdsa: 'SpCoreEcdsaSignature'3380 Ecdsa: 'SpCoreEcdsaSignature'
3654 }3381 }
3655 },3382 },
3656 /**3383 /**
3657 * Lookup487: sp_core::ed25519::Signature3384 * Lookup468: sp_core::ed25519::Signature
3658 **/3385 **/
3659 SpCoreEd25519Signature: '[u8;64]',3386 SpCoreEd25519Signature: '[u8;64]',
3660 /**3387 /**
3661 * Lookup489: sp_core::sr25519::Signature3388 * Lookup470: sp_core::sr25519::Signature
3662 **/3389 **/
3663 SpCoreSr25519Signature: '[u8;64]',3390 SpCoreSr25519Signature: '[u8;64]',
3664 /**3391 /**
3665 * Lookup490: sp_core::ecdsa::Signature3392 * Lookup471: sp_core::ecdsa::Signature
3666 **/3393 **/
3667 SpCoreEcdsaSignature: '[u8;65]',3394 SpCoreEcdsaSignature: '[u8;65]',
3668 /**3395 /**
3669 * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3396 * Lookup474: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3670 **/3397 **/
3671 FrameSystemExtensionsCheckSpecVersion: 'Null',3398 FrameSystemExtensionsCheckSpecVersion: 'Null',
3672 /**3399 /**
3673 * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>3400 * Lookup475: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3674 **/3401 **/
3675 FrameSystemExtensionsCheckTxVersion: 'Null',3402 FrameSystemExtensionsCheckTxVersion: 'Null',
3676 /**3403 /**
3677 * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>3404 * Lookup476: frame_system::extensions::check_genesis::CheckGenesis<T>
3678 **/3405 **/
3679 FrameSystemExtensionsCheckGenesis: 'Null',3406 FrameSystemExtensionsCheckGenesis: 'Null',
3680 /**3407 /**
3681 * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>3408 * Lookup479: frame_system::extensions::check_nonce::CheckNonce<T>
3682 **/3409 **/
3683 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3410 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3684 /**3411 /**
3685 * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>3412 * Lookup480: frame_system::extensions::check_weight::CheckWeight<T>
3686 **/3413 **/
3687 FrameSystemExtensionsCheckWeight: 'Null',3414 FrameSystemExtensionsCheckWeight: 'Null',
3688 /**3415 /**
3689 * Lookup500: opal_runtime::runtime_common::maintenance::CheckMaintenance3416 * Lookup481: opal_runtime::runtime_common::maintenance::CheckMaintenance
3690 **/3417 **/
3691 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3418 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
3692 /**3419 /**
3693 * Lookup501: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3420 * Lookup482: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3694 **/3421 **/
3695 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3422 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3696 /**3423 /**
3697 * Lookup502: opal_runtime::Runtime3424 * Lookup483: opal_runtime::Runtime
3698 **/3425 **/
3699 OpalRuntimeRuntime: 'Null',3426 OpalRuntimeRuntime: 'Null',
3700 /**3427 /**
3701 * Lookup503: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3428 * Lookup484: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3702 **/3429 **/
3703 PalletEthereumFakeTransactionFinalizer: 'Null'3430 PalletEthereumFakeTransactionFinalizer: 'Null'
3704};3431};
37053432
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
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, 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';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, 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, 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, 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, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
21 CumulusPalletXcmCall: CumulusPalletXcmCall;21 CumulusPalletXcmCall: CumulusPalletXcmCall;
22 CumulusPalletXcmError: CumulusPalletXcmError;22 CumulusPalletXcmError: CumulusPalletXcmError;
23 CumulusPalletXcmEvent: CumulusPalletXcmEvent;23 CumulusPalletXcmEvent: CumulusPalletXcmEvent;
24 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
25 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;24 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
26 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;25 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
27 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;26 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
57 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;56 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
58 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;57 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
59 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;58 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
60 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
61 FrameSupportPalletId: FrameSupportPalletId;59 FrameSupportPalletId: FrameSupportPalletId;
62 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;60 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
63 FrameSystemAccountInfo: FrameSystemAccountInfo;61 FrameSystemAccountInfo: FrameSystemAccountInfo;
75 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;73 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
76 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;74 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
77 FrameSystemPhase: FrameSystemPhase;75 FrameSystemPhase: FrameSystemPhase;
78 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
79 OpalRuntimeRuntime: OpalRuntimeRuntime;76 OpalRuntimeRuntime: OpalRuntimeRuntime;
80 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;77 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
81 OrmlTokensAccountData: OrmlTokensAccountData;78 OrmlTokensAccountData: OrmlTokensAccountData;
109 PalletEthereumError: PalletEthereumError;106 PalletEthereumError: PalletEthereumError;
110 PalletEthereumEvent: PalletEthereumEvent;107 PalletEthereumEvent: PalletEthereumEvent;
111 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;108 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
112 PalletEthereumRawOrigin: PalletEthereumRawOrigin;
113 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;109 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
114 PalletEvmCall: PalletEvmCall;110 PalletEvmCall: PalletEvmCall;
115 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;111 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
135 PalletNonfungibleError: PalletNonfungibleError;131 PalletNonfungibleError: PalletNonfungibleError;
136 PalletNonfungibleItemData: PalletNonfungibleItemData;132 PalletNonfungibleItemData: PalletNonfungibleItemData;
137 PalletRefungibleError: PalletRefungibleError;133 PalletRefungibleError: PalletRefungibleError;
138 PalletRefungibleItemData: PalletRefungibleItemData;
139 PalletRmrkCoreCall: PalletRmrkCoreCall;134 PalletRmrkCoreCall: PalletRmrkCoreCall;
140 PalletRmrkCoreError: PalletRmrkCoreError;135 PalletRmrkCoreError: PalletRmrkCoreError;
141 PalletRmrkCoreEvent: PalletRmrkCoreEvent;136 PalletRmrkCoreEvent: PalletRmrkCoreEvent;
162 PalletTreasuryProposal: PalletTreasuryProposal;157 PalletTreasuryProposal: PalletTreasuryProposal;
163 PalletUniqueCall: PalletUniqueCall;158 PalletUniqueCall: PalletUniqueCall;
164 PalletUniqueError: PalletUniqueError;159 PalletUniqueError: PalletUniqueError;
165 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
166 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
167 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
168 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
169 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
170 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
171 PalletXcmCall: PalletXcmCall;160 PalletXcmCall: PalletXcmCall;
172 PalletXcmError: PalletXcmError;161 PalletXcmError: PalletXcmError;
173 PalletXcmEvent: PalletXcmEvent;162 PalletXcmEvent: PalletXcmEvent;
174 PalletXcmOrigin: PalletXcmOrigin;
175 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;163 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
176 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;164 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
177 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;165 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
202 SpCoreEcdsaSignature: SpCoreEcdsaSignature;190 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
203 SpCoreEd25519Signature: SpCoreEd25519Signature;191 SpCoreEd25519Signature: SpCoreEd25519Signature;
204 SpCoreSr25519Signature: SpCoreSr25519Signature;192 SpCoreSr25519Signature: SpCoreSr25519Signature;
205 SpCoreVoid: SpCoreVoid;
206 SpRuntimeArithmeticError: SpRuntimeArithmeticError;193 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
207 SpRuntimeDigest: SpRuntimeDigest;194 SpRuntimeDigest: SpRuntimeDigest;
208 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;195 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
1110 }1110 }
1111
1112 /** @name PalletUniqueSchedulerV2Event (89) */
1113 interface PalletUniqueSchedulerV2Event extends Enum {
1114 readonly isScheduled: boolean;
1115 readonly asScheduled: {
1116 readonly when: u32;
1117 readonly index: u32;
1118 } & Struct;
1119 readonly isCanceled: boolean;
1120 readonly asCanceled: {
1121 readonly when: u32;
1122 readonly index: u32;
1123 } & Struct;
1124 readonly isDispatched: boolean;
1125 readonly asDispatched: {
1126 readonly task: ITuple<[u32, u32]>;
1127 readonly id: Option<U8aFixed>;
1128 readonly result: Result<Null, SpRuntimeDispatchError>;
1129 } & Struct;
1130 readonly isPriorityChanged: boolean;
1131 readonly asPriorityChanged: {
1132 readonly task: ITuple<[u32, u32]>;
1133 readonly priority: u8;
1134 } & Struct;
1135 readonly isCallUnavailable: boolean;
1136 readonly asCallUnavailable: {
1137 readonly task: ITuple<[u32, u32]>;
1138 readonly id: Option<U8aFixed>;
1139 } & Struct;
1140 readonly isPermanentlyOverweight: boolean;
1141 readonly asPermanentlyOverweight: {
1142 readonly task: ITuple<[u32, u32]>;
1143 readonly id: Option<U8aFixed>;
1144 } & Struct;
1145 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
1146 }
11471111
1148 /** @name PalletCommonEvent (92) */1112 /** @name PalletCommonEvent (89) */
1149 interface PalletCommonEvent extends Enum {1113 interface PalletCommonEvent extends Enum {
1150 readonly isCollectionCreated: boolean;1114 readonly isCollectionCreated: boolean;
1151 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1115 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
1194 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1158 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
1195 }1159 }
11961160
1197 /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */1161 /** @name PalletEvmAccountBasicCrossAccountIdRepr (92) */
1198 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1162 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1199 readonly isSubstrate: boolean;1163 readonly isSubstrate: boolean;
1200 readonly asSubstrate: AccountId32;1164 readonly asSubstrate: AccountId32;
1203 readonly type: 'Substrate' | 'Ethereum';1167 readonly type: 'Substrate' | 'Ethereum';
1204 }1168 }
12051169
1206 /** @name PalletStructureEvent (99) */1170 /** @name PalletStructureEvent (96) */
1207 interface PalletStructureEvent extends Enum {1171 interface PalletStructureEvent extends Enum {
1208 readonly isExecuted: boolean;1172 readonly isExecuted: boolean;
1209 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1173 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
1210 readonly type: 'Executed';1174 readonly type: 'Executed';
1211 }1175 }
12121176
1213 /** @name PalletRmrkCoreEvent (100) */1177 /** @name PalletRmrkCoreEvent (97) */
1214 interface PalletRmrkCoreEvent extends Enum {1178 interface PalletRmrkCoreEvent extends Enum {
1215 readonly isCollectionCreated: boolean;1179 readonly isCollectionCreated: boolean;
1216 readonly asCollectionCreated: {1180 readonly asCollectionCreated: {
1300 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1264 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
1301 }1265 }
13021266
1303 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1267 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (98) */
1304 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1268 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
1305 readonly isAccountId: boolean;1269 readonly isAccountId: boolean;
1306 readonly asAccountId: AccountId32;1270 readonly asAccountId: AccountId32;
1309 readonly type: 'AccountId' | 'CollectionAndNftTuple';1273 readonly type: 'AccountId' | 'CollectionAndNftTuple';
1310 }1274 }
13111275
1312 /** @name PalletRmrkEquipEvent (105) */1276 /** @name PalletRmrkEquipEvent (102) */
1313 interface PalletRmrkEquipEvent extends Enum {1277 interface PalletRmrkEquipEvent extends Enum {
1314 readonly isBaseCreated: boolean;1278 readonly isBaseCreated: boolean;
1315 readonly asBaseCreated: {1279 readonly asBaseCreated: {
1324 readonly type: 'BaseCreated' | 'EquippablesUpdated';1288 readonly type: 'BaseCreated' | 'EquippablesUpdated';
1325 }1289 }
13261290
1327 /** @name PalletAppPromotionEvent (106) */1291 /** @name PalletAppPromotionEvent (103) */
1328 interface PalletAppPromotionEvent extends Enum {1292 interface PalletAppPromotionEvent extends Enum {
1329 readonly isStakingRecalculation: boolean;1293 readonly isStakingRecalculation: boolean;
1330 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1294 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1337 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1301 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1338 }1302 }
13391303
1340 /** @name PalletForeignAssetsModuleEvent (107) */1304 /** @name PalletForeignAssetsModuleEvent (104) */
1341 interface PalletForeignAssetsModuleEvent extends Enum {1305 interface PalletForeignAssetsModuleEvent extends Enum {
1342 readonly isForeignAssetRegistered: boolean;1306 readonly isForeignAssetRegistered: boolean;
1343 readonly asForeignAssetRegistered: {1307 readonly asForeignAssetRegistered: {
1364 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1328 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
1365 }1329 }
13661330
1367 /** @name PalletForeignAssetsModuleAssetMetadata (108) */1331 /** @name PalletForeignAssetsModuleAssetMetadata (105) */
1368 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1332 interface PalletForeignAssetsModuleAssetMetadata extends Struct {
1369 readonly name: Bytes;1333 readonly name: Bytes;
1370 readonly symbol: Bytes;1334 readonly symbol: Bytes;
1371 readonly decimals: u8;1335 readonly decimals: u8;
1372 readonly minimalBalance: u128;1336 readonly minimalBalance: u128;
1373 }1337 }
13741338
1375 /** @name PalletEvmEvent (109) */1339 /** @name PalletEvmEvent (106) */
1376 interface PalletEvmEvent extends Enum {1340 interface PalletEvmEvent extends Enum {
1377 readonly isLog: boolean;1341 readonly isLog: boolean;
1378 readonly asLog: {1342 readonly asLog: {
1397 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1361 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
1398 }1362 }
13991363
1400 /** @name EthereumLog (110) */1364 /** @name EthereumLog (107) */
1401 interface EthereumLog extends Struct {1365 interface EthereumLog extends Struct {
1402 readonly address: H160;1366 readonly address: H160;
1403 readonly topics: Vec<H256>;1367 readonly topics: Vec<H256>;
1404 readonly data: Bytes;1368 readonly data: Bytes;
1405 }1369 }
14061370
1407 /** @name PalletEthereumEvent (112) */1371 /** @name PalletEthereumEvent (109) */
1408 interface PalletEthereumEvent extends Enum {1372 interface PalletEthereumEvent extends Enum {
1409 readonly isExecuted: boolean;1373 readonly isExecuted: boolean;
1410 readonly asExecuted: {1374 readonly asExecuted: {
1416 readonly type: 'Executed';1380 readonly type: 'Executed';
1417 }1381 }
14181382
1419 /** @name EvmCoreErrorExitReason (113) */1383 /** @name EvmCoreErrorExitReason (110) */
1420 interface EvmCoreErrorExitReason extends Enum {1384 interface EvmCoreErrorExitReason extends Enum {
1421 readonly isSucceed: boolean;1385 readonly isSucceed: boolean;
1422 readonly asSucceed: EvmCoreErrorExitSucceed;1386 readonly asSucceed: EvmCoreErrorExitSucceed;
1429 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1393 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1430 }1394 }
14311395
1432 /** @name EvmCoreErrorExitSucceed (114) */1396 /** @name EvmCoreErrorExitSucceed (111) */
1433 interface EvmCoreErrorExitSucceed extends Enum {1397 interface EvmCoreErrorExitSucceed extends Enum {
1434 readonly isStopped: boolean;1398 readonly isStopped: boolean;
1435 readonly isReturned: boolean;1399 readonly isReturned: boolean;
1436 readonly isSuicided: boolean;1400 readonly isSuicided: boolean;
1437 readonly type: 'Stopped' | 'Returned' | 'Suicided';1401 readonly type: 'Stopped' | 'Returned' | 'Suicided';
1438 }1402 }
14391403
1440 /** @name EvmCoreErrorExitError (115) */1404 /** @name EvmCoreErrorExitError (112) */
1441 interface EvmCoreErrorExitError extends Enum {1405 interface EvmCoreErrorExitError extends Enum {
1442 readonly isStackUnderflow: boolean;1406 readonly isStackUnderflow: boolean;
1443 readonly isStackOverflow: boolean;1407 readonly isStackOverflow: boolean;
1458 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1422 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
1459 }1423 }
14601424
1461 /** @name EvmCoreErrorExitRevert (118) */1425 /** @name EvmCoreErrorExitRevert (115) */
1462 interface EvmCoreErrorExitRevert extends Enum {1426 interface EvmCoreErrorExitRevert extends Enum {
1463 readonly isReverted: boolean;1427 readonly isReverted: boolean;
1464 readonly type: 'Reverted';1428 readonly type: 'Reverted';
1465 }1429 }
14661430
1467 /** @name EvmCoreErrorExitFatal (119) */1431 /** @name EvmCoreErrorExitFatal (116) */
1468 interface EvmCoreErrorExitFatal extends Enum {1432 interface EvmCoreErrorExitFatal extends Enum {
1469 readonly isNotSupported: boolean;1433 readonly isNotSupported: boolean;
1470 readonly isUnhandledInterrupt: boolean;1434 readonly isUnhandledInterrupt: boolean;
1475 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1439 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1476 }1440 }
14771441
1478 /** @name PalletEvmContractHelpersEvent (120) */1442 /** @name PalletEvmContractHelpersEvent (117) */
1479 interface PalletEvmContractHelpersEvent extends Enum {1443 interface PalletEvmContractHelpersEvent extends Enum {
1480 readonly isContractSponsorSet: boolean;1444 readonly isContractSponsorSet: boolean;
1481 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1445 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1486 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1450 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1487 }1451 }
14881452
1489 /** @name PalletEvmMigrationEvent (121) */1453 /** @name PalletEvmMigrationEvent (118) */
1490 interface PalletEvmMigrationEvent extends Enum {1454 interface PalletEvmMigrationEvent extends Enum {
1491 readonly isTestEvent: boolean;1455 readonly isTestEvent: boolean;
1492 readonly type: 'TestEvent';1456 readonly type: 'TestEvent';
1493 }1457 }
14941458
1495 /** @name PalletMaintenanceEvent (122) */1459 /** @name PalletMaintenanceEvent (119) */
1496 interface PalletMaintenanceEvent extends Enum {1460 interface PalletMaintenanceEvent extends Enum {
1497 readonly isMaintenanceEnabled: boolean;1461 readonly isMaintenanceEnabled: boolean;
1498 readonly isMaintenanceDisabled: boolean;1462 readonly isMaintenanceDisabled: boolean;
1499 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1463 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
1500 }1464 }
15011465
1502 /** @name PalletTestUtilsEvent (123) */1466 /** @name PalletTestUtilsEvent (120) */
1503 interface PalletTestUtilsEvent extends Enum {1467 interface PalletTestUtilsEvent extends Enum {
1504 readonly isValueIsSet: boolean;1468 readonly isValueIsSet: boolean;
1505 readonly isShouldRollback: boolean;1469 readonly isShouldRollback: boolean;
1506 readonly isBatchCompleted: boolean;1470 readonly isBatchCompleted: boolean;
1507 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1471 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
1508 }1472 }
15091473
1510 /** @name FrameSystemPhase (124) */1474 /** @name FrameSystemPhase (121) */
1511 interface FrameSystemPhase extends Enum {1475 interface FrameSystemPhase extends Enum {
1512 readonly isApplyExtrinsic: boolean;1476 readonly isApplyExtrinsic: boolean;
1513 readonly asApplyExtrinsic: u32;1477 readonly asApplyExtrinsic: u32;
1516 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1480 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1517 }1481 }
15181482
1519 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1483 /** @name FrameSystemLastRuntimeUpgradeInfo (124) */
1520 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1484 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1521 readonly specVersion: Compact<u32>;1485 readonly specVersion: Compact<u32>;
1522 readonly specName: Text;1486 readonly specName: Text;
1523 }1487 }
15241488
1525 /** @name FrameSystemCall (127) */1489 /** @name FrameSystemCall (125) */
1526 interface FrameSystemCall extends Enum {1490 interface FrameSystemCall extends Enum {
1527 readonly isFillBlock: boolean;1491 readonly isFillBlock: boolean;
1528 readonly asFillBlock: {1492 readonly asFillBlock: {
1564 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1528 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1565 }1529 }
15661530
1567 /** @name FrameSystemLimitsBlockWeights (132) */1531 /** @name FrameSystemLimitsBlockWeights (130) */
1568 interface FrameSystemLimitsBlockWeights extends Struct {1532 interface FrameSystemLimitsBlockWeights extends Struct {
1569 readonly baseBlock: SpWeightsWeightV2Weight;1533 readonly baseBlock: SpWeightsWeightV2Weight;
1570 readonly maxBlock: SpWeightsWeightV2Weight;1534 readonly maxBlock: SpWeightsWeightV2Weight;
1571 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1535 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1572 }1536 }
15731537
1574 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */1538 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (131) */
1575 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1539 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1576 readonly normal: FrameSystemLimitsWeightsPerClass;1540 readonly normal: FrameSystemLimitsWeightsPerClass;
1577 readonly operational: FrameSystemLimitsWeightsPerClass;1541 readonly operational: FrameSystemLimitsWeightsPerClass;
1578 readonly mandatory: FrameSystemLimitsWeightsPerClass;1542 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1579 }1543 }
15801544
1581 /** @name FrameSystemLimitsWeightsPerClass (134) */1545 /** @name FrameSystemLimitsWeightsPerClass (132) */
1582 interface FrameSystemLimitsWeightsPerClass extends Struct {1546 interface FrameSystemLimitsWeightsPerClass extends Struct {
1583 readonly baseExtrinsic: SpWeightsWeightV2Weight;1547 readonly baseExtrinsic: SpWeightsWeightV2Weight;
1584 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1548 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1585 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1549 readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1586 readonly reserved: Option<SpWeightsWeightV2Weight>;1550 readonly reserved: Option<SpWeightsWeightV2Weight>;
1587 }1551 }
15881552
1589 /** @name FrameSystemLimitsBlockLength (136) */1553 /** @name FrameSystemLimitsBlockLength (134) */
1590 interface FrameSystemLimitsBlockLength extends Struct {1554 interface FrameSystemLimitsBlockLength extends Struct {
1591 readonly max: FrameSupportDispatchPerDispatchClassU32;1555 readonly max: FrameSupportDispatchPerDispatchClassU32;
1592 }1556 }
15931557
1594 /** @name FrameSupportDispatchPerDispatchClassU32 (137) */1558 /** @name FrameSupportDispatchPerDispatchClassU32 (135) */
1595 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1559 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1596 readonly normal: u32;1560 readonly normal: u32;
1597 readonly operational: u32;1561 readonly operational: u32;
1598 readonly mandatory: u32;1562 readonly mandatory: u32;
1599 }1563 }
16001564
1601 /** @name SpWeightsRuntimeDbWeight (138) */1565 /** @name SpWeightsRuntimeDbWeight (136) */
1602 interface SpWeightsRuntimeDbWeight extends Struct {1566 interface SpWeightsRuntimeDbWeight extends Struct {
1603 readonly read: u64;1567 readonly read: u64;
1604 readonly write: u64;1568 readonly write: u64;
1605 }1569 }
16061570
1607 /** @name SpVersionRuntimeVersion (139) */1571 /** @name SpVersionRuntimeVersion (137) */
1608 interface SpVersionRuntimeVersion extends Struct {1572 interface SpVersionRuntimeVersion extends Struct {
1609 readonly specName: Text;1573 readonly specName: Text;
1610 readonly implName: Text;1574 readonly implName: Text;
1616 readonly stateVersion: u8;1580 readonly stateVersion: u8;
1617 }1581 }
16181582
1619 /** @name FrameSystemError (144) */1583 /** @name FrameSystemError (142) */
1620 interface FrameSystemError extends Enum {1584 interface FrameSystemError extends Enum {
1621 readonly isInvalidSpecName: boolean;1585 readonly isInvalidSpecName: boolean;
1622 readonly isSpecVersionNeedsToIncrease: boolean;1586 readonly isSpecVersionNeedsToIncrease: boolean;
1627 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1591 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1628 }1592 }
16291593
1630 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1594 /** @name PolkadotPrimitivesV2PersistedValidationData (143) */
1631 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1595 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
1632 readonly parentHead: Bytes;1596 readonly parentHead: Bytes;
1633 readonly relayParentNumber: u32;1597 readonly relayParentNumber: u32;
1634 readonly relayParentStorageRoot: H256;1598 readonly relayParentStorageRoot: H256;
1635 readonly maxPovSize: u32;1599 readonly maxPovSize: u32;
1636 }1600 }
16371601
1638 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1602 /** @name PolkadotPrimitivesV2UpgradeRestriction (146) */
1639 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1603 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
1640 readonly isPresent: boolean;1604 readonly isPresent: boolean;
1641 readonly type: 'Present';1605 readonly type: 'Present';
1642 }1606 }
16431607
1644 /** @name SpTrieStorageProof (149) */1608 /** @name SpTrieStorageProof (147) */
1645 interface SpTrieStorageProof extends Struct {1609 interface SpTrieStorageProof extends Struct {
1646 readonly trieNodes: BTreeSet<Bytes>;1610 readonly trieNodes: BTreeSet<Bytes>;
1647 }1611 }
16481612
1649 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1613 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (149) */
1650 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1614 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1651 readonly dmqMqcHead: H256;1615 readonly dmqMqcHead: H256;
1652 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1616 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1653 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1617 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1654 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1618 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1655 }1619 }
16561620
1657 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1621 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (152) */
1658 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1622 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
1659 readonly maxCapacity: u32;1623 readonly maxCapacity: u32;
1660 readonly maxTotalSize: u32;1624 readonly maxTotalSize: u32;
1664 readonly mqcHead: Option<H256>;1628 readonly mqcHead: Option<H256>;
1665 }1629 }
16661630
1667 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1631 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (153) */
1668 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1632 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
1669 readonly maxCodeSize: u32;1633 readonly maxCodeSize: u32;
1670 readonly maxHeadDataSize: u32;1634 readonly maxHeadDataSize: u32;
1677 readonly validationUpgradeDelay: u32;1641 readonly validationUpgradeDelay: u32;
1678 }1642 }
16791643
1680 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1644 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (159) */
1681 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1645 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1682 readonly recipient: u32;1646 readonly recipient: u32;
1683 readonly data: Bytes;1647 readonly data: Bytes;
1684 }1648 }
16851649
1686 /** @name CumulusPalletParachainSystemCall (162) */1650 /** @name CumulusPalletParachainSystemCall (160) */
1687 interface CumulusPalletParachainSystemCall extends Enum {1651 interface CumulusPalletParachainSystemCall extends Enum {
1688 readonly isSetValidationData: boolean;1652 readonly isSetValidationData: boolean;
1689 readonly asSetValidationData: {1653 readonly asSetValidationData: {
1704 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1668 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1705 }1669 }
17061670
1707 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1671 /** @name CumulusPrimitivesParachainInherentParachainInherentData (161) */
1708 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1672 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1709 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1673 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
1710 readonly relayChainState: SpTrieStorageProof;1674 readonly relayChainState: SpTrieStorageProof;
1711 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1675 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1712 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1676 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1713 }1677 }
17141678
1715 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1679 /** @name PolkadotCorePrimitivesInboundDownwardMessage (163) */
1716 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1680 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1717 readonly sentAt: u32;1681 readonly sentAt: u32;
1718 readonly msg: Bytes;1682 readonly msg: Bytes;
1719 }1683 }
17201684
1721 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1685 /** @name PolkadotCorePrimitivesInboundHrmpMessage (166) */
1722 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1686 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1723 readonly sentAt: u32;1687 readonly sentAt: u32;
1724 readonly data: Bytes;1688 readonly data: Bytes;
1725 }1689 }
17261690
1727 /** @name CumulusPalletParachainSystemError (171) */1691 /** @name CumulusPalletParachainSystemError (169) */
1728 interface CumulusPalletParachainSystemError extends Enum {1692 interface CumulusPalletParachainSystemError extends Enum {
1729 readonly isOverlappingUpgrades: boolean;1693 readonly isOverlappingUpgrades: boolean;
1730 readonly isProhibitedByPolkadot: boolean;1694 readonly isProhibitedByPolkadot: boolean;
1737 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1701 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1738 }1702 }
17391703
1740 /** @name PalletBalancesBalanceLock (173) */1704 /** @name PalletBalancesBalanceLock (171) */
1741 interface PalletBalancesBalanceLock extends Struct {1705 interface PalletBalancesBalanceLock extends Struct {
1742 readonly id: U8aFixed;1706 readonly id: U8aFixed;
1743 readonly amount: u128;1707 readonly amount: u128;
1744 readonly reasons: PalletBalancesReasons;1708 readonly reasons: PalletBalancesReasons;
1745 }1709 }
17461710
1747 /** @name PalletBalancesReasons (174) */1711 /** @name PalletBalancesReasons (172) */
1748 interface PalletBalancesReasons extends Enum {1712 interface PalletBalancesReasons extends Enum {
1749 readonly isFee: boolean;1713 readonly isFee: boolean;
1750 readonly isMisc: boolean;1714 readonly isMisc: boolean;
1751 readonly isAll: boolean;1715 readonly isAll: boolean;
1752 readonly type: 'Fee' | 'Misc' | 'All';1716 readonly type: 'Fee' | 'Misc' | 'All';
1753 }1717 }
17541718
1755 /** @name PalletBalancesReserveData (177) */1719 /** @name PalletBalancesReserveData (175) */
1756 interface PalletBalancesReserveData extends Struct {1720 interface PalletBalancesReserveData extends Struct {
1757 readonly id: U8aFixed;1721 readonly id: U8aFixed;
1758 readonly amount: u128;1722 readonly amount: u128;
1759 }1723 }
17601724
1761 /** @name PalletBalancesReleases (179) */1725 /** @name PalletBalancesReleases (177) */
1762 interface PalletBalancesReleases extends Enum {1726 interface PalletBalancesReleases extends Enum {
1763 readonly isV100: boolean;1727 readonly isV100: boolean;
1764 readonly isV200: boolean;1728 readonly isV200: boolean;
1765 readonly type: 'V100' | 'V200';1729 readonly type: 'V100' | 'V200';
1766 }1730 }
17671731
1768 /** @name PalletBalancesCall (180) */1732 /** @name PalletBalancesCall (178) */
1769 interface PalletBalancesCall extends Enum {1733 interface PalletBalancesCall extends Enum {
1770 readonly isTransfer: boolean;1734 readonly isTransfer: boolean;
1771 readonly asTransfer: {1735 readonly asTransfer: {
1802 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1766 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
1803 }1767 }
18041768
1805 /** @name PalletBalancesError (183) */1769 /** @name PalletBalancesError (181) */
1806 interface PalletBalancesError extends Enum {1770 interface PalletBalancesError extends Enum {
1807 readonly isVestingBalance: boolean;1771 readonly isVestingBalance: boolean;
1808 readonly isLiquidityRestrictions: boolean;1772 readonly isLiquidityRestrictions: boolean;
1815 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1779 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
1816 }1780 }
18171781
1818 /** @name PalletTimestampCall (185) */1782 /** @name PalletTimestampCall (183) */
1819 interface PalletTimestampCall extends Enum {1783 interface PalletTimestampCall extends Enum {
1820 readonly isSet: boolean;1784 readonly isSet: boolean;
1821 readonly asSet: {1785 readonly asSet: {
1824 readonly type: 'Set';1788 readonly type: 'Set';
1825 }1789 }
18261790
1827 /** @name PalletTransactionPaymentReleases (187) */1791 /** @name PalletTransactionPaymentReleases (185) */
1828 interface PalletTransactionPaymentReleases extends Enum {1792 interface PalletTransactionPaymentReleases extends Enum {
1829 readonly isV1Ancient: boolean;1793 readonly isV1Ancient: boolean;
1830 readonly isV2: boolean;1794 readonly isV2: boolean;
1831 readonly type: 'V1Ancient' | 'V2';1795 readonly type: 'V1Ancient' | 'V2';
1832 }1796 }
18331797
1834 /** @name PalletTreasuryProposal (188) */1798 /** @name PalletTreasuryProposal (186) */
1835 interface PalletTreasuryProposal extends Struct {1799 interface PalletTreasuryProposal extends Struct {
1836 readonly proposer: AccountId32;1800 readonly proposer: AccountId32;
1837 readonly value: u128;1801 readonly value: u128;
1838 readonly beneficiary: AccountId32;1802 readonly beneficiary: AccountId32;
1839 readonly bond: u128;1803 readonly bond: u128;
1840 }1804 }
18411805
1842 /** @name PalletTreasuryCall (191) */1806 /** @name PalletTreasuryCall (189) */
1843 interface PalletTreasuryCall extends Enum {1807 interface PalletTreasuryCall extends Enum {
1844 readonly isProposeSpend: boolean;1808 readonly isProposeSpend: boolean;
1845 readonly asProposeSpend: {1809 readonly asProposeSpend: {
1866 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1830 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
1867 }1831 }
18681832
1869 /** @name FrameSupportPalletId (194) */1833 /** @name FrameSupportPalletId (192) */
1870 interface FrameSupportPalletId extends U8aFixed {}1834 interface FrameSupportPalletId extends U8aFixed {}
18711835
1872 /** @name PalletTreasuryError (195) */1836 /** @name PalletTreasuryError (193) */
1873 interface PalletTreasuryError extends Enum {1837 interface PalletTreasuryError extends Enum {
1874 readonly isInsufficientProposersBalance: boolean;1838 readonly isInsufficientProposersBalance: boolean;
1875 readonly isInvalidIndex: boolean;1839 readonly isInvalidIndex: boolean;
1879 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1843 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
1880 }1844 }
18811845
1882 /** @name PalletSudoCall (196) */1846 /** @name PalletSudoCall (194) */
1883 interface PalletSudoCall extends Enum {1847 interface PalletSudoCall extends Enum {
1884 readonly isSudo: boolean;1848 readonly isSudo: boolean;
1885 readonly asSudo: {1849 readonly asSudo: {
1902 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1866 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
1903 }1867 }
19041868
1905 /** @name OrmlVestingModuleCall (198) */1869 /** @name OrmlVestingModuleCall (196) */
1906 interface OrmlVestingModuleCall extends Enum {1870 interface OrmlVestingModuleCall extends Enum {
1907 readonly isClaim: boolean;1871 readonly isClaim: boolean;
1908 readonly isVestedTransfer: boolean;1872 readonly isVestedTransfer: boolean;
1922 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1886 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
1923 }1887 }
19241888
1925 /** @name OrmlXtokensModuleCall (200) */1889 /** @name OrmlXtokensModuleCall (198) */
1926 interface OrmlXtokensModuleCall extends Enum {1890 interface OrmlXtokensModuleCall extends Enum {
1927 readonly isTransfer: boolean;1891 readonly isTransfer: boolean;
1928 readonly asTransfer: {1892 readonly asTransfer: {
1969 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1933 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
1970 }1934 }
19711935
1972 /** @name XcmVersionedMultiAsset (201) */1936 /** @name XcmVersionedMultiAsset (199) */
1973 interface XcmVersionedMultiAsset extends Enum {1937 interface XcmVersionedMultiAsset extends Enum {
1974 readonly isV0: boolean;1938 readonly isV0: boolean;
1975 readonly asV0: XcmV0MultiAsset;1939 readonly asV0: XcmV0MultiAsset;
1978 readonly type: 'V0' | 'V1';1942 readonly type: 'V0' | 'V1';
1979 }1943 }
19801944
1981 /** @name OrmlTokensModuleCall (204) */1945 /** @name OrmlTokensModuleCall (202) */
1982 interface OrmlTokensModuleCall extends Enum {1946 interface OrmlTokensModuleCall extends Enum {
1983 readonly isTransfer: boolean;1947 readonly isTransfer: boolean;
1984 readonly asTransfer: {1948 readonly asTransfer: {
2015 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1979 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
2016 }1980 }
20171981
2018 /** @name CumulusPalletXcmpQueueCall (205) */1982 /** @name CumulusPalletXcmpQueueCall (203) */
2019 interface CumulusPalletXcmpQueueCall extends Enum {1983 interface CumulusPalletXcmpQueueCall extends Enum {
2020 readonly isServiceOverweight: boolean;1984 readonly isServiceOverweight: boolean;
2021 readonly asServiceOverweight: {1985 readonly asServiceOverweight: {
2051 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2015 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
2052 }2016 }
20532017
2054 /** @name PalletXcmCall (206) */2018 /** @name PalletXcmCall (204) */
2055 interface PalletXcmCall extends Enum {2019 interface PalletXcmCall extends Enum {
2056 readonly isSend: boolean;2020 readonly isSend: boolean;
2057 readonly asSend: {2021 readonly asSend: {
2113 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2077 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
2114 }2078 }
21152079
2116 /** @name XcmVersionedXcm (207) */2080 /** @name XcmVersionedXcm (205) */
2117 interface XcmVersionedXcm extends Enum {2081 interface XcmVersionedXcm extends Enum {
2118 readonly isV0: boolean;2082 readonly isV0: boolean;
2119 readonly asV0: XcmV0Xcm;2083 readonly asV0: XcmV0Xcm;
2124 readonly type: 'V0' | 'V1' | 'V2';2088 readonly type: 'V0' | 'V1' | 'V2';
2125 }2089 }
21262090
2127 /** @name XcmV0Xcm (208) */2091 /** @name XcmV0Xcm (206) */
2128 interface XcmV0Xcm extends Enum {2092 interface XcmV0Xcm extends Enum {
2129 readonly isWithdrawAsset: boolean;2093 readonly isWithdrawAsset: boolean;
2130 readonly asWithdrawAsset: {2094 readonly asWithdrawAsset: {
2187 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2151 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
2188 }2152 }
21892153
2190 /** @name XcmV0Order (210) */2154 /** @name XcmV0Order (208) */
2191 interface XcmV0Order extends Enum {2155 interface XcmV0Order extends Enum {
2192 readonly isNull: boolean;2156 readonly isNull: boolean;
2193 readonly isDepositAsset: boolean;2157 readonly isDepositAsset: boolean;
2235 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2199 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2236 }2200 }
22372201
2238 /** @name XcmV0Response (212) */2202 /** @name XcmV0Response (210) */
2239 interface XcmV0Response extends Enum {2203 interface XcmV0Response extends Enum {
2240 readonly isAssets: boolean;2204 readonly isAssets: boolean;
2241 readonly asAssets: Vec<XcmV0MultiAsset>;2205 readonly asAssets: Vec<XcmV0MultiAsset>;
2242 readonly type: 'Assets';2206 readonly type: 'Assets';
2243 }2207 }
22442208
2245 /** @name XcmV1Xcm (213) */2209 /** @name XcmV1Xcm (211) */
2246 interface XcmV1Xcm extends Enum {2210 interface XcmV1Xcm extends Enum {
2247 readonly isWithdrawAsset: boolean;2211 readonly isWithdrawAsset: boolean;
2248 readonly asWithdrawAsset: {2212 readonly asWithdrawAsset: {
2311 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2275 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
2312 }2276 }
23132277
2314 /** @name XcmV1Order (215) */2278 /** @name XcmV1Order (213) */
2315 interface XcmV1Order extends Enum {2279 interface XcmV1Order extends Enum {
2316 readonly isNoop: boolean;2280 readonly isNoop: boolean;
2317 readonly isDepositAsset: boolean;2281 readonly isDepositAsset: boolean;
2361 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2325 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2362 }2326 }
23632327
2364 /** @name XcmV1Response (217) */2328 /** @name XcmV1Response (215) */
2365 interface XcmV1Response extends Enum {2329 interface XcmV1Response extends Enum {
2366 readonly isAssets: boolean;2330 readonly isAssets: boolean;
2367 readonly asAssets: XcmV1MultiassetMultiAssets;2331 readonly asAssets: XcmV1MultiassetMultiAssets;
2370 readonly type: 'Assets' | 'Version';2334 readonly type: 'Assets' | 'Version';
2371 }2335 }
23722336
2373 /** @name CumulusPalletXcmCall (231) */2337 /** @name CumulusPalletXcmCall (229) */
2374 type CumulusPalletXcmCall = Null;2338 type CumulusPalletXcmCall = Null;
23752339
2376 /** @name CumulusPalletDmpQueueCall (232) */2340 /** @name CumulusPalletDmpQueueCall (230) */
2377 interface CumulusPalletDmpQueueCall extends Enum {2341 interface CumulusPalletDmpQueueCall extends Enum {
2378 readonly isServiceOverweight: boolean;2342 readonly isServiceOverweight: boolean;
2379 readonly asServiceOverweight: {2343 readonly asServiceOverweight: {
2383 readonly type: 'ServiceOverweight';2347 readonly type: 'ServiceOverweight';
2384 }2348 }
23852349
2386 /** @name PalletInflationCall (233) */2350 /** @name PalletInflationCall (231) */
2387 interface PalletInflationCall extends Enum {2351 interface PalletInflationCall extends Enum {
2388 readonly isStartInflation: boolean;2352 readonly isStartInflation: boolean;
2389 readonly asStartInflation: {2353 readonly asStartInflation: {
2392 readonly type: 'StartInflation';2356 readonly type: 'StartInflation';
2393 }2357 }
23942358
2395 /** @name PalletUniqueCall (234) */2359 /** @name PalletUniqueCall (232) */
2396 interface PalletUniqueCall extends Enum {2360 interface PalletUniqueCall extends Enum {
2397 readonly isCreateCollection: boolean;2361 readonly isCreateCollection: boolean;
2398 readonly asCreateCollection: {2362 readonly asCreateCollection: {
2556 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2520 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';
2557 }2521 }
25582522
2559 /** @name UpDataStructsCollectionMode (239) */2523 /** @name UpDataStructsCollectionMode (237) */
2560 interface UpDataStructsCollectionMode extends Enum {2524 interface UpDataStructsCollectionMode extends Enum {
2561 readonly isNft: boolean;2525 readonly isNft: boolean;
2562 readonly isFungible: boolean;2526 readonly isFungible: boolean;
2565 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2529 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2566 }2530 }
25672531
2568 /** @name UpDataStructsCreateCollectionData (240) */2532 /** @name UpDataStructsCreateCollectionData (238) */
2569 interface UpDataStructsCreateCollectionData extends Struct {2533 interface UpDataStructsCreateCollectionData extends Struct {
2570 readonly mode: UpDataStructsCollectionMode;2534 readonly mode: UpDataStructsCollectionMode;
2571 readonly access: Option<UpDataStructsAccessMode>;2535 readonly access: Option<UpDataStructsAccessMode>;
2579 readonly properties: Vec<UpDataStructsProperty>;2543 readonly properties: Vec<UpDataStructsProperty>;
2580 }2544 }
25812545
2582 /** @name UpDataStructsAccessMode (242) */2546 /** @name UpDataStructsAccessMode (240) */
2583 interface UpDataStructsAccessMode extends Enum {2547 interface UpDataStructsAccessMode extends Enum {
2584 readonly isNormal: boolean;2548 readonly isNormal: boolean;
2585 readonly isAllowList: boolean;2549 readonly isAllowList: boolean;
2586 readonly type: 'Normal' | 'AllowList';2550 readonly type: 'Normal' | 'AllowList';
2587 }2551 }
25882552
2589 /** @name UpDataStructsCollectionLimits (244) */2553 /** @name UpDataStructsCollectionLimits (242) */
2590 interface UpDataStructsCollectionLimits extends Struct {2554 interface UpDataStructsCollectionLimits extends Struct {
2591 readonly accountTokenOwnershipLimit: Option<u32>;2555 readonly accountTokenOwnershipLimit: Option<u32>;
2592 readonly sponsoredDataSize: Option<u32>;2556 readonly sponsoredDataSize: Option<u32>;
2599 readonly transfersEnabled: Option<bool>;2563 readonly transfersEnabled: Option<bool>;
2600 }2564 }
26012565
2602 /** @name UpDataStructsSponsoringRateLimit (246) */2566 /** @name UpDataStructsSponsoringRateLimit (244) */
2603 interface UpDataStructsSponsoringRateLimit extends Enum {2567 interface UpDataStructsSponsoringRateLimit extends Enum {
2604 readonly isSponsoringDisabled: boolean;2568 readonly isSponsoringDisabled: boolean;
2605 readonly isBlocks: boolean;2569 readonly isBlocks: boolean;
2606 readonly asBlocks: u32;2570 readonly asBlocks: u32;
2607 readonly type: 'SponsoringDisabled' | 'Blocks';2571 readonly type: 'SponsoringDisabled' | 'Blocks';
2608 }2572 }
26092573
2610 /** @name UpDataStructsCollectionPermissions (249) */2574 /** @name UpDataStructsCollectionPermissions (247) */
2611 interface UpDataStructsCollectionPermissions extends Struct {2575 interface UpDataStructsCollectionPermissions extends Struct {
2612 readonly access: Option<UpDataStructsAccessMode>;2576 readonly access: Option<UpDataStructsAccessMode>;
2613 readonly mintMode: Option<bool>;2577 readonly mintMode: Option<bool>;
2614 readonly nesting: Option<UpDataStructsNestingPermissions>;2578 readonly nesting: Option<UpDataStructsNestingPermissions>;
2615 }2579 }
26162580
2617 /** @name UpDataStructsNestingPermissions (251) */2581 /** @name UpDataStructsNestingPermissions (249) */
2618 interface UpDataStructsNestingPermissions extends Struct {2582 interface UpDataStructsNestingPermissions extends Struct {
2619 readonly tokenOwner: bool;2583 readonly tokenOwner: bool;
2620 readonly collectionAdmin: bool;2584 readonly collectionAdmin: bool;
2621 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2585 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
2622 }2586 }
26232587
2624 /** @name UpDataStructsOwnerRestrictedSet (253) */2588 /** @name UpDataStructsOwnerRestrictedSet (251) */
2625 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2589 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
26262590
2627 /** @name UpDataStructsPropertyKeyPermission (258) */2591 /** @name UpDataStructsPropertyKeyPermission (256) */
2628 interface UpDataStructsPropertyKeyPermission extends Struct {2592 interface UpDataStructsPropertyKeyPermission extends Struct {
2629 readonly key: Bytes;2593 readonly key: Bytes;
2630 readonly permission: UpDataStructsPropertyPermission;2594 readonly permission: UpDataStructsPropertyPermission;
2631 }2595 }
26322596
2633 /** @name UpDataStructsPropertyPermission (259) */2597 /** @name UpDataStructsPropertyPermission (257) */
2634 interface UpDataStructsPropertyPermission extends Struct {2598 interface UpDataStructsPropertyPermission extends Struct {
2635 readonly mutable: bool;2599 readonly mutable: bool;
2636 readonly collectionAdmin: bool;2600 readonly collectionAdmin: bool;
2637 readonly tokenOwner: bool;2601 readonly tokenOwner: bool;
2638 }2602 }
26392603
2640 /** @name UpDataStructsProperty (262) */2604 /** @name UpDataStructsProperty (260) */
2641 interface UpDataStructsProperty extends Struct {2605 interface UpDataStructsProperty extends Struct {
2642 readonly key: Bytes;2606 readonly key: Bytes;
2643 readonly value: Bytes;2607 readonly value: Bytes;
2644 }2608 }
26452609
2646 /** @name UpDataStructsCreateItemData (265) */2610 /** @name UpDataStructsCreateItemData (263) */
2647 interface UpDataStructsCreateItemData extends Enum {2611 interface UpDataStructsCreateItemData extends Enum {
2648 readonly isNft: boolean;2612 readonly isNft: boolean;
2649 readonly asNft: UpDataStructsCreateNftData;2613 readonly asNft: UpDataStructsCreateNftData;
2654 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2618 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2655 }2619 }
26562620
2657 /** @name UpDataStructsCreateNftData (266) */2621 /** @name UpDataStructsCreateNftData (264) */
2658 interface UpDataStructsCreateNftData extends Struct {2622 interface UpDataStructsCreateNftData extends Struct {
2659 readonly properties: Vec<UpDataStructsProperty>;2623 readonly properties: Vec<UpDataStructsProperty>;
2660 }2624 }
26612625
2662 /** @name UpDataStructsCreateFungibleData (267) */2626 /** @name UpDataStructsCreateFungibleData (265) */
2663 interface UpDataStructsCreateFungibleData extends Struct {2627 interface UpDataStructsCreateFungibleData extends Struct {
2664 readonly value: u128;2628 readonly value: u128;
2665 }2629 }
26662630
2667 /** @name UpDataStructsCreateReFungibleData (268) */2631 /** @name UpDataStructsCreateReFungibleData (266) */
2668 interface UpDataStructsCreateReFungibleData extends Struct {2632 interface UpDataStructsCreateReFungibleData extends Struct {
2669 readonly pieces: u128;2633 readonly pieces: u128;
2670 readonly properties: Vec<UpDataStructsProperty>;2634 readonly properties: Vec<UpDataStructsProperty>;
2671 }2635 }
26722636
2673 /** @name UpDataStructsCreateItemExData (271) */2637 /** @name UpDataStructsCreateItemExData (269) */
2674 interface UpDataStructsCreateItemExData extends Enum {2638 interface UpDataStructsCreateItemExData extends Enum {
2675 readonly isNft: boolean;2639 readonly isNft: boolean;
2676 readonly asNft: Vec<UpDataStructsCreateNftExData>;2640 readonly asNft: Vec<UpDataStructsCreateNftExData>;
2683 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2647 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
2684 }2648 }
26852649
2686 /** @name UpDataStructsCreateNftExData (273) */2650 /** @name UpDataStructsCreateNftExData (271) */
2687 interface UpDataStructsCreateNftExData extends Struct {2651 interface UpDataStructsCreateNftExData extends Struct {
2688 readonly properties: Vec<UpDataStructsProperty>;2652 readonly properties: Vec<UpDataStructsProperty>;
2689 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2653 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2690 }2654 }
26912655
2692 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2656 /** @name UpDataStructsCreateRefungibleExSingleOwner (278) */
2693 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2657 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
2694 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2658 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
2695 readonly pieces: u128;2659 readonly pieces: u128;
2696 readonly properties: Vec<UpDataStructsProperty>;2660 readonly properties: Vec<UpDataStructsProperty>;
2697 }2661 }
26982662
2699 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2663 /** @name UpDataStructsCreateRefungibleExMultipleOwners (280) */
2700 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2664 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
2701 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2665 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
2702 readonly properties: Vec<UpDataStructsProperty>;2666 readonly properties: Vec<UpDataStructsProperty>;
2703 }2667 }
2704
2705 /** @name PalletUniqueSchedulerV2Call (283) */
2706 interface PalletUniqueSchedulerV2Call extends Enum {
2707 readonly isSchedule: boolean;
2708 readonly asSchedule: {
2709 readonly when: u32;
2710 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2711 readonly priority: Option<u8>;
2712 readonly call: Call;
2713 } & Struct;
2714 readonly isCancel: boolean;
2715 readonly asCancel: {
2716 readonly when: u32;
2717 readonly index: u32;
2718 } & Struct;
2719 readonly isScheduleNamed: boolean;
2720 readonly asScheduleNamed: {
2721 readonly id: U8aFixed;
2722 readonly when: u32;
2723 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2724 readonly priority: Option<u8>;
2725 readonly call: Call;
2726 } & Struct;
2727 readonly isCancelNamed: boolean;
2728 readonly asCancelNamed: {
2729 readonly id: U8aFixed;
2730 } & Struct;
2731 readonly isScheduleAfter: boolean;
2732 readonly asScheduleAfter: {
2733 readonly after: u32;
2734 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2735 readonly priority: Option<u8>;
2736 readonly call: Call;
2737 } & Struct;
2738 readonly isScheduleNamedAfter: boolean;
2739 readonly asScheduleNamedAfter: {
2740 readonly id: U8aFixed;
2741 readonly after: u32;
2742 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
2743 readonly priority: Option<u8>;
2744 readonly call: Call;
2745 } & Struct;
2746 readonly isChangeNamedPriority: boolean;
2747 readonly asChangeNamedPriority: {
2748 readonly id: U8aFixed;
2749 readonly priority: u8;
2750 } & Struct;
2751 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
2752 }
27532668
2754 /** @name PalletConfigurationCall (286) */2669 /** @name PalletConfigurationCall (281) */
2755 interface PalletConfigurationCall extends Enum {2670 interface PalletConfigurationCall extends Enum {
2756 readonly isSetWeightToFeeCoefficientOverride: boolean;2671 readonly isSetWeightToFeeCoefficientOverride: boolean;
2757 readonly asSetWeightToFeeCoefficientOverride: {2672 readonly asSetWeightToFeeCoefficientOverride: {
2768 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';2683 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
2769 }2684 }
27702685
2771 /** @name PalletTemplateTransactionPaymentCall (291) */2686 /** @name PalletTemplateTransactionPaymentCall (286) */
2772 type PalletTemplateTransactionPaymentCall = Null;2687 type PalletTemplateTransactionPaymentCall = Null;
27732688
2774 /** @name PalletStructureCall (292) */2689 /** @name PalletStructureCall (287) */
2775 type PalletStructureCall = Null;2690 type PalletStructureCall = Null;
27762691
2777 /** @name PalletRmrkCoreCall (293) */2692 /** @name PalletRmrkCoreCall (288) */
2778 interface PalletRmrkCoreCall extends Enum {2693 interface PalletRmrkCoreCall extends Enum {
2779 readonly isCreateCollection: boolean;2694 readonly isCreateCollection: boolean;
2780 readonly asCreateCollection: {2695 readonly asCreateCollection: {
2880 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2795 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
2881 }2796 }
28822797
2883 /** @name RmrkTraitsResourceResourceTypes (299) */2798 /** @name RmrkTraitsResourceResourceTypes (294) */
2884 interface RmrkTraitsResourceResourceTypes extends Enum {2799 interface RmrkTraitsResourceResourceTypes extends Enum {
2885 readonly isBasic: boolean;2800 readonly isBasic: boolean;
2886 readonly asBasic: RmrkTraitsResourceBasicResource;2801 readonly asBasic: RmrkTraitsResourceBasicResource;
2891 readonly type: 'Basic' | 'Composable' | 'Slot';2806 readonly type: 'Basic' | 'Composable' | 'Slot';
2892 }2807 }
28932808
2894 /** @name RmrkTraitsResourceBasicResource (301) */2809 /** @name RmrkTraitsResourceBasicResource (296) */
2895 interface RmrkTraitsResourceBasicResource extends Struct {2810 interface RmrkTraitsResourceBasicResource extends Struct {
2896 readonly src: Option<Bytes>;2811 readonly src: Option<Bytes>;
2897 readonly metadata: Option<Bytes>;2812 readonly metadata: Option<Bytes>;
2898 readonly license: Option<Bytes>;2813 readonly license: Option<Bytes>;
2899 readonly thumb: Option<Bytes>;2814 readonly thumb: Option<Bytes>;
2900 }2815 }
29012816
2902 /** @name RmrkTraitsResourceComposableResource (303) */2817 /** @name RmrkTraitsResourceComposableResource (298) */
2903 interface RmrkTraitsResourceComposableResource extends Struct {2818 interface RmrkTraitsResourceComposableResource extends Struct {
2904 readonly parts: Vec<u32>;2819 readonly parts: Vec<u32>;
2905 readonly base: u32;2820 readonly base: u32;
2909 readonly thumb: Option<Bytes>;2824 readonly thumb: Option<Bytes>;
2910 }2825 }
29112826
2912 /** @name RmrkTraitsResourceSlotResource (304) */2827 /** @name RmrkTraitsResourceSlotResource (299) */
2913 interface RmrkTraitsResourceSlotResource extends Struct {2828 interface RmrkTraitsResourceSlotResource extends Struct {
2914 readonly base: u32;2829 readonly base: u32;
2915 readonly src: Option<Bytes>;2830 readonly src: Option<Bytes>;
2919 readonly thumb: Option<Bytes>;2834 readonly thumb: Option<Bytes>;
2920 }2835 }
29212836
2922 /** @name PalletRmrkEquipCall (307) */2837 /** @name PalletRmrkEquipCall (302) */
2923 interface PalletRmrkEquipCall extends Enum {2838 interface PalletRmrkEquipCall extends Enum {
2924 readonly isCreateBase: boolean;2839 readonly isCreateBase: boolean;
2925 readonly asCreateBase: {2840 readonly asCreateBase: {
2941 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2856 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
2942 }2857 }
29432858
2944 /** @name RmrkTraitsPartPartType (310) */2859 /** @name RmrkTraitsPartPartType (305) */
2945 interface RmrkTraitsPartPartType extends Enum {2860 interface RmrkTraitsPartPartType extends Enum {
2946 readonly isFixedPart: boolean;2861 readonly isFixedPart: boolean;
2947 readonly asFixedPart: RmrkTraitsPartFixedPart;2862 readonly asFixedPart: RmrkTraitsPartFixedPart;
2950 readonly type: 'FixedPart' | 'SlotPart';2865 readonly type: 'FixedPart' | 'SlotPart';
2951 }2866 }
29522867
2953 /** @name RmrkTraitsPartFixedPart (312) */2868 /** @name RmrkTraitsPartFixedPart (307) */
2954 interface RmrkTraitsPartFixedPart extends Struct {2869 interface RmrkTraitsPartFixedPart extends Struct {
2955 readonly id: u32;2870 readonly id: u32;
2956 readonly z: u32;2871 readonly z: u32;
2957 readonly src: Bytes;2872 readonly src: Bytes;
2958 }2873 }
29592874
2960 /** @name RmrkTraitsPartSlotPart (313) */2875 /** @name RmrkTraitsPartSlotPart (308) */
2961 interface RmrkTraitsPartSlotPart extends Struct {2876 interface RmrkTraitsPartSlotPart extends Struct {
2962 readonly id: u32;2877 readonly id: u32;
2963 readonly equippable: RmrkTraitsPartEquippableList;2878 readonly equippable: RmrkTraitsPartEquippableList;
2964 readonly src: Bytes;2879 readonly src: Bytes;
2965 readonly z: u32;2880 readonly z: u32;
2966 }2881 }
29672882
2968 /** @name RmrkTraitsPartEquippableList (314) */2883 /** @name RmrkTraitsPartEquippableList (309) */
2969 interface RmrkTraitsPartEquippableList extends Enum {2884 interface RmrkTraitsPartEquippableList extends Enum {
2970 readonly isAll: boolean;2885 readonly isAll: boolean;
2971 readonly isEmpty: boolean;2886 readonly isEmpty: boolean;
2974 readonly type: 'All' | 'Empty' | 'Custom';2889 readonly type: 'All' | 'Empty' | 'Custom';
2975 }2890 }
29762891
2977 /** @name RmrkTraitsTheme (316) */2892 /** @name RmrkTraitsTheme (311) */
2978 interface RmrkTraitsTheme extends Struct {2893 interface RmrkTraitsTheme extends Struct {
2979 readonly name: Bytes;2894 readonly name: Bytes;
2980 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2895 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
2981 readonly inherit: bool;2896 readonly inherit: bool;
2982 }2897 }
29832898
2984 /** @name RmrkTraitsThemeThemeProperty (318) */2899 /** @name RmrkTraitsThemeThemeProperty (313) */
2985 interface RmrkTraitsThemeThemeProperty extends Struct {2900 interface RmrkTraitsThemeThemeProperty extends Struct {
2986 readonly key: Bytes;2901 readonly key: Bytes;
2987 readonly value: Bytes;2902 readonly value: Bytes;
2988 }2903 }
29892904
2990 /** @name PalletAppPromotionCall (320) */2905 /** @name PalletAppPromotionCall (315) */
2991 interface PalletAppPromotionCall extends Enum {2906 interface PalletAppPromotionCall extends Enum {
2992 readonly isSetAdminAddress: boolean;2907 readonly isSetAdminAddress: boolean;
2993 readonly asSetAdminAddress: {2908 readonly asSetAdminAddress: {
3021 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2936 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
3022 }2937 }
30232938
3024 /** @name PalletForeignAssetsModuleCall (321) */2939 /** @name PalletForeignAssetsModuleCall (317) */
3025 interface PalletForeignAssetsModuleCall extends Enum {2940 interface PalletForeignAssetsModuleCall extends Enum {
3026 readonly isRegisterForeignAsset: boolean;2941 readonly isRegisterForeignAsset: boolean;
3027 readonly asRegisterForeignAsset: {2942 readonly asRegisterForeignAsset: {
3038 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2953 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
3039 }2954 }
30402955
3041 /** @name PalletEvmCall (322) */2956 /** @name PalletEvmCall (318) */
3042 interface PalletEvmCall extends Enum {2957 interface PalletEvmCall extends Enum {
3043 readonly isWithdraw: boolean;2958 readonly isWithdraw: boolean;
3044 readonly asWithdraw: {2959 readonly asWithdraw: {
3083 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2998 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3084 }2999 }
30853000
3086 /** @name PalletEthereumCall (328) */3001 /** @name PalletEthereumCall (324) */
3087 interface PalletEthereumCall extends Enum {3002 interface PalletEthereumCall extends Enum {
3088 readonly isTransact: boolean;3003 readonly isTransact: boolean;
3089 readonly asTransact: {3004 readonly asTransact: {
3092 readonly type: 'Transact';3007 readonly type: 'Transact';
3093 }3008 }
30943009
3095 /** @name EthereumTransactionTransactionV2 (329) */3010 /** @name EthereumTransactionTransactionV2 (325) */
3096 interface EthereumTransactionTransactionV2 extends Enum {3011 interface EthereumTransactionTransactionV2 extends Enum {
3097 readonly isLegacy: boolean;3012 readonly isLegacy: boolean;
3098 readonly asLegacy: EthereumTransactionLegacyTransaction;3013 readonly asLegacy: EthereumTransactionLegacyTransaction;
3103 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3018 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3104 }3019 }
31053020
3106 /** @name EthereumTransactionLegacyTransaction (330) */3021 /** @name EthereumTransactionLegacyTransaction (326) */
3107 interface EthereumTransactionLegacyTransaction extends Struct {3022 interface EthereumTransactionLegacyTransaction extends Struct {
3108 readonly nonce: U256;3023 readonly nonce: U256;
3109 readonly gasPrice: U256;3024 readonly gasPrice: U256;
3114 readonly signature: EthereumTransactionTransactionSignature;3029 readonly signature: EthereumTransactionTransactionSignature;
3115 }3030 }
31163031
3117 /** @name EthereumTransactionTransactionAction (331) */3032 /** @name EthereumTransactionTransactionAction (327) */
3118 interface EthereumTransactionTransactionAction extends Enum {3033 interface EthereumTransactionTransactionAction extends Enum {
3119 readonly isCall: boolean;3034 readonly isCall: boolean;
3120 readonly asCall: H160;3035 readonly asCall: H160;
3121 readonly isCreate: boolean;3036 readonly isCreate: boolean;
3122 readonly type: 'Call' | 'Create';3037 readonly type: 'Call' | 'Create';
3123 }3038 }
31243039
3125 /** @name EthereumTransactionTransactionSignature (332) */3040 /** @name EthereumTransactionTransactionSignature (328) */
3126 interface EthereumTransactionTransactionSignature extends Struct {3041 interface EthereumTransactionTransactionSignature extends Struct {
3127 readonly v: u64;3042 readonly v: u64;
3128 readonly r: H256;3043 readonly r: H256;
3129 readonly s: H256;3044 readonly s: H256;
3130 }3045 }
31313046
3132 /** @name EthereumTransactionEip2930Transaction (334) */3047 /** @name EthereumTransactionEip2930Transaction (330) */
3133 interface EthereumTransactionEip2930Transaction extends Struct {3048 interface EthereumTransactionEip2930Transaction extends Struct {
3134 readonly chainId: u64;3049 readonly chainId: u64;
3135 readonly nonce: U256;3050 readonly nonce: U256;
3144 readonly s: H256;3059 readonly s: H256;
3145 }3060 }
31463061
3147 /** @name EthereumTransactionAccessListItem (336) */3062 /** @name EthereumTransactionAccessListItem (332) */
3148 interface EthereumTransactionAccessListItem extends Struct {3063 interface EthereumTransactionAccessListItem extends Struct {
3149 readonly address: H160;3064 readonly address: H160;
3150 readonly storageKeys: Vec<H256>;3065 readonly storageKeys: Vec<H256>;
3151 }3066 }
31523067
3153 /** @name EthereumTransactionEip1559Transaction (337) */3068 /** @name EthereumTransactionEip1559Transaction (333) */
3154 interface EthereumTransactionEip1559Transaction extends Struct {3069 interface EthereumTransactionEip1559Transaction extends Struct {
3155 readonly chainId: u64;3070 readonly chainId: u64;
3156 readonly nonce: U256;3071 readonly nonce: U256;
3166 readonly s: H256;3081 readonly s: H256;
3167 }3082 }
31683083
3169 /** @name PalletEvmMigrationCall (338) */3084 /** @name PalletEvmMigrationCall (334) */
3170 interface PalletEvmMigrationCall extends Enum {3085 interface PalletEvmMigrationCall extends Enum {
3171 readonly isBegin: boolean;3086 readonly isBegin: boolean;
3172 readonly asBegin: {3087 readonly asBegin: {
3193 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3108 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
3194 }3109 }
31953110
3196 /** @name PalletMaintenanceCall (342) */3111 /** @name PalletMaintenanceCall (338) */
3197 interface PalletMaintenanceCall extends Enum {3112 interface PalletMaintenanceCall extends Enum {
3198 readonly isEnable: boolean;3113 readonly isEnable: boolean;
3199 readonly isDisable: boolean;3114 readonly isDisable: boolean;
3200 readonly type: 'Enable' | 'Disable';3115 readonly type: 'Enable' | 'Disable';
3201 }3116 }
32023117
3203 /** @name PalletTestUtilsCall (343) */3118 /** @name PalletTestUtilsCall (339) */
3204 interface PalletTestUtilsCall extends Enum {3119 interface PalletTestUtilsCall extends Enum {
3205 readonly isEnable: boolean;3120 readonly isEnable: boolean;
3206 readonly isSetTestValue: boolean;3121 readonly isSetTestValue: boolean;
3212 readonly value: u32;3127 readonly value: u32;
3213 } & Struct;3128 } & Struct;
3214 readonly isIncTestValue: boolean;3129 readonly isIncTestValue: boolean;
3215 readonly isSelfCancelingInc: boolean;
3216 readonly asSelfCancelingInc: {
3217 readonly id: U8aFixed;
3218 readonly maxTestValue: u32;
3219 } & Struct;
3220 readonly isJustTakeFee: boolean;3130 readonly isJustTakeFee: boolean;
3221 readonly isBatchAll: boolean;3131 readonly isBatchAll: boolean;
3222 readonly asBatchAll: {3132 readonly asBatchAll: {
3223 readonly calls: Vec<Call>;3133 readonly calls: Vec<Call>;
3224 } & Struct;3134 } & Struct;
3225 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3135 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
3226 }3136 }
32273137
3228 /** @name PalletSudoError (345) */3138 /** @name PalletSudoError (341) */
3229 interface PalletSudoError extends Enum {3139 interface PalletSudoError extends Enum {
3230 readonly isRequireSudo: boolean;3140 readonly isRequireSudo: boolean;
3231 readonly type: 'RequireSudo';3141 readonly type: 'RequireSudo';
3232 }3142 }
32333143
3234 /** @name OrmlVestingModuleError (347) */3144 /** @name OrmlVestingModuleError (343) */
3235 interface OrmlVestingModuleError extends Enum {3145 interface OrmlVestingModuleError extends Enum {
3236 readonly isZeroVestingPeriod: boolean;3146 readonly isZeroVestingPeriod: boolean;
3237 readonly isZeroVestingPeriodCount: boolean;3147 readonly isZeroVestingPeriodCount: boolean;
3242 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3152 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3243 }3153 }
32443154
3245 /** @name OrmlXtokensModuleError (348) */3155 /** @name OrmlXtokensModuleError (344) */
3246 interface OrmlXtokensModuleError extends Enum {3156 interface OrmlXtokensModuleError extends Enum {
3247 readonly isAssetHasNoReserve: boolean;3157 readonly isAssetHasNoReserve: boolean;
3248 readonly isNotCrossChainTransfer: boolean;3158 readonly isNotCrossChainTransfer: boolean;
3266 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3176 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3267 }3177 }
32683178
3269 /** @name OrmlTokensBalanceLock (351) */3179 /** @name OrmlTokensBalanceLock (347) */
3270 interface OrmlTokensBalanceLock extends Struct {3180 interface OrmlTokensBalanceLock extends Struct {
3271 readonly id: U8aFixed;3181 readonly id: U8aFixed;
3272 readonly amount: u128;3182 readonly amount: u128;
3273 }3183 }
32743184
3275 /** @name OrmlTokensAccountData (353) */3185 /** @name OrmlTokensAccountData (349) */
3276 interface OrmlTokensAccountData extends Struct {3186 interface OrmlTokensAccountData extends Struct {
3277 readonly free: u128;3187 readonly free: u128;
3278 readonly reserved: u128;3188 readonly reserved: u128;
3279 readonly frozen: u128;3189 readonly frozen: u128;
3280 }3190 }
32813191
3282 /** @name OrmlTokensReserveData (355) */3192 /** @name OrmlTokensReserveData (351) */
3283 interface OrmlTokensReserveData extends Struct {3193 interface OrmlTokensReserveData extends Struct {
3284 readonly id: Null;3194 readonly id: Null;
3285 readonly amount: u128;3195 readonly amount: u128;
3286 }3196 }
32873197
3288 /** @name OrmlTokensModuleError (357) */3198 /** @name OrmlTokensModuleError (353) */
3289 interface OrmlTokensModuleError extends Enum {3199 interface OrmlTokensModuleError extends Enum {
3290 readonly isBalanceTooLow: boolean;3200 readonly isBalanceTooLow: boolean;
3291 readonly isAmountIntoBalanceFailed: boolean;3201 readonly isAmountIntoBalanceFailed: boolean;
3298 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3208 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3299 }3209 }
33003210
3301 /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */3211 /** @name CumulusPalletXcmpQueueInboundChannelDetails (355) */
3302 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3212 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3303 readonly sender: u32;3213 readonly sender: u32;
3304 readonly state: CumulusPalletXcmpQueueInboundState;3214 readonly state: CumulusPalletXcmpQueueInboundState;
3305 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3215 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3306 }3216 }
33073217
3308 /** @name CumulusPalletXcmpQueueInboundState (360) */3218 /** @name CumulusPalletXcmpQueueInboundState (356) */
3309 interface CumulusPalletXcmpQueueInboundState extends Enum {3219 interface CumulusPalletXcmpQueueInboundState extends Enum {
3310 readonly isOk: boolean;3220 readonly isOk: boolean;
3311 readonly isSuspended: boolean;3221 readonly isSuspended: boolean;
3312 readonly type: 'Ok' | 'Suspended';3222 readonly type: 'Ok' | 'Suspended';
3313 }3223 }
33143224
3315 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */3225 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (359) */
3316 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3226 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3317 readonly isConcatenatedVersionedXcm: boolean;3227 readonly isConcatenatedVersionedXcm: boolean;
3318 readonly isConcatenatedEncodedBlob: boolean;3228 readonly isConcatenatedEncodedBlob: boolean;
3319 readonly isSignals: boolean;3229 readonly isSignals: boolean;
3320 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3230 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3321 }3231 }
33223232
3323 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */3233 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (362) */
3324 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3234 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3325 readonly recipient: u32;3235 readonly recipient: u32;
3326 readonly state: CumulusPalletXcmpQueueOutboundState;3236 readonly state: CumulusPalletXcmpQueueOutboundState;
3329 readonly lastIndex: u16;3239 readonly lastIndex: u16;
3330 }3240 }
33313241
3332 /** @name CumulusPalletXcmpQueueOutboundState (367) */3242 /** @name CumulusPalletXcmpQueueOutboundState (363) */
3333 interface CumulusPalletXcmpQueueOutboundState extends Enum {3243 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3334 readonly isOk: boolean;3244 readonly isOk: boolean;
3335 readonly isSuspended: boolean;3245 readonly isSuspended: boolean;
3336 readonly type: 'Ok' | 'Suspended';3246 readonly type: 'Ok' | 'Suspended';
3337 }3247 }
33383248
3339 /** @name CumulusPalletXcmpQueueQueueConfigData (369) */3249 /** @name CumulusPalletXcmpQueueQueueConfigData (365) */
3340 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3250 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3341 readonly suspendThreshold: u32;3251 readonly suspendThreshold: u32;
3342 readonly dropThreshold: u32;3252 readonly dropThreshold: u32;
3346 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3256 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
3347 }3257 }
33483258
3349 /** @name CumulusPalletXcmpQueueError (371) */3259 /** @name CumulusPalletXcmpQueueError (367) */
3350 interface CumulusPalletXcmpQueueError extends Enum {3260 interface CumulusPalletXcmpQueueError extends Enum {
3351 readonly isFailedToSend: boolean;3261 readonly isFailedToSend: boolean;
3352 readonly isBadXcmOrigin: boolean;3262 readonly isBadXcmOrigin: boolean;
3356 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3266 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3357 }3267 }
33583268
3359 /** @name PalletXcmError (372) */3269 /** @name PalletXcmError (368) */
3360 interface PalletXcmError extends Enum {3270 interface PalletXcmError extends Enum {
3361 readonly isUnreachable: boolean;3271 readonly isUnreachable: boolean;
3362 readonly isSendFailure: boolean;3272 readonly isSendFailure: boolean;
3374 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3284 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
3375 }3285 }
33763286
3377 /** @name CumulusPalletXcmError (373) */3287 /** @name CumulusPalletXcmError (369) */
3378 type CumulusPalletXcmError = Null;3288 type CumulusPalletXcmError = Null;
33793289
3380 /** @name CumulusPalletDmpQueueConfigData (374) */3290 /** @name CumulusPalletDmpQueueConfigData (370) */
3381 interface CumulusPalletDmpQueueConfigData extends Struct {3291 interface CumulusPalletDmpQueueConfigData extends Struct {
3382 readonly maxIndividual: SpWeightsWeightV2Weight;3292 readonly maxIndividual: SpWeightsWeightV2Weight;
3383 }3293 }
33843294
3385 /** @name CumulusPalletDmpQueuePageIndexData (375) */3295 /** @name CumulusPalletDmpQueuePageIndexData (371) */
3386 interface CumulusPalletDmpQueuePageIndexData extends Struct {3296 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3387 readonly beginUsed: u32;3297 readonly beginUsed: u32;
3388 readonly endUsed: u32;3298 readonly endUsed: u32;
3389 readonly overweightCount: u64;3299 readonly overweightCount: u64;
3390 }3300 }
33913301
3392 /** @name CumulusPalletDmpQueueError (378) */3302 /** @name CumulusPalletDmpQueueError (374) */
3393 interface CumulusPalletDmpQueueError extends Enum {3303 interface CumulusPalletDmpQueueError extends Enum {
3394 readonly isUnknown: boolean;3304 readonly isUnknown: boolean;
3395 readonly isOverLimit: boolean;3305 readonly isOverLimit: boolean;
3396 readonly type: 'Unknown' | 'OverLimit';3306 readonly type: 'Unknown' | 'OverLimit';
3397 }3307 }
33983308
3399 /** @name PalletUniqueError (382) */3309 /** @name PalletUniqueError (378) */
3400 interface PalletUniqueError extends Enum {3310 interface PalletUniqueError extends Enum {
3401 readonly isCollectionDecimalPointLimitExceeded: boolean;3311 readonly isCollectionDecimalPointLimitExceeded: boolean;
3402 readonly isEmptyArgument: boolean;3312 readonly isEmptyArgument: boolean;
3403 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3313 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
3404 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3314 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3405 }3315 }
3406
3407 /** @name PalletUniqueSchedulerV2BlockAgenda (383) */
3408 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
3409 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
3410 readonly freePlaces: u32;
3411 }
3412
3413 /** @name PalletUniqueSchedulerV2Scheduled (386) */
3414 interface PalletUniqueSchedulerV2Scheduled extends Struct {
3415 readonly maybeId: Option<U8aFixed>;
3416 readonly priority: u8;
3417 readonly call: PalletUniqueSchedulerV2ScheduledCall;
3418 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
3419 readonly origin: OpalRuntimeOriginCaller;
3420 }
3421
3422 /** @name PalletUniqueSchedulerV2ScheduledCall (387) */
3423 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
3424 readonly isInline: boolean;
3425 readonly asInline: Bytes;
3426 readonly isPreimageLookup: boolean;
3427 readonly asPreimageLookup: {
3428 readonly hash_: H256;
3429 readonly unboundedLen: u32;
3430 } & Struct;
3431 readonly type: 'Inline' | 'PreimageLookup';
3432 }
3433
3434 /** @name OpalRuntimeOriginCaller (389) */
3435 interface OpalRuntimeOriginCaller extends Enum {
3436 readonly isSystem: boolean;
3437 readonly asSystem: FrameSupportDispatchRawOrigin;
3438 readonly isVoid: boolean;
3439 readonly isPolkadotXcm: boolean;
3440 readonly asPolkadotXcm: PalletXcmOrigin;
3441 readonly isCumulusXcm: boolean;
3442 readonly asCumulusXcm: CumulusPalletXcmOrigin;
3443 readonly isEthereum: boolean;
3444 readonly asEthereum: PalletEthereumRawOrigin;
3445 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
3446 }
3447
3448 /** @name FrameSupportDispatchRawOrigin (390) */
3449 interface FrameSupportDispatchRawOrigin extends Enum {
3450 readonly isRoot: boolean;
3451 readonly isSigned: boolean;
3452 readonly asSigned: AccountId32;
3453 readonly isNone: boolean;
3454 readonly type: 'Root' | 'Signed' | 'None';
3455 }
3456
3457 /** @name PalletXcmOrigin (391) */
3458 interface PalletXcmOrigin extends Enum {
3459 readonly isXcm: boolean;
3460 readonly asXcm: XcmV1MultiLocation;
3461 readonly isResponse: boolean;
3462 readonly asResponse: XcmV1MultiLocation;
3463 readonly type: 'Xcm' | 'Response';
3464 }
3465
3466 /** @name CumulusPalletXcmOrigin (392) */
3467 interface CumulusPalletXcmOrigin extends Enum {
3468 readonly isRelay: boolean;
3469 readonly isSiblingParachain: boolean;
3470 readonly asSiblingParachain: u32;
3471 readonly type: 'Relay' | 'SiblingParachain';
3472 }
3473
3474 /** @name PalletEthereumRawOrigin (393) */
3475 interface PalletEthereumRawOrigin extends Enum {
3476 readonly isEthereumTransaction: boolean;
3477 readonly asEthereumTransaction: H160;
3478 readonly type: 'EthereumTransaction';
3479 }
3480
3481 /** @name SpCoreVoid (394) */
3482 type SpCoreVoid = Null;
3483
3484 /** @name PalletUniqueSchedulerV2Error (396) */
3485 interface PalletUniqueSchedulerV2Error extends Enum {
3486 readonly isFailedToSchedule: boolean;
3487 readonly isAgendaIsExhausted: boolean;
3488 readonly isScheduledCallCorrupted: boolean;
3489 readonly isPreimageNotFound: boolean;
3490 readonly isTooBigScheduledCall: boolean;
3491 readonly isNotFound: boolean;
3492 readonly isTargetBlockNumberInPast: boolean;
3493 readonly isNamed: boolean;
3494 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
3495 }
34963316
3497 /** @name UpDataStructsCollection (397) */3317 /** @name UpDataStructsCollection (379) */
3498 interface UpDataStructsCollection extends Struct {3318 interface UpDataStructsCollection extends Struct {
3499 readonly owner: AccountId32;3319 readonly owner: AccountId32;
3500 readonly mode: UpDataStructsCollectionMode;3320 readonly mode: UpDataStructsCollectionMode;
3507 readonly flags: U8aFixed;3327 readonly flags: U8aFixed;
3508 }3328 }
35093329
3510 /** @name UpDataStructsSponsorshipStateAccountId32 (398) */3330 /** @name UpDataStructsSponsorshipStateAccountId32 (380) */
3511 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3331 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3512 readonly isDisabled: boolean;3332 readonly isDisabled: boolean;
3513 readonly isUnconfirmed: boolean;3333 readonly isUnconfirmed: boolean;
3517 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3337 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3518 }3338 }
35193339
3520 /** @name UpDataStructsProperties (400) */3340 /** @name UpDataStructsProperties (382) */
3521 interface UpDataStructsProperties extends Struct {3341 interface UpDataStructsProperties extends Struct {
3522 readonly map: UpDataStructsPropertiesMapBoundedVec;3342 readonly map: UpDataStructsPropertiesMapBoundedVec;
3523 readonly consumedSpace: u32;3343 readonly consumedSpace: u32;
3524 readonly spaceLimit: u32;3344 readonly spaceLimit: u32;
3525 }3345 }
35263346
3527 /** @name UpDataStructsPropertiesMapBoundedVec (401) */3347 /** @name UpDataStructsPropertiesMapBoundedVec (383) */
3528 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3348 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
35293349
3530 /** @name UpDataStructsPropertiesMapPropertyPermission (406) */3350 /** @name UpDataStructsPropertiesMapPropertyPermission (388) */
3531 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3351 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
35323352
3533 /** @name UpDataStructsCollectionStats (413) */3353 /** @name UpDataStructsCollectionStats (395) */
3534 interface UpDataStructsCollectionStats extends Struct {3354 interface UpDataStructsCollectionStats extends Struct {
3535 readonly created: u32;3355 readonly created: u32;
3536 readonly destroyed: u32;3356 readonly destroyed: u32;
3537 readonly alive: u32;3357 readonly alive: u32;
3538 }3358 }
35393359
3540 /** @name UpDataStructsTokenChild (414) */3360 /** @name UpDataStructsTokenChild (396) */
3541 interface UpDataStructsTokenChild extends Struct {3361 interface UpDataStructsTokenChild extends Struct {
3542 readonly token: u32;3362 readonly token: u32;
3543 readonly collection: u32;3363 readonly collection: u32;
3544 }3364 }
35453365
3546 /** @name PhantomTypeUpDataStructs (415) */3366 /** @name PhantomTypeUpDataStructs (397) */
3547 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3367 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
35483368
3549 /** @name UpDataStructsTokenData (417) */3369 /** @name UpDataStructsTokenData (399) */
3550 interface UpDataStructsTokenData extends Struct {3370 interface UpDataStructsTokenData extends Struct {
3551 readonly properties: Vec<UpDataStructsProperty>;3371 readonly properties: Vec<UpDataStructsProperty>;
3552 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3372 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3553 readonly pieces: u128;3373 readonly pieces: u128;
3554 }3374 }
35553375
3556 /** @name UpDataStructsRpcCollection (419) */3376 /** @name UpDataStructsRpcCollection (401) */
3557 interface UpDataStructsRpcCollection extends Struct {3377 interface UpDataStructsRpcCollection extends Struct {
3558 readonly owner: AccountId32;3378 readonly owner: AccountId32;
3559 readonly mode: UpDataStructsCollectionMode;3379 readonly mode: UpDataStructsCollectionMode;
3569 readonly flags: UpDataStructsRpcCollectionFlags;3389 readonly flags: UpDataStructsRpcCollectionFlags;
3570 }3390 }
35713391
3572 /** @name UpDataStructsRpcCollectionFlags (420) */3392 /** @name UpDataStructsRpcCollectionFlags (402) */
3573 interface UpDataStructsRpcCollectionFlags extends Struct {3393 interface UpDataStructsRpcCollectionFlags extends Struct {
3574 readonly foreign: bool;3394 readonly foreign: bool;
3575 readonly erc721metadata: bool;3395 readonly erc721metadata: bool;
3576 }3396 }
35773397
3578 /** @name RmrkTraitsCollectionCollectionInfo (421) */3398 /** @name RmrkTraitsCollectionCollectionInfo (403) */
3579 interface RmrkTraitsCollectionCollectionInfo extends Struct {3399 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3580 readonly issuer: AccountId32;3400 readonly issuer: AccountId32;
3581 readonly metadata: Bytes;3401 readonly metadata: Bytes;
3584 readonly nftsCount: u32;3404 readonly nftsCount: u32;
3585 }3405 }
35863406
3587 /** @name RmrkTraitsNftNftInfo (422) */3407 /** @name RmrkTraitsNftNftInfo (404) */
3588 interface RmrkTraitsNftNftInfo extends Struct {3408 interface RmrkTraitsNftNftInfo extends Struct {
3589 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3409 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3590 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3410 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3593 readonly pending: bool;3413 readonly pending: bool;
3594 }3414 }
35953415
3596 /** @name RmrkTraitsNftRoyaltyInfo (424) */3416 /** @name RmrkTraitsNftRoyaltyInfo (406) */
3597 interface RmrkTraitsNftRoyaltyInfo extends Struct {3417 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3598 readonly recipient: AccountId32;3418 readonly recipient: AccountId32;
3599 readonly amount: Permill;3419 readonly amount: Permill;
3600 }3420 }
36013421
3602 /** @name RmrkTraitsResourceResourceInfo (425) */3422 /** @name RmrkTraitsResourceResourceInfo (407) */
3603 interface RmrkTraitsResourceResourceInfo extends Struct {3423 interface RmrkTraitsResourceResourceInfo extends Struct {
3604 readonly id: u32;3424 readonly id: u32;
3605 readonly resource: RmrkTraitsResourceResourceTypes;3425 readonly resource: RmrkTraitsResourceResourceTypes;
3606 readonly pending: bool;3426 readonly pending: bool;
3607 readonly pendingRemoval: bool;3427 readonly pendingRemoval: bool;
3608 }3428 }
36093429
3610 /** @name RmrkTraitsPropertyPropertyInfo (426) */3430 /** @name RmrkTraitsPropertyPropertyInfo (408) */
3611 interface RmrkTraitsPropertyPropertyInfo extends Struct {3431 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3612 readonly key: Bytes;3432 readonly key: Bytes;
3613 readonly value: Bytes;3433 readonly value: Bytes;
3614 }3434 }
36153435
3616 /** @name RmrkTraitsBaseBaseInfo (427) */3436 /** @name RmrkTraitsBaseBaseInfo (409) */
3617 interface RmrkTraitsBaseBaseInfo extends Struct {3437 interface RmrkTraitsBaseBaseInfo extends Struct {
3618 readonly issuer: AccountId32;3438 readonly issuer: AccountId32;
3619 readonly baseType: Bytes;3439 readonly baseType: Bytes;
3620 readonly symbol: Bytes;3440 readonly symbol: Bytes;
3621 }3441 }
36223442
3623 /** @name RmrkTraitsNftNftChild (428) */3443 /** @name RmrkTraitsNftNftChild (410) */
3624 interface RmrkTraitsNftNftChild extends Struct {3444 interface RmrkTraitsNftNftChild extends Struct {
3625 readonly collectionId: u32;3445 readonly collectionId: u32;
3626 readonly nftId: u32;3446 readonly nftId: u32;
3627 }3447 }
36283448
3629 /** @name PalletCommonError (430) */3449 /** @name PalletCommonError (412) */
3630 interface PalletCommonError extends Enum {3450 interface PalletCommonError extends Enum {
3631 readonly isCollectionNotFound: boolean;3451 readonly isCollectionNotFound: boolean;
3632 readonly isMustBeTokenOwner: boolean;3452 readonly isMustBeTokenOwner: boolean;
3667 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3487 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
3668 }3488 }
36693489
3670 /** @name PalletFungibleError (432) */3490 /** @name PalletFungibleError (414) */
3671 interface PalletFungibleError extends Enum {3491 interface PalletFungibleError extends Enum {
3672 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3492 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3673 readonly isFungibleItemsHaveNoId: boolean;3493 readonly isFungibleItemsHaveNoId: boolean;
3678 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3498 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
3679 }3499 }
3680
3681 /** @name PalletRefungibleItemData (433) */
3682 interface PalletRefungibleItemData extends Struct {
3683 readonly constData: Bytes;
3684 }
36853500
3686 /** @name PalletRefungibleError (438) */3501 /** @name PalletRefungibleError (418) */
3687 interface PalletRefungibleError extends Enum {3502 interface PalletRefungibleError extends Enum {
3688 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3503 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3689 readonly isWrongRefungiblePieces: boolean;3504 readonly isWrongRefungiblePieces: boolean;
3693 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3508 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3694 }3509 }
36953510
3696 /** @name PalletNonfungibleItemData (439) */3511 /** @name PalletNonfungibleItemData (419) */
3697 interface PalletNonfungibleItemData extends Struct {3512 interface PalletNonfungibleItemData extends Struct {
3698 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3513 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3699 }3514 }
37003515
3701 /** @name UpDataStructsPropertyScope (441) */3516 /** @name UpDataStructsPropertyScope (421) */
3702 interface UpDataStructsPropertyScope extends Enum {3517 interface UpDataStructsPropertyScope extends Enum {
3703 readonly isNone: boolean;3518 readonly isNone: boolean;
3704 readonly isRmrk: boolean;3519 readonly isRmrk: boolean;
3705 readonly type: 'None' | 'Rmrk';3520 readonly type: 'None' | 'Rmrk';
3706 }3521 }
37073522
3708 /** @name PalletNonfungibleError (443) */3523 /** @name PalletNonfungibleError (424) */
3709 interface PalletNonfungibleError extends Enum {3524 interface PalletNonfungibleError extends Enum {
3710 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3525 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3711 readonly isNonfungibleItemsHaveNoAmount: boolean;3526 readonly isNonfungibleItemsHaveNoAmount: boolean;
3712 readonly isCantBurnNftWithChildren: boolean;3527 readonly isCantBurnNftWithChildren: boolean;
3713 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3528 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3714 }3529 }
37153530
3716 /** @name PalletStructureError (444) */3531 /** @name PalletStructureError (425) */
3717 interface PalletStructureError extends Enum {3532 interface PalletStructureError extends Enum {
3718 readonly isOuroborosDetected: boolean;3533 readonly isOuroborosDetected: boolean;
3719 readonly isDepthLimit: boolean;3534 readonly isDepthLimit: boolean;
3722 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3537 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
3723 }3538 }
37243539
3725 /** @name PalletRmrkCoreError (445) */3540 /** @name PalletRmrkCoreError (426) */
3726 interface PalletRmrkCoreError extends Enum {3541 interface PalletRmrkCoreError extends Enum {
3727 readonly isCorruptedCollectionType: boolean;3542 readonly isCorruptedCollectionType: boolean;
3728 readonly isRmrkPropertyKeyIsTooLong: boolean;3543 readonly isRmrkPropertyKeyIsTooLong: boolean;
3746 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3561 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
3747 }3562 }
37483563
3749 /** @name PalletRmrkEquipError (447) */3564 /** @name PalletRmrkEquipError (428) */
3750 interface PalletRmrkEquipError extends Enum {3565 interface PalletRmrkEquipError extends Enum {
3751 readonly isPermissionError: boolean;3566 readonly isPermissionError: boolean;
3752 readonly isNoAvailableBaseId: boolean;3567 readonly isNoAvailableBaseId: boolean;
3758 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3573 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
3759 }3574 }
37603575
3761 /** @name PalletAppPromotionError (453) */3576 /** @name PalletAppPromotionError (434) */
3762 interface PalletAppPromotionError extends Enum {3577 interface PalletAppPromotionError extends Enum {
3763 readonly isAdminNotSet: boolean;3578 readonly isAdminNotSet: boolean;
3764 readonly isNoPermission: boolean;3579 readonly isNoPermission: boolean;
3769 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3584 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
3770 }3585 }
37713586
3772 /** @name PalletForeignAssetsModuleError (454) */3587 /** @name PalletForeignAssetsModuleError (435) */
3773 interface PalletForeignAssetsModuleError extends Enum {3588 interface PalletForeignAssetsModuleError extends Enum {
3774 readonly isBadLocation: boolean;3589 readonly isBadLocation: boolean;
3775 readonly isMultiLocationExisted: boolean;3590 readonly isMultiLocationExisted: boolean;
3778 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3593 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3779 }3594 }
37803595
3781 /** @name PalletEvmError (456) */3596 /** @name PalletEvmError (437) */
3782 interface PalletEvmError extends Enum {3597 interface PalletEvmError extends Enum {
3783 readonly isBalanceLow: boolean;3598 readonly isBalanceLow: boolean;
3784 readonly isFeeOverflow: boolean;3599 readonly isFeeOverflow: boolean;
3793 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3608 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
3794 }3609 }
37953610
3796 /** @name FpRpcTransactionStatus (459) */3611 /** @name FpRpcTransactionStatus (440) */
3797 interface FpRpcTransactionStatus extends Struct {3612 interface FpRpcTransactionStatus extends Struct {
3798 readonly transactionHash: H256;3613 readonly transactionHash: H256;
3799 readonly transactionIndex: u32;3614 readonly transactionIndex: u32;
3804 readonly logsBloom: EthbloomBloom;3619 readonly logsBloom: EthbloomBloom;
3805 }3620 }
38063621
3807 /** @name EthbloomBloom (461) */3622 /** @name EthbloomBloom (442) */
3808 interface EthbloomBloom extends U8aFixed {}3623 interface EthbloomBloom extends U8aFixed {}
38093624
3810 /** @name EthereumReceiptReceiptV3 (463) */3625 /** @name EthereumReceiptReceiptV3 (444) */
3811 interface EthereumReceiptReceiptV3 extends Enum {3626 interface EthereumReceiptReceiptV3 extends Enum {
3812 readonly isLegacy: boolean;3627 readonly isLegacy: boolean;
3813 readonly asLegacy: EthereumReceiptEip658ReceiptData;3628 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3818 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3633 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3819 }3634 }
38203635
3821 /** @name EthereumReceiptEip658ReceiptData (464) */3636 /** @name EthereumReceiptEip658ReceiptData (445) */
3822 interface EthereumReceiptEip658ReceiptData extends Struct {3637 interface EthereumReceiptEip658ReceiptData extends Struct {
3823 readonly statusCode: u8;3638 readonly statusCode: u8;
3824 readonly usedGas: U256;3639 readonly usedGas: U256;
3825 readonly logsBloom: EthbloomBloom;3640 readonly logsBloom: EthbloomBloom;
3826 readonly logs: Vec<EthereumLog>;3641 readonly logs: Vec<EthereumLog>;
3827 }3642 }
38283643
3829 /** @name EthereumBlock (465) */3644 /** @name EthereumBlock (446) */
3830 interface EthereumBlock extends Struct {3645 interface EthereumBlock extends Struct {
3831 readonly header: EthereumHeader;3646 readonly header: EthereumHeader;
3832 readonly transactions: Vec<EthereumTransactionTransactionV2>;3647 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3833 readonly ommers: Vec<EthereumHeader>;3648 readonly ommers: Vec<EthereumHeader>;
3834 }3649 }
38353650
3836 /** @name EthereumHeader (466) */3651 /** @name EthereumHeader (447) */
3837 interface EthereumHeader extends Struct {3652 interface EthereumHeader extends Struct {
3838 readonly parentHash: H256;3653 readonly parentHash: H256;
3839 readonly ommersHash: H256;3654 readonly ommersHash: H256;
3852 readonly nonce: EthereumTypesHashH64;3667 readonly nonce: EthereumTypesHashH64;
3853 }3668 }
38543669
3855 /** @name EthereumTypesHashH64 (467) */3670 /** @name EthereumTypesHashH64 (448) */
3856 interface EthereumTypesHashH64 extends U8aFixed {}3671 interface EthereumTypesHashH64 extends U8aFixed {}
38573672
3858 /** @name PalletEthereumError (472) */3673 /** @name PalletEthereumError (453) */
3859 interface PalletEthereumError extends Enum {3674 interface PalletEthereumError extends Enum {
3860 readonly isInvalidSignature: boolean;3675 readonly isInvalidSignature: boolean;
3861 readonly isPreLogExists: boolean;3676 readonly isPreLogExists: boolean;
3862 readonly type: 'InvalidSignature' | 'PreLogExists';3677 readonly type: 'InvalidSignature' | 'PreLogExists';
3863 }3678 }
38643679
3865 /** @name PalletEvmCoderSubstrateError (473) */3680 /** @name PalletEvmCoderSubstrateError (454) */
3866 interface PalletEvmCoderSubstrateError extends Enum {3681 interface PalletEvmCoderSubstrateError extends Enum {
3867 readonly isOutOfGas: boolean;3682 readonly isOutOfGas: boolean;
3868 readonly isOutOfFund: boolean;3683 readonly isOutOfFund: boolean;
3869 readonly type: 'OutOfGas' | 'OutOfFund';3684 readonly type: 'OutOfGas' | 'OutOfFund';
3870 }3685 }
38713686
3872 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (474) */3687 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (455) */
3873 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3688 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
3874 readonly isDisabled: boolean;3689 readonly isDisabled: boolean;
3875 readonly isUnconfirmed: boolean;3690 readonly isUnconfirmed: boolean;
3879 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3694 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3880 }3695 }
38813696
3882 /** @name PalletEvmContractHelpersSponsoringModeT (475) */3697 /** @name PalletEvmContractHelpersSponsoringModeT (456) */
3883 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3698 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3884 readonly isDisabled: boolean;3699 readonly isDisabled: boolean;
3885 readonly isAllowlisted: boolean;3700 readonly isAllowlisted: boolean;
3886 readonly isGenerous: boolean;3701 readonly isGenerous: boolean;
3887 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3702 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3888 }3703 }
38893704
3890 /** @name PalletEvmContractHelpersError (481) */3705 /** @name PalletEvmContractHelpersError (462) */
3891 interface PalletEvmContractHelpersError extends Enum {3706 interface PalletEvmContractHelpersError extends Enum {
3892 readonly isNoPermission: boolean;3707 readonly isNoPermission: boolean;
3893 readonly isNoPendingSponsor: boolean;3708 readonly isNoPendingSponsor: boolean;
3894 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3709 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
3895 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3710 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
3896 }3711 }
38973712
3898 /** @name PalletEvmMigrationError (482) */3713 /** @name PalletEvmMigrationError (463) */
3899 interface PalletEvmMigrationError extends Enum {3714 interface PalletEvmMigrationError extends Enum {
3900 readonly isAccountNotEmpty: boolean;3715 readonly isAccountNotEmpty: boolean;
3901 readonly isAccountIsNotMigrating: boolean;3716 readonly isAccountIsNotMigrating: boolean;
3902 readonly isBadEvent: boolean;3717 readonly isBadEvent: boolean;
3903 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3718 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
3904 }3719 }
39053720
3906 /** @name PalletMaintenanceError (483) */3721 /** @name PalletMaintenanceError (464) */
3907 type PalletMaintenanceError = Null;3722 type PalletMaintenanceError = Null;
39083723
3909 /** @name PalletTestUtilsError (484) */3724 /** @name PalletTestUtilsError (465) */
3910 interface PalletTestUtilsError extends Enum {3725 interface PalletTestUtilsError extends Enum {
3911 readonly isTestPalletDisabled: boolean;3726 readonly isTestPalletDisabled: boolean;
3912 readonly isTriggerRollback: boolean;3727 readonly isTriggerRollback: boolean;
3913 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3728 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
3914 }3729 }
39153730
3916 /** @name SpRuntimeMultiSignature (486) */3731 /** @name SpRuntimeMultiSignature (467) */
3917 interface SpRuntimeMultiSignature extends Enum {3732 interface SpRuntimeMultiSignature extends Enum {
3918 readonly isEd25519: boolean;3733 readonly isEd25519: boolean;
3919 readonly asEd25519: SpCoreEd25519Signature;3734 readonly asEd25519: SpCoreEd25519Signature;
3924 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3739 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3925 }3740 }
39263741
3927 /** @name SpCoreEd25519Signature (487) */3742 /** @name SpCoreEd25519Signature (468) */
3928 interface SpCoreEd25519Signature extends U8aFixed {}3743 interface SpCoreEd25519Signature extends U8aFixed {}
39293744
3930 /** @name SpCoreSr25519Signature (489) */3745 /** @name SpCoreSr25519Signature (470) */
3931 interface SpCoreSr25519Signature extends U8aFixed {}3746 interface SpCoreSr25519Signature extends U8aFixed {}
39323747
3933 /** @name SpCoreEcdsaSignature (490) */3748 /** @name SpCoreEcdsaSignature (471) */
3934 interface SpCoreEcdsaSignature extends U8aFixed {}3749 interface SpCoreEcdsaSignature extends U8aFixed {}
39353750
3936 /** @name FrameSystemExtensionsCheckSpecVersion (493) */3751 /** @name FrameSystemExtensionsCheckSpecVersion (474) */
3937 type FrameSystemExtensionsCheckSpecVersion = Null;3752 type FrameSystemExtensionsCheckSpecVersion = Null;
39383753
3939 /** @name FrameSystemExtensionsCheckTxVersion (494) */3754 /** @name FrameSystemExtensionsCheckTxVersion (475) */
3940 type FrameSystemExtensionsCheckTxVersion = Null;3755 type FrameSystemExtensionsCheckTxVersion = Null;
39413756
3942 /** @name FrameSystemExtensionsCheckGenesis (495) */3757 /** @name FrameSystemExtensionsCheckGenesis (476) */
3943 type FrameSystemExtensionsCheckGenesis = Null;3758 type FrameSystemExtensionsCheckGenesis = Null;
39443759
3945 /** @name FrameSystemExtensionsCheckNonce (498) */3760 /** @name FrameSystemExtensionsCheckNonce (479) */
3946 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3761 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
39473762
3948 /** @name FrameSystemExtensionsCheckWeight (499) */3763 /** @name FrameSystemExtensionsCheckWeight (480) */
3949 type FrameSystemExtensionsCheckWeight = Null;3764 type FrameSystemExtensionsCheckWeight = Null;
39503765
3951 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (500) */3766 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (481) */
3952 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3767 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
39533768
3954 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (501) */3769 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (482) */
3955 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3770 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
39563771
3957 /** @name OpalRuntimeRuntime (502) */3772 /** @name OpalRuntimeRuntime (483) */
3958 type OpalRuntimeRuntime = Null;3773 type OpalRuntimeRuntime = Null;
39593774
3960 /** @name PalletEthereumFakeTransactionFinalizer (503) */3775 /** @name PalletEthereumFakeTransactionFinalizer (484) */
3961 type PalletEthereumFakeTransactionFinalizer = Null;3776 type PalletEthereumFakeTransactionFinalizer = Null;
39623777
3963} // declare module3778} // declare module
modifiedtests/yarn.lockdiffbeforeafterboth
22 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"22 resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
23 integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==23 integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
2424
25"@babel/core@^7.20.2":25"@babel/core@^7.20.5":
26 version "7.20.5"26 version "7.20.5"
27 resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"27 resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"
28 integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==28 integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==
150 chalk "^2.0.0"150 chalk "^2.0.0"
151 js-tokens "^4.0.0"151 js-tokens "^4.0.0"
152152
153"@babel/parser@^7.18.10":153"@babel/parser@^7.18.10", "@babel/parser@^7.20.5":
154 version "7.19.6"
155 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8"
156 integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==
157
158"@babel/parser@^7.20.5":
159 version "7.20.5"154 version "7.20.5"
160 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"155 resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
161 integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==156 integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
171 pirates "^4.0.5"166 pirates "^4.0.5"
172 source-map-support "^0.5.16"167 source-map-support "^0.5.16"
173168
174"@babel/runtime@^7.20.1", "@babel/runtime@^7.20.6":169"@babel/runtime@^7.20.6":
175 version "7.20.6"170 version "7.20.6"
176 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"171 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
177 integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==172 integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
203 debug "^4.1.0"198 debug "^4.1.0"
204 globals "^11.1.0"199 globals "^11.1.0"
205200
206"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":201"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5":
207 version "7.19.4"
208 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7"
209 integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==
210 dependencies:
211 "@babel/helper-string-parser" "^7.19.4"
212 "@babel/helper-validator-identifier" "^7.19.1"
213 to-fast-properties "^2.0.0"
214
215"@babel/types@^7.20.2", "@babel/types@^7.20.5":
216 version "7.20.5"202 version "7.20.5"
217 resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"203 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==204 integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==
243 minimatch "^3.1.2"229 minimatch "^3.1.2"
244 strip-json-comments "^3.1.1"230 strip-json-comments "^3.1.1"
245231
246"@ethereumjs/common@^2.5.0", "@ethereumjs/common@^2.6.4":232"@ethereumjs/common@2.5.0":
233 version "2.5.0"
234 resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.5.0.tgz#ec61551b31bef7a69d1dc634d8932468866a4268"
235 integrity sha512-DEHjW6e38o+JmB/NO3GZBpW4lpaiBpkFgXF6jLcJ6gETBYpEyaA5nTimsWBUJR3Vmtm/didUEbNjajskugZORg==
236 dependencies:
237 crc-32 "^1.2.0"
238 ethereumjs-util "^7.1.1"
239
240"@ethereumjs/common@^2.5.0":
247 version "2.6.5"241 version "2.6.5"
248 resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.5.tgz#0a75a22a046272579d91919cb12d84f2756e8d30"242 resolved "https://registry.yarnpkg.com/@ethereumjs/common/-/common-2.6.5.tgz#0a75a22a046272579d91919cb12d84f2756e8d30"
249 integrity sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==243 integrity sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==
250 dependencies:244 dependencies:
251 crc-32 "^1.2.0"245 crc-32 "^1.2.0"
252 ethereumjs-util "^7.1.5"246 ethereumjs-util "^7.1.5"
253247
254"@ethereumjs/tx@^3.3.2":248"@ethereumjs/tx@3.3.2":
255 version "3.5.2"249 version "3.3.2"
256 resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-3.5.2.tgz#197b9b6299582ad84f9527ca961466fce2296c1c"250 resolved "https://registry.yarnpkg.com/@ethereumjs/tx/-/tx-3.3.2.tgz#348d4624bf248aaab6c44fec2ae67265efe3db00"
257 integrity sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==251 integrity sha512-6AaJhwg4ucmwTvw/1qLaZUX5miWrwZ4nLOUsKyb/HtzS3BMw/CasKhdi1ims9mBKeK9sOJCH4qGKOBGyJCeeog==
258 dependencies:252 dependencies:
259 "@ethereumjs/common" "^2.6.4"253 "@ethereumjs/common" "^2.5.0"
260 ethereumjs-util "^7.1.5"254 ethereumjs-util "^7.1.2"
261255
262"@ethersproject/abi@^5.6.3":256"@ethersproject/abi@^5.6.3":
263 version "5.7.0"257 version "5.7.0"
436 "@ethersproject/properties" "^5.7.0"430 "@ethersproject/properties" "^5.7.0"
437 "@ethersproject/strings" "^5.7.0"431 "@ethersproject/strings" "^5.7.0"
438432
439"@humanwhocodes/config-array@^0.10.5":433"@humanwhocodes/config-array@^0.11.6":
440 version "0.10.7"434 version "0.11.8"
441 resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz#6d53769fd0c222767e6452e8ebda825c22e9f0dc"435 resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9"
442 integrity sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==436 integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==
443 dependencies:437 dependencies:
444 "@humanwhocodes/object-schema" "^1.2.1"438 "@humanwhocodes/object-schema" "^1.2.1"
445 debug "^4.1.1"439 debug "^4.1.1"
446 minimatch "^3.0.4"440 minimatch "^3.0.5"
447441
448"@humanwhocodes/module-importer@^1.0.1":442"@humanwhocodes/module-importer@^1.0.1":
449 version "1.0.1"443 version "1.0.1"
526 resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"520 resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
527 integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==521 integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
528522
529"@nodelib/fs.walk@^1.2.3":523"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
530 version "1.2.8"524 version "1.2.8"
531 resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"525 resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
532 integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==526 integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
533 dependencies:527 dependencies:
534 "@nodelib/fs.scandir" "2.1.5"528 "@nodelib/fs.scandir" "2.1.5"
535 fastq "^1.6.0"529 fastq "^1.6.0"
536530
537"@polkadot/api-augment@9.9.4":531"@polkadot/api-augment@9.10.2":
538 version "9.9.4"532 version "9.10.2"
539 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.9.4.tgz#cb09d8edfc3a5d61c6519f30a2f02b1bb939c9f6"533 resolved "https://registry.yarnpkg.com/@polkadot/api-augment/-/api-augment-9.10.2.tgz#9d1875bffe9d8677a4f03d53ca6df3d0d7e7f53d"
540 integrity sha512-+T9YWw5kEi7AkSoS2UfE1nrVeJUtD92elQBZ3bMMkfM1geKWhSnvBLyTMn6kFmNXTfK0qt8YKS1pwbux7cC9tg==534 integrity sha512-B0xC7yvPAZqPZpKJzrlFSDfHBawCJISwdV4/nBSs1/AaqQIXVu2ZqPUaSdq7eisZL/EZziptK0SpCtDcb6LpAg==
541 dependencies:535 dependencies:
542 "@babel/runtime" "^7.20.1"536 "@babel/runtime" "^7.20.6"
543 "@polkadot/api-base" "9.9.4"537 "@polkadot/api-base" "9.10.2"
544 "@polkadot/rpc-augment" "9.9.4"538 "@polkadot/rpc-augment" "9.10.2"
545 "@polkadot/types" "9.9.4"539 "@polkadot/types" "9.10.2"
546 "@polkadot/types-augment" "9.9.4"540 "@polkadot/types-augment" "9.10.2"
547 "@polkadot/types-codec" "9.9.4"541 "@polkadot/types-codec" "9.10.2"
548 "@polkadot/util" "^10.1.14"542 "@polkadot/util" "^10.2.1"
549543
550"@polkadot/api-base@9.9.4":544"@polkadot/api-base@9.10.2":
551 version "9.9.4"545 version "9.10.2"
552 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.9.4.tgz#eccc645b60485bfe64a5e6a9ebb3195d2011c0ee"546 resolved "https://registry.yarnpkg.com/@polkadot/api-base/-/api-base-9.10.2.tgz#39248e966b468ecff7c0ed00bb61dfca14ca99d4"
553 integrity sha512-G1DcxcMeGcvaAAA3u5Tbf70zE5aIuAPEAXnptFMF0lvJz4O6CM8k8ZZFTSk25hjsYlnx8WI1FTc97q4/tKie+Q==547 integrity sha512-M/Yushqk6eEAfbkF90vy3GCVg+a2uVeSXyTBKbmkjZtcE7x39GiXs7LOJuYkIim51hlwcvVSeInX8HufwnTUMw==
554 dependencies:548 dependencies:
555 "@babel/runtime" "^7.20.1"549 "@babel/runtime" "^7.20.6"
556 "@polkadot/rpc-core" "9.9.4"550 "@polkadot/rpc-core" "9.10.2"
557 "@polkadot/types" "9.9.4"551 "@polkadot/types" "9.10.2"
558 "@polkadot/util" "^10.1.14"552 "@polkadot/util" "^10.2.1"
559 rxjs "^7.5.7"553 rxjs "^7.6.0"
560554
561"@polkadot/api-derive@9.9.4":555"@polkadot/api-derive@9.10.2":
562 version "9.9.4"556 version "9.10.2"
563 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.9.4.tgz#0eedd9c604be2425d8a1adcf048446184a5aaec9"557 resolved "https://registry.yarnpkg.com/@polkadot/api-derive/-/api-derive-9.10.2.tgz#d6b0eb558ee057416b87a304ca2790b19afa4be6"
564 integrity sha512-3ka7GzY4QbI3d/DHjQ9SjfDOTDxeU8gM2Dn31BP1oFzGwdFe2GZhDIE//lR5S6UDVxNNlgWz4927AunOQcuAmg==558 integrity sha512-Ut1aqbGvqAkxXq7M4HgJ7BVhUyfbQigqt5LISmnjWdGkhroBxtIJ24saOUPYNr0O/c3jocJpoWqGK2CuucL81w==
565 dependencies:559 dependencies:
566 "@babel/runtime" "^7.20.1"560 "@babel/runtime" "^7.20.6"
567 "@polkadot/api" "9.9.4"561 "@polkadot/api" "9.10.2"
568 "@polkadot/api-augment" "9.9.4"562 "@polkadot/api-augment" "9.10.2"
569 "@polkadot/api-base" "9.9.4"563 "@polkadot/api-base" "9.10.2"
570 "@polkadot/rpc-core" "9.9.4"564 "@polkadot/rpc-core" "9.10.2"
571 "@polkadot/types" "9.9.4"565 "@polkadot/types" "9.10.2"
572 "@polkadot/types-codec" "9.9.4"566 "@polkadot/types-codec" "9.10.2"
573 "@polkadot/util" "^10.1.14"567 "@polkadot/util" "^10.2.1"
574 "@polkadot/util-crypto" "^10.1.14"568 "@polkadot/util-crypto" "^10.2.1"
575 rxjs "^7.5.7"569 rxjs "^7.6.0"
576570
577"@polkadot/api@9.9.4":571"@polkadot/api@9.10.2":
578 version "9.9.4"572 version "9.10.2"
579 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.9.4.tgz#a4899d7497644378a94e0cc6fcbf73a5e2d31b92"573 resolved "https://registry.yarnpkg.com/@polkadot/api/-/api-9.10.2.tgz#9a3132f0c8a5de6c2b7d56f9d9e9c9c5ed2bc77e"
580 integrity sha512-ze7W/DXsPHsixrFOACzugDQqezzrUGGX1Z2JOl6z+V8pd+ZKLSecsKJFUzf4yoBT82ArITYPtRVx/Dq9b9K2dA==574 integrity sha512-5leF7rxwRkkd/g11tGPho/CcbInVX7ZiuyMsLMTwn+2PDX+Ggv/gmxUboa34eyeLp8/AMui5YbqRD4QExLTxqw==
581 dependencies:575 dependencies:
582 "@babel/runtime" "^7.20.1"576 "@babel/runtime" "^7.20.6"
583 "@polkadot/api-augment" "9.9.4"577 "@polkadot/api-augment" "9.10.2"
584 "@polkadot/api-base" "9.9.4"578 "@polkadot/api-base" "9.10.2"
585 "@polkadot/api-derive" "9.9.4"579 "@polkadot/api-derive" "9.10.2"
586 "@polkadot/keyring" "^10.1.14"580 "@polkadot/keyring" "^10.2.1"
587 "@polkadot/rpc-augment" "9.9.4"581 "@polkadot/rpc-augment" "9.10.2"
588 "@polkadot/rpc-core" "9.9.4"582 "@polkadot/rpc-core" "9.10.2"
589 "@polkadot/rpc-provider" "9.9.4"583 "@polkadot/rpc-provider" "9.10.2"
590 "@polkadot/types" "9.9.4"584 "@polkadot/types" "9.10.2"
591 "@polkadot/types-augment" "9.9.4"585 "@polkadot/types-augment" "9.10.2"
592 "@polkadot/types-codec" "9.9.4"586 "@polkadot/types-codec" "9.10.2"
593 "@polkadot/types-create" "9.9.4"587 "@polkadot/types-create" "9.10.2"
594 "@polkadot/types-known" "9.9.4"588 "@polkadot/types-known" "9.10.2"
595 "@polkadot/util" "^10.1.14"589 "@polkadot/util" "^10.2.1"
596 "@polkadot/util-crypto" "^10.1.14"590 "@polkadot/util-crypto" "^10.2.1"
597 eventemitter3 "^4.0.7"591 eventemitter3 "^4.0.7"
598 rxjs "^7.5.7"592 rxjs "^7.6.0"
599593
600"@polkadot/keyring@^10.1.14":594"@polkadot/keyring@^10.2.1":
601 version "10.2.1"595 version "10.2.1"
602 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"596 resolved "https://registry.yarnpkg.com/@polkadot/keyring/-/keyring-10.2.1.tgz#692d4e24dcbbe294b6945640802fc924ea20348e"
603 integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==597 integrity sha512-84/zzxDZANQ4AfsCT1vrjX3I23/mj9WUWl1F7q9ruK6UBFyGsl46Y3ABOopFHij9UXhppndhB65IeDnqoOKqxQ==
606 "@polkadot/util" "10.2.1"600 "@polkadot/util" "10.2.1"
607 "@polkadot/util-crypto" "10.2.1"601 "@polkadot/util-crypto" "10.2.1"
608602
609"@polkadot/networks@10.2.1", "@polkadot/networks@^10.1.14":603"@polkadot/networks@10.2.1", "@polkadot/networks@^10.2.1":
610 version "10.2.1"604 version "10.2.1"
611 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"605 resolved "https://registry.yarnpkg.com/@polkadot/networks/-/networks-10.2.1.tgz#5095011795afa20291ef3e34a2ad38ed2c63fe09"
612 integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==606 integrity sha512-cDZIY4jBo2tlDdSXNbECpuWer0NWlPcJNhHHveTiu2idje2QyIBNxBlAPViNGpz+ScAR0EknEzmQKuHOcSKxzg==
615 "@polkadot/util" "10.2.1"609 "@polkadot/util" "10.2.1"
616 "@substrate/ss58-registry" "^1.35.0"610 "@substrate/ss58-registry" "^1.35.0"
617611
618"@polkadot/rpc-augment@9.9.4":612"@polkadot/rpc-augment@9.10.2":
619 version "9.9.4"613 version "9.10.2"
620 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.9.4.tgz#82a1473143cb9ec1183e01babcfe7ac396ad456b"614 resolved "https://registry.yarnpkg.com/@polkadot/rpc-augment/-/rpc-augment-9.10.2.tgz#5650aa118d39d0c4b17425a9b327354f7bbf99e5"
621 integrity sha512-67zGQAhJuXd/CZlwDZTgxNt3xGtsDwLvLvyFrHuNjJNM0KGCyt/OpQHVBlyZ6xfII0WZpccASN6P2MxsGTMnKw==615 integrity sha512-LrGzpSdkqXltZDwuBeBBMev68eVVN1GpgV4auEAytgDYYcjI9XDaeLZm7vUVx9aBO8OYz9hQZeHrWrab/FaKmg==
622 dependencies:616 dependencies:
623 "@babel/runtime" "^7.20.1"617 "@babel/runtime" "^7.20.6"
624 "@polkadot/rpc-core" "9.9.4"618 "@polkadot/rpc-core" "9.10.2"
625 "@polkadot/types" "9.9.4"619 "@polkadot/types" "9.10.2"
626 "@polkadot/types-codec" "9.9.4"620 "@polkadot/types-codec" "9.10.2"
627 "@polkadot/util" "^10.1.14"621 "@polkadot/util" "^10.2.1"
628622
629"@polkadot/rpc-core@9.9.4":623"@polkadot/rpc-core@9.10.2":
630 version "9.9.4"624 version "9.10.2"
631 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.9.4.tgz#30cb94dfb9438ef54f6ab9367bc533fa6934dbc5"625 resolved "https://registry.yarnpkg.com/@polkadot/rpc-core/-/rpc-core-9.10.2.tgz#72362d26012c53397c1079912d5d4aacf910a650"
632 integrity sha512-DxhJcq1GAi+28nLMqhTksNMqTX40bGNhYuyQyy/to39VxizAjx+lyAHAMfzG9lvPnTIi2KzXif2pCdWq3AgJag==626 integrity sha512-qr+q2R3YeRBC++bYxK292jb6t9/KXeLoRheW5z7LbYyre3J60vZPN7WxPxbwm+iCGk1VtvH80Dv1OSCoVC+7hA==
633 dependencies:627 dependencies:
634 "@babel/runtime" "^7.20.1"628 "@babel/runtime" "^7.20.6"
635 "@polkadot/rpc-augment" "9.9.4"629 "@polkadot/rpc-augment" "9.10.2"
636 "@polkadot/rpc-provider" "9.9.4"630 "@polkadot/rpc-provider" "9.10.2"
637 "@polkadot/types" "9.9.4"631 "@polkadot/types" "9.10.2"
638 "@polkadot/util" "^10.1.14"632 "@polkadot/util" "^10.2.1"
639 rxjs "^7.5.7"633 rxjs "^7.6.0"
640634
641"@polkadot/rpc-provider@9.9.4":635"@polkadot/rpc-provider@9.10.2":
642 version "9.9.4"636 version "9.10.2"
643 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.9.4.tgz#dab6d72e83e325dc170e03d0edf5f7bec07c0293"637 resolved "https://registry.yarnpkg.com/@polkadot/rpc-provider/-/rpc-provider-9.10.2.tgz#83c8e114b3aad75eedaf98a374bc77a2b8cc1dbc"
644 integrity sha512-aUkPtlYukAOFX3FkUgLw3MNy+T0mCiCX7va3PIts9ggK4vl14NFZHurCZq+5ANvknRU4WG8P5teurH9Rd9oDjQ==638 integrity sha512-mm8l1uZ7DOrsMUN+DELS8apyZVVNIy/SrqEBjHZeZ0AA9noAEbH4ubxR375lG/T32+T97mFudv1rxRnEwXqByg==
645 dependencies:639 dependencies:
646 "@babel/runtime" "^7.20.1"640 "@babel/runtime" "^7.20.6"
647 "@polkadot/keyring" "^10.1.14"641 "@polkadot/keyring" "^10.2.1"
648 "@polkadot/types" "9.9.4"642 "@polkadot/types" "9.10.2"
649 "@polkadot/types-support" "9.9.4"643 "@polkadot/types-support" "9.10.2"
650 "@polkadot/util" "^10.1.14"644 "@polkadot/util" "^10.2.1"
651 "@polkadot/util-crypto" "^10.1.14"645 "@polkadot/util-crypto" "^10.2.1"
652 "@polkadot/x-fetch" "^10.1.14"646 "@polkadot/x-fetch" "^10.2.1"
653 "@polkadot/x-global" "^10.1.14"647 "@polkadot/x-global" "^10.2.1"
654 "@polkadot/x-ws" "^10.1.14"648 "@polkadot/x-ws" "^10.2.1"
655 "@substrate/connect" "0.7.17"649 "@substrate/connect" "0.7.17"
656 eventemitter3 "^4.0.7"650 eventemitter3 "^4.0.7"
657 mock-socket "^9.1.5"651 mock-socket "^9.1.5"
658 nock "^13.2.9"652 nock "^13.2.9"
659653
660"@polkadot/typegen@9.9.4":654"@polkadot/typegen@9.10.2":
661 version "9.9.4"655 version "9.10.2"
662 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.9.4.tgz#24ee3122c338a359d5776e1c728160ffaaffe6b9"656 resolved "https://registry.yarnpkg.com/@polkadot/typegen/-/typegen-9.10.2.tgz#3a206feaa664afe2cdcc42707b4fa8fde49ce0cc"
663 integrity sha512-uIPD3r9QCvTtz5JHQaO5T2q36U9PrmrutHXbHWWzswsWU6lxkGjIiwUOdV+IUemeQx85GVOAPInU+BnwdhPUpA==657 integrity sha512-AyO1f/tx173w6pZrQINPu12sCIH9uvn+yRL2sJuCBS5+aqlnsR1JscBk6HIlR6t6Jctx1QCsHycfvSvin3IVoA==
664 dependencies:658 dependencies:
665 "@babel/core" "^7.20.2"659 "@babel/core" "^7.20.5"
666 "@babel/register" "^7.18.9"660 "@babel/register" "^7.18.9"
667 "@babel/runtime" "^7.20.1"661 "@babel/runtime" "^7.20.6"
668 "@polkadot/api" "9.9.4"662 "@polkadot/api" "9.10.2"
669 "@polkadot/api-augment" "9.9.4"663 "@polkadot/api-augment" "9.10.2"
670 "@polkadot/rpc-augment" "9.9.4"664 "@polkadot/rpc-augment" "9.10.2"
671 "@polkadot/rpc-provider" "9.9.4"665 "@polkadot/rpc-provider" "9.10.2"
672 "@polkadot/types" "9.9.4"666 "@polkadot/types" "9.10.2"
673 "@polkadot/types-augment" "9.9.4"667 "@polkadot/types-augment" "9.10.2"
674 "@polkadot/types-codec" "9.9.4"668 "@polkadot/types-codec" "9.10.2"
675 "@polkadot/types-create" "9.9.4"669 "@polkadot/types-create" "9.10.2"
676 "@polkadot/types-support" "9.9.4"670 "@polkadot/types-support" "9.10.2"
677 "@polkadot/util" "^10.1.14"671 "@polkadot/util" "^10.2.1"
678 "@polkadot/util-crypto" "^10.1.14"672 "@polkadot/util-crypto" "^10.2.1"
679 "@polkadot/x-ws" "^10.1.14"673 "@polkadot/x-ws" "^10.2.1"
680 handlebars "^4.7.7"674 handlebars "^4.7.7"
681 websocket "^1.0.34"675 websocket "^1.0.34"
682 yargs "^17.6.2"676 yargs "^17.6.2"
683677
684"@polkadot/types-augment@9.9.4":678"@polkadot/types-augment@9.10.2":
685 version "9.9.4"679 version "9.10.2"
686 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.9.4.tgz#08a2a89c0b8000ef156a0ed41f5eb7aa55cc1bb1"680 resolved "https://registry.yarnpkg.com/@polkadot/types-augment/-/types-augment-9.10.2.tgz#2dce4ea8a2879d248339ad377ff5479fae884cd5"
687 integrity sha512-mQNc0kxt3zM6SC+5hJbsg03fxEFpn5nakki+loE2mNsWr1g+rR7LECagAZ4wT2gvdbzWuY/LlRYyDQxe0PwdZg==681 integrity sha512-z0M3bAwGi0pGS3ieXyiJZLzDEc5yBvlqaZvaAbf2r+vto83SylhbjjG1wX8ARI5hqptBUWqS9BssUFH0q6l4sg==
688 dependencies:682 dependencies:
689 "@babel/runtime" "^7.20.1"683 "@babel/runtime" "^7.20.6"
690 "@polkadot/types" "9.9.4"684 "@polkadot/types" "9.10.2"
691 "@polkadot/types-codec" "9.9.4"685 "@polkadot/types-codec" "9.10.2"
692 "@polkadot/util" "^10.1.14"686 "@polkadot/util" "^10.2.1"
693687
694"@polkadot/types-codec@9.9.4":688"@polkadot/types-codec@9.10.2":
695 version "9.9.4"689 version "9.10.2"
696 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.9.4.tgz#1219a6b453dab8e53a0d376f13394b02964c7665"690 resolved "https://registry.yarnpkg.com/@polkadot/types-codec/-/types-codec-9.10.2.tgz#7f0e33c33292bdfcd959945b2427742b941df712"
697 integrity sha512-uSHoQQcj4813c9zNkDDH897K6JB0OznTrH5WeZ1wxpjML7lkuTJ2t/GQE9e4q5Ycl7YePZsvEp2qlc3GwrVm/w==691 integrity sha512-zQOPzxq2N6PUP6Gkxc3OVT7Ub8AD3qC0PBeCnc/fhKjgX3CoKQK4TC6tDL8pEaaIVFh4LOHlHvhWJhqaUNe95A==
698 dependencies:692 dependencies:
699 "@babel/runtime" "^7.20.1"693 "@babel/runtime" "^7.20.6"
700 "@polkadot/util" "^10.1.14"694 "@polkadot/util" "^10.2.1"
701 "@polkadot/x-bigint" "^10.1.14"695 "@polkadot/x-bigint" "^10.2.1"
702696
703"@polkadot/types-create@9.9.4":697"@polkadot/types-create@9.10.2":
704 version "9.9.4"698 version "9.10.2"
705 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.9.4.tgz#d2d3d0e4c3cd4a0a4581dcb418a8f6bec657b986"699 resolved "https://registry.yarnpkg.com/@polkadot/types-create/-/types-create-9.10.2.tgz#eb7dbf5f50eb4d01a965347d324de26a679a25e3"
706 integrity sha512-EOxLryRQ4JVRSRnIMXk3Tjry1tyegNuWK8OUj51A1wHrX76DF9chME27bXUP4d7el1pjqPuQ9/l+/928GG386g==700 integrity sha512-U6wDaJe8tZmt0WibxWeDFYVKfvOYa2su8xOwg8HTRraijF6k0/OMugb15bpjEkG6RZ1qg1L7oKrKghugVbRDGQ==
707 dependencies:701 dependencies:
708 "@babel/runtime" "^7.20.1"702 "@babel/runtime" "^7.20.6"
709 "@polkadot/types-codec" "9.9.4"703 "@polkadot/types-codec" "9.10.2"
710 "@polkadot/util" "^10.1.14"704 "@polkadot/util" "^10.2.1"
711705
712"@polkadot/types-known@9.9.4":706"@polkadot/types-known@9.10.2":
713 version "9.9.4"707 version "9.10.2"
714 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.9.4.tgz#d30fa2c5c964b76b748413004758d05eb8f0e8f9"708 resolved "https://registry.yarnpkg.com/@polkadot/types-known/-/types-known-9.10.2.tgz#d37d984eed6aa17b33603aca9f9d006d6eb468cb"
715 integrity sha512-BaKXkg3yZLDv31g0CZPJsZDXX01VTjkQ0tmW9U6fmccEq3zHlxbUiXf3aKlwKRJyDWiEOxr4cQ4GT8jj6uEIuA==709 integrity sha512-Kwxoo+xvAAE1w0jZdGqmNoEJHdfJzncO1xrBJ7WjeCuEFoDsWmjP63u/o8VaC1ZNnfrhjRK0vyvquslJ6NQOUA==
716 dependencies:710 dependencies:
717 "@babel/runtime" "^7.20.1"711 "@babel/runtime" "^7.20.6"
718 "@polkadot/networks" "^10.1.14"712 "@polkadot/networks" "^10.2.1"
719 "@polkadot/types" "9.9.4"713 "@polkadot/types" "9.10.2"
720 "@polkadot/types-codec" "9.9.4"714 "@polkadot/types-codec" "9.10.2"
721 "@polkadot/types-create" "9.9.4"715 "@polkadot/types-create" "9.10.2"
722 "@polkadot/util" "^10.1.14"716 "@polkadot/util" "^10.2.1"
723717
724"@polkadot/types-support@9.9.4":718"@polkadot/types-support@9.10.2":
725 version "9.9.4"719 version "9.10.2"
726 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.9.4.tgz#3f2eb1097a268bdd280d36fb53b7cdc98a5e238c"720 resolved "https://registry.yarnpkg.com/@polkadot/types-support/-/types-support-9.10.2.tgz#eff0ef399a3373421a543059f62ca96b85645f0b"
727 integrity sha512-vjhdD7B5kdTLhm2iO0QAb7fM4D2ojNUVVocOJotC9NULYtoC+PkPvkvFbw7VQ1H3u7yxyZfWloMtBnCsIp5EAA==721 integrity sha512-RQSCNNBH8+mzXbErB/LUDU9oMQScv0GZ4UmM2MPDPKBcqXNCdJ4dK+ajNfVbgGTUucYUEebpp2m5Az1usjE4Ew==
728 dependencies:722 dependencies:
729 "@babel/runtime" "^7.20.1"723 "@babel/runtime" "^7.20.6"
730 "@polkadot/util" "^10.1.14"724 "@polkadot/util" "^10.2.1"
731725
732"@polkadot/types@9.9.4":726"@polkadot/types@9.10.2":
733 version "9.9.4"727 version "9.10.2"
734 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.9.4.tgz#a1b38174f5a9e2aa97612157d12faffd905b126e"728 resolved "https://registry.yarnpkg.com/@polkadot/types/-/types-9.10.2.tgz#1f6647445b055856bdbd949106f698c89a125386"
735 integrity sha512-/LJ029S0AtKzvV9JoQtIIeHRP/Xoq8MZmDfdHUEgThRd+uvtQzFyGmcupe4EzX0p5VAx93DUFQKm8vUdHE39Tw==729 integrity sha512-B5Bg/IaAMJEwdWzGp3pil5WBukr5fm9x9NFIMuoCS9TyIqpm9rSHrz2n/408R3B4rwqqtx8RQAxiIETFI+m6Rw==
736 dependencies:730 dependencies:
737 "@babel/runtime" "^7.20.1"731 "@babel/runtime" "^7.20.6"
738 "@polkadot/keyring" "^10.1.14"732 "@polkadot/keyring" "^10.2.1"
739 "@polkadot/types-augment" "9.9.4"733 "@polkadot/types-augment" "9.10.2"
740 "@polkadot/types-codec" "9.9.4"734 "@polkadot/types-codec" "9.10.2"
741 "@polkadot/types-create" "9.9.4"735 "@polkadot/types-create" "9.10.2"
742 "@polkadot/util" "^10.1.14"736 "@polkadot/util" "^10.2.1"
743 "@polkadot/util-crypto" "^10.1.14"737 "@polkadot/util-crypto" "^10.2.1"
744 rxjs "^7.5.7"738 rxjs "^7.6.0"
745739
746"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.1.14":740"@polkadot/util-crypto@10.2.1", "@polkadot/util-crypto@^10.2.1":
747 version "10.2.1"741 version "10.2.1"
748 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"742 resolved "https://registry.yarnpkg.com/@polkadot/util-crypto/-/util-crypto-10.2.1.tgz#f6ce1c81496336ca50c2ca84975bcde79aa16634"
749 integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==743 integrity sha512-UH1J4oD92gkLXMfVTLee3Y2vYadNyp1lmS4P2nZwQ0SOzGZ4rN7khD2CrB1cXS9WPq196Zb5oZdGLnPYnXHtjw==
760 ed2curve "^0.3.0"754 ed2curve "^0.3.0"
761 tweetnacl "^1.0.3"755 tweetnacl "^1.0.3"
762756
763"@polkadot/util@10.2.1", "@polkadot/util@^10.1.14":757"@polkadot/util@10.2.1", "@polkadot/util@^10.2.1":
764 version "10.2.1"758 version "10.2.1"
765 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"759 resolved "https://registry.yarnpkg.com/@polkadot/util/-/util-10.2.1.tgz#a8c3a4fe87091197448bec70f7ea079b60d5abf6"
766 integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==760 integrity sha512-ewGKSOp+VXKEeCvpCCP2Qqi/FVkewBF9vb/N8pRwuNQ2XE9k1lnsOZZeQemVBDhKsZz+h3IeNcWejaF6K3vYHQ==
824 dependencies:818 dependencies:
825 "@babel/runtime" "^7.20.6"819 "@babel/runtime" "^7.20.6"
826820
827"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.1.14":821"@polkadot/x-bigint@10.2.1", "@polkadot/x-bigint@^10.2.1":
828 version "10.2.1"822 version "10.2.1"
829 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"823 resolved "https://registry.yarnpkg.com/@polkadot/x-bigint/-/x-bigint-10.2.1.tgz#aa2d4384bb4ae6b5a3f333aa25bf6fd64d9006c5"
830 integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==824 integrity sha512-asFroI2skC4gYv0oIqqb84DqCCxhNUTSCKobEg57WdXoT4TKrN9Uetg2AMSIHRiX/9lP3EPMhUjM1VVGobTQRQ==
831 dependencies:825 dependencies:
832 "@babel/runtime" "^7.20.6"826 "@babel/runtime" "^7.20.6"
833 "@polkadot/x-global" "10.2.1"827 "@polkadot/x-global" "10.2.1"
834828
835"@polkadot/x-fetch@^10.1.14":829"@polkadot/x-fetch@^10.2.1":
836 version "10.2.1"830 version "10.2.1"
837 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"831 resolved "https://registry.yarnpkg.com/@polkadot/x-fetch/-/x-fetch-10.2.1.tgz#cb5b33da1d91787eb2e5207ef62806a75ef3c62f"
838 integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==832 integrity sha512-6ASJUZIrbLaKW+AOW7E5CuktwJwa2LHhxxRyJe398HxZUjJRjO2VJPdqoSwwCYvfFa1TcIr3FDWS63ooDfvGMA==
842 "@types/node-fetch" "^2.6.2"836 "@types/node-fetch" "^2.6.2"
843 node-fetch "^3.3.0"837 node-fetch "^3.3.0"
844838
845"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.1.14":839"@polkadot/x-global@10.2.1", "@polkadot/x-global@^10.2.1":
846 version "10.2.1"840 version "10.2.1"
847 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"841 resolved "https://registry.yarnpkg.com/@polkadot/x-global/-/x-global-10.2.1.tgz#6fbaab05653e680adc8c69c07947eee49afc1238"
848 integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==842 integrity sha512-kWmPku2lCcoYKU16+lWGOb95+6Lu9zo1trvzTWmAt7z0DXw2GlD9+qmDTt5iYGtguJsGXoRZDGilDTo3MeFrkA==
873 "@babel/runtime" "^7.20.6"867 "@babel/runtime" "^7.20.6"
874 "@polkadot/x-global" "10.2.1"868 "@polkadot/x-global" "10.2.1"
875869
876"@polkadot/x-ws@^10.1.14":870"@polkadot/x-ws@^10.2.1":
877 version "10.2.1"871 version "10.2.1"
878 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"872 resolved "https://registry.yarnpkg.com/@polkadot/x-ws/-/x-ws-10.2.1.tgz#ec119c22a8cb7b9cde00e9909e37b6ba2845efd1"
879 integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==873 integrity sha512-oS/WEHc1JSJ+xMArzFXbg1yEeaRrp6GsJLBvObj4DgTyqoWTR5fYkq1G1nHbyqdR729yAnR6755PdaWecIg98g==
962 "@types/node" "*"956 "@types/node" "*"
963957
964"@types/cacheable-request@^6.0.1", "@types/cacheable-request@^6.0.2":958"@types/cacheable-request@^6.0.1", "@types/cacheable-request@^6.0.2":
965 version "6.0.2"959 version "6.0.3"
966 resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.2.tgz#c324da0197de0a98a2312156536ae262429ff6b9"960 resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183"
967 integrity sha512-B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA==961 integrity sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==
968 dependencies:962 dependencies:
969 "@types/http-cache-semantics" "*"963 "@types/http-cache-semantics" "*"
970 "@types/keyv" "*"964 "@types/keyv" "^3.1.4"
971 "@types/node" "*"965 "@types/node" "*"
972 "@types/responselike" "*"966 "@types/responselike" "^1.0.0"
973967
974"@types/chai-as-promised@^7.1.5":968"@types/chai-as-promised@^7.1.5":
975 version "7.1.5"969 version "7.1.5"
986 "@types/chai" "*"980 "@types/chai" "*"
987981
988"@types/chai@*", "@types/chai@^4.3.3":982"@types/chai@*", "@types/chai@^4.3.3":
989 version "4.3.3"983 version "4.3.4"
990 resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.3.tgz#3c90752792660c4b562ad73b3fbd68bf3bc7ae07"984 resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.4.tgz#e913e8175db8307d78b4e8fa690408ba6b65dee4"
991 integrity sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==985 integrity sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==
992986
993"@types/http-cache-semantics@*":987"@types/http-cache-semantics@*":
994 version "4.0.1"988 version "4.0.1"
1000 resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"994 resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
1001 integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==995 integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
1002996
1003"@types/keyv@*":997"@types/keyv@^3.1.4":
1004 version "4.2.0"998 version "3.1.4"
1005 resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-4.2.0.tgz#65b97868ab757906f2dbb653590d7167ad023fa0"999 resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.4.tgz#3ccdb1c6751b0c7e52300bcdacd5bcbf8faa75b6"
1006 integrity sha512-xoBtGl5R9jeKUhc8ZqeYaRDx04qqJ10yhhXYGmJ4Jr8qKpvMsDQQrNUvF/wUJ4klOtmJeJM+p2Xo3zp9uaC3tw==1000 integrity sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==
1007 dependencies:1001 dependencies:
1008 keyv "*"1002 "@types/node" "*"
10091003
1010"@types/mocha@^10.0.0":1004"@types/mocha@^10.0.0":
1011 version "10.0.0"1005 version "10.0.1"
1012 resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.0.tgz#3d9018c575f0e3f7386c1de80ee66cc21fbb7a52"1006 resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.1.tgz#2f4f65bb08bc368ac39c96da7b2f09140b26851b"
1013 integrity sha512-rADY+HtTOA52l9VZWtgQfn4p+UDVM2eDVkMZT1I6syp0YKxW2F9v+0pbRZLsvskhQv/vMb6ZfCay81GHbz5SHg==1007 integrity sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q==
10141008
1015"@types/node-fetch@^2.6.2":1009"@types/node-fetch@^2.6.2":
1016 version "2.6.2"1010 version "2.6.2"
1021 form-data "^3.0.0"1015 form-data "^3.0.0"
10221016
1023"@types/node@*", "@types/node@^18.11.2":1017"@types/node@*", "@types/node@^18.11.2":
1024 version "18.11.2"1018 version "18.11.15"
1025 resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.2.tgz#c59b7641832531264fda3f1ba610362dc9a7dfc8"1019 resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.15.tgz#de0e1fbd2b22b962d45971431e2ae696643d3f5d"
1026 integrity sha512-BWN3M23gLO2jVG8g/XHIRFWiiV4/GckeFIqbU/C4V3xpoBBWSMk4OZomouN0wCkfQFPqgZikyLr7DOYDysIkkw==1020 integrity sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==
10271021
1028"@types/node@^12.12.6":1022"@types/node@^12.12.6":
1029 version "12.20.55"1023 version "12.20.55"
1037 dependencies:1031 dependencies:
1038 "@types/node" "*"1032 "@types/node" "*"
10391033
1040"@types/responselike@*", "@types/responselike@^1.0.0":1034"@types/responselike@^1.0.0":
1041 version "1.0.0"1035 version "1.0.0"
1042 resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29"1036 resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.0.tgz#251f4fe7d154d2bad125abe1b429b23afd262e29"
1043 integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==1037 integrity sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==
1052 "@types/node" "*"1046 "@types/node" "*"
10531047
1054"@types/semver@^7.3.12":1048"@types/semver@^7.3.12":
1055 version "7.3.12"1049 version "7.3.13"
1056 resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.12.tgz#920447fdd78d76b19de0438b7f60df3c4a80bf1c"1050 resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
1057 integrity sha512-WwA1MW0++RfXmCr12xeYOOC5baSC9mSb0ZqCquFzKhcoF4TvHu5MKOuXsncgZcpVFhB1pXd5hZmM0ryAoCp12A==1051 integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
10581052
1059"@types/websocket@^1.0.5":1053"@types/websocket@^1.0.5":
1060 version "1.0.5"1054 version "1.0.5"
1064 "@types/node" "*"1058 "@types/node" "*"
10651059
1066"@typescript-eslint/eslint-plugin@^5.40.1":1060"@typescript-eslint/eslint-plugin@^5.40.1":
1067 version "5.40.1"1061 version "5.46.1"
1068 resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.40.1.tgz#3203a6ff396b1194083faaa6e5110c401201d7d5"1062 resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.46.1.tgz#098abb4c9354e19f460d57ab18bff1f676a6cff0"
1069 integrity sha512-FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg==1063 integrity sha512-YpzNv3aayRBwjs4J3oz65eVLXc9xx0PDbIRisHj+dYhvBn02MjYOD96P8YGiWEIFBrojaUjxvkaUpakD82phsA==
1070 dependencies:1064 dependencies:
1071 "@typescript-eslint/scope-manager" "5.40.1"1065 "@typescript-eslint/scope-manager" "5.46.1"
1072 "@typescript-eslint/type-utils" "5.40.1"1066 "@typescript-eslint/type-utils" "5.46.1"
1073 "@typescript-eslint/utils" "5.40.1"1067 "@typescript-eslint/utils" "5.46.1"
1074 debug "^4.3.4"1068 debug "^4.3.4"
1075 ignore "^5.2.0"1069 ignore "^5.2.0"
1070 natural-compare-lite "^1.4.0"
1076 regexpp "^3.2.0"1071 regexpp "^3.2.0"
1077 semver "^7.3.7"1072 semver "^7.3.7"
1078 tsutils "^3.21.0"1073 tsutils "^3.21.0"
10791074
1080"@typescript-eslint/parser@^5.40.1":1075"@typescript-eslint/parser@^5.40.1":
1081 version "5.40.1"1076 version "5.46.1"
1082 resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.40.1.tgz#e7f8295dd8154d0d37d661ddd8e2f0ecfdee28dd"1077 resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.46.1.tgz#1fc8e7102c1141eb64276c3b89d70da8c0ba5699"
1083 integrity sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==1078 integrity sha512-RelQ5cGypPh4ySAtfIMBzBGyrNerQcmfA1oJvPj5f+H4jI59rl9xxpn4bonC0tQvUKOEN7eGBFWxFLK3Xepneg==
1084 dependencies:1079 dependencies:
1085 "@typescript-eslint/scope-manager" "5.40.1"1080 "@typescript-eslint/scope-manager" "5.46.1"
1086 "@typescript-eslint/types" "5.40.1"1081 "@typescript-eslint/types" "5.46.1"
1087 "@typescript-eslint/typescript-estree" "5.40.1"1082 "@typescript-eslint/typescript-estree" "5.46.1"
1088 debug "^4.3.4"1083 debug "^4.3.4"
10891084
1090"@typescript-eslint/scope-manager@5.40.1":1085"@typescript-eslint/scope-manager@5.46.1":
1091 version "5.40.1"1086 version "5.46.1"
1092 resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz#a7a5197dfd234622a2421ea590ee0ccc02e18dfe"1087 resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.46.1.tgz#70af8425c79bbc1178b5a63fb51102ddf48e104a"
1093 integrity sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==1088 integrity sha512-iOChVivo4jpwUdrJZyXSMrEIM/PvsbbDOX1y3UCKjSgWn+W89skxWaYXACQfxmIGhPVpRWK/VWPYc+bad6smIA==
1094 dependencies:1089 dependencies:
1095 "@typescript-eslint/types" "5.40.1"1090 "@typescript-eslint/types" "5.46.1"
1096 "@typescript-eslint/visitor-keys" "5.40.1"1091 "@typescript-eslint/visitor-keys" "5.46.1"
10971092
1098"@typescript-eslint/type-utils@5.40.1":1093"@typescript-eslint/type-utils@5.46.1":
1099 version "5.40.1"1094 version "5.46.1"
1100 resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.40.1.tgz#091e4ce3bebbdb68f4980bae9dee2e4e1725f601"1095 resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.46.1.tgz#195033e4b30b51b870dfcf2828e88d57b04a11cc"
1101 integrity sha512-DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q==1096 integrity sha512-V/zMyfI+jDmL1ADxfDxjZ0EMbtiVqj8LUGPAGyBkXXStWmCUErMpW873zEHsyguWCuq2iN4BrlWUkmuVj84yng==
1102 dependencies:1097 dependencies:
1103 "@typescript-eslint/typescript-estree" "5.40.1"1098 "@typescript-eslint/typescript-estree" "5.46.1"
1104 "@typescript-eslint/utils" "5.40.1"1099 "@typescript-eslint/utils" "5.46.1"
1105 debug "^4.3.4"1100 debug "^4.3.4"
1106 tsutils "^3.21.0"1101 tsutils "^3.21.0"
11071102
1108"@typescript-eslint/types@5.40.1":1103"@typescript-eslint/types@5.46.1":
1109 version "5.40.1"1104 version "5.46.1"
1110 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.40.1.tgz#de37f4f64de731ee454bb2085d71030aa832f749"1105 resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.46.1.tgz#4e9db2107b9a88441c4d5ecacde3bb7a5ebbd47e"
1111 integrity sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==1106 integrity sha512-Z5pvlCaZgU+93ryiYUwGwLl9AQVB/PQ1TsJ9NZ/gHzZjN7g9IAn6RSDkpCV8hqTwAiaj6fmCcKSQeBPlIpW28w==
11121107
1113"@typescript-eslint/typescript-estree@5.40.1":1108"@typescript-eslint/typescript-estree@5.46.1":
1114 version "5.40.1"1109 version "5.46.1"
1115 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz#9a7d25492f02c69882ce5e0cd1857b0c55645d72"1110 resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.46.1.tgz#5358088f98a8f9939355e0996f9c8f41c25eced2"
1116 integrity sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==1111 integrity sha512-j9W4t67QiNp90kh5Nbr1w92wzt+toiIsaVPnEblB2Ih2U9fqBTyqV9T3pYWZBRt6QoMh/zVWP59EpuCjc4VRBg==
1117 dependencies:1112 dependencies:
1118 "@typescript-eslint/types" "5.40.1"1113 "@typescript-eslint/types" "5.46.1"
1119 "@typescript-eslint/visitor-keys" "5.40.1"1114 "@typescript-eslint/visitor-keys" "5.46.1"
1120 debug "^4.3.4"1115 debug "^4.3.4"
1121 globby "^11.1.0"1116 globby "^11.1.0"
1122 is-glob "^4.0.3"1117 is-glob "^4.0.3"
1123 semver "^7.3.7"1118 semver "^7.3.7"
1124 tsutils "^3.21.0"1119 tsutils "^3.21.0"
11251120
1126"@typescript-eslint/utils@5.40.1":1121"@typescript-eslint/utils@5.46.1":
1127 version "5.40.1"1122 version "5.46.1"
1128 resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.40.1.tgz#3204fb73a559d3b7bab7dc9d3c44487c2734a9ca"1123 resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.46.1.tgz#7da3c934d9fd0eb4002a6bb3429f33298b469b4a"
1129 integrity sha512-a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==1124 integrity sha512-RBdBAGv3oEpFojaCYT4Ghn4775pdjvwfDOfQ2P6qzNVgQOVrnSPe5/Pb88kv7xzYQjoio0eKHKB9GJ16ieSxvA==
1130 dependencies:1125 dependencies:
1131 "@types/json-schema" "^7.0.9"1126 "@types/json-schema" "^7.0.9"
1132 "@types/semver" "^7.3.12"1127 "@types/semver" "^7.3.12"
1133 "@typescript-eslint/scope-manager" "5.40.1"1128 "@typescript-eslint/scope-manager" "5.46.1"
1134 "@typescript-eslint/types" "5.40.1"1129 "@typescript-eslint/types" "5.46.1"
1135 "@typescript-eslint/typescript-estree" "5.40.1"1130 "@typescript-eslint/typescript-estree" "5.46.1"
1136 eslint-scope "^5.1.1"1131 eslint-scope "^5.1.1"
1137 eslint-utils "^3.0.0"1132 eslint-utils "^3.0.0"
1138 semver "^7.3.7"1133 semver "^7.3.7"
11391134
1140"@typescript-eslint/visitor-keys@5.40.1":1135"@typescript-eslint/visitor-keys@5.46.1":
1141 version "5.40.1"1136 version "5.46.1"
1142 resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz#f3d2bf5af192f4432b84cec6fdcb387193518754"1137 resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.46.1.tgz#126cc6fe3c0f83608b2b125c5d9daced61394242"
1143 integrity sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==1138 integrity sha512-jczZ9noovXwy59KjRTk1OftT78pwygdcmCuBf8yMoWt/8O8l+6x2LSEze0E4TeepXK4MezW3zGSyoDRZK7Y9cg==
1144 dependencies:1139 dependencies:
1145 "@typescript-eslint/types" "5.40.1"1140 "@typescript-eslint/types" "5.46.1"
1146 eslint-visitor-keys "^3.3.0"1141 eslint-visitor-keys "^3.3.0"
11471142
1148abortcontroller-polyfill@^1.7.3:1143abortcontroller-polyfill@^1.7.3:
1169 integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==1164 integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
11701165
1171acorn@^8.4.1, acorn@^8.8.0:1166acorn@^8.4.1, acorn@^8.8.0:
1172 version "8.8.0"1167 version "8.8.1"
1173 resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8"1168 resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
1174 integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==1169 integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
11751170
1176ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4:1171ajv@^6.10.0, ajv@^6.12.3, ajv@^6.12.4:
1177 version "6.12.6"1172 version "6.12.6"
1208 color-convert "^2.0.1"1203 color-convert "^2.0.1"
12091204
1210anymatch@~3.1.2:1205anymatch@~3.1.2:
1211 version "3.1.2"1206 version "3.1.3"
1212 resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"1207 resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
1213 integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==1208 integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
1214 dependencies:1209 dependencies:
1215 normalize-path "^3.0.0"1210 normalize-path "^3.0.0"
1216 picomatch "^2.0.4"1211 picomatch "^2.0.4"
1312 tweetnacl "^0.14.3"1307 tweetnacl "^0.14.3"
13131308
1314bignumber.js@^9.0.0:1309bignumber.js@^9.0.0:
1315 version "9.1.0"1310 version "9.1.1"
1316 resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.0.tgz#8d340146107fe3a6cb8d40699643c302e8773b62"1311 resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.1.1.tgz#c4df7dc496bd849d4c9464344c1aa74228b4dac6"
1317 integrity sha512-4LwHK4nfDOraBCtst+wOWIHbu1vhvAPJK8g8nROd4iuc3PSEjWif/qwbkh8jwCJz6yDBvtU4KPynETgrfh7y3A==1312 integrity sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==
13181313
1319binary-extensions@^2.0.0:1314binary-extensions@^2.0.0:
1320 version "2.2.0"1315 version "2.2.0"
1553 integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==1548 integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
15541549
1555caniuse-lite@^1.0.30001400:1550caniuse-lite@^1.0.30001400:
1556 version "1.0.30001422"1551 version "1.0.30001439"
1557 resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001422.tgz#f2d7c6202c49a8359e6e35add894d88ef93edba1"1552 resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz#ab7371faeb4adff4b74dad1718a6fd122e45d9cb"
1558 integrity sha512-hSesn02u1QacQHhaxl/kNMZwqVG35Sz/8DgvmgedxSH8z9UUpcDYSPYgsj3x5dQNRcNp6BwpSfQfVzYUTm+fog==1553 integrity sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==
15591554
1560caseless@~0.12.0:1555caseless@~0.12.0:
1561 version "0.12.0"1556 version "0.12.0"
1575 integrity sha512-VKa9z/SnhXhkT1zIjtPACFWSoWsqVoaz1Vg+ecrKo5DCKVlgL30F/pEyEvXPBOVwCgLZcWUleCM/C1okaKdTTA==1570 integrity sha512-VKa9z/SnhXhkT1zIjtPACFWSoWsqVoaz1Vg+ecrKo5DCKVlgL30F/pEyEvXPBOVwCgLZcWUleCM/C1okaKdTTA==
15761571
1577chai@^4.3.6:1572chai@^4.3.6:
1578 version "4.3.6"1573 version "4.3.7"
1579 resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.6.tgz#ffe4ba2d9fa9d6680cc0b370adae709ec9011e9c"1574 resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.7.tgz#ec63f6df01829088e8bf55fca839bcd464a8ec51"
1580 integrity sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==1575 integrity sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==
1581 dependencies:1576 dependencies:
1582 assertion-error "^1.1.0"1577 assertion-error "^1.1.0"
1583 check-error "^1.0.2"1578 check-error "^1.0.2"
1584 deep-eql "^3.0.1"1579 deep-eql "^4.1.2"
1585 get-func-name "^2.0.0"1580 get-func-name "^2.0.0"
1586 loupe "^2.3.1"1581 loupe "^2.3.1"
1587 pathval "^1.1.1"1582 pathval "^1.1.1"
1910 resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"1905 resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
1911 integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==1906 integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
19121907
1913decode-uri-component@^0.2.0:1908decode-uri-component@^0.2.0, decode-uri-component@^0.2.1:
1914 version "0.2.0"1909 version "0.2.2"
1915 resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"1910 resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
1916 integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==1911 integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
19171912
1918decompress-response@^3.3.0:1913decompress-response@^3.3.0:
1919 version "3.3.0"1914 version "3.3.0"
1929 dependencies:1924 dependencies:
1930 mimic-response "^3.1.0"1925 mimic-response "^3.1.0"
19311926
1932deep-eql@^3.0.1:1927deep-eql@^4.1.2:
1933 version "3.0.1"1928 version "4.1.3"
1934 resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-3.0.1.tgz#dfc9404400ad1c8fe023e7da1df1c147c4b444df"1929 resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d"
1935 integrity sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==1930 integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==
1936 dependencies:1931 dependencies:
1937 type-detect "^4.0.0"1932 type-detect "^4.0.0"
19381933
1946 resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587"1941 resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587"
1947 integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==1942 integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==
19481943
1949define-properties@^1.1.3, define-properties@^1.1.4:
1950 version "1.1.4"
1951 resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
1952 integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
1953 dependencies:
1954 has-property-descriptors "^1.0.0"
1955 object-keys "^1.1.1"
1956
1957delayed-stream@~1.0.0:1944delayed-stream@~1.0.0:
1958 version "1.0.0"1945 version "1.0.0"
1959 resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"1946 resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
2070 dependencies:2057 dependencies:
2071 once "^1.4.0"2058 once "^1.4.0"
20722059
2073es-abstract@^1.19.0, es-abstract@^1.19.5, es-abstract@^1.20.0:
2074 version "1.20.4"
2075 resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"
2076 integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
2077 dependencies:
2078 call-bind "^1.0.2"
2079 es-to-primitive "^1.2.1"
2080 function-bind "^1.1.1"
2081 function.prototype.name "^1.1.5"
2082 get-intrinsic "^1.1.3"
2083 get-symbol-description "^1.0.0"
2084 has "^1.0.3"
2085 has-property-descriptors "^1.0.0"
2086 has-symbols "^1.0.3"
2087 internal-slot "^1.0.3"
2088 is-callable "^1.2.7"
2089 is-negative-zero "^2.0.2"
2090 is-regex "^1.1.4"
2091 is-shared-array-buffer "^1.0.2"
2092 is-string "^1.0.7"
2093 is-weakref "^1.0.2"
2094 object-inspect "^1.12.2"
2095 object-keys "^1.1.1"
2096 object.assign "^4.1.4"
2097 regexp.prototype.flags "^1.4.3"
2098 safe-regex-test "^1.0.0"
2099 string.prototype.trimend "^1.0.5"
2100 string.prototype.trimstart "^1.0.5"
2101 unbox-primitive "^1.0.2"
2102
2103es-to-primitive@^1.2.1:
2104 version "1.2.1"
2105 resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
2106 integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
2107 dependencies:
2108 is-callable "^1.1.4"
2109 is-date-object "^1.0.1"
2110 is-symbol "^1.0.2"
2111
2112es5-ext@^0.10.35, es5-ext@^0.10.50:2060es5-ext@^0.10.35, es5-ext@^0.10.50:
2113 version "0.10.62"2061 version "0.10.62"
2114 resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5"2062 resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5"
2202 integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==2150 integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
22032151
2204eslint@^8.25.0:2152eslint@^8.25.0:
2205 version "8.25.0"2153 version "8.29.0"
2206 resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.25.0.tgz#00eb962f50962165d0c4ee3327708315eaa8058b"2154 resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.29.0.tgz#d74a88a20fb44d59c51851625bc4ee8d0ec43f87"
2207 integrity sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==2155 integrity sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==
2208 dependencies:2156 dependencies:
2209 "@eslint/eslintrc" "^1.3.3"2157 "@eslint/eslintrc" "^1.3.3"
2210 "@humanwhocodes/config-array" "^0.10.5"2158 "@humanwhocodes/config-array" "^0.11.6"
2211 "@humanwhocodes/module-importer" "^1.0.1"2159 "@humanwhocodes/module-importer" "^1.0.1"
2160 "@nodelib/fs.walk" "^1.2.8"
2212 ajv "^6.10.0"2161 ajv "^6.10.0"
2213 chalk "^4.0.0"2162 chalk "^4.0.0"
2214 cross-spawn "^7.0.2"2163 cross-spawn "^7.0.2"
2224 fast-deep-equal "^3.1.3"2173 fast-deep-equal "^3.1.3"
2225 file-entry-cache "^6.0.1"2174 file-entry-cache "^6.0.1"
2226 find-up "^5.0.0"2175 find-up "^5.0.0"
2227 glob-parent "^6.0.1"2176 glob-parent "^6.0.2"
2228 globals "^13.15.0"2177 globals "^13.15.0"
2229 globby "^11.1.0"
2230 grapheme-splitter "^1.0.4"2178 grapheme-splitter "^1.0.4"
2231 ignore "^5.2.0"2179 ignore "^5.2.0"
2232 import-fresh "^3.0.0"2180 import-fresh "^3.0.0"
2233 imurmurhash "^0.1.4"2181 imurmurhash "^0.1.4"
2234 is-glob "^4.0.0"2182 is-glob "^4.0.0"
2183 is-path-inside "^3.0.3"
2235 js-sdsl "^4.1.4"2184 js-sdsl "^4.1.4"
2236 js-yaml "^4.1.0"2185 js-yaml "^4.1.0"
2237 json-stable-stringify-without-jsonify "^1.0.1"2186 json-stable-stringify-without-jsonify "^1.0.1"
2246 text-table "^0.2.0"2195 text-table "^0.2.0"
22472196
2248espree@^9.4.0:2197espree@^9.4.0:
2249 version "9.4.0"2198 version "9.4.1"
2250 resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a"2199 resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd"
2251 integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==2200 integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
2252 dependencies:2201 dependencies:
2253 acorn "^8.8.0"2202 acorn "^8.8.0"
2254 acorn-jsx "^5.3.2"2203 acorn-jsx "^5.3.2"
2345 secp256k1 "^4.0.1"2294 secp256k1 "^4.0.1"
2346 setimmediate "^1.0.5"2295 setimmediate "^1.0.5"
23472296
2348ethereumjs-util@^7.0.10, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.5:2297ethereumjs-util@^7.0.10, ethereumjs-util@^7.1.0, ethereumjs-util@^7.1.1, ethereumjs-util@^7.1.2, ethereumjs-util@^7.1.5:
2349 version "7.1.5"2298 version "7.1.5"
2350 resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz#9ecf04861e4fbbeed7465ece5f23317ad1129181"2299 resolved "https://registry.yarnpkg.com/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz#9ecf04861e4fbbeed7465ece5f23317ad1129181"
2351 integrity sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==2300 integrity sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==
2468 integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==2417 integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
24692418
2470fastq@^1.6.0:2419fastq@^1.6.0:
2471 version "1.13.0"2420 version "1.14.0"
2472 resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"2421 resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.14.0.tgz#107f69d7295b11e0fccc264e1fc6389f623731ce"
2473 integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==2422 integrity sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==
2474 dependencies:2423 dependencies:
2475 reusify "^1.0.4"2424 reusify "^1.0.4"
24762425
2648 resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"2597 resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
2649 integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==2598 integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
26502599
2651function.prototype.name@^1.1.5:
2652 version "1.1.5"
2653 resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
2654 integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
2655 dependencies:
2656 call-bind "^1.0.2"
2657 define-properties "^1.1.3"
2658 es-abstract "^1.19.0"
2659 functions-have-names "^1.2.2"
2660
2661functions-have-names@^1.2.2:
2662 version "1.2.3"
2663 resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
2664 integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
2665
2666gensync@^1.0.0-beta.2:2600gensync@^1.0.0-beta.2:
2667 version "1.0.0-beta.2"2601 version "1.0.0-beta.2"
2668 resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"2602 resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
2678 resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"2612 resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
2679 integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==2613 integrity sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==
26802614
2681get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:2615get-intrinsic@^1.0.2, get-intrinsic@^1.1.3:
2682 version "1.1.3"2616 version "1.1.3"
2683 resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"2617 resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
2684 integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==2618 integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
2699 resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"2633 resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
2700 integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==2634 integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
27012635
2702get-symbol-description@^1.0.0:
2703 version "1.0.0"
2704 resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
2705 integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
2706 dependencies:
2707 call-bind "^1.0.2"
2708 get-intrinsic "^1.1.1"
2709
2710getpass@^0.1.1:2636getpass@^0.1.1:
2711 version "0.1.7"2637 version "0.1.7"
2712 resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"2638 resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
2721 dependencies:2647 dependencies:
2722 is-glob "^4.0.1"2648 is-glob "^4.0.1"
27232649
2724glob-parent@^6.0.1:2650glob-parent@^6.0.2:
2725 version "6.0.2"2651 version "6.0.2"
2726 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"2652 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
2727 integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==2653 integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
2766 integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==2692 integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
27672693
2768globals@^13.15.0:2694globals@^13.15.0:
2769 version "13.17.0"2695 version "13.19.0"
2770 resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4"2696 resolved "https://registry.yarnpkg.com/globals/-/globals-13.19.0.tgz#7a42de8e6ad4f7242fbcca27ea5b23aca367b5c8"
2771 integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==2697 integrity sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==
2772 dependencies:2698 dependencies:
2773 type-fest "^0.20.2"2699 type-fest "^0.20.2"
27742700
2784 merge2 "^1.4.1"2710 merge2 "^1.4.1"
2785 slash "^3.0.0"2711 slash "^3.0.0"
27862712
2713gopd@^1.0.1:
2714 version "1.0.1"
2715 resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
2716 integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
2717 dependencies:
2718 get-intrinsic "^1.1.3"
2719
2787got@12.1.0:2720got@12.1.0:
2788 version "12.1.0"2721 version "12.1.0"
2789 resolved "https://registry.yarnpkg.com/got/-/got-12.1.0.tgz#099f3815305c682be4fd6b0ee0726d8e4c6b0af4"2722 resolved "https://registry.yarnpkg.com/got/-/got-12.1.0.tgz#099f3815305c682be4fd6b0ee0726d8e4c6b0af4"
2804 responselike "^2.0.0"2737 responselike "^2.0.0"
28052738
2806got@^11.8.5:2739got@^11.8.5:
2807 version "11.8.5"2740 version "11.8.6"
2808 resolved "https://registry.yarnpkg.com/got/-/got-11.8.5.tgz#ce77d045136de56e8f024bebb82ea349bc730046"2741 resolved "https://registry.yarnpkg.com/got/-/got-11.8.6.tgz#276e827ead8772eddbcfc97170590b841823233a"
2809 integrity sha512-o0Je4NvQObAuZPHLFoRSkdG2lTgtcynqymzg2Vupdx6PorhaT5MCbIyXG6d4D94kk8ZG57QeosgdiqfJWhEhlQ==2742 integrity sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==
2810 dependencies:2743 dependencies:
2811 "@sindresorhus/is" "^4.0.0"2744 "@sindresorhus/is" "^4.0.0"
2812 "@szmarczak/http-timer" "^4.0.5"2745 "@szmarczak/http-timer" "^4.0.5"
2855 ajv "^6.12.3"2788 ajv "^6.12.3"
2856 har-schema "^2.0.0"2789 har-schema "^2.0.0"
28572790
2858has-bigints@^1.0.1, has-bigints@^1.0.2:
2859 version "1.0.2"
2860 resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
2861 integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
2862
2863has-flag@^3.0.0:2791has-flag@^3.0.0:
2864 version "3.0.0"2792 version "3.0.0"
2865 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"2793 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
2870 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"2798 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
2871 integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==2799 integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
28722800
2873has-property-descriptors@^1.0.0:
2874 version "1.0.0"
2875 resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
2876 integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
2877 dependencies:
2878 get-intrinsic "^1.1.1"
2879
2880has-symbols@^1.0.2, has-symbols@^1.0.3:2801has-symbols@^1.0.2, has-symbols@^1.0.3:
2881 version "1.0.3"2802 version "1.0.3"
2882 resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"2803 resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
2966 resolve-alpn "^1.0.0"2887 resolve-alpn "^1.0.0"
29672888
2968http2-wrapper@^2.1.10:2889http2-wrapper@^2.1.10:
2969 version "2.1.11"2890 version "2.2.0"
2970 resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.1.11.tgz#d7c980c7ffb85be3859b6a96c800b2951ae257ef"2891 resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.0.tgz#b80ad199d216b7d3680195077bd7b9060fa9d7f3"
2971 integrity sha512-aNAk5JzLturWEUiuhAN73Jcbq96R7rTitAoXV54FYMatvihnpD2+6PUgU4ce3D/m5VDbw+F5CsyKSF176ptitQ==2892 integrity sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==
2972 dependencies:2893 dependencies:
2973 quick-lru "^5.1.1"2894 quick-lru "^5.1.1"
2974 resolve-alpn "^1.2.0"2895 resolve-alpn "^1.2.0"
2993 integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==2914 integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
29942915
2995ignore@^5.2.0:2916ignore@^5.2.0:
2996 version "5.2.0"2917 version "5.2.1"
2997 resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"2918 resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c"
2998 integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==2919 integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==
29992920
3000import-fresh@^3.0.0, import-fresh@^3.2.1:2921import-fresh@^3.0.0, import-fresh@^3.2.1:
3001 version "3.3.0"2922 version "3.3.0"
3023 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"2944 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
3024 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==2945 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
30252946
3026internal-slot@^1.0.3:
3027 version "1.0.3"
3028 resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
3029 integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
3030 dependencies:
3031 get-intrinsic "^1.1.0"
3032 has "^1.0.3"
3033 side-channel "^1.0.4"
3034
3035ipaddr.js@1.9.1:2947ipaddr.js@1.9.1:
3036 version "1.9.1"2948 version "1.9.1"
3037 resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"2949 resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
3045 call-bind "^1.0.2"2957 call-bind "^1.0.2"
3046 has-tostringtag "^1.0.0"2958 has-tostringtag "^1.0.0"
30472959
3048is-bigint@^1.0.1:
3049 version "1.0.4"
3050 resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
3051 integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
3052 dependencies:
3053 has-bigints "^1.0.1"
3054
3055is-binary-path@~2.1.0:2960is-binary-path@~2.1.0:
3056 version "2.1.0"2961 version "2.1.0"
3057 resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"2962 resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
3058 integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==2963 integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
3059 dependencies:2964 dependencies:
3060 binary-extensions "^2.0.0"2965 binary-extensions "^2.0.0"
30612966
3062is-boolean-object@^1.1.0:2967is-callable@^1.1.3:
3063 version "1.1.2"
3064 resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
3065 integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
3066 dependencies:
3067 call-bind "^1.0.2"
3068 has-tostringtag "^1.0.0"
3069
3070is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
3071 version "1.2.7"2968 version "1.2.7"
3072 resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"2969 resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
3073 integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==2970 integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
30742971
3075is-date-object@^1.0.1:
3076 version "1.0.5"
3077 resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
3078 integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
3079 dependencies:
3080 has-tostringtag "^1.0.0"
3081
3082is-extglob@^2.1.1:2972is-extglob@^2.1.1:
3083 version "2.1.1"2973 version "2.1.1"
3084 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"2974 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
3113 resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554"3003 resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554"
3114 integrity sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==3004 integrity sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==
31153005
3116is-negative-zero@^2.0.2:
3117 version "2.0.2"
3118 resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
3119 integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
3120
3121is-number-object@^1.0.4:
3122 version "1.0.7"
3123 resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
3124 integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
3125 dependencies:
3126 has-tostringtag "^1.0.0"
3127
3128is-number@^7.0.0:3006is-number@^7.0.0:
3129 version "7.0.0"3007 version "7.0.0"
3130 resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"3008 resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
3131 integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==3009 integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
31323010
3011is-path-inside@^3.0.3:
3012 version "3.0.3"
3013 resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
3014 integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
3015
3133is-plain-obj@^2.1.0:3016is-plain-obj@^2.1.0:
3134 version "2.1.0"3017 version "2.1.0"
3135 resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"3018 resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
3142 dependencies:3025 dependencies:
3143 isobject "^3.0.1"3026 isobject "^3.0.1"
31443027
3145is-regex@^1.1.4:3028is-typed-array@^1.1.10, is-typed-array@^1.1.3:
3146 version "1.1.4"3029 version "1.1.10"
3147 resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"3030 resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
3148 integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==3031 integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
3149 dependencies:3032 dependencies:
3150 call-bind "^1.0.2"
3151 has-tostringtag "^1.0.0"
3152
3153is-shared-array-buffer@^1.0.2:
3154 version "1.0.2"
3155 resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
3156 integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
3157 dependencies:
3158 call-bind "^1.0.2"
3159
3160is-string@^1.0.5, is-string@^1.0.7:
3161 version "1.0.7"
3162 resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
3163 integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
3164 dependencies:
3165 has-tostringtag "^1.0.0"
3166
3167is-symbol@^1.0.2, is-symbol@^1.0.3:
3168 version "1.0.4"
3169 resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
3170 integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
3171 dependencies:
3172 has-symbols "^1.0.2"
3173
3174is-typed-array@^1.1.3, is-typed-array@^1.1.9:
3175 version "1.1.9"
3176 resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.9.tgz#246d77d2871e7d9f5aeb1d54b9f52c71329ece67"
3177 integrity sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==
3178 dependencies:
3179 available-typed-arrays "^1.0.5"3033 available-typed-arrays "^1.0.5"
3180 call-bind "^1.0.2"3034 call-bind "^1.0.2"
3181 es-abstract "^1.20.0"
3182 for-each "^0.3.3"3035 for-each "^0.3.3"
3036 gopd "^1.0.1"
3183 has-tostringtag "^1.0.0"3037 has-tostringtag "^1.0.0"
31843038
3185is-typedarray@^1.0.0, is-typedarray@~1.0.0:3039is-typedarray@^1.0.0, is-typedarray@~1.0.0:
3192 resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"3046 resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
3193 integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==3047 integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
31943048
3195is-weakref@^1.0.2:
3196 version "1.0.2"
3197 resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
3198 integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
3199 dependencies:
3200 call-bind "^1.0.2"
3201
3202isexe@^2.0.0:3049isexe@^2.0.0:
3203 version "2.0.0"3050 version "2.0.0"
3204 resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"3051 resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
3215 integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==3062 integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
32163063
3217js-sdsl@^4.1.4:3064js-sdsl@^4.1.4:
3218 version "4.1.5"3065 version "4.2.0"
3219 resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"3066 resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0"
3220 integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==3067 integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==
32213068
3222js-sha3@0.8.0, js-sha3@^0.8.0:3069js-sha3@0.8.0, js-sha3@^0.8.0:
3223 version "0.8.0"3070 version "0.8.0"
3307 node-gyp-build "^4.2.0"3154 node-gyp-build "^4.2.0"
3308 readable-stream "^3.6.0"3155 readable-stream "^3.6.0"
33093156
3310keyv@*, keyv@^4.0.0:3157keyv@^4.0.0:
3311 version "4.5.0"3158 version "4.5.2"
3312 resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.0.tgz#dbce9ade79610b6e641a9a65f2f6499ba06b9bc6"3159 resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56"
3313 integrity sha512-2YvuMsA+jnFGtBareKqgANOEKe1mk3HKiXu2fRmAfyxG0MJAywNhi5ttWA3PMjl4NmpyjZNbFifR2vNjW1znfA==3160 integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==
3314 dependencies:3161 dependencies:
3315 json-buffer "3.0.1"3162 json-buffer "3.0.1"
33163163
3361 is-unicode-supported "^0.1.0"3208 is-unicode-supported "^0.1.0"
33623209
3363loupe@^2.3.1:3210loupe@^2.3.1:
3364 version "2.3.4"3211 version "2.3.6"
3365 resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.4.tgz#7e0b9bffc76f148f9be769cb1321d3dcf3cb25f3"3212 resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53"
3366 integrity sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==3213 integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==
3367 dependencies:3214 dependencies:
3368 get-func-name "^2.0.0"3215 get-func-name "^2.0.0"
33693216
3498 dependencies:3345 dependencies:
3499 brace-expansion "^2.0.1"3346 brace-expansion "^2.0.1"
35003347
3501minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:3348minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
3502 version "3.1.2"3349 version "3.1.2"
3503 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"3350 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
3504 integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==3351 integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
3545 minimist "^1.2.6"3392 minimist "^1.2.6"
35463393
3547mocha@^10.1.0:3394mocha@^10.1.0:
3548 version "10.1.0"3395 version "10.2.0"
3549 resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.1.0.tgz#dbf1114b7c3f9d0ca5de3133906aea3dfc89ef7a"3396 resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8"
3550 integrity sha512-vUF7IYxEoN7XhQpFLxQAEMtE4W91acW4B6En9l97MwE9stL1A9gusXfoHZCLVHDUJ/7V5+lbCM6yMqzo5vNymg==3397 integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==
3551 dependencies:3398 dependencies:
3552 ansi-colors "4.1.1"3399 ansi-colors "4.1.1"
3553 browser-stdout "1.3.1"3400 browser-stdout "1.3.1"
3646 resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"3493 resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
3647 integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==3494 integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
36483495
3496natural-compare-lite@^1.4.0:
3497 version "1.4.0"
3498 resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4"
3499 integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==
3500
3649natural-compare@^1.4.0:3501natural-compare@^1.4.0:
3650 version "1.4.0"3502 version "1.4.0"
3651 resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"3503 resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
3708 integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==3560 integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==
37093561
3710node-releases@^2.0.6:3562node-releases@^2.0.6:
3711 version "2.0.6"3563 version "2.0.7"
3712 resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"3564 resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.7.tgz#593edbc7c22860ee4d32d3933cfebdfab0c0e0e5"
3713 integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==3565 integrity sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==
37143566
3715normalize-path@^3.0.0, normalize-path@~3.0.0:3567normalize-path@^3.0.0, normalize-path@~3.0.0:
3716 version "3.0.0"3568 version "3.0.0"
3740 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"3592 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
3741 integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==3593 integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
37423594
3743object-inspect@^1.12.2, object-inspect@^1.9.0:3595object-inspect@^1.9.0:
3744 version "1.12.2"3596 version "1.12.2"
3745 resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"3597 resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
3746 integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==3598 integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
37473599
3748object-keys@^1.1.1:
3749 version "1.1.1"
3750 resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
3751 integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
3752
3753object.assign@^4.1.4:
3754 version "4.1.4"
3755 resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f"
3756 integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
3757 dependencies:
3758 call-bind "^1.0.2"
3759 define-properties "^1.1.4"
3760 has-symbols "^1.0.3"
3761 object-keys "^1.1.1"
3762
3763oboe@2.1.5:3600oboe@2.1.5:
3764 version "2.1.5"3601 version "2.1.5"
3765 resolved "https://registry.yarnpkg.com/oboe/-/oboe-2.1.5.tgz#5554284c543a2266d7a38f17e073821fbde393cd"3602 resolved "https://registry.yarnpkg.com/oboe/-/oboe-2.1.5.tgz#5554284c543a2266d7a38f17e073821fbde393cd"
3842 integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==3679 integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
38433680
3844pako@^2.0.4:3681pako@^2.0.4:
3845 version "2.0.4"3682 version "2.1.0"
3846 resolved "https://registry.yarnpkg.com/pako/-/pako-2.0.4.tgz#6cebc4bbb0b6c73b0d5b8d7e8476e2b2fbea576d"3683 resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86"
3847 integrity sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==3684 integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==
38483685
3849parent-module@^1.0.0:3686parent-module@^1.0.0:
3850 version "1.0.1"3687 version "1.0.1"
4042 integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==3879 integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
40433880
4044rambda@^7.1.0:3881rambda@^7.1.0:
4045 version "7.3.0"3882 version "7.4.0"
4046 resolved "https://registry.yarnpkg.com/rambda/-/rambda-7.3.0.tgz#90e440ead53030a216093865d8d97997a80868ca"3883 resolved "https://registry.yarnpkg.com/rambda/-/rambda-7.4.0.tgz#61ec9de31d3dd6affe804de3bae04a5b818781e5"
4047 integrity sha512-RFVofZYaG2TaVcxjnM0ejdVWf/59rFq1f57OGnjP3GT/bthzFw0GVr5rkP9PKbVlEuF/Y7bOVPLfiiYfxq/EWQ==3884 integrity sha512-A9hihu7dUTLOUCM+I8E61V4kRXnN4DwYeK0DwCBydC1MqNI1PidyAtbtpsJlBBzK4icSctEcCQ1bGcLpBuETUQ==
40483885
4049randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:3886randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
4050 version "2.1.0"3887 version "2.1.0"
4097 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"3934 resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
4098 integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==3935 integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
40993936
4100regexp.prototype.flags@^1.4.3:
4101 version "1.4.3"
4102 resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
4103 integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
4104 dependencies:
4105 call-bind "^1.0.2"
4106 define-properties "^1.1.3"
4107 functions-have-names "^1.2.2"
4108
4109regexpp@^3.2.0:3937regexpp@^3.2.0:
4110 version "3.2.0"3938 version "3.2.0"
4111 resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"3939 resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
4193 dependencies:4021 dependencies:
4194 queue-microtask "^1.2.2"4022 queue-microtask "^1.2.2"
41954023
4196rxjs@^7.5.7:4024rxjs@^7.6.0:
4197 version "7.5.7"4025 version "7.6.0"
4198 resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39"4026 resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.6.0.tgz#361da5362b6ddaa691a2de0b4f2d32028f1eb5a2"
4199 integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==4027 integrity sha512-DDa7d8TFNUalGC9VqXvQ1euWNN7sc63TrUCuM9J998+ViviahMIjKSOU7rfcgFOF+FCD71BhDRv4hrFz+ImDLQ==
4200 dependencies:4028 dependencies:
4201 tslib "^2.1.0"4029 tslib "^2.1.0"
42024030
4210 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"4038 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
4211 integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==4039 integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
42124040
4213safe-regex-test@^1.0.0:
4214 version "1.0.0"
4215 resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
4216 integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
4217 dependencies:
4218 call-bind "^1.0.2"
4219 get-intrinsic "^1.1.3"
4220 is-regex "^1.1.4"
4221
4222"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:4041"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
4223 version "2.1.2"4042 version "2.1.2"
4224 resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"4043 resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
4427 is-fullwidth-code-point "^3.0.0"4246 is-fullwidth-code-point "^3.0.0"
4428 strip-ansi "^6.0.1"4247 strip-ansi "^6.0.1"
44294248
4430string.prototype.trimend@^1.0.5:
4431 version "1.0.5"
4432 resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
4433 integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
4434 dependencies:
4435 call-bind "^1.0.2"
4436 define-properties "^1.1.4"
4437 es-abstract "^1.19.5"
4438
4439string.prototype.trimstart@^1.0.5:
4440 version "1.0.5"
4441 resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
4442 integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
4443 dependencies:
4444 call-bind "^1.0.2"
4445 define-properties "^1.1.4"
4446 es-abstract "^1.19.5"
4447
4448string_decoder@^1.1.1:4249string_decoder@^1.1.1:
4449 version "1.3.0"4250 version "1.3.0"
4450 resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"4251 resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
4594 integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==4395 integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
45954396
4596tslib@^2.1.0:4397tslib@^2.1.0:
4597 version "2.4.0"4398 version "2.4.1"
4598 resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"4399 resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
4599 integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==4400 integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
46004401
4601tsutils@^3.21.0:4402tsutils@^3.21.0:
4602 version "3.21.0"4403 version "3.21.0"
4665 is-typedarray "^1.0.0"4466 is-typedarray "^1.0.0"
46664467
4667typescript@^4.8.4:4468typescript@^4.8.4:
4668 version "4.8.4"4469 version "4.9.4"
4669 resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"4470 resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
4670 integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==4471 integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
46714472
4672uglify-js@^3.1.4:4473uglify-js@^3.1.4:
4673 version "3.17.3"4474 version "3.17.4"
4674 resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.3.tgz#f0feedf019c4510f164099e8d7e72ff2d7304377"4475 resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
4675 integrity sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==4476 integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
46764477
4677ultron@~1.1.0:4478ultron@~1.1.0:
4678 version "1.1.1"4479 version "1.1.1"
4679 resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"4480 resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c"
4680 integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==4481 integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==
46814482
4682unbox-primitive@^1.0.2:
4683 version "1.0.2"
4684 resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
4685 integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
4686 dependencies:
4687 call-bind "^1.0.2"
4688 has-bigints "^1.0.2"
4689 has-symbols "^1.0.3"
4690 which-boxed-primitive "^1.0.2"
4691
4692universalify@^0.1.0:4483universalify@^0.1.0:
4693 version "0.1.2"4484 version "0.1.2"
4694 resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"4485 resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
4752 resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"4543 resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
4753 integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==4544 integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
47544545
4755uuid@3.3.2:
4756 version "3.3.2"
4757 resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131"
4758 integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==
4759
4760uuid@^3.3.2:4546uuid@^3.3.2:
4761 version "3.4.0"4547 version "3.4.0"
4762 resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"4548 resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
4763 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==4549 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
47644550
4551uuid@^9.0.0:
4552 version "9.0.0"
4553 resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.0.tgz#592f550650024a38ceb0c562f2f6aa435761efb5"
4554 integrity sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==
4555
4765v8-compile-cache-lib@^3.0.1:4556v8-compile-cache-lib@^3.0.1:
4766 version "3.0.1"4557 version "3.0.1"
4767 resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"4558 resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
4791 resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"4582 resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
4792 integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==4583 integrity sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==
47934584
4794web3-bzz@1.8.0:4585web3-bzz@1.8.1:
4795 version "1.8.0"4586 version "1.8.1"
4796 resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.0.tgz#2023676d7c17ea36512bf76eb310755a02a3d464"4587 resolved "https://registry.yarnpkg.com/web3-bzz/-/web3-bzz-1.8.1.tgz#81397be5ce262d03d82b92e9d8acc11f8a609ea1"
4797 integrity sha512-caDtdKeLi7+2Vb+y+cq2yyhkNjnxkFzVW0j1DtemarBg3dycG1iEl75CVQMLNO6Wkg+HH9tZtRnUyFIe5LIUeQ==4588 integrity sha512-dJJHS84nvpoxv6ijTMkdUSlRr5beCXNtx4UZcrFLHBva8dT63QEtKdLyDt2AyMJJdVzTCk78uir/6XtVWrdS6w==
4798 dependencies:4589 dependencies:
4799 "@types/node" "^12.12.6"4590 "@types/node" "^12.12.6"
4800 got "12.1.0"4591 got "12.1.0"
4801 swarm-js "^0.1.40"4592 swarm-js "^0.1.40"
48024593
4803web3-core-helpers@1.8.0:4594web3-core-helpers@1.8.1:
4804 version "1.8.0"4595 version "1.8.1"
4805 resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.0.tgz#5dcfdda1a4ea277041d912003198f1334ca29d7c"4596 resolved "https://registry.yarnpkg.com/web3-core-helpers/-/web3-core-helpers-1.8.1.tgz#7904747b23fd0afa4f2c86ed98ea9418ccad7672"
4806 integrity sha512-nMAVwZB3rEp/khHI2BvFy0e/xCryf501p5NGjswmJtEM+Zrd3Biaw52JrB1qAZZIzCA8cmLKaOgdfamoDOpWdw==4597 integrity sha512-ClzNO6T1S1gifC+BThw0+GTfcsjLEY8T1qUp6Ly2+w4PntAdNtKahxWKApWJ0l9idqot/fFIDXwO3Euu7I0Xqw==
4807 dependencies:4598 dependencies:
4808 web3-eth-iban "1.8.0"4599 web3-eth-iban "1.8.1"
4809 web3-utils "1.8.0"4600 web3-utils "1.8.1"
48104601
4811web3-core-method@1.8.0:4602web3-core-method@1.8.1:
4812 version "1.8.0"4603 version "1.8.1"
4813 resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.0.tgz#9c2da8896808917d1679c319f19e2174ba17086c"4604 resolved "https://registry.yarnpkg.com/web3-core-method/-/web3-core-method-1.8.1.tgz#0fc5a433a9fc784c447522f141c0a8e0163c7790"
4814 integrity sha512-c94RAzo3gpXwf2rf8rL8C77jOzNWF4mXUoUfZYYsiY35cJFd46jQDPI00CB5+ZbICTiA5mlVzMj4e7jAsTqiLA==4605 integrity sha512-oYGRodktfs86NrnFwaWTbv2S38JnpPslFwSSARwFv4W9cjbGUW3LDeA5MKD/dRY+ssZ5OaekeMsUCLoGhX68yA==
4815 dependencies:4606 dependencies:
4816 "@ethersproject/transactions" "^5.6.2"4607 "@ethersproject/transactions" "^5.6.2"
4817 web3-core-helpers "1.8.0"4608 web3-core-helpers "1.8.1"
4818 web3-core-promievent "1.8.0"4609 web3-core-promievent "1.8.1"
4819 web3-core-subscriptions "1.8.0"4610 web3-core-subscriptions "1.8.1"
4820 web3-utils "1.8.0"4611 web3-utils "1.8.1"
48214612
4822web3-core-promievent@1.8.0:4613web3-core-promievent@1.8.1:
4823 version "1.8.0"4614 version "1.8.1"
4824 resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.0.tgz#979765fd4d37ab0f158f0ee54037b279b737bd53"4615 resolved "https://registry.yarnpkg.com/web3-core-promievent/-/web3-core-promievent-1.8.1.tgz#f334c8b2ceac6c2228f06d2a515f6d103157f036"
4825 integrity sha512-FGLyjAuOaAQ+ZhV6iuw9tg/9WvIkSZXKHQ4mdTyQ8MxVraOtFivOCbuLLsGgapfHYX+RPxsc1j1YzQjKoupagQ==4616 integrity sha512-9mxqHlgB0MrZI4oUIRFkuoJMNj3E7btjrMv3sMer/Z9rYR1PfoSc1aAokw4rxKIcAh+ylVtd/acaB2HKB7aRPg==
4826 dependencies:4617 dependencies:
4827 eventemitter3 "4.0.4"4618 eventemitter3 "4.0.4"
48284619
4829web3-core-requestmanager@1.8.0:4620web3-core-requestmanager@1.8.1:
4830 version "1.8.0"4621 version "1.8.1"
4831 resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.0.tgz#06189df80cf52d24a195a7ef655031afe8192df3"4622 resolved "https://registry.yarnpkg.com/web3-core-requestmanager/-/web3-core-requestmanager-1.8.1.tgz#272ffa55b7b568ecbc8e4a257ca080355c31c60e"
4832 integrity sha512-2AoYCs3Owl5foWcf4uKPONyqFygSl9T54L8b581U16nsUirjhoTUGK/PBhMDVcLCmW4QQmcY5A8oPFpkQc1TTg==4623 integrity sha512-x+VC2YPPwZ1khvqA6TA69LvfFCOZXsoUVOxmTx/vIN22PrY9KzKhxcE7pBSiGhmab1jtmRYXUbcQSVpAXqL8cw==
4833 dependencies:4624 dependencies:
4834 util "^0.12.0"4625 util "^0.12.0"
4835 web3-core-helpers "1.8.0"4626 web3-core-helpers "1.8.1"
4836 web3-providers-http "1.8.0"4627 web3-providers-http "1.8.1"
4837 web3-providers-ipc "1.8.0"4628 web3-providers-ipc "1.8.1"
4838 web3-providers-ws "1.8.0"4629 web3-providers-ws "1.8.1"
48394630
4840web3-core-subscriptions@1.8.0:4631web3-core-subscriptions@1.8.1:
4841 version "1.8.0"4632 version "1.8.1"
4842 resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.0.tgz#ff66ae4467c8cb4716367248bcefb1845c0f8b83"4633 resolved "https://registry.yarnpkg.com/web3-core-subscriptions/-/web3-core-subscriptions-1.8.1.tgz#f5ae1380e92746eadfab6475b8a70ef5a1be6bbf"
4843 integrity sha512-7lHVRzDdg0+Gcog55lG6Q3D8JV+jN+4Ly6F8cSn9xFUAwOkdbgdWsjknQG7t7CDWy21DQkvdiY2BJF8S68AqOA==4634 integrity sha512-bmCMq5OeA3E2vZUh8Js1HcJbhwtsE+yeMqGC4oIZB3XsL5SLqyKLB/pU+qUYqQ9o4GdcrFTDPhPg1bgvf7p1Pw==
4844 dependencies:4635 dependencies:
4845 eventemitter3 "4.0.4"4636 eventemitter3 "4.0.4"
4846 web3-core-helpers "1.8.0"4637 web3-core-helpers "1.8.1"
48474638
4848web3-core@1.8.0:4639web3-core@1.8.1:
4849 version "1.8.0"4640 version "1.8.1"
4850 resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.0.tgz#90afce527ac1b1dff8cbed2acbc0336530b8aacf"4641 resolved "https://registry.yarnpkg.com/web3-core/-/web3-core-1.8.1.tgz#050b1c408d1f9b7ae539e90f7f7d1b7a7d10578b"
4851 integrity sha512-9sCA+Z02ci6zoY2bAquFiDjujRwmSKHiSGi4B8IstML8okSytnzXk1izHYSynE7ahIkguhjWAuXFvX76F5rAbA==4642 integrity sha512-LbRZlJH2N6nS3n3Eo9Y++25IvzMY7WvYnp4NM/Ajhh97dAdglYs6rToQ2DbL2RLvTYmTew4O/y9WmOk4nq9COw==
4852 dependencies:4643 dependencies:
4853 "@types/bn.js" "^5.1.0"4644 "@types/bn.js" "^5.1.0"
4854 "@types/node" "^12.12.6"4645 "@types/node" "^12.12.6"
4855 bignumber.js "^9.0.0"4646 bignumber.js "^9.0.0"
4856 web3-core-helpers "1.8.0"4647 web3-core-helpers "1.8.1"
4857 web3-core-method "1.8.0"4648 web3-core-method "1.8.1"
4858 web3-core-requestmanager "1.8.0"4649 web3-core-requestmanager "1.8.1"
4859 web3-utils "1.8.0"4650 web3-utils "1.8.1"
48604651
4861web3-eth-abi@1.8.0:4652web3-eth-abi@1.8.1:
4862 version "1.8.0"4653 version "1.8.1"
4863 resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.0.tgz#47fdff00bfdfa72064c9c612ff6369986598196d"4654 resolved "https://registry.yarnpkg.com/web3-eth-abi/-/web3-eth-abi-1.8.1.tgz#47455d6513217c4b0866fea6f97b1c4afa0b6535"
4864 integrity sha512-xPeMb2hS9YLQK/Q5YZpkcmzoRGM+/R8bogSrYHhNC3hjZSSU0YRH+1ZKK0f9YF4qDZaPMI8tKWIMSCDIpjG6fg==4655 integrity sha512-0mZvCRTIG0UhDhJwNQJgJxu4b4DyIpuMA0GTfqxqeuqzX4Q/ZvmoNurw0ExTfXaGPP82UUmmdkRi6FdZOx+C6w==
4865 dependencies:4656 dependencies:
4866 "@ethersproject/abi" "^5.6.3"4657 "@ethersproject/abi" "^5.6.3"
4867 web3-utils "1.8.0"4658 web3-utils "1.8.1"
48684659
4869web3-eth-accounts@1.8.0:4660web3-eth-accounts@1.8.1:
4870 version "1.8.0"4661 version "1.8.1"
4871 resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.0.tgz#960d947ee87a49d6c706dc6312334fbfbd6ff812"4662 resolved "https://registry.yarnpkg.com/web3-eth-accounts/-/web3-eth-accounts-1.8.1.tgz#1ce7387721f118aeb0376291e4d8bbe2ac323406"
4872 integrity sha512-HQ/MDSv4bexwJLvnqsM6xpGE7c2NVOqyhzOZFyMUKXbIwIq85T3TaLnM9pCN7XqMpDcfxqiZ3q43JqQVkzHdmw==4663 integrity sha512-mgzxSYgN54/NsOFBO1Fq1KkXp1S5KlBvI/DlgvajU72rupoFMq6Cu6Yp9GUaZ/w2ij9PzEJuFJk174XwtfMCmg==
4873 dependencies:4664 dependencies:
4874 "@ethereumjs/common" "^2.5.0"4665 "@ethereumjs/common" "2.5.0"
4875 "@ethereumjs/tx" "^3.3.2"4666 "@ethereumjs/tx" "3.3.2"
4876 crypto-browserify "3.12.0"4667 crypto-browserify "3.12.0"
4877 eth-lib "0.2.8"4668 eth-lib "0.2.8"
4878 ethereumjs-util "^7.0.10"4669 ethereumjs-util "^7.0.10"
4879 scrypt-js "^3.0.1"4670 scrypt-js "^3.0.1"
4880 uuid "3.3.2"4671 uuid "^9.0.0"
4881 web3-core "1.8.0"4672 web3-core "1.8.1"
4882 web3-core-helpers "1.8.0"4673 web3-core-helpers "1.8.1"
4883 web3-core-method "1.8.0"4674 web3-core-method "1.8.1"
4884 web3-utils "1.8.0"4675 web3-utils "1.8.1"
48854676
4886web3-eth-contract@1.8.0:4677web3-eth-contract@1.8.1:
4887 version "1.8.0"4678 version "1.8.1"
4888 resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.0.tgz#58f4ce0bde74e5ce87663502e409a92abad7b2c5"4679 resolved "https://registry.yarnpkg.com/web3-eth-contract/-/web3-eth-contract-1.8.1.tgz#bdf3e33bbcb79a1b6144dffd6a0deefd2e459272"
4889 integrity sha512-6xeXhW2YoCrz2Ayf2Vm4srWiMOB6LawkvxWJDnUWJ8SMATg4Pgu42C/j8rz/enXbYWt2IKuj0kk8+QszxQbK+Q==4680 integrity sha512-1wphnl+/xwCE2io44JKnN+ti3oa47BKRiVzvWd42icwRbcpFfRxH9QH+aQX3u8VZIISNH7dAkTWpGIIJgGFTmg==
4890 dependencies:4681 dependencies:
4891 "@types/bn.js" "^5.1.0"4682 "@types/bn.js" "^5.1.0"
4892 web3-core "1.8.0"4683 web3-core "1.8.1"
4893 web3-core-helpers "1.8.0"4684 web3-core-helpers "1.8.1"
4894 web3-core-method "1.8.0"4685 web3-core-method "1.8.1"
4895 web3-core-promievent "1.8.0"4686 web3-core-promievent "1.8.1"
4896 web3-core-subscriptions "1.8.0"4687 web3-core-subscriptions "1.8.1"
4897 web3-eth-abi "1.8.0"4688 web3-eth-abi "1.8.1"
4898 web3-utils "1.8.0"4689 web3-utils "1.8.1"
48994690
4900web3-eth-ens@1.8.0:4691web3-eth-ens@1.8.1:
4901 version "1.8.0"4692 version "1.8.1"
4902 resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.0.tgz#f1937371eac54b087ebe2e871780c2710d39998d"4693 resolved "https://registry.yarnpkg.com/web3-eth-ens/-/web3-eth-ens-1.8.1.tgz#e78a9651fea8282abe8565b001819e2d645e5929"
4903 integrity sha512-/eFbQEwvsMOEiOhw9/iuRXCsPkqAmHHWuFOrThQkozRgcnSTRnvxkkRC/b6koiT5/HaKeUs4yQDg+/ixsIxZxA==4694 integrity sha512-FT8xTI9uN8RxeBQa/W8pLa2aoFh4+EE34w7W2271LICKzla1dtLyb6XSdn48vsUcPmhWsTVk9mO9RTU0l4LGQQ==
4904 dependencies:4695 dependencies:
4905 content-hash "^2.5.2"4696 content-hash "^2.5.2"
4906 eth-ens-namehash "2.0.8"4697 eth-ens-namehash "2.0.8"
4907 web3-core "1.8.0"4698 web3-core "1.8.1"
4908 web3-core-helpers "1.8.0"4699 web3-core-helpers "1.8.1"
4909 web3-core-promievent "1.8.0"4700 web3-core-promievent "1.8.1"
4910 web3-eth-abi "1.8.0"4701 web3-eth-abi "1.8.1"
4911 web3-eth-contract "1.8.0"4702 web3-eth-contract "1.8.1"
4912 web3-utils "1.8.0"4703 web3-utils "1.8.1"
49134704
4914web3-eth-iban@1.8.0:4705web3-eth-iban@1.8.1:
4915 version "1.8.0"4706 version "1.8.1"
4916 resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.0.tgz#3af8a0c95b5f7b0b81ab0bcd2075c1e5dda31520"4707 resolved "https://registry.yarnpkg.com/web3-eth-iban/-/web3-eth-iban-1.8.1.tgz#c6484e5d68ca644aa78431301e7acd5df24598d1"
4917 integrity sha512-4RbvUxcMpo/e5811sE3a6inJ2H4+FFqUVmlRYs0RaXaxiHweahSRBNcpO0UWgmlePTolj0rXqPT2oEr0DuC8kg==4708 integrity sha512-DomoQBfvIdtM08RyMGkMVBOH0vpOIxSSQ+jukWk/EkMLGMWJtXw/K2c2uHAeq3L/VPWNB7zXV2DUEGV/lNE2Dg==
4918 dependencies:4709 dependencies:
4919 bn.js "^5.2.1"4710 bn.js "^5.2.1"
4920 web3-utils "1.8.0"4711 web3-utils "1.8.1"
49214712
4922web3-eth-personal@1.8.0:4713web3-eth-personal@1.8.1:
4923 version "1.8.0"4714 version "1.8.1"
4924 resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.0.tgz#433c35e2e042844402a12d543c4126ea1494b478"4715 resolved "https://registry.yarnpkg.com/web3-eth-personal/-/web3-eth-personal-1.8.1.tgz#00b5ff1898b62044d25ed5fddd8486168d4827cf"
4925 integrity sha512-L7FT4nR3HmsfZyIAhFpEctKkYGOjRC2h6iFKs9gnFCHZga8yLcYcGaYOBIoYtaKom99MuGBoosayWt/Twh7F5A==4716 integrity sha512-myIYMvj7SDIoV9vE5BkVdon3pya1WinaXItugoii2VoTcQNPOtBxmYVH+XS5ErzCJlnxzphpQrkywyY64bbbCA==
4926 dependencies:4717 dependencies:
4927 "@types/node" "^12.12.6"4718 "@types/node" "^12.12.6"
4928 web3-core "1.8.0"4719 web3-core "1.8.1"
4929 web3-core-helpers "1.8.0"4720 web3-core-helpers "1.8.1"
4930 web3-core-method "1.8.0"4721 web3-core-method "1.8.1"
4931 web3-net "1.8.0"4722 web3-net "1.8.1"
4932 web3-utils "1.8.0"4723 web3-utils "1.8.1"
49334724
4934web3-eth@1.8.0:4725web3-eth@1.8.1:
4935 version "1.8.0"4726 version "1.8.1"
4936 resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.0.tgz#006974a5d5e30644d05814111f9e162a72e4a09c"4727 resolved "https://registry.yarnpkg.com/web3-eth/-/web3-eth-1.8.1.tgz#395f6cd56edaac5dbb23e8cec9886c3fd32c430e"
4937 integrity sha512-hist52os3OT4TQFB/GxPSMxTh3995sz6LPvQpPvj7ktSbpg9RNSFaSsPlCT63wUAHA3PZb1FemkAIeQM5t72Lw==4728 integrity sha512-LgyzbhFqiFRd8M8sBXoFN4ztzOnkeckl3H/9lH5ek7AdoRMhBg7tYpYRP3E5qkhd/q+yiZmcUgy1AF6NHrC1wg==
4938 dependencies:4729 dependencies:
4939 web3-core "1.8.0"4730 web3-core "1.8.1"
4940 web3-core-helpers "1.8.0"4731 web3-core-helpers "1.8.1"
4941 web3-core-method "1.8.0"4732 web3-core-method "1.8.1"
4942 web3-core-subscriptions "1.8.0"4733 web3-core-subscriptions "1.8.1"
4943 web3-eth-abi "1.8.0"4734 web3-eth-abi "1.8.1"
4944 web3-eth-accounts "1.8.0"4735 web3-eth-accounts "1.8.1"
4945 web3-eth-contract "1.8.0"4736 web3-eth-contract "1.8.1"
4946 web3-eth-ens "1.8.0"4737 web3-eth-ens "1.8.1"
4947 web3-eth-iban "1.8.0"4738 web3-eth-iban "1.8.1"
4948 web3-eth-personal "1.8.0"4739 web3-eth-personal "1.8.1"
4949 web3-net "1.8.0"4740 web3-net "1.8.1"
4950 web3-utils "1.8.0"4741 web3-utils "1.8.1"
49514742
4952web3-net@1.8.0:4743web3-net@1.8.1:
4953 version "1.8.0"4744 version "1.8.1"
4954 resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.0.tgz#9acff92d7c647d801bc68df0ff4416f104dbe789"4745 resolved "https://registry.yarnpkg.com/web3-net/-/web3-net-1.8.1.tgz#2bed4d4b93166724129ec33d0e5dea98880285f4"
4955 integrity sha512-kX6EAacK7QrOe7DOh0t5yHS5q2kxZmTCxPVwSz9io9xBeE4n4UhmzGJ/VfhP2eM3OPKYeypcR3LEO6zZ8xn2vw==4746 integrity sha512-LyEJAwogdFo0UAXZqoSJGFjopdt+kLw0P00FSZn2yszbgcoI7EwC+nXiOsEe12xz4LqpYLOtbR7+gxgiTVjjHQ==
4956 dependencies:4747 dependencies:
4957 web3-core "1.8.0"4748 web3-core "1.8.1"
4958 web3-core-method "1.8.0"4749 web3-core-method "1.8.1"
4959 web3-utils "1.8.0"4750 web3-utils "1.8.1"
49604751
4961web3-providers-http@1.8.0:4752web3-providers-http@1.8.1:
4962 version "1.8.0"4753 version "1.8.1"
4963 resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.0.tgz#3fd1e569ead2095343fac17d53160a3bae674c23"4754 resolved "https://registry.yarnpkg.com/web3-providers-http/-/web3-providers-http-1.8.1.tgz#8aa89c11a9272f11ddb74b871273c92225faa28d"
4964 integrity sha512-/MqxwRzExohBWW97mqlCSW/+NHydGRyoEDUS1bAIF2YjfKFwyRtHgrEzOojzkC9JvB+8LofMvbXk9CcltpZapw==4755 integrity sha512-1Zyts4O9W/UNEPkp+jyL19Jc3D15S4yp8xuLTjVhcUEAlHo24NDWEKxtZGUuHk4HrKL2gp8OlsDbJ7MM+ESDgg==
4965 dependencies:4756 dependencies:
4966 abortcontroller-polyfill "^1.7.3"4757 abortcontroller-polyfill "^1.7.3"
4967 cross-fetch "^3.1.4"4758 cross-fetch "^3.1.4"
4968 es6-promise "^4.2.8"4759 es6-promise "^4.2.8"
4969 web3-core-helpers "1.8.0"4760 web3-core-helpers "1.8.1"
49704761
4971web3-providers-ipc@1.8.0:4762web3-providers-ipc@1.8.1:
4972 version "1.8.0"4763 version "1.8.1"
4973 resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.0.tgz#d339a24c4d764e459e425d3ac868a551ac33e3ea"4764 resolved "https://registry.yarnpkg.com/web3-providers-ipc/-/web3-providers-ipc-1.8.1.tgz#6128a3a3a824d06bf0efcfe86325401f8691a5ca"
4974 integrity sha512-tAXHtVXNUOgehaBU8pzAlB3qhjn/PRpjdzEjzHNFqtRRTwzSEKOJxFeEhaUA4FzHnTlbnrs8ujHWUitcp1elfg==4765 integrity sha512-nw/W5nclvi+P2z2dYkLWReKLnocStflWqFl+qjtv0xn3MrUTyXMzSF0+61i77+16xFsTgzo4wS/NWIOVkR0EFA==
4975 dependencies:4766 dependencies:
4976 oboe "2.1.5"4767 oboe "2.1.5"
4977 web3-core-helpers "1.8.0"4768 web3-core-helpers "1.8.1"
49784769
4979web3-providers-ws@1.8.0:4770web3-providers-ws@1.8.1:
4980 version "1.8.0"4771 version "1.8.1"
4981 resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.0.tgz#a0a73e0606981ea32bed40d215000a64753899de"4772 resolved "https://registry.yarnpkg.com/web3-providers-ws/-/web3-providers-ws-1.8.1.tgz#5e5370e07eb8c615ed298ebc8602b283c7b7d649"
4982 integrity sha512-bcZtSifsqyJxwkfQYamfdIRp4nhj9eJd7cxHg1uUkfLJK125WP96wyJL1xbPt7qt0MpfnTFn8/UuIqIB6nFENg==4773 integrity sha512-TNefIDAMpdx57+YdWpYZ/xdofS0P+FfKaDYXhn24ie/tH9G+AB+UBSOKnjN0KSadcRSCMBwGPRiEmNHPavZdsA==
4983 dependencies:4774 dependencies:
4984 eventemitter3 "4.0.4"4775 eventemitter3 "4.0.4"
4985 web3-core-helpers "1.8.0"4776 web3-core-helpers "1.8.1"
4986 websocket "^1.0.32"4777 websocket "^1.0.32"
49874778
4988web3-shh@1.8.0:4779web3-shh@1.8.1:
4989 version "1.8.0"4780 version "1.8.1"
4990 resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.0.tgz#b4abbf4f59d097ce2f74360e61e2e5c0bd6507c7"4781 resolved "https://registry.yarnpkg.com/web3-shh/-/web3-shh-1.8.1.tgz#028a95cf9d3a36020380938b9a127610efbb9be7"
4991 integrity sha512-DNRgSa9Jf9xYFUGKSMylrf+zt3MPjhI2qF+UWX07o0y3+uf8zalDGiJOWvIS4upAsdPiKKVJ7co+Neof47OMmg==4782 integrity sha512-sqHgarnfcY2Qt3PYS4R6YveHrDy7hmL09yeLLHHCI+RKirmjLVqV0rc5LJWUtlbYI+kDoa5gbgde489M9ZAC0g==
4992 dependencies:4783 dependencies:
4993 web3-core "1.8.0"4784 web3-core "1.8.1"
4994 web3-core-method "1.8.0"4785 web3-core-method "1.8.1"
4995 web3-core-subscriptions "1.8.0"4786 web3-core-subscriptions "1.8.1"
4996 web3-net "1.8.0"4787 web3-net "1.8.1"
49974788
4998web3-utils@1.8.0:4789web3-utils@1.8.1:
4999 version "1.8.0"4790 version "1.8.1"
5000 resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.0.tgz#0a506f8c6af9a2ad6ba79689892662769534fc03"4791 resolved "https://registry.yarnpkg.com/web3-utils/-/web3-utils-1.8.1.tgz#f2f7ca7eb65e6feb9f3d61056d0de6bbd57125ff"
5001 integrity sha512-7nUIl7UWpLVka2f09CMbKOSEvorvHnaugIabU4mj7zfMvm0tSByLcEu3eyV9qgS11qxxLuOkzBIwCstTflhmpQ==4792 integrity sha512-LgnM9p6V7rHHUGfpMZod+NST8cRfGzJ1BTXAyNo7A9cJX9LczBfSRxJp+U/GInYe9mby40t3v22AJdlELibnsQ==
5002 dependencies:4793 dependencies:
5003 bn.js "^5.2.1"4794 bn.js "^5.2.1"
5004 ethereum-bloom-filters "^1.0.6"4795 ethereum-bloom-filters "^1.0.6"
5009 utf8 "3.0.0"4800 utf8 "3.0.0"
50104801
5011web3@^1.8.0:4802web3@^1.8.0:
5012 version "1.8.0"4803 version "1.8.1"
5013 resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.0.tgz#3ca5f0b32de6a1f626407740411219035b5fde64"4804 resolved "https://registry.yarnpkg.com/web3/-/web3-1.8.1.tgz#8ea67215ef5f3a6f6d3381800b527242ea22885a"
5014 integrity sha512-sldr9stK/SALSJTgI/8qpnDuBJNMGjVR84hJ+AcdQ+MLBGLMGsCDNubCoyO6qgk1/Y9SQ7ignegOI/7BPLoiDA==4805 integrity sha512-tAqFsQhGv340C9OgRJIuoScN7f7wa1tUvsnnDUMt9YE6J4gcm7TV2Uwv+KERnzvV+xgdeuULYpsioRRNKrUvoQ==
5015 dependencies:4806 dependencies:
5016 web3-bzz "1.8.0"4807 web3-bzz "1.8.1"
5017 web3-core "1.8.0"4808 web3-core "1.8.1"
5018 web3-eth "1.8.0"4809 web3-eth "1.8.1"
5019 web3-eth-personal "1.8.0"4810 web3-eth-personal "1.8.1"
5020 web3-net "1.8.0"4811 web3-net "1.8.1"
5021 web3-shh "1.8.0"4812 web3-shh "1.8.1"
5022 web3-utils "1.8.0"4813 web3-utils "1.8.1"
50234814
5024webidl-conversions@^3.0.0:4815webidl-conversions@^3.0.0:
5025 version "3.0.1"4816 version "3.0.1"
5046 tr46 "~0.0.3"4837 tr46 "~0.0.3"
5047 webidl-conversions "^3.0.0"4838 webidl-conversions "^3.0.0"
50484839
5049which-boxed-primitive@^1.0.2:
5050 version "1.0.2"
5051 resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
5052 integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
5053 dependencies:
5054 is-bigint "^1.0.1"
5055 is-boolean-object "^1.1.0"
5056 is-number-object "^1.0.4"
5057 is-string "^1.0.5"
5058 is-symbol "^1.0.3"
5059
5060which-typed-array@^1.1.2:4840which-typed-array@^1.1.2:
5061 version "1.1.8"4841 version "1.1.9"
5062 resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.8.tgz#0cfd53401a6f334d90ed1125754a42ed663eb01f"4842 resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
5063 integrity sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw==4843 integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
5064 dependencies:4844 dependencies:
5065 available-typed-arrays "^1.0.5"4845 available-typed-arrays "^1.0.5"
5066 call-bind "^1.0.2"4846 call-bind "^1.0.2"
5067 es-abstract "^1.20.0"
5068 for-each "^0.3.3"4847 for-each "^0.3.3"
4848 gopd "^1.0.1"
5069 has-tostringtag "^1.0.0"4849 has-tostringtag "^1.0.0"
5070 is-typed-array "^1.1.9"4850 is-typed-array "^1.1.10"
50714851
5072which@^2.0.1:4852which@^2.0.1:
5073 version "2.0.2"4853 version "2.0.2"
5115 ultron "~1.1.0"4895 ultron "~1.1.0"
51164896
5117ws@^8.8.1:4897ws@^8.8.1:
5118 version "8.9.0"4898 version "8.11.0"
5119 resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e"4899 resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
5120 integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==4900 integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
51214901
5122xhr-request-promise@^0.1.2:4902xhr-request-promise@^0.1.2:
5123 version "0.1.3"4903 version "0.1.3"